.doenet-panel {
    position: fixed;
    display: flex;
    transition: width 0.25s;
    right: 0;
    top: 0;
    width: 150pt;
    height: 12pt;
    padding: 6pt;
    background: white;
    border-color: white;
    border-style: none none solid solid;
    border-width: 1px;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.4);
}

.doenet-name {
    font-family: sans-serif;
    font-size: 12pt;
    flex: 0 0 72pt;
}

.doenet-meter {
  flex: 0 0 72pt;
  margin-right: 6pt;
  height: 12pt;
  background: #eee;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 0px;
  box-shadow: inset 0 -2px 6px rgba(0,0,0,0.1);
}

.doenet-meter > span:after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, .2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, .2) 50%,
    rgba(255, 255, 255, .2) 75%,
    transparent 75%,
    transparent
  );
  z-index: 1;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  overflow: hidden;
}

.doenet-meter > span {
  display: block;
  height: 100%;
  transition: width 0.5s;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  background-color: rgb(43,194,83);
  background-image: linear-gradient(
    center bottom,
    rgb(43,194,83) 37%,
    rgb(84,240,84) 69%
  );
  box-shadow: 
    inset 0 2px 9px  rgba(255,255,255,0.3),
    inset 0 -2px 6px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}


.doenet-gdpr {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    position: fixed;
    left: 0;
    bottom: 0;
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 6pt;
    padding-bottom: 18pt;
    background: white;
    border-color: white;
    border-style: solid none none none;
    border-width: 1px;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.4);
}


.doenet-gdpr button[type="button"]  

{    background-color: #1155aa;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin-right: 12pt;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
}


.doenet-gdpr button[type="button"]:hover {
    opacity: 1;
}

