@font-face {
  font-family: 'Antenna';
  src: url('../fonts/antenna/antenna.eot');
  src: url('../fonts/antenna/antenna.eot?#iefix') format('embedded-opentype'),
    url('../fonts/antenna/antenna.woff2') format('woff2'),
    url('../fonts/antenna/antenna.woff') format('woff'),
    url('../fonts/antenna/antenna.ttf') format('truetype'),
    url('../fonts/antenna/antenna.svg#Antenna') format('svg');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Antenna';
  background-color: #f7f7f7;
}
ul {
  list-style-type: none;
}
/* Header Styles Start */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px 30px;
}
.toplinks ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}
.toplinks ul li {
  margin: 0 10px;
  color: #c95d5d;
}
.toplinks ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
}
.toplinks ul li a.active {
  border: 2px solid #c95d5d;
  padding: 10px;
  border-radius: 10px;
}
.signout {
  cursor: pointer;
}
/* Header Styles End */
.content-container {
  margin: 125px auto;
}
h1.webdemo-title {
  margin: 50px auto;
  text-align: center;
  letter-spacing: 1px;
}

.boxes-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px 60px 50px;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.59);
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.59);
  -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.59);
  background-color: #fff;
}
.box-container img {
  width: 150px;
}
.box-container a {
  border: 2px solid #f8486e;
  background-size: 300%;
  border-radius: 4px;
  padding: 10px 20px;
  box-sizing: border-box;
  text-decoration: none;
  color: #000;
  margin-top: 20px;
  transition: all 0.6s;
  background-image: linear-gradient(90deg, #fff 50%, #f8486e 0);
}

.box-container a:hover {
  color: #fff;
  background-position: 100%;
}
/* Choose a Model Styles */
.choose-model-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

/* loader styles */
.loader-overlay,
.consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pl {
  display: block;
  width: 6.25em;
  height: 6.25em;
}
.pl__ring,
.pl__ball {
  animation: ring 2s ease-out infinite;
}
.pl__ball {
  animation-name: ball;
}
/* Animation */
@keyframes ring {
  from {
    stroke-dasharray: 0 257 0 0 1 0 0 258;
  }
  25% {
    stroke-dasharray: 0 0 0 0 257 0 258 0;
  }
  50%,
  to {
    stroke-dasharray: 0 0 0 0 0 515 0 0;
  }
}
@keyframes ball {
  from,
  50% {
    animation-timing-function: ease-in;
    stroke-dashoffset: 1;
  }
  64% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -109;
  }
  78% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -145;
  }
  92% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -157;
  }
  57%,
  71%,
  85%,
  99%,
  to {
    animation-timing-function: ease-out;
    stroke-dashoffset: -163;
  }
}

/* loader styles end */

/* i consent model */
.iconsent-border {
  --border-size: 5px;
  --border-angle: 0turn;
  background-image: conic-gradient(
      from var(--border-angle),
      #fff,
      #fff 50%,
      #fff
    ),
    conic-gradient(from var(--border-angle), transparent 20%, #feac47, #f8486e);
  background-size: calc(100% - (var(--border-size) * 2))
      calc(100% - (var(--border-size) * 2)),
    cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: bg-spin 3s linear infinite;
  animation: bg-spin 3s linear infinite;
}
@-webkit-keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
.iconsent-border:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
/* Dark theme  */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 10%, 10%);
    --fg: hsl(var(--hue), 10%, 90%);
  }
}

@property --border-angle {
  syntax: '<angle>';
  inherits: true;
  initial-value: 0turn;
}
.consent-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  padding: 30px 20px 20px;
  width: 100%;
  max-width: 800px;
}

.consent-container button {
  border: 2px solid #f8486e;
  background-size: 300%;
  border-radius: 4px;
  padding: 10px 20px;
  box-sizing: border-box;
  text-decoration: none;
  color: #000;
  margin-top: 20px;
  transition: all 0.6s;
  background-image: linear-gradient(90deg, #fff 50%, #f8486e 0);
  cursor: pointer;
}

.consent-container button:hover {
  color: #fff;
  background-position: 100%;
}

/* Try on integration container */
.tryon-container {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  margin: 10px 30px 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.59);
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.59);
  -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.59);
  background-color: #fff;
  max-width: 100%;
}
/* Leftside styles */
.leftside {
  display: flex;
  flex-direction: column;
  width: 300px;
  max-height: 715px;
  overflow: hidden;
  overflow-y: scroll;
}
.leftside ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.leftside ul li {
  margin: 5px 0;
}
.leftside ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.leftside ul li a img {
  max-width: 40px;
}
.leftside ul li a span {
  display: block;
  margin: 10px auto;
  text-align: center;
  line-height: 1.3;
}
.leftside ul li.active a span {
  color: #c95d5d;
}
/* width */
.leftside::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.leftside::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.leftside::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.leftside::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.nav-back {
  text-align: center;
  margin-bottom: 10px;
}
.nav-back a img {
  max-width: 40px;
}
/* Leftside styles end */
.integration-container {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  width: 100%;
}
.integrations {
  width: 80%;
}

.integrations-controls ul {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.integrations-controls ul li {
  margin-bottom: 30px;
  text-align: center;
  background-color: #000;
  padding: 20px 30px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
}
.page-title {
  text-align: center;
  margin: 25px auto;
}
.tryon-values {
  display: flex;
  flex-direction: column;
  margin: 0 auto 15px;
}
.tryon-values span {
  margin-bottom: 15px;
}
.upload-photo-loadtime {
  justify-content: center!important;
}

.canvases-container {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  width: 900px;
}
.try-upload-image {
  width: 500px!important;
}
canvas#tryon-live-canvas-0 {
  position: relative;
  display: block;
  z-index: 3;
  margin: 0 auto;
}
.canvases-container img.upload-image-output,
canvas#tryon-live-canvas-1 {
  position: relative;
  display: block;
  margin: 0 auto;
  z-index: 1;
}
.canvases-container img.upload-image-output {
  max-width: 100%;
}

.base-canvas-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 4;
  width: 100%;
  height: 100%;
}
.try-upload-image .base-canvas-wrapper {
  max-width: 500px;
}
.try-upload-image canvas#tryon-live-canvas-0 {
  max-width: 500px;
}
.base-canvas-container {
  position: absolute;
  z-index: 2;
  visibility: visible;
  overflow: hidden;
  width: 0;
  height: 100%;
  border-right: 5px solid #fff;
}
.splitter-handler {
  display: block;
  position: absolute;
  z-index: 99;
  top: 72%;
  left: 48%;
  width: 20px;
  height: 50px;
  border-radius: 4px;
  background: url('../images/splitter-direction.png') no-repeat #fff;
  background-size: contain;
  background-position: center;
}
.try-upload-image .splitter-handler {
  left: 46%;
}

.toolbar-tools {
  display: flex;
  justify-content: center;
  align-items: center;
}

.splitter-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}

.splitter-icon {
  display: inline-block;
  margin: 10px 0 0 0;
  padding: 0 10px;
  cursor: pointer;
}

/* input range styles */
.splitter-range-container {
  position: absolute;
  top: 75%;
  width: 100%;
  z-index: 99;
}
.splitter-range-container input[type='range'] {
  -webkit-appearance: none;
  margin: 0 auto 15px;
  width: 100%;
  height: 7px;
  min-height: 7px;
  /*   background: rgba(255, 255, 255, 0.6); */
  background: transparent;
  border-radius: 5px;
  /*   background-image: linear-gradient(#ef3f72, #ef3f72); */
  background-image: none;
  background-size: 50% 100%;
  background-repeat: no-repeat;
  border: none;
}

/* Input Thumb */
.splitter-range-container input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 50px;
  width: 20px;
  border-radius: 50%;
  background: transparent;
  cursor: ew-resize;
  box-shadow: none;
  transition: background 0.3s ease-in-out;
  outline: none;
}

.splitter-range-container input[type='range']::-moz-range-thumb {
  -webkit-appearance: none;
  height: 50px;
  width: 20px;
  border-radius: 50%;
  background: transparent;
  cursor: ew-resize;
  box-shadow: none;
  transition: background 0.3s ease-in-out;
}

.splitter-range-container input[type='range']::-ms-thumb {
  -webkit-appearance: none;
  height: 50px;
  width: 20px;
  border-radius: 50%;
  background: transparent;
  cursor: ew-resize;
  box-shadow: none;
  transition: background 0.3s ease-in-out;
}

.splitter-range-container input[type='range']::-webkit-slider-thumb:hover {
  background: transparent;
}

.splitter-range-container input[type='range']::-moz-range-thumb:hover {
  background: transparent;
}

.splitter-range-container input[type='range']::-ms-thumb:hover {
  background: transparent;
}

/* Input Track */
.splitter-range-container input[type='range']::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.splitter-range-container input[type='range']::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.splitter-range-container input[type='range']::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.tryon-live-controls {
  margin: 10px auto 0;
}
.tryon-live-controls ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tryon-live-controls ul li {
  margin: 0 5px;
  cursor: pointer;
}
.tryon-live-controls ul li img {
  max-width: 40px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
}
.masks-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.masks-container ul li.active span.mask-name {
  color: #c95d5d;
}

.mask-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.mask-item img {
  width: 100px;
  max-width: 100%;
}
.mask-specs {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 10px 0;
  width: 100%;
}
span.mask-color {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 50%;
}

/* Rightside Styles */
.rightside {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 325px;
  padding: 0;
  height: 100%;
  max-height: 715px;
  overflow: hidden;
  overflow-y: scroll;
}
.rightside ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
  width: 100%;
}
.rightside ul li {
  display: block;
  width: 100%;
  text-align: center;
  border-bottom: 5px solid #c95d5d;
  padding: 0;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  cursor: pointer;
}
.rightside ul li:last-child {
  border-bottom: 0;
  margin-bottom: 15px;
}

.rightside::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.rightside::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.rightside::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.rightside::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.mask-img {
  background-color: #000;
  background-color: #000;
  width: 100%;
  padding: 10px 0 5px;
}

/* upload photo  */
.file-upload {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 200px;
  margin: 10px auto;
}
.file-upload label {
  width: 100%;
  margin: 0;
  color: #fff;
  background: #c95d5d;
  border: none;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.file-upload label:hover {
  background: linear-gradient(160deg, #f8486e, #feac47) !important;
  color: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.file-upload label:active {
  border: 0;
  transition: all 0.2s ease;
}
.file-upload input {
  visibility: hidden;
}

/* Choose a model styles */
.select-model {
  margin: 0 15px;
}
.select-model ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.select-model ul li {
  width: 100px !important;
}
.select-model ul li:hover {
  background: none !important;
}
.select-model ul li img {
  width: 100%;
  cursor: pointer;
  margin-bottom: 10px;
}
.light-detection {
  justify-content: center;
  align-items: center;
  margin: 15px auto;
}
.light-detection img {
  margin-right: 10px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 10px 30px;
  position: fixed;
  bottom: 0;
  top: auto;
  left: 0;
  width: 100%;
}
footer .logo a {
  display: block;
}
footer .logo a img {
  max-width: 150px;
} 
.copyright {
  color: #fff;
}
