html {
  width: 100%;
}

:root {
  --bruin: #985b42;
  --grijs: #414142;
  --rood: #c8482b;
  --lichtrood: #ee7651;
  --oranje: #f59f5c ;
  --donkergeel: #f9be5b;
  --geel: #ffd776;
  --lichtgeel: #fceab4;
}

body {
  overflow-x: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > *{
  opacity: 0;
}

/* Spinner */
body.show-spinner::before{
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

iframe {
  border: none !important;
  width: 100%;
}

.module-list-image {
  width: 120px;
  height: 120px;
}


.download-list li {
  list-style: none;
  margin: 4px;
  margin-left: -40px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.download-list-image {
  width: 50px;
  height: 50px;
  margin: 0!important;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  padding-top: 8px;

}

.download-list-image img {
  width: 35px;
  height: 35px;
}

.download-list-text {
  vertical-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  display: inline-block;
  font-size: 14px;
  padding-left: 10px;
}

.download-list li:hover {
  background-color: rgba(255,255,255,0.1);
}

.reminder-message {
  background: var(--lichtgeel) !important;
  padding: 20px;
  color: #000 !important;
  margin-bottom: 20px;
}

.colorSelector {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  background-color: transparent;
  cursor: pointer;
  border: 8px solid transparent;
}

.colorSelector:hover {
  border: 4px solid #FFF;
}

.imageSelector {
  padding: 5px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.imageSelector:hover {
  background-color: var(--lichtgeel);
}

.itemHolder {
  margin: 5px;
  display: inline-block;
  min-width: 60px;
  min-height: 60px;
  width: 60px !important;
  height: 60px !important;
  max-width: 60px;
  max-height: 60px;
  border: 1px solid #FFF !important;
}


#overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display:none;
  opacity: 0.8;
}

#uploader {
  margin: 10px;
  background-color: var(--rood);
  width: 50px;
  height: 50px;
  border: 3px solid #FFF;
  cursor: pointer;
  color: #FFF;
  text-align: center;
  line-height: 50px;
  border-radius: 10px;
  font-size: 28px;
  transition: all 0.3s ease;
}

#uploader:hover, .hover-class-upload {
  background-color: var(--bruin);
  border: 0px solid #FFF;
}

#upl_filename {
  font-size: 16px !important;
  padding-top: 20px;
}
