@keyframes spin {
  /* 0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  } */
}
.abs {
  position: absolute;
}

a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: lightblue;
}

/* body {
  bottom: 0;
  font-family: "Titillium Web", sans-serif;
  color: white;
  left: 0;
  margin: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform-origin: 0px 0px;
  overflow: hidden;
} */

.container {
  position: absolute;
  /* background-color: #596e73; */
  background: url(static/images/body-bg.png)no-repeat scroll 0 0 / 100% 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
}

.input_video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.input_video.selfie {
  transform: scale(-1, 1);
}

.input_image {
  position: absolute;
}

.canvas-container {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.output_canvas {
  display: block;
  position: relative;
  left: 0;
  top: 0;
}

.logo {
  bottom: 10px;
  right: 20px;
}
.logo .title {
  color: white;
  font-size: 28px;
}
.logo .subtitle {
  position: relative;
  color: white;
  font-size: 10px;
  left: -30px;
  top: 20px;
}

/* .mesh_btn {
  position: absolute;
  left: 90px;
  bottom: 25px;
  border: none;
  background: none;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: #FFFFFF;
  text-align: center;
  background: linear-gradient(90deg, #00C9C9 0%, #5A85E0 100%);
  box-shadow: 0px 7px 16px rgba(0, 109, 170, 0.48);
  border-radius: 32px;
  padding: 12px 40px;
  cursor: pointer;
  z-index: 999;
}
.mesh_btn:hover {
  background-color: #00C9C9;
  color: #ffffff;
}
.mesh_active{
  background-color: #00c9c9;
  color: white;
  border:5px solid #00c9c9;
}
.mesh_active:hover {
  background-color: white;
  color: #ffffff;
} */
.mesh_btn.mesh_active{  
  /* background-image: linear-gradient(to right, #ffffff , #00bbbb) !important; */
  background: linear-gradient(90deg, #00C9C9 0%, #5A85E0 100%) !important;
}

.mesh_btn{
  position: absolute;
  left: 90px;
  bottom: 25px;
  border: none;
  background: none;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0px 7px 16px rgba(0, 109, 170, 0.48);
  border-radius: 32px;
  padding: 12px 40px;
  cursor: pointer;
  z-index: 999;
  /* background-image: linear-gradient(to right, #ffffff, #ff4e97) !important; */
  background: linear-gradient(90deg, #00C9C9 0%, #5A85E0 100%) !important;
}
.popup {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  padding: 20px 18px;
  visibility: hidden;
  background-color: #00000033;
  text-align: center;
  transition: transform 0.4s, top 0.4s;
  transition: 0.5s ease all;
}
.open-popup{
  visibility: visible;
  top:50%;
  transform: translate(-50%, -50%) scale(1);
}
.popup button{
  width: 100%;
  padding: 6px 0px;
  background-color: #00C9C9;
  color: #fff;
  border: 0;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  border:2px solid #00C9C9;
}
.popup button:hover {
  border:2px solid #00C9C9;;
  outline: #00C9C9;
  background-color: #fff;
  color: #00C9C9;
}
.loading {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  backface-visibility: hidden;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s;
}
.loading .message {
  font-size: x-large;
}
.loading .spinner {
  position: absolute;
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
  border: 32px solid #bebebe;
  border-top: 32px solid #00c9c9;
  border-radius: 50%;
}

.loaded .loading {
  opacity: 0;
}

.shoutout {
  left: 0;
  right: 0;
  bottom: 40px;
  text-align: center;
  font-size: 24px;
  position: absolute;
}

.image_box{
  margin-top: 12px;
  text-align: center;
}

.face-image{
  height: 115px;
  width: 115px;
  object-fit: contain;
  border-radius: 100%;
}

.close_btn{
  width: 100%;
  padding: 3px 0px;
  background-color: #00C9C9;
  color: #fff;
  border: 0;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  border:2px solid #00C9C9;
  margin-top: 5px;
}
.start-btn{
  background-color: #00C9C9;
  background: linear-gradient(93.42deg, #FFA48F 1.13%, #FF4793 21.03%, #A65CE0 47.95%, #5986E0 74.93%, #00C9C9 100%), #00C9C9;
  color: #fff !important;
  outline: none;
  border-radius: 4px;
  box-shadow: 5px 5px 5px rgb(0 0 0 / 30%);
  border: 0px solid #0000;
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: 30%;
  width: 150px;
  padding: 10px 0px;
  transition: 0.5s ease all;
  animation-name: animation;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  display: none;
  z-index: 99999;
}

@keyframes animation {
  0%   {bottom: 30%;}
  25%  {bottom: 32%;}
  50%  {bottom: 30%;}
  75%  {bottom: 32%;}
  100% {bottom: 30%;}
}

.start-btn:hover{
  background: linear-gradient(93.42deg, #00C9C9 1.13%, #00C9C9 21.03%, #5986E0 47.95%, #A65CE0 74.93%, #FF4793 100%), #FFA48F;
}

.time-count{
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: 45%;
  display: flex;
  width: 100%;
  justify-content: center;
  opacity: 0;
}

.time-count li{
  margin-right: 40px;
  font-weight: bold;
  font-size: 50px;
  color: #ffffff;
}

.time-count li:last-child{
  margin-right: 0px;
}










#main-body-area {
  background: url(../images/body-bg.png)no-repeat scroll 0 0 / 100% 100%;
}

.logo {
  padding-top: 22px;
  text-align: center;
}

.logo img {
  width: 146px;
  height: 56px;
}

.input-item-slider {
  border: 1px dashed #FFFFFF;
  border-radius: 8px;
  width: 325px !important;
}

.minimuz-button {
  text-align: right;
  margin-bottom: 12px;
}

.minimuz-button img {
  cursor: pointer;
}

.main-slider-area {}

.slider-heading {}

.slider-heading h3 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  background: linear-gradient(93.42deg, #FFA48F 1.13%, #FF4793 21.03%, #A65CE0 47.95%, #5986E0 74.93%, #00C9C9 100%), #00C9C9;
  border-radius: 8px;
  padding: 10px 16px;
  border: 0px !important;
  width: 100%;
}

.slider-area {
  padding-top: 12px;
}

.slider-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.slider-item img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
}

.righ-arrow {
  text-align: center;
  margin-top: 16px;
}

.main-selfi-mode-area {
  border: 1px dashed #FFFFFF;
  border-radius: 8px;
  margin: 12px 0px;
}

.main-counting-area {}

.flexBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counting-number {
  flex-basis: 10%;
}

.counting-number p {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 8px;
  line-height: 12px;
  color: #171B26;
  margin-bottom: 12px;
}

.counting-area {
  flex-basis: 90%;
  background: #171B26;
  border-radius: 8px;
  padding-top: 19px;
  text-align: center;
}

.counting-area h1 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  border-top: 1px dashed #828CA5;
  border-bottom: 1px dashed #828CA5;
}

.input-details-area > .control-panel{
  border: 1px dashed #FFFFFF;
  border-radius: 8px;
  margin: 12px 0px;
  position: absolute;
  left: 20px;
  top: 250px;
  width: 325px;
}

.file-selection{
  display: none !important;
}

.source-selection .dropdown{
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border-radius: 40px;
  padding: 4px 20px;
  cursor: pointer;
  width: 100%;
}

.source-selection .dropdown-trigger{
  border: 0px !important;
  width: 100%;
}

.source-selection .arrow{
  height: 8px !important;
}

.source-selection .arrow::before{
  left: 0px;
}

.source-selection .arrow::before, 
.source-selection .arrow::after{
  background-color: #09c1cc;
}

.source-selection{
  background: #0000 !important;
}

.control-panel-fps .canvas {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 19px;
}

.control-panel-entry canvas{
  height: 100px !important;
  width: 88%;
  margin-right: -40px;
}

.fps-30,
.fps-60{
  color: #000 !important;
}

.control-panel-entry{
  width: 100% !important;
  background-color: unset;
  border: unset;
  border-radius: unset;
  box-shadow: unset;
  opacity: unset;
  padding: unset;
}

.control-panel-entry.control-panel-fps{
  display: none !important;
}

.control-panel-entry.control-panel-toggle{
  height: 20px;
  width: 75px !important;
  padding: 18px 5px;
  border-radius: 25px;
  float: right;
}

.control-panel-entry.control-panel-toggle.yes{
  background: linear-gradient(93.42deg, #FF4793 1.13%, #FF4793 21.03%, #A65CE0 47.95%, #5986E0 64.93%, #00C9C9 100%), #00C9C9;
  /* background-image: linear-gradient(to right, #FF4793, white, #00C9C9); */
}

.control-panel-entry.control-panel-toggle.no{
  background: linear-gradient(93.42deg, #FF4793 1.13%, #FF4793 21.03%, #A65CE0 47.95%, #5986E0 64.93%, #00C9C9 100%), #00C9C9;
  /* background-image: linear-gradient(to right, #FF4793, white, #00C9C9); */
}

.control-panel-toggle.yes > .value{
  background-color: #ffffff !important;
  color: #ffffff !important;
}

.control-panel-toggle.no .value{
  background: #ffffff;
  color: #ffffff !important;
  margin-right: 16px;
}

/* .control-panel-toggle.yes,
.control-panel-toggle.no{
  background-color: #0000 !important;
} */

.control-panel-toggle .value{
  padding: 2px 5px;
  border-radius: 25px;
  color: #000 !important;
}

.control-panel-toggle.yes .value{
  background: #00c911;
  margin-right: -20px;
}

.control-panel-toggle > span{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #171B26 !important;
  margin-left: -145px;
}

.control-panel-toggle .label::after{
  content: url(static/images/camera.svg);
  position: absolute;    
  left: -45px;
  top: -9px;
}

.fps-text {
  background: linear-gradient(214.09deg, #00C9C9 18.99%, #5986E0 78.63%);
  border-radius: 2px 2px 0px 0px;
}

.fps-30 {
  height: 11px;
  width: 17px;
}

.fps-60 {
  height: 10px;
  width: 17px;
}

.item-3 {
  height: 15px;
  width: 17px;
}

.item-4 {
  height: 11px;
  width: 17px;
}

.item-5 {
  height: 14px;
  width: 17px;
}

.item-6 {
  height: 14px;
  width: 17px;
}

.item-7 {
  height: 14px;
  width: 17px;
}

.item-8 {
  height: 14px;
  width: 17px;
}

.item-9 {
  height: 7px;
  width: 17px;
}

.item-10 {
  height: 7px;
  width: 17px;
}

.control-panel-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0px;
}

.selfie-mode {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.selfie-mode img {}

.selfie-mode p {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #171B26;
  margin-left: 10px;
}

.toggle-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.swiper-button-next,
.swiper-button-prev {
    top: 5%;
    z-index: 10 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: transparent;
}

.swiper-button-prev {
    left: auto;
    margin-right: 60px;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background: linear-gradient(100.82deg, #FFA48F 1.32%, #FF4793 21.18%, #A65CE0 48.04%, #5986E0 74.97%, #00C9C9 100%);
}

input:focus + .slider {
  background: linear-gradient(100.82deg, #FFA48F 1.32%, #FF4793 21.18%, #A65CE0 48.04%, #5986E0 74.97%, #00C9C9 100%);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.camera-driect-upload {}

.camera-driect-upload button {
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border-radius: 40px;
  padding: 8px 20px;
  cursor: pointer;
  width: 100%;
}

.camera-driect-upload button p {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #171B26;
}

.camera-driect-upload img {}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.output-area-star {}

.output-main-img-area {}

.output-img {
   position: absolute;
background-color: #596e73;
max-height: 100%;

}

.output-img img {
  width: 120%;
  margin: 0 auto;
  height: 760px;
  padding-top: 0px;
  margin-top: 127px;
  margin-left: -150px;
}

.face-mackup {}

.face-mackup img {}

.down-right-arrow {
  position: absolute;
  top: 847px !important;
  left: 55%;
}

.down-right-arrow img {
  height: 36px;
  width: 92px;
  cursor: pointer;
}

.toggle-mesh-button {
  text-align: center;
  /* margin: 78px 0px 70px; */
  margin-top: 12px;
}

.toggle-mesh-button button {
  border: none;
  background: none;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: #FFFFFF;
  text-align: center;
  background: linear-gradient(90deg, #00C9C9 0%, #5A85E0 100%);
  box-shadow: 0px 7px 16px rgba(0, 109, 170, 0.48);
  border-radius: 32px;
  padding: 12px 40px;
}

.directions-area {
  background: #171B26;
  border-radius: 8px;
  padding: 16px;
  position: absolute;
  width: 27%;
  right: 4%;
  

}

.minimuz-two {
  height: 21px;
  width: 21px;
  display: inline-block;


}

.directions-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.directions-heading h2 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #00C9C9;
  display: inline-block;
}

.directions-heading img {}

.direction-item {}

.direction-item ul {
  list-style: disc;
  padding-left: 16px;
}

.arrow-up {
  position: absolute;
  right: 9%;
  top: 408px;
}

.arrow-up img {
  height: 50px;
  width: 36px;
  cursor: pointer;
}

.mobile-btn {
  display: none;
}

.loading {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  backface-visibility: hidden;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s;
}
.loading .message {
  font-size: x-large;
}
.loading .spinner {
  position: absolute;
  width: 180px;
  height: 180px;
  animation: spin 1s linear infinite;
  border: 32px solid #bebebe;
  border-top: 32px solid #00c9c9;
  border-radius: 50%;
}

.loaded .loading {
  opacity: 0;
}

.shoutout {
  left: 0;
  right: 0;
  bottom: 40px;
  text-align: center;
  font-size: 24px;
  position: absolute;
}

.input_video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.input_video.selfie {
  transform: scale(-1, 1);
}

.input_image {
  position: absolute;
}

.canvas-container {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.output_canvas {
  display: block;
  position: relative;
  left: 0;
  top: 0;
}
.control-panel-fps canvas{
  background-color: unset !important;
}