/* Font Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;400;700;900&display=swap');
/* Font Monstesrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;1,100&display=swap');
/* Font Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;700&display=swap');
/* Font Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;500;600;700&display=swap');
/* Font Playfair */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');
/* Font Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;500;700&display=swap');
/* Font Bell */
@import url('https://fonts.googleapis.com/css2?family=Bellefair&display=swap');

:root {
  --p-green: #2AB57D;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;  
  white-space: normal !important;
}
/* Font lucia grande */
@font-face {
  src: url('../assets/fonts/lucidagrande.ttf');
  font-family: "lucia-grande";      
}
@font-face {
  src: url('../assets/fonts/Cartoonish.ttf');
  font-family: "cartoonish";  
}
@font-face {
  src: url('../assets/fonts/LetterGothicStd.otf');
  font-family: "LetterGothicStd";  
}
@font-face {
  src: url('../assets/fonts/GardenGrownUS-B.otf');
  font-family: "GardenGrownUS-B";  
}
@font-face {
  src: url('../assets/fonts/Custom/bodoni-mt/BOD_R.TTF');
  font-family: "Bodoni";  
}
@font-face {
  src: url('../assets/fonts/Nature\ Beauty.ttf');
  font-family: "Nature Beauty";  
}
@font-face {
  src: url('../assets/fonts/Margalida\ Font.ttf');
  font-family: "Margalida";  
}
@font-face {
  src: url('../assets/fonts/Cellest\ \(demo\).ttf');
  font-family: "Cellest";  
}
@font-face {
  src: url('../assets/fonts/AestheticGelatinate.ttf');
  font-family: "Aesthetic";  
}
@font-face {
  src: url('../assets/fonts/Best\ Signature\ Font\ -\ Reguler.otf');
  font-family: "Best Sign";  
}

body {
  font-family: 'Lato', sans-serif;
  color: #404040;
  scroll-behavior: smooth;
  /* word-break: break-word; */
  touch-action: pan-y pinch-zoom;
}

a {
  text-decoration: none;
  color: inherit;
}

.bxsh:focus {
  outline: none;
  box-shadow: 0 0 3px var(--p-green);  
  border-color: var(--p-green);
}

[contenteditable]:focus, select:focus{
  outline: none;
  box-shadow: 0 0 3px var(--p-green);  
  border-radius: 2px;
}

.lg-ph::-webkit-input-placeholder {
  font-family: "lucia-grande";    
  opacity: 0.5;
}

.lg-ph::-moz-placeholder {
  font-family: "lucia-grande";    
  opacity: 0.5;
}

.lg-ph:-ms-input-placeholder {
  font-family: "lucia-grande";    
  opacity: 0.5;
}

.lg-ph::-ms-input-placeholder {
  font-family: "lucia-grande";    
  opacity: 0.5;
}

.lg-ph::placeholder {
  font-family: "lucia-grande";    
  opacity: 0.5;
}

.cl-1 {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;  
}

.cc-1:checked + label{
  background-color: #e0f3f7;
}

@media only screen and (max-width: 546px) {   

}

/* Navs */
.nav-lists {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;  
}
.nav-list {
  margin-left: 54px;
  margin-right: 54px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-list:hover {
  -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.nav-list a:hover {  
  color: var(--p-green);
}
.nav-link {
  color: #24253D;
  font-weight: 700;
  font-size: 26px;
}
.nav-link__btn {
  padding-left: 46px;
  padding-right: 46px;
  padding-top: 13px;
  padding-bottom: 13px;
  background-color: var(--p-green);
  color: #FFFFFF;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-link__btn:hover {  
  color: #FFFFFF;
  -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
      transform: scale(1.1);
}

.icon-input:checked + label {
  border: 1px solid var(--p-green);
  background-color: #E0F3F7;
}
.icon-input + label {
  border: 1px solid #d5d5d5;  
}
.icon-parent {
  height: 300px;
  overflow-y: auto;
  align-content:baseline;
  overflow-x: hidden;
}

@media only screen and (max-width: 1476px) {  
  .nav-link {
    font-size: 16px;
  }
  .nav-list {
    margin-left: 32px;
    margin-right: 32px;
  }
}

.burger {
  display: none;
  cursor: pointer;
  margin-right: 8px;
  margin-left: 8px;
  z-index: 1111;
}


@media only screen and (max-width: 992px) {  
  .burger {
    display: block;
  }  
  .nav-container {       
    position: absolute;      
    background-color: var(--p-green);
    top: 0;
    right: 0;
    width: 80vw;
    height: 100vh; 
    border-radius: 16px 0 0 16px;
    z-index: 9;
  }
  
  .nav-container.hidden {      
    display: none;
  }
  .nav-lists {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;    
  }
  .nav-list {
    margin-bottom: 48px;    
  }
  .nav-link {
    color: #FFFFFF;
    font-size: 28px;
  }
  .nav-link:hover {
    color: #FFFFFF !important;    
  }
  .nav-lists * {
    z-index: 1000;
  }

}

/* Navs end */

.slidernav-container {  
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 24px;
  margin-right: 24px;
  margin-top: 30px;
}
.c-select .select2-container .select2-selection--single{
  height: 36px;
}
.c-select .select2-container .select2-selection--single:focus{
  border-color: var(--p-green);
  box-shadow: 0 0 3px var(--p-green);
}
.c-select .select2-container--default .select2-selection--single .select2-selection__arrow{
  top: 5px;
}
.c-select .select2-container--default .select2-selection--single .select2-selection__rendered{
  padding-top: 3px;
  font-size: 14px;
}
.ar-1 {
  aspect-ratio: 1/1;
}
.ar-9 {
  aspect-ratio: 16/9;
}
.quantity-btn {
  background-color: #ef50654b;
  color: #EF5064;
  height: max-content;
}
.divider {
  background-repeat: repeat-x;
  background-position-y: center;
  height: 100%;
  width: 100%;
  height: 36px;
}
.fs {
  flex-shrink: 0;
}
.resprev {
  display: none;
}
.starinput:checked + label svg {
  fill: #ffc107;
}
.starinput + label svg {
  fill: gray;
}
.tnb {
  outline: 2px solid var(--p-green);
  border: none !important;
  box-shadow: 0 2px 4px rgba(42, 181, 125, 0.5);
}
.bbdd {
  background-color: gray;
  opacity: 0.5;
  pointer-events: none;
}
.bbdd.tnb {
  border: 1px solid #70707066;
  outline: none;
  box-shadow: none;
}
.ulis ul, .ulis ol{
  list-style-position: inside;
}
.fg-1{
  flex-grow: 1;
}
.scale-container {
  height: 199px;
  position: relative;
}
.scalec {
  transform: scale(0.63) translateX(-80%);
  position: absolute;
  height: 0;
  left: 50%;
}
.ar-1 {
  aspect-ratio: 1/1;
}
.ar-9 {
  aspect-ratio: 16/9;
}
.quantity-btn {
  background-color: #ef50654b;
  color: #EF5064;
  height: max-content;
}
.divider {
  background-repeat: repeat-x;
  background-position-y: center;
  height: 100%;
  width: 100%;
  height: 36px;
}
.fs {
  flex-shrink: 0;
}
.resprev {
  display: none;
}
.starinput:checked + label svg {
  fill: #ffc107;
}
.starinput + label svg {
  fill: gray;
}
.bbdd {
  background-color: gray;
  opacity: 0.5;
  pointer-events: none;
}
.ulis ul, .ulis ol{
  list-style-position: inside;
}
.fg-1{
  flex-grow: 1;
}
.blur-bg {
  background-image: url("/static/assets/imgs/bgs/blur-2.svg"),url("/static/assets/imgs/bgs/blur-1.svg");
  background-repeat: repeat, repeat;
  background-position: top right, bottom left;
}
.otps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.otps.otp_error input{
  border: 1px solid #EF5064;
}
.otps input{
  border: 1px solid #d9d9d9;
  width: 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 600;
  color: #404040;
}
button:disabled, [data-input-disabled]:disabled {
  pointer-events: none;
  opacity: 0.6;
}
.blur-1 {
  backdrop-filter: blur(8px);
}
/* Grid */
.row {
  gap: 1rem;  
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
}
.row [data-col] {
  -ms-grid-column: span 12;
      grid-column: span 12;
}
.col-4 {
  -ms-grid-column: span 4;
      grid-column: span 4;
}
.col-3 {
  -ms-grid-column: span 3;
      grid-column: span 3;
}
.col-6 {
  -ms-grid-column: span 6;
      grid-column: span 6;
}
.col-8 {
  -ms-grid-column: span 8;
      grid-column: span 8;
}
.col-9 {
  -ms-grid-column: span 9;
      grid-column: span 9;
}
.col-12 {
  -ms-grid-column: span 12;
      grid-column: span 12;
}
.col-xs-6 {
  -ms-grid-column: span 6;
      grid-column: span 6;
}
.col-xs-8 {
  -ms-grid-column: span 8;
      grid-column: span 8;
}
.col-xs-4 {
  -ms-grid-column: span 4;
      grid-column: span 4;
}
.col-xs-7 {
  -ms-grid-column: span 7;
      grid-column: span 7;
}
.col-xs-5 {
  -ms-grid-column: span 5;
      grid-column: span 5;
}
.col-xs-4 {
  -ms-grid-column: span 4;
      grid-column: span 4
}
.col-sm-4 {
  -ms-grid-column: span 4;
      grid-column: span 4
}
.col-md-6 {
  -ms-grid-column: span 6;
      grid-column: span 6;
}

@media only screen and (max-width: 992px) {  
  .col-xs-6, .col-xs-5, .col-xs-7, .col-xs-8, .col-xs-4 {
    -ms-grid-column: span 12;
        grid-column: span 12
  }  
  .slidernav-container {
    flex-direction: column;  
  }
}
@media only screen and (max-width: 546px) {  
  .col-sm-4 {
    -ms-grid-column: span 12;
        grid-column: span 12
  }  
  .payment-method__container {    
    grid-template-columns: 1fr 1fr;    
  }
}
@media only screen and (max-width: 670px) {  
  .col-md-6 {
    -ms-grid-column: span 12;
        grid-column: span 12
  }  
  .jcsbmd {
    justify-content: space-between !important;
  }
  .resprev {
    display: block;
  }
  #previewCon {
    display: none;
  }
}

/* Grid end */

/* Customs */
.wpa {                      
  overflow-wrap: all;  
  word-break: break-all; 
}
.wp {                      
  overflow-wrap: all;  
  word-break: break-word; 
}
.cs-1 {
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
          box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.cs-2 {
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
          box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.bgic-1 {
  background-image: url('../assets/imgs/Group\ 4.webp');
  background-repeat: no-repeat;
  background-position: bottom right -200px;
  background-size: 350px 300px;  
}
.bgic-2 {
  background-image: url('../assets/imgs/Group\ 4.svg');
  background-repeat: no-repeat;
  background-position: bottom left -210px;
  background-size: 350px 400px;
}
.bgic-3 {
  background-image: url('../assets/imgs/Group\ 4.svg');
  background-repeat: no-repeat;
  background-position: center right -230px;
  background-size: 350px 400px;
}
.bgic-4 {
  background-image: url('../assets/imgs/Group\ 4.svg');
  background-repeat: no-repeat;
  background-position: center left -220px;
  background-size: 350px 400px;
}
@media only screen and (max-width: 763px) {    
  .bgic-2 {
    background-position: bottom left -275px;
    background-size: 349px 327px;
  }
  .bgic-3 {
    background-position: bottom right -275px;
    background-size: 349px 327px;
  }
  .bgic-4 {
    background-position: bottom left -275px;
    background-size: 349px 327px;
  }
  table.table-responsive {
    width: 900px;
  }  
}
.ccb-1 {
  background-color: #707070;
  border-radius: 26px;
  fill: yellow;
  opacity: 0.5;
  position: relative;
}
.ccb-1::before {
  position: absolute;
  height: 68%;
  width: 38%;
  border-radius: 50%;
  background-color: #FFFFFF;
  top: 17%;
  left: 11%;
  content: '';
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; 
}

.ccb-input:checked + .ccb-1::before {      
  -webkit-transform: translateX(100%);      
          -ms-transform: translateX(100%);      
      transform: translateX(100%);
}
.ccb-input:checked + .ccb-1 {      
  background-color: var(--p-green);
  opacity: 1;
}

.pt tbody tr td {
  padding: 6px 8px;  
  background-color: #FCFCFC;
  border-top: 1px solid #D5E3D6;
  border-bottom: 1px solid #D5E3D6;  
  color: #000000;  
  overflow: hidden;
}
.pt tbody tr td:first-child{
  border-left: 1px solid #D5E3D6;
  text-align: left;
}
.pt tbody tr td:last-child{
  border-right: 1px solid #D5E3D6;
}

.pt tbody tr.spacer td{
  border: none;
  padding: 2px;
}

.cselect, .fav {
  position: relative;
  z-index: 1;
}
.cselect::before,.cselect::after, .fav::after, .fav::before  {
  content: " ";
  position: absolute;  
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;  
  background: -o-linear-gradient(60deg, #fb0094, #00f, #0f0, #ff0, #f00, #fb0094, #00f, #0f0, #ff0, #f00);  
  background: linear-gradient(30deg, #fb0094, #00f, #0f0, #ff0, #f00, #fb0094, #00f, #0f0, #ff0, #f00);
  border-radius: 8px;
  z-index: -111;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  background-size: 300%;
  /* -webkit-animation: bg 20s linear infinite;
          animation: bg 20s linear infinite;   */
}

.fav::after, .fav::before {
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;  
  /* -webkit-animation: none;
  animation: none;   */
}

.cselect:hover::before,
.cselect:hover::after,
.tcard input:checked + .cselect::before,
.tcard input:checked + .cselect::after, .fav::before, .fav::after {
  opacity: 1;
}
.cselect.custom-font:hover::before,
.cselect.custom-font:hover::after,
.tcard input:checked + .cselect.custom-font::before,
.tcard input:checked + .cselect.custom-font::after {
  opacity: 0.3;
}

@-webkit-keyframes bg
{
  0%
  {
    background-position: 0 0;
  }
  50%
  {
    background-position: 300% 0;
  }
  100%
  {
    background-position: 0 0;
  }
}

@keyframes bg
{
  0%
  {
    background-position: 0 0;
  }
  50%
  {
    background-position: 300% 0;
  }
  100%
  {
    background-position: 0 0;
  }
}



.cbt::before {
  position: absolute;
  content: 'What We Are';
  font-size: 136px;
  top: -70%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 100%;
  opacity: 0.03;
}

.cub::before {
  position: absolute;
  content: '';    
  left: 50%;
  -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  bottom: 20%;
  width: 95%;
  height: 20%;
  background-color: #CAD7DD;
  opacity: 0.3;
  z-index: -1;  
}
.fi {
  -ms-grid-column-align: end;
      justify-self: end;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      -webkit-align-self: center;
          align-self: center;
}

@media only screen and (max-width: 992px) {  
  .fi {
    -ms-grid-column-align: start;
        justify-self: start;
    -ms-flex-item-align: initial;
        -ms-grid-row-align: initial;
        -webkit-align-self: initial;
            align-self: initial;
  }
  .cbt::before{
    font-size: 50px;
    top: -30%;
  }
}
@media only screen and (max-width: 1476px) {  
  .cbt::before{
    font-size: 90px;
    top: -30%;
  }
}
@media only screen and (max-width: 546px) {  
  .cbt::before{
    font-size: 45px;
    top: -30%;
  }
}

/* Customs end */


/* Themes start */
/* withCardBackGround */
.cbg {
  background-size: 100% 100%;
  background-repeat: no-repeat;  
}

.cp-frame-container {  
  width: 100%;
  max-width: 240px;
  height: 380px;
  margin: 0 auto;    
}
.preview-lynk.cp-frame-container {    
  max-width: 273px;  
  height: 500px;
}
.cp-frame {
  position: relative;
  width: 100%;
  height: 100%;  
  z-index: 1;
  border: 11px solid #212121;
  border-radius: 24px;  
  overflow: hidden;
}
.preview-lynk .cp-frame {  
  border: 13px solid #212121;
  border-radius: 32px;    
}
.videoBox {
  margin: auto !important;
  width: 90% !important;
}

.cp-frame::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 20px;
  content: '';
  display: inline-block;
  background-color: #272727;
  z-index: 2;
  border-radius: 0 0 12px 12px;
}


.theme-bg::after {
  content:"";
  position:fixed; /* stretch a fixed position to the whole screen */
  /* height:100vh; fix for mobile browser address bar appearing disappearing       */
  right:0;
  top:0;
  left: 0;
  bottom: 0;
  width: inherit;
  max-width: inherit;  
  z-index:-3; /* needed to keep in the background */
  /* left: 50%; */
  /* transform: translateX(-50%);   */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.frame.theme-bg {
  overflow-y: scroll;  
  height: 100%;
  scrollbar-color: #0e2b1f49;
  scrollbar-width: thin;
}

.frame.theme-bg::-webkit-scrollbar {
  width: 3px;
}
/* Track */
.frame.theme-bg::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #0e2b1f49; 
  border-radius: 2px;
}
 
/* Handle */
.frame.theme-bg::-webkit-scrollbar-thumb {
  background: #0e2b1f49 ; 
  border-radius: 10px;
}

.ss-icons {
  width: 26px; 
  height: 26px;
  margin: .5em;       
}

.frame.theme-bg::after {      
  width: 100%;  
  height: 100%;
  position: sticky;  
  top: 0;  
  left: 0;
  transform: translateX(0%);  
  content: '';
  display: block;
  z-index: -3;
}

.frame .cst {
  padding: 8px !important ;
}

.white .name, .white .user-info {
  color: #FFFFFF;
}
.grinch .user-info, .user-info,.aone .user-info  {
  color: #404040 ;
}

.rp .cwot, .rp .cwt, .rp .cst {
  padding: 8px;
}
.md .cwot, .md .cwt, .md .cst {
  padding: 8px;
}
.rp .grid-layout .cwot,
.rp .grid-layout .cwt,
.rp .grid-layout .cst,
.rp .image-layout .cwot,
.rp .image-layout .cwt,
.rp .image-layout .cst {
  padding: 0 !important;
}
.md .grid-layout .cwot,
.md .grid-layout .cwt,
.md .grid-layout .cst,
.md .image-layout .cwot,
.md .image-layout .cwt,
.md .image-layout .cst {
  padding: 0 !important;
}

.price {
  background-color: #D45357;
  width: 60px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 4px;
}
.price-c2 .price {
  background-color: #FF7272;  
}
.price-c3 .price {
  background: transparent -o-linear-gradient(top, #FF4593 0%, #E73784 90%, #E43683 100%) 0% 0% no-repeat padding-box;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#FF4593), color-stop(90%, #E73784), to(#E43683)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #FF4593 0%, #E73784 90%, #E43683 100%) 0% 0% no-repeat padding-box;
}
.price-c4 .price {
  background-color: #1C5389;  
  border: 1px solid #C39B1A;
}

.doodle  {
  background-image: url('../assets/imgs/themes_bg/theme_doodle.jpg');
  background-color: #FFFFFF;  
  background-position: center right;
}

.doodle p {
  font-family: "LetterGothicStd";  
}

.doodle .cwot, .doodle .cwt, .doodle .cst, .tmm .cwot, .tmm .cwt, .tmm .cst  {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 36px;
  padding-right: 36px;
}
.doodle .price, .tmm .price {
  position: absolute;
  top: 0;
  right: 0;
}
.doodle .cbg, .tmm .cbg{
  background-image: url('../assets/imgs/themes_bg/doodle.png');  
  background-position: center center;    
}

.tropics::after {
  background-image: url('../assets/imgs/themes_bg/theme_funky.svg');    
}
.tropics .cwot, .tropics .cwt, .tropics .cst {
  background-color: #00FFB4;
  border-top: 3px solid #7147E3;
  border-right: 3px solid #7147E3;
}
.funky::after {
  background-image: url('../assets/imgs/themes_bg/theme_funky_2.svg');  
  
}
.funky .cwot, .funky .cwt, .funky .cst {
  background-color: #FFFFFF;
  border-top: 3px solid #7147E3;
  border-right: 3px solid #7147E3;
}
.grinch::after {
  background-image: url('../assets/imgs/themes_bg/theme_grinch.svg');    
  
}
.grinch .cwot, .grinch .cwt, .grinch .cst {
  background-color: #FFFFFF;
  border-top: 3px solid #7147E3;
  border-right: 3px solid #7147E3;
}
.floral::after {
  background-image: url('../assets/imgs/themes_bg/theme_floral.jpg');  
}
.floral p{
  font-family: "cartoonish";
}
.floral .cwot, .floral .cwt, .floral .cst {
  background-color: #FFFFFF;
  border-bottom: 6px solid #7CA9B4;
  border-right: 6px solid #7CA9B4;
}
.marbles::after {
  background-image: url('../assets/imgs/themes_bg/theme_marbles.jpg');    
}
.marbles p{
  font-family: "GardenGrownUS-B";
}
.marbles .cwot, .marbles .cwt, .marbles .cst, .ljen .cwot, .ljen .cwt, .ljen .cst {
  background-image: url('../assets/imgs/themes_bg/marble.png');    
  background-color: #E2CBBB;
}
.wcolor::after {
  background-image: url('../assets/imgs/themes_bg/theme_watercolor.jpg');  

}
.wcolor p{
  font-family: "cartoonish";
}
.wcolor .cwot, .wcolor .cwt, .wcolor .cst {
  border: 2px solid #000705; 
  background-color: #E8E1DE;
}
.wall::after {
  background-image: url('../assets/imgs/themes_bg/theme_wall.jpg');  
}
.wall .cwot, .wall .cwt, .wall .cst, .cityV .cwot, .cityV .cwt, .cityV .cst{
  border: 2px solid #9D9D9D; 
  background-color: #FFFFFF;
  border-bottom: 6px solid #9D9D9D;
}
.pastel::after {
  background-image: url('../assets/imgs/themes_bg/theme_pastel.jpg');  
}
.pastel p{
  font-family: "GardenGrownUS-B";
}
.pastel .cwot, .pastel .cwt, .pastel .cst {
  background-image: url('../assets/imgs/themes_bg/pastel.jpg');  
  background-color: #FBF2ED;
}
.cold::after {
  background-image: url('../assets/imgs/themes_bg/theme_cold.jpg');  
}
.cold .cwot, .cold .cwt, .cold .cst {
  background-image: url('../assets/imgs/themes_bg/cold.png');  
}
.class::after {
  background-image: url('../assets/imgs/themes_bg/theme_class.jpg');    
}
.class .cwot, .class .cwt, .class .cst {
  border: 2px solid #C7D6D3;  
  position: relative;
  background-color: #EDF1F3;
}
.class .cwot:after, .class .cwt:after, .class .cst:after {
  content: " ";
  position: absolute;  
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;  
  border: 2px solid #C7D6D3;
  border-radius: 8px;
}
.aone::after {
  background-image: url('../assets/imgs/themes_bg/theme_appreance_1.svg');  
}

.aone .cst p, .aone .cwot p,.aone .cwt p{
  color: #ffffff;
}

.aone .cwot, .aone .cwt, .aone .cst {
  background-color: #414141;  
}
.atwo::after {
  background-image: url('../assets/imgs/themes_bg/theme_appreance_2.svg');    
}
.atwo .cwot, .atwo .cwt, .atwo .cst {
  background-color: #FFF6A0;
}
.athree::after {
  background-image: url('../assets/imgs/themes_bg/theme_appreance_3.svg');  
}
.athree p{
  color: #FFFFFF;
}
.athree .cwot, .athree .cwt, .athree .cst {
  background: #3C2300 0% 0% no-repeat padding-box;
}
.afour::after {
  background-image: url('../assets/imgs/themes_bg/theme_appreance_4.svg');    
}
.afour .cwot, .afour .cwt, .afour .cst {
  background: #FFF5F0 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0px 3px 6px #00000014;
          box-shadow: 0px 3px 6px #00000014;
}
.afive::after {
  background-image: url('../assets/imgs/themes_bg/theme_appreance_5.svg');    
}
.afive .cwot, .afive .cwt, .afive .cst {
  border: 2px solid #FA9878;
  background-color: #FFDCCB;
}
.asix::after {
  background-image: url('../assets/imgs/themes_bg/theme_appreance_6.jpg');    
}
.asix .cwot, .asix .cwt, .asix .cst {
  background:  transparent -o-linear-gradient(348deg, #FFFFFFE6 0%, #DB9FFFE6 100%) 0% 0% no-repeat padding-box;
  background:  transparent linear-gradient(102deg, #FFFFFFE6 0%, #DB9FFFE6 100%) 0% 0% no-repeat padding-box;
  border-radius: 4px;  
}
.newyear::after {
  background-image: url('../assets/imgs/themes_bg/theme_new_year.jpg');    
}
.newyear .cwot, .newyear .cwt, .newyear .cst, .thk .cwot, .thk .cwt, .thk .cst {
  background: transparent -o-linear-gradient(348deg, #FFFFFFE6 0%, #9FE5FFE6 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(102deg, #FFFFFFE6 0%, #9FE5FFE6 100%) 0% 0% no-repeat padding-box;  
  -webkit-box-shadow: 0px 3px 6px #00000029;  
          box-shadow: 0px 3px 6px #00000029;
}
.newyeartwo::after {
  background-image: url('../assets/imgs/themes_bg/theme_newyear2.svg');  
}
.newyeartwo .cwot, .newyeartwo .cwt, .newyeartwo .cst {
  background-image: url('../assets/imgs/themes_bg/newyear2.svg');  
  background-size: 100% 100%;
}
.newyear20211::after {
  background-image: url('../assets/imgs/themes_bg/theme_newyear_2021_1.jpg');    
}
.newyear20211 .cwot, .newyear20211 .cwt, .newyear20211 .cst {
  background-image: url('../assets/imgs/themes_bg/2021_1.svg');  
  background-size: 100% 100%;
}
.newyear2021b1::after {
  background-image: url('../assets/imgs/themes_bg/theme_newyear_2021_b1.jpg');    
}
.newyear2021b1 .cwot, .newyear2021b1 .cwt, .newyear2021b1 .cst {
  background-color: var(--p-green);
}
.newyear20212::after {
  background-image: url('../assets/imgs/themes_bg/theme_2021_2.svg');    
}
.newyear20212 .cwot, .newyear20212 .cwt, .newyear20212 .cst {
  background-color: #ffffff;
  border-top: 3px solid #2A1471;
  border-right: 3px solid #2A1471;
}
.newyearwelcome::after {
  background-image: url('../assets/imgs/themes_bg/theme_welcome_2021.svg');    
}
.newyearwelcome .cwot, .newyearwelcome .cwt, .newyearwelcome .cst {
  background-color: #42D399;
}

.xmas::after {
  background-image: url('../assets/imgs/themes_bg/theme_xmas.jpg');  
}

.xmas p{
  color: #E3C56A;
}
.xmas .cwot, .xmas .cwt, .xmas .cst {
  background: #0C2C52 0% 0% no-repeat padding-box;  
  -webkit-box-shadow: 0px 4px 8px #00000029;  
          box-shadow: 0px 4px 8px #00000029;
  border: 1px solid #E3C56A;
}
.xmastwo::after {
  background-image: url('../assets/imgs/themes_bg/theme_xmas2.svg');     
}
.xmastwo p{
  color: #ffffff;
}
.xmastwo .cwot, .xmastwo .cwt, .xmastwo .cst {
  background: #FAAB44 0% 0% no-repeat padding-box;
}
.xmasthree::after {
  background-image: url('../assets/imgs/themes_bg/theme_xmas3.png');  
}
.xmasthree p{
  color: #ffffff;
}
.xmasthree .cwot, .xmasthree .cwt, .xmasthree .cst {  
  background-image: url('../assets/imgs/themes_bg/theme_xmas3c.svg');  
  background-size: 100% 100%;
  background-color: #000000;
}
.xmasfour::after {  
  background-image: url('../assets/imgs/themes_bg/theme_xmas4.svg');    
}
.xmasfour .cwot, .xmasfour .cwt, .xmasfour .cst {    
  border-top: 3px solid #00FF98;
  border-right: 3px solid #00FF98;
  background-color: #ffffff;
}

.classic {
  background-color: #ffffff;
}
.classic .cwot, .classic .cwt, .classic .cst {
  background: transparent 0% 0% no-repeat padding-box;    
  -webkit-box-shadow: 4px 5px 9px #DEDEDE;    
          box-shadow: 4px 5px 9px #DEDEDE;
  background-color: #ffffff;
}
.classic-bg .cwot, .classic-bg .cwt, .classic-bg .cst {
  background: transparent 0% 0% no-repeat padding-box;    
  -webkit-box-shadow: 4px 5px 9px #DEDEDE;    
          box-shadow: 4px 5px 9px #DEDEDE;
  background-color: #ffffff;
}
.card-box-reset .cwot, .card-box-reset .cwt, .card-box-reset .cst {
  -webkit-box-shadow: none;    
          box-shadow: none;
}
.cityV::after {
  background-image: url('../assets/imgs/themes_bg/city_vibes.jpg');      
}

.ljen::after {
  background-image: url('../assets/imgs/themes_bg/ljen.jpg');      
}

.thk::after {
  background-image: url('../assets/imgs/themes_bg/hk.jpg');      
}
.tmm::after {
  background-image: url('../assets/imgs/themes_bg/mtmichele.png');      
}
.ramadan-1::after {
  background-image: url('../assets/imgs/themes_bg/ramadan-1.png');      
}
.ramadan-2::after {
  background-image: url('../assets/imgs/themes_bg/ramadan-2.jpg');      
}
.ramadan-3::after {
  background-image: url('../assets/imgs/themes_bg/ramadan-3.jpg');      
}
.ramadan-1 .cwot, .ramadan-1 .cwt, .ramadan-1 .cst, .ramadan-3 .cwot, .ramadan-3 .cwt, .ramadan-3 .cst {
  background-color: #D1963E;
  border-radius: 8px;
}
.ramadan-2 .cwot, .ramadan-2 .cwt, .ramadan-2 .cst {
  background-color: #ffffff;
  border-radius: 8px;
}
/* Themes */


.hgcs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
.hgc {
  padding-top: 32px;
  padding-bottom: 32px;
}

@media only screen and (max-width: 992px) {  
  .hgcs {    
    -ms-grid-columns: 1fr 1fr;    
        grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 583px) {  
  .hgcs {    
    -ms-grid-columns: 1fr;    
        grid-template-columns: 1fr;
  }
  .theme-bg::after {
    width: 101%;
    max-width: 101%;
  }  
  
}
/* Custom Theme End */

/* Animation start */
.animate-img {
  position: absolute;  
  left: 50%;
  -webkit-transform: translate(-50%);
          -ms-transform: translate(-50%);
      transform: translate(-50%);
}
/* Animation end */

/* circular imgs start */
.animated-imgs {
  position: relative;  
}
.animated-imgs img {
  position: absolute;
  top: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 300px;
}

/* Sticky footer start */
.sf {
  position: fixed;
  left: 50%;
  bottom: 0;    
  text-align: center;
  margin: 0 auto;
  -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  padding: 15px 20px;
  background-color: #FFFFFF;
  width: 100%;
  max-width: 596px;
}
/* Sticky footer end */

@media only screen and (max-width: 583px) {  
  .animated-imgs img {
    width: 200px;
    top: -50px;
  }  
  .sf {
    max-width: none;
  }
}
/* circular imgs end */



/* textarea auto expan start */
[contenteditable=true]:empty:before, [contenteditable]:empty:before{
  content: attr(placeholder);
  pointer-events: none;
  display: block; /* For Firefox */
  color: #41414150;
}
.cph-1::-webkit-input-placeholder {
  color: #41414150;
}
.cph-1::-webkit-input-placeholder, 
.cph-1::-moz-placeholder, 
.cph-1:-ms-input-placeholder, 
.cph-1::-ms-input-placeholder, 
.cph-1::placeholder {
  color: #41414150;
}
.pho::-webkit-input-placeholder {
  opacity: 0.3;
}
.pho::-webkit-input-placeholder, 
.pho::-moz-placeholder, 
.pho:-ms-input-placeholder, 
.pho::-ms-input-placeholder, 
.pho::placeholder {
  opacity: 0.3;
}
.fhp:focus::-webkit-input-placeholder {
  color: transparent;
}
.fhp:focus::-moz-placeholder {
  color: transparent;
}
.fhp:focus:-ms-input-placeholder {
  color: transparent;
}
.fhp:focus::-ms-input-placeholder {
  color: transparent;
}
.fhp:focus::placeholder {
  color: transparent;
}


/* textarea auto expan end */

/* Atomic start*/
.Td\(lt\){
  text-decoration: line-through;
}
.Fill\(\#707070\)\! {
  fill: #707070 !important;
}
.Fw\(400\) {
  font-weight: 400;
}
.Fill\(\#F8CD5B\)\! {
  fill: #F8CD5B !important;
}
/* Atomic end*/
.cm.cm-custom.cm-preview {
  position: absolute;
  height: 100%;
  width: 100%;
}
/* Modal Start */
.modal {
  display: none;   
}

.modal.is-open {
  display: block;
  /* -webkit-animation: mmfadeIn 0.3s linear;
          animation: mmfadeIn 0.3s linear; */
}

.modal.preview.is-open + [data-main] {
  display: none;  
}

.cm {
  position: fixed; 
  z-index: 999; 
  height: 100vh;
  width: 100vw;
  top: 50%;
  left: 50%;
  overflow: auto;
  -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center;
  background-color: #41414150;  
}
.cm.cm-custom {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: translate(0,0);
}
.sm {
  position: fixed; 
  z-index: 999; 
  height: 100vh;
  height: 100dvh;

  width: 100vw;
  background-color: #41414150;  
  top: 50%;
  left: 50%;
  overflow: hidden;
  -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);  
  display: flex;
  justify-content: center;
  margin-top: auto;
}

@-webkit-keyframes mmfadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}


.sm {
  position: fixed; 
  z-index: 999; 
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  background-color: #41414150;  
  top: 50%;
  left: 50%;
  overflow: hidden;
  -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);  
  display: flex;
  justify-content: center;
  margin-top: auto;
}


@keyframes mmfadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

/* Modal end */

/* Carousel start */
.glide__bullet {  
  height: 8px;
  width: 8px;
  border: 1px solid #707070;
  border-radius: 50%;
  cursor: pointer;
}
.glide__bullet--active {
  background-color: var(--p-green);
}
.glide__bullets.glide__bullets__v2 {
  background-color: #F4F4F4;
  display: flex;  
  padding: 2px 4px;
  border-radius: 8px;
}
.glide__bullets.glide__bullets__v2 .glide__bullet {
  background-color: #D9D9D9;
  border: none;
}
.glide__bullets.glide__bullets__v2 .glide__bullet--active {
  background-color: var(--p-green);  
}
/* Carousel end */

/* Payment Radio start */
.pr:checked + label::before{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--p-green);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center;
  content: '\2713';
  font-size: 9px;
  color: #FFFFFF;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);
}
.pr.box:checked + label::before {
  border-radius: 0 !important;
}
.pr + label{
  border: 1px solid #C4C4C4;  
}
.pr.white + label{
  border: transparent;  
  background-color: #ffffff;
}
.pr.white:checked + label {  
  background-color: #ffffff;
}
.pr.white:checked + label::before{
  background-color: #ffffff;
  color: var(--p-green);
}


/* Payment Radio End */

/* Custom radio 1 */
.rc-round + label {
  border-radius: 50%;
  height: 25px;
  width: 25px;
  display: inline-block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;  
  pointer-events: none;
}
.rc-round {
  pointer-events: none;
}
.rc-round:checked + label, .rc-round + label:hover {  
  background-color: var(--p-green);
}
/* Custom radio 1 end */

/* Msg Tail start */
.mt::after {
  position: absolute;
  content: '';
  top: -10px;
  right: 20px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color:  transparent transparent #707070 transparent ;
}

.mtc-right .mt::after {
  display: none;
}
.mtc {
  display: none;
}
.mtc.show, .mtc-hover:hover + .mtc, [data-help]:hover + .mtc {
  -webkit-animation: mmfadeIn 0.3s linear;
          animation: mmfadeIn 0.3s linear;
  display: block;
}
.mtc-right .mt::after {
  display: none;
}
/* Msg Tail end */

/* Product detail theme */
.pdwcolor .pdbutton, .pdtech .pdbutton, .pdcarbon .pdbutton, .pdcute .pdbutton, .pdflow .pdbutton{
  box-shadow: 0px 3px 6px #00000029;
}
.pdwcolor, .pdtech, .pdretro, .pdcarbon, .pdcute, .pdflow {
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.pdwcolor .pdbutton {
  background-color: #2A6BB5;
  
}
.pdtech a, .pdtech h2, .pdtech p , .pdtech u, .pdcarbon a, .pdcarbon h2, .pdcarbon p , .pdcarbon u, .pdflow a, .pdflow h2, .pdflow p , .pdflow u {
  color: #fff !important;
}
.pdflow
.pdtech .pdbutton {
  background-color: #7BFFD1;
  color: #333;
}
.pdwcolor {
  background-image: url('../assets/imgs/product_details_bg/watercolor.jpg');
}
.pdtech {
  background-image: url('../assets/imgs/product_details_bg/tech.jpg');  
}
.pdretro {
  background-image: url('../assets/imgs/product_details_bg/retro.jpg');
}
.pdretro .pdbutton{
  background-color: #6F1AFF;  
}
.pdcarbon {
  background-image: url('../assets/imgs/product_details_bg/carbon.jpg');
}
.pdcarbon .pdbutton{
  background-color:#DC6415;  
}
.pdcute {
  background-image: url('../assets/imgs/product_details_bg/cute.jpg');
}
.pdcute .pdbutton{
  background-color:#FFC584;
}
.pdflow {
  background-image: url('../assets/imgs/product_details_bg/flow.jpg');
}
.pdflow .pdbutton{
  background-color:#FFB61A;
}

/* Product detail theme end */

/* Loading */
.loading {
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: white;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 999999999999999;
}
.loadingWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loading-img, .done {
  margin: auto;
  height: 100px;
  width: 100px;
}
.loading-img {
  border: transparent;
  border-top: 3px solid var(--p-green);
  border-radius: 50%;
  -webkit-animation: round 2s linear infinite;
          animation: round 2s linear infinite;
}
.loadingWrapper h1 {
  color: #555555;
  position: relative;  
  top: 50%;
}
.done {  
  border-radius: 50%;    
  background-image: url('../assets/imgs/feather-ico/check.svg');
  background-size: cover;
}

@-webkit-keyframes round {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes round {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Loading end */

/* Custom Background */
.fill-dotted,
.fill-solid,
.fill-radius {
  position: relative;  
  border-radius: 4px;
}
.fill-radius {
  border-radius: 32px !important;
}
.fill-dotted::before,
.fill-solid::before,
.fill-radius::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  content: '';
  pointer-events: none;
}
.fill-dotted::before,
.fill-solid::before {
  border-radius: 4px;
  pointer-events: none;
}
.fill-solid::before,
.fill-radius::before {
  border: 2px solid white; 
}
.fill-dotted::before {
  border: 2px dotted white;  
}
.fill-radius::before {
  border-radius: 28px;  
}
.outline-dotted,
.outline-solid,
.outline-radius {
  position: relative;
  background-color: #ffffff; 
  border-width: 2px !important;
  outline-style: none;
}
.outline-dotted,
.outline-solid {  
  border-radius: 4px;
}
.outline-dotted::before {
  border: 2px dotted;
  pointer-events: none;
}
.outline-solid::before,
.outline-radius::before {
  border: 2px solid;
}
.outline-radius::before,
.outline-radius {
  border-radius: 28px;
}
.outline-radius, .outline-solid, .outline-dotted{
  border: 2px solid;
}
.outline-dotted::before,
.outline-solid::before,
.outline-radius::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  content: '';
  border-color: inherit;
  pointer-events: none;
}

 
.shadow-right,
.shadow-left, 
.shadow-radius,
.sh-right,
.sh-left {
  position: relative;
  background-color: #ffffff;    
}
.shadow-right {
  border-radius: 4px 4px 0px 4px;  
}
.shadow-left {
  border-radius: 4px 4px 4px 0px;  
}
.shadow-radius,
.sh-radius {
  border-radius: 28px !important;  
}
.shadow-right::before,
.shadow-left::before,
.shadow-radius::before  {
  position: absolute;
  top: 6px;
  bottom: -5px;
  border: 5px solid;
  border-top: none;
  content: '';    
  pointer-events: none;
  border-color: inherit;
}

.shadow-right::before {
  left: 6px;
  right: -5px;
  border-left: none;  
  border-radius: 0 4px 4px 4px;
}
.shadow-left::before {      
  left: -5px;
  right: 6px;    
  border-right: none;  
  border-radius: 4px;
}

.shadow-radius::before {
  left: 6px;
  right: -5px;
  border-left: none;  
  border-radius: 0 16px 28px 16px;
}
.strikethrough {
  position: relative;
}
.strikethrough:before {
  position: absolute;
  content: "";
  left: -6px;
  top: 50%;
  right: -6px;
  border-top: 1px solid #d45357;  

  -webkit-transform:rotate(-23deg);
  -moz-transform:rotate(-23deg);
  -ms-transform:rotate(-23deg);
  -o-transform:rotate(-23deg);
  transform:rotate(-23deg);
}
.cwidth {
  width: calc(100% - 40px);
}

.sh-right {
  -webkit-box-shadow:  4px 5px 9px #DEDEDE !important;
          box-shadow:  4px 5px 9px #DEDEDE !important;
  border-radius: 4px;
}
.sh-left {
  -webkit-box-shadow:  0px 4px 8px #DEDEDE !important;
          box-shadow:  0px 4px 8px #DEDEDE !important;
  border-radius: 16px;
}
.sh-radius {
  -webkit-box-shadow: 0px 3px 6px #DEDEDE !important;
          box-shadow: 0px 3px 6px #DEDEDE !important;
  background-color: #ffffff; 
  border: 2px solid #459A86;  
}
.doodle-btn,
.pen-btn,
.border-btn {    
    background-size: 100% 100% !important;     
    background-color: transparent !important;  
    border: none !important;
}

/* Custom Background end */

/* Add service  */
.add-service input:checked + label, .choose-month input:checked + label{
  background-color: var(--p-green);
  color: #fff;
  border: 1px solid var(--p-green);
}
.add-service label{
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 16px;
  background-color: #fff;
  display: inline-block;
  color: var(--p-green);
  font-weight: 600;
  border: 1px solid var(--p-green);
  cursor: pointer;
  margin: 2px;
}
.bvt .add-service label {
  font-size: 14px;
}
.choose-month {
  margin: 4px;
}
.choose-month label {
  border: 1px solid #33404040;
  width: 80px;
  padding: 8px;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}
input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}
input[type="color"]::-webkit-color-swatch {
  border: none;
}
/* Add service end */

.Bgz\(100\) {
  background-size: 100% 100%;
}
.iphone-frame {
  position: relative;
}
.iphone-frame::before {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;  
  background-image: url('../assets/imgs/iphone\ frame.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: '';
  top: 0; 
  left: 0; 
}
.shake-slow.shake-constant {
  animation-duration: 12s;
}

/* Calendar */
.store-front .flatpickr-day.selected, .flatpickr-day.selected:hover{
  background-color: var(--p-green);
  border: none;
}
.store-front .flatpickr-day.today {
  border: 1px solid var(--p-green) !important;
  background-color: none !important;
}
/* Calendar end */
.fg-emoji-picker {
  left: 50%;
  transform: translateX(-50%);
}
/* sched radio */
.sched-rad:checked + label, .active-plink {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  color: var(--p-green);
}
/* sched radio end */

/* Custom radio checkout page */
/* label */
.ccrb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin: 8px 0;
  cursor: pointer;
  position: relative;
}

/* input */
.ccrb input[type="radio"], .ccrb input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


/* .design */
.ccrb .design {
  width: 16px;
  height: 16px;
  border: 1px solid var(--p-green);
  border-radius: 100%;
  margin-right: 16px;
  position: relative;
}
.ccrb.checkbox .design {
  margin-right: 8px;  
}

.ccrb .design::before,
.ccrb .design::after {
  border-radius: inherit;
  position: absolute;  
  content: "";
  width: inherit;
  height: inherit;
  transform: scale(0);  
}

.ccrb .design:before {
  background: var(--p-green);
  opacity: 0;
  transition: background .3s;
}

.ccrb .design::after {
  background: var(--p-green);
  opacity: .4;
  transition: .6s;
}


/* checked state */
.ccrb input[type="radio"]:checked+.design::before, .ccrb input[type="checkbox"]:checked+.design::before {
  opacity: 1;
  left: 50%;  
  top: 50%;  
  transform: translate(-50%, -50%) scale(.6);
  background: var(--p-green);
}


/* other states */
.ccrb input[type="radio"]:hover+.design,
.ccrb input[type="radio"]:focus+.design,
.ccrb input[type="checkbox"]:hover+.design,
.ccrb input[type="checkbox"]:focus+.design {
  border: 1px solid var(--p-green);
}

.ccrb input[type="radio"]:hover+.design:before,
.ccrb input[type="radio"]:focus+.design:before,
.ccrb input[type="checkbox"]:hover+.design:before,
.ccrb input[type="checkbox"]:focus+.design:before {
  background: var(--p-green);
}

.ccrb input[type="radio"]:focus+.design::after,
.ccrb input[type="radio"]:active+.design::after,
.ccrb input[type="checkbox"]:focus+.design::after,
.ccrb input[type="checkbox"]:active+.design::after {
  opacity: .1;
  transform: scale(2.6);
}
/* Custom radio checkout page end */

/* fade effect */
.faded {position: relative;}
.faded::after {
  position: absolute;
  content: '';
  top: -32px;
  left: 0;
  width: 100%;
  background-image: linear-gradient(to bottom, transparent, #fff);
  height: 100%;
}
/* fade effect end */

/* Guides */
.guides ol {
  list-style: none;
  counter-reset: guide-number;
}
.guides ol li {
  counter-increment: guide-number;
  position: relative;
  margin-bottom: 24px;
  padding-left: 48px;
}
.guides ol li::before {
  content: counter(guide-number);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  height: 16px;
  width: 16px;
  font-size: 13px;
  padding: 8px;
  color: rgba(0, 102, 64,.5);
  border-color: rgba(0, 171, 108,.15);
  background-color: rgba(0, 171, 108,.15);
  text-align: center;  
  border-radius: 50%;
}

/* Guides end */
.checkout-btn-container {
  position: fixed;
  bottom: 0;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 16px 32px 16px;
  background-color: #ffffff;
  left: 50%;
  transform: translateX(-50%);
}

.P-8-all td, .P-8-all th{
  padding: 8px;
}
.Bgc-dff3ea tr:nth-child(odd) td{
  background-color: #DFF3EA;
}
.Bgc-dff3ea50 tr:nth-child(odd) td{
  background-color: #dff3ea9a;
}
.disabled-link td, .disabled-n {  
  opacity: 0.5;
  pointer-events: none;
}
.disabled-link td button {
  background: gray !important;
  opacity: 0.5;
}
input[name="plan"]:checked + label {
  background-color: var(--p-green);  
}
input[name="plan"]:checked + label span {
  color: #ffffff;
}

.field-overlay {
  position: relative;
  pointer-events: none;
}
.field-overlay::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(128, 128, 128, 0.6);
  z-index: 10;
  border-radius: 4px;
}
.header-desktop {
  display: flex;
  flex-direction: row-reverse;
  padding-top: 10px;
}
.header-desktop > div {
  flex: 1;
}
@media only screen and (max-width: 670px) {  
  .header-desktop{        
    display: block;    
    padding-top: 0;
  }
  .header-desktop > div {
    flex: none;
  }
}


/*chek url is invalid or not*/
.check_url {
    margin: 10px auto 0;
    width: 100px;
    position: relative;
    display: block;
    text-align: center;
    color: red;
}

.TiktokVideoWrapper {
  width: 100% !important;  
}
.order-progress {
  padding-left: 39px;
  position: relative;
}
.order-progress::before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 10px;
  height: 100%;
  border-left: 2px solid #CCC;
}
.order-progress li {
  position: relative;
  margin-top: 18px;
}
.order-progress li::after {
  top: 0;
  position: absolute;
  left: -27.5px;
  content: "";
  font-size: 10px;
  color: #FFF;
  text-align: center;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #D5D5D5;
}
.order-progress li:last-child::after {
  top: initial;
  bottom: 0;  
}
.order-progress li:first-child::after {
  background-color: var(--p-green);  
}
.order-progress.bounce li:first-child::after {
  background-color: #ef5065;  
}
.order-progress li .order-progress__title {
  background-color: #40404011;
  opacity: 0.5;
}
.order-progress li:first-child .order-progress__title {
  background-color: var(--p-green)36;
  color: var(--p-green);
  opacity: 1;
}
.order-progress.bounce li:first-child .order-progress__title {
  background-color: #ef506528;
  color: #ef5065;
}
.notif {
  position: relative;
}
.notif::after{
  position: absolute;
  display: inline-block;
  content: '';
  top: 8px;
  right: -12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #EF5064;
}
.order-complete .status {
  position: relative;
  padding-right: 6px;
}
.order-complete .status::after{
  position: absolute;
  display: inline-block;
  content: '';
  top: 0px;
  right: -6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #EF5064;
}
.custom-select .select2-container--default .select2-selection--multiple .select2-selection__choice {
  color: #fff;
  border-color: var(--p-green);
  background-color: var(--p-green);
}
#start_date + label:not(.error), #end_date + label:not(.error) {
  display: none !important;
}

/*pagination js*/

.paginationjs {
 line-height:1.6;
 font-family:Marmelad,"Lucida Grande",Arial,"Hiragino Sans GB",Georgia,sans-serif;
 font-size:14px;
 box-sizing:initial
}
.paginationjs:after {
 display:table;
 content:" ";
 clear:both
}
.paginationjs .paginationjs-pages {
 float:left
}
.paginationjs .paginationjs-pages ul {
 float:left;
 margin:0;
 padding:0
}
.paginationjs .paginationjs-go-button,
.paginationjs .paginationjs-go-input,
.paginationjs .paginationjs-nav {
 float:left;
 margin-left:10px;
 font-size:14px
}
.paginationjs .paginationjs-pages li {
 float:left;
 border:1px solid #aaa;
 border-right:none;
 list-style:none
}
.paginationjs .paginationjs-pages li>a {
 min-width:30px;
 height:28px;
 line-height:28px;
 display:block;
 background:#fff;
 font-size:14px;
 color:#333;
 text-decoration:none;
 text-align:center
}
.paginationjs .paginationjs-pages li>a:hover {
 background:#eee
}
.paginationjs .paginationjs-pages li.active {
 border:none
}
.paginationjs .paginationjs-pages li.active>a {
 height:30px;
 line-height:30px;
 background:var(--p-green);
 color:#fff
}
.paginationjs .paginationjs-pages li.disabled>a {
 opacity:.3
}
.paginationjs .paginationjs-pages li.disabled>a:hover {
 background:0 0
}
.paginationjs .paginationjs-pages li:first-child,
.paginationjs .paginationjs-pages li:first-child>a {
 border-radius:3px 0 0 3px
}
.paginationjs .paginationjs-pages li:last-child {
 border-right:1px solid #aaa;
 border-radius:0 3px 3px 0
}
.paginationjs .paginationjs-pages li:last-child>a {
 border-radius:0 3px 3px 0
}
.paginationjs .paginationjs-go-input>input[type=text] {
 width:30px;
 height:28px;
 background:#fff;
 border-radius:3px;
 border:1px solid #aaa;
 padding:0;
 font-size:14px;
 text-align:center;
 vertical-align:baseline;
 outline:0;
 box-shadow:none;
 box-sizing:initial
}
.paginationjs .paginationjs-go-button>input[type=button] {
 min-width:40px;
 height:30px;
 line-height:28px;
 background:#fff;
 border-radius:3px;
 border:1px solid #aaa;
 text-align:center;
 padding:0 8px;
 font-size:14px;
 vertical-align:baseline;
 outline:0;
 box-shadow:none;
 color:#333;
 cursor:pointer;
 vertical-align:middle\9
}
.paginationjs.paginationjs-theme-blue .paginationjs-go-input>input[type=text],
.paginationjs.paginationjs-theme-blue .paginationjs-pages li {
 border-color:#289de9
}
.paginationjs .paginationjs-go-button>input[type=button]:hover {
 background-color:#f8f8f8
}
.paginationjs .paginationjs-nav {
 height:30px;
 line-height:30px
}
.paginationjs .paginationjs-go-button,
.paginationjs .paginationjs-go-input {
 margin-left:5px\9
}
.paginationjs.paginationjs-small {
 font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-pages li>a {
 min-width:26px;
 height:24px;
 line-height:24px;
 font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-pages li.active>a {
 height:26px;
 line-height:26px
}
.paginationjs.paginationjs-small .paginationjs-go-input {
 font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-go-input>input[type=text] {
 width:26px;
 height:24px;
 font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-go-button {
 font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-go-button>input[type=button] {
 min-width:30px;
 height:26px;
 line-height:24px;
 padding:0 6px;
 font-size:12px
}
.paginationjs.paginationjs-small .paginationjs-nav {
 height:26px;
 line-height:26px;
 font-size:12px
}
.paginationjs.paginationjs-big {
 font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-pages li>a {
 min-width:36px;
 height:34px;
 line-height:34px;
 font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-pages li.active>a {
 height:36px;
 line-height:36px
}
.paginationjs.paginationjs-big .paginationjs-go-input {
 font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text] {
 width:36px;
 height:34px;
 font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-go-button {
 font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-go-button>input[type=button] {
 min-width:50px;
 height:36px;
 line-height:34px;
 padding:0 12px;
 font-size:16px
}
.paginationjs.paginationjs-big .paginationjs-nav {
 height:36px;
 line-height:36px;
 font-size:16px
}
.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a {
 color:#289de9
}
.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a:hover {
 background:#e9f4fc
}
.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active>a {
 background:#289de9;
 color:#fff
}
.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled>a:hover {
 background:0 0
}
.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button] {
 background:#289de9;
 border-color:#289de9;
 color:#fff
}
.paginationjs.paginationjs-theme-green .paginationjs-go-input>input[type=text],
.paginationjs.paginationjs-theme-green .paginationjs-pages li {
 border-color:#449d44
}
.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]:hover {
 background-color:#3ca5ea
}
.paginationjs.paginationjs-theme-green .paginationjs-pages li>a {
 color:#449d44
}
.paginationjs.paginationjs-theme-green .paginationjs-pages li>a:hover {
 background:#ebf4eb
}
.paginationjs.paginationjs-theme-green .paginationjs-pages li.active>a {
 background:#449d44;
 color:#fff
}
.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled>a:hover {
 background:0 0
}
.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button] {
 background:#449d44;
 border-color:#449d44;
 color:#fff
}
.paginationjs.paginationjs-theme-yellow .paginationjs-go-input>input[type=text],
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li {
 border-color:#ec971f
}
.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]:hover {
 background-color:#55a555
}
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a {
 color:#ec971f
}
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a:hover {
 background:#fdf5e9
}
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active>a {
 background:#ec971f;
 color:#fff
}
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled>a:hover {
 background:0 0
}
.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button] {
 background:#ec971f;
 border-color:#ec971f;
 color:#fff
}
.paginationjs.paginationjs-theme-red .paginationjs-go-input>input[type=text],
.paginationjs.paginationjs-theme-red .paginationjs-pages li {
 border-color:#c9302c
}
.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]:hover {
 background-color:#eea135
}
.paginationjs.paginationjs-theme-red .paginationjs-pages li>a {
 color:#c9302c
}
.paginationjs.paginationjs-theme-red .paginationjs-pages li>a:hover {
 background:#faeaea
}
.paginationjs.paginationjs-theme-red .paginationjs-pages li.active>a {
 background:#c9302c;
 color:#fff
}
.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled>a:hover {
 background:0 0
}
.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button] {
 background:#c9302c;
 border-color:#c9302c;
 color:#fff
}
.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]:hover {
 background-color:#ce4541
}
.paginationjs .paginationjs-pages li.paginationjs-next {
 border-right:1px solid #aaa\9
}
.paginationjs .paginationjs-go-input>input[type=text] {
 line-height:28px\9;
 vertical-align:middle\9
}
.paginationjs.paginationjs-big .paginationjs-pages li>a {
 line-height:36px\9
}
.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text] {
 height:36px\9;
 line-height:36px\9
}
.custom-shipping .select2-selection__rendered {
  line-height: 42px !important;
}
.custom-shipping .select2-container .select2-selection--single {
  height: 43px ;
  padding-left: 12px;
  font-size: 14px;
  border: 1px solid #DADADA;
}
.custom-shipping .select2-selection__arrow {
  height: 42px !important;
}
.c-style p{
  color: black;
}
.c-style .cst p, .c-style .cwot p,.c-style .cwt p {
  color: black;
}
.arrow {
  border: solid rgb(255, 254, 254);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-left:4px;
}
.right{
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.left{
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.custom-number::-webkit-outer-spin-button,
.custom-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.custom-number[type=number] {
  -moz-appearance: textfield;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  border-radius: 4px;
  background-color: #ffffff;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #d8d8d8;
  border-radius: 4px;
}
.notif-dot {
  position: relative;
}
.notif-dot::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #EF5064;
  right: -2px;
  top: -3px;
  border: 2px solid white;
}
.overflow-elips {
  white-space:nowrap; 
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.notification-title:hover, .notification-title.notification-title__active{
  background-color: #E0F3F7;
}
#notif_content a {
    text-decoration: underline;
}
#slider_range {
  width: 100%;
  margin: auto;
  height: 8px;
  background-color: #d9d9d9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
}
.shopping-cart.shopping-cart__plain::before {
  border: none;
}
#thumb_range {
  width: 22px;
  height: 22px;
  border: 2px solid white;
  background-color: #2ab57d;
  border-radius: 50%;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  transition: left 0.2s ease-out;
}
.slider_point {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  bottom: 50%;
  transform: translateY(50%);
}
.slider_point:nth-child(1) {
  left: 0;
}
.slider_point:nth-child(2) {
  left: calc(25%);
}
.slider_point:nth-child(3) {
  left: calc(50%);
}
.slider_point:nth-child(4) {
  left: calc(75%);
}
.slider_point:nth-child(5) {
  left: calc(100% - 7px);
}
[data-help]:hover + [data-info] {
  display: block;
}
.active-block {
  border: 1px dashed var(--p-green);
  border-radius: 4px;
}
@keyframes mmslideIn {
from { transform: translateY(50%); }
  to { transform: translateY(0); }
}
.micromodal-slide[aria-hidden="false"] .sm {
  animation: mmfadeIn 0.3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .cart-details {
  animation: mmslideIn 0.3s cubic-bezier(0.0, 0.0, 0.2, 1);
  animation-delay: 0.01s;
}
.cart-details {
  height: 70vh;
  box-shadow: 0 -4px 16px 0 rgba(0, 0, 0, 0.1);
  border-radius: 32px 32px 0 0;
}
.rect {
  max-width: 96px;
  margin-left: auto;
  margin-right: auto;
  height: 6px;
  border-radius: 4px;
  background-color: #D8D8D8;
  margin-top: 16px;
}.fixed {  
  position: fixed;
  bottom: 60px; 
  width: 100%;
  left: -50%;
  transform: translateX(50%);
  z-index: 99;
  background: transparent;
  pointer-events: none;
}
.shopping-cart {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);  
  position: relative;
  pointer-events: visible;
  transition: all 0.3s ease-in-out;
  background-color: var(--p-green);
}
.shopping-cart.shopping-cart__plain, .shopping-cart.shopping-cart__plain:hover  {
  background-color: transparent;
}
.shopping-cart:hover {
  transition: all 0.3s ease-in-out;
  background-color: #33946d;
}
.shopping-cart::before {
  position: absolute;
  content: '0';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  min-width: 14px;
  top: -8px;
  right: -8px;
  border-radius: 50%;  
  border: 2px solid white;
  background-color: var(--p-green);
  padding: 3px;
  color: white;
}
.shopping-cart__preview.shopping-cart::before {
  aspect-ratio: 1/1;
  width: 105%;
}
.shopping-cart.shopping-cart__top {
  box-shadow: none;    
  pointer-events: visible;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}
.shopping-cart.shopping-cart__top::before {
  top: -12px;
  right: -16px;
  font-weight: 700;
  border-radius: 16px;
  min-width: 19px;
}
/* Chrome, Safari, Edge, Opera */
input.hide-stepup::-webkit-outer-spin-button,
input.hide-stepup::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input.hide-stepup[type=number] {
  -moz-appearance: textfield;
}
.preview-payment .subtract-amount,
.preview-payment .add-amount {
  width: 20px;
  height: 20px;  
}
.subtract-amount, .add-amount {
  position: relative;
  width: 40px;
  height: 40px;  
  border-radius: 50%;
}
.bvt .subtract-amount,.bvt .add-amount {
  background-color: #404040;
}
.bvt .add-amount::before, .bvt .add-amount::after, .bvt .subtract-amount::before  {
  background-color: white;
} 
.subtract-amount, .add-amount {
  position: relative;
  width: 40px;
  height: 40px;  
  border-radius: 50%;
}
.bvt .subtract-amount,.bvt .add-amount {
  background-color: #404040;
}
.bvt .add-amount::before, .bvt .add-amount::after, .bvt .subtract-amount::before  {
  background-color: white;
} 
.subtract-amount::before {
  width: 50%;
  height: 2px;
  border-radius: 50%;
  background-color: var(--p-green);
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.add-amount::before {
  width: 50%;
  height: 2px;
  border-radius: 50%;
  background-color: var(--p-green);
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.add-amount::after {
  width: 2px;
  height: 50%;
  border-radius: 50%;
  background-color: var(--p-green);
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cp-frame iframe {
  width: 100%;
}
@keyframes mmslideIn {
from { transform: translateY(50%); }
  to { transform: translateY(0); }
}
.micromodal-slide[aria-hidden="false"] .sm, .micromodal-slide[aria-hidden="false"] .fone{
  animation: mmfadeIn 0.5s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .cart-details {
  animation: mmslideIn 0.3s cubic-bezier(0.0, 0.0, 0.2, 1);
  animation-delay: 0.01s;
}
.cart-details {
  height: 70vh;
  box-shadow: 0 -4px 16px 0 rgba(0, 0, 0, 0.1);
  border-radius: 32px 32px 0 0;
}
.rect {
  max-width: 96px;
  margin-left: auto;
  margin-right: auto;
  height: 6px;
  border-radius: 4px;
  background-color: #D8D8D8;
  margin-top: 16px;
}
.title-elipse {  
  white-space: nowrap; 
  width: 80%; 
  overflow: hidden;
  text-overflow: ellipsis;   
  display: inline-block;
}
.breadcrumbs span:after {

  border-left-color: #fcfafa;

  border-width: 30px;

  margin-top: -30px;

}

.breadcrumbs span:before {

  border-color: rgba(194, 225, 245, 0);

  border-left-color: #f39200;

  border-width: 34px;

  margin-top: -34px;

}
.checkout-btn {
  color: #fff;
  background: linear-gradient(280deg, var(--p-green) 0%, #5ECEC5 100%) 0% 0%;  
}
.checkout-btn:disabled {
  color: #fff;
  background: #D9D9D9;  
  pointer-events: none;
}
.payment-method {
  height: 56px;
  width: 100%;  
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(64, 64, 64, 0.2);  
}
.payment-method__container {
  display: grid;
  grid-template-columns:  1fr 1fr;
  grid-gap: 4px;
}
.radio-payment:checked + label, .payment-method:hover{
  border: 1px solid var(--p-green);
  background-color: #E0F3F7;
}
[data-trigger] [data-drop]{   
  overflow: hidden;    
  transition: all .3s ease-in-out;
  height: 0;          
  visibility: hidden;
}
[data-trigger].open-details [data-drop]{    
  visibility: visible;       
  border-radius: 4px;   
  margin-top: 8px;
  background-color: #ffffff;
}
.iframe-details {
  height: 100%;
}
.dropdown-btn {
  height: 60px;  
}

.iframe-placeholder
{
   background: url('/static/assets/imgs/animation/Spinner-1s-200px.gif') center no-repeat;
}
.order-detail {
  border: 1px solid #33404040;  
  background-color: #fff;
}
.order-detail:hover {
  border: 1px solid var(--p-green);  
  background-color: #E0F3F7;
} 
.x {
  background-image: url('/static/assets/imgs/x.svg');
  background-size: contain;  
  display: inline-block;
  background-repeat: no-repeat;
}
.apply-to-all {  
  border-radius: 8px;
  border: 1px solid rgba(64, 64, 64, 0.2);  
  position: relative;
  /* box-shadow: 0 8px 16px 0 rgba(101, 127, 132, 0.24); */
}
.apply-to-all .arrow{  
  transform: rotate(225deg);
  transition: all 0.3s ease-in-out;
}
.apply-to-all__menus {  
  display: none;  
  list-style-type: none;
  position: absolute;
  left: -1px;
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(141, 38, 38, 0.2);
  border-top: none;
  background-color: white;
  z-index: 99;
  width: calc(100% + 2px);
}
.apply-to-all__menus li{  
  list-style-type: none;
}
.arrow.down {
  transform: rotate(45deg);
}
.arrow.up {
  transform: rotate(225deg);
}
.apply-to-all.apply-to-all__active {    
  border-radius: 8px 8px 0 0;
  border-bottom-color: transparent;
  box-shadow: 0 8px 16px 0 rgba(101, 127, 132, 0.24);
}
.apply-to-all.apply-to-all__active .apply-to-all__menus {
  display: block; 
}
.apply-to-all.apply-to-all__active .arrow {
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.radio-payment:disabled + label{
  pointer-events: none;
  border: 1px solid transparent;
  background-color: rgba(64, 64, 64, 0.2);
  opacity: 0.7;
}
.lynk-block {
  width: 124px;
  height: 100px;
  margin: 4px;
}
.richText .richText-help, .fa.fa-question-circle {
  display: none;
  pointer-events: none;
}
.inside-list, .trumbowyg-editor ul, .trumbowyg-editor ol{
  list-style-position: inside;
}
.richText:first-child {
  z-index: 1;
}
.richText-toolbar:last-child {
  z-index: -1;
}
.trumbowyg-box,
.trumbowyg-editor {
  min-height: 150px !important;
}
.check-button:checked + label {
  background-color: #D5D5D5;
  color: #404040;  
  border: 1px solid transparent;
  opacity: 0.5;
}
.check-opacity:checked + label{
  opacity: 1;
}
.check-opacity + label{
  opacity: 0.5;
}
.nft-item img{
  object-fit: cover;
  height: 183px;
}
.preview-lynk .row {
  grid-row-gap: 0;
}
.st.item {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.st.item.dragging {
  transition: transform 0.2s ease-in-out;
}
.st.item.dragging-over, .st.item:hover {
  transform: translateY(5px);
  transition: transform 0.2s ease-in-out;
}
@media only screen and (max-width: 320px) {   
  .nft-item img{    
    height: 165px;
  }
}
.page-lists-container {  
  overflow-x: auto;
  text-align: center;
}
.page-lists li:not(:first-child) {
  margin-left: 4px;
  margin-right: 4px;  
}
.page-lists{    
  width: max-content;
  max-width: max-content;
}
.page-lists li:first-child {  
  margin-right: 4px;  
}

.page-list__active, .page-lists a:hover {
  background-color: var(--p-green);
  color: #fff;
}
.landing-page.page-lists .page-list__active, .landing-page.page-lists a:hover {
  background-color: #fff;
  color: #474747;
}
.landing-page.page-lists a{    
  color: #fff;
}


.custom-scrollbar-2::-webkit-scrollbar {  
  height: 12px;
  border-radius: 8px;
  background-color: #DDEAE4;  
  
}
.custom-scrollbar-2::-webkit-scrollbar-thumb {
  background-color: #fff;  
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;  
  border: 2px solid #DDEAE4;
}

.custom-scrollbar-none::-webkit-scrollbar {  
  display: none;
}
.custom-scrollbar-none::-webkit-scrollbar-thumb {
  display: none;
}

.custom-no-border-input-focus{
  border-width:0px;
  border:none;
}
.custom-no-border-input-focus:focus {
  outline:none;
}
.tbody-stripe tr:nth-child(odd) td  {
  background-color: #EDF3F0;
}
.tbody-stripe tr:last-child td  {
  border-bottom: 1px solid #00000010;
}
.contact-input {
  background-color: #ffffffd4;
}
.max-height {
  height: max-content;
}
.video-thumb {
  background-color: #D5D5D5;
  width: 55%;
  margin-right: 16px;
  height: 84px;
  border-radius: 4px;
  overflow: hidden;
}
[data-video] {
  width: 100%;
  height: 100;  
}
.uploading-bar {
  border: 1px solid var(--p-green);
  background-color: white;
  height: 8px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.upload-progress {
  width: 0;  
  height: 100%;
  border-radius: 8px;
  background-color: #2AB57D60;
  transition: all ease-in-out 0.3s;
}
.play-btn {
  padding-left: 20px;
  position: relative;
}
.play-btn::after {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background-image: url('../assets/imgs/feather-ico/play-circle.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: 0;
  top: 2px;
}
.slide-input {
  width: 0;
  visibility: hidden;  
  transition: all ease-in-out 0.3s;
}
.slide-input.slide-input__open {
  width: 100%;  
  visibility: visible;
  transition: all ease-in-out 0.3s;
}
.course-card {
  background-color: white;
  height: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}
.course-card img{
  width: 100%;
  height: 176px;
  object-fit: cover;
  object-position: center;
}
.course-progress {
  background-color: #EDF3F0;
  border-radius: 2px;
  height: 4px;
}
.course-card__body {
  min-height: calc(100% - 176px);
}
.course-container {
  -ms-grid-column: span 4;
    grid-column: span 4;
}
.course-details {
  -ms-grid-column: span 8;
    grid-column: span 8;
}
.custom-summary {
  padding-right: 32px;
}
details[open] > .custom-summary::after {
  transform: rotate(180deg);
  transition: all ease-in-out 0.3s;
}
details[open].ids .custom-summary::after {
  transform: rotate(180deg);
  transition: all ease-in-out 0.3s;
}
summary {
  list-style-type: none;
}
.custom-summary::after {
  position: absolute;
  content: '';
  background-image: url('../assets/imgs/chevron-down.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;    
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  transition: all ease-in-out 0.3s;
}
.custom-summary.custom-summary__course-content::after {  
  top: 32%;
}
.course-desc {
  height: 64px;
  overflow: hidden;  
  -webkit-mask-image: linear-gradient(1deg, rgba(104,104,104,0) -200%, rgba(0,0,0,1) 100%, rgba(0,0,0,1) 100%, rgba(104,104,104,0) 100%);
  mask-image: linear-gradient(1deg, rgba(104,104,104,0) -200%, rgba(0,0,0,1) 100%, rgba(0,0,0,1) 100%, rgba(104,104,104,0) 100%);  
}
.course-desc.course-desc__open {
  -webkit-mask-image: none;
  mask-image: none;  
  height: max-content;
}
.course-contents {
  -ms-grid-column: span 4;
    grid-column: span 4;
}
.video-js .vjs-big-play-button {
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.video-js {
  width: 100%;
}
.course-tab-responsive,.responsive-search-bottom {
  display: none;
}
.course-img {
  position: relative;
  object-fit: contain;
}
.course-img__container::after {
  position: absolute;
  content: '';
  height: 50px;
  width: 56px;
  background-image: url('../assets/imgs/feather-ico/play.svg');
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.rounded-progress {
  display: inline-block;
  position: relative;
  transform: rotate(267deg);
}
.rounded-progress__outer {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #EDF3F0;
  border-radius: 50%;
  padding: 4px;  
}
.rounded-progress__inner {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.rounded-progress__circle {
  fill: none;
  stroke: #35C78C;
  stroke-width: 3px;
  stroke-dasharray: 38;
  stroke-dashoffset: calc(38  -  ( (var(--data-percent) / 100)  * 38 ));
}
.rounded-progress__svg {
  left: -3px;
    position: absolute;
    top: -3px;
}
[data-svg-label] svg {
  width: 30px;
  height: 30px;
}
.block_layout--label {
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  padding: 8px 8px 0 8px;  
}
.block_layout--input:checked + .block_layout--label {
  border: 1px solid var(--p-green);
  box-shadow: 0 8px 16px 0 rgba(42, 181, 125, 0.24);  
}
.grid-layout {
  -ms-grid-column: span 6;
  grid-column: span 6;
}
.image-layout {
  -ms-grid-column: span 12;
  grid-column: span 12;
}
.vp-container {
  position: relative;
  width: 100%;
}
.vp-container::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  z-index: 111;
  cursor: pointer;  
}
.vp-container__open.vp-container::after {
  display: none;
  background-color: rgba(0, 0, 0, 0);
}
.g-register .g-register__icon {
  display: inline-block;
  min-width: 20px;
  min-height: 20px;
  background-image: url('../assets/imgs/marketing/info.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.g-register__success.g-register .g-register__icon{
  background-image: url('../assets/imgs/marketing/check.svg');
}
.g-register__success.g-register .g-register__desc{
  color: var(--p-green);
}
.animate-spin {
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}
.disabled-fav {
  opacity: 0.5;  
}
.disabled-fav label{
  pointer-events: none;
}
.gap-1 {
  gap: 1rem;
}
.gap-05 {
  gap: 0.5rem;
}
.courier-img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
}
.print-table {
  display: table;
  width: 100%;  
  padding: 8px 0;  
  break-inside: avoid;
  page-break-inside: avoid;
}
.print-tr {
  display: table-row;
  break-inside: avoid;
  page-break-inside: avoid;
}
.print-td {
  display: table-cell;
  width: 50%;
  height: 100%;
  break-inside: avoid;
  page-break-inside: avoid;
}


.disabled-fav {
  opacity: 0.5;  
}
.disabled-fav label{
  pointer-events: none;
}
.c-box {
  filter: hue-rotate(286deg) brightness(1.1);  
}
.picked-affiliate .a-con{
  opacity: 0.5;
}
.picked-affiliate .a-img, .picked-affiliate .c-box , .unavailable-affiliate .a-con{
  filter: grayscale(1);
}
.picked-affiliate .c-box, .unavailable-affiliate .c-box {
  pointer-events: none;
}
.picked-affiliate .a-percent, .unavailable-affiliate .a-percent {
  background-color: #D9D9D9;
}

.affliate-product [data-affliate-appearance] *, .affliate-product [data-micromodal-trigger][data-exception] {
  pointer-events: initial;
}
.affliate-product button:not([data-exception], [title=Help]), 
.affliate-product [contenteditable]:not([data-exception]), 
.affliate-product [data-micromodal-trigger], 
.affliate-product [data-label]:not([data-exception]), 
.affliate-product span[onclick]{
  pointer-events: none;  
}
.affliate-product input:not([data-exception]):not(.note-modal-content input), 
.affliate-product select:not([data-exception]):not(.note-modal-contentselect), 
.affliate-product textarea:not([data-exception]):not(.note-modal-content textarea), 
.affliate-product [data-label]:not([data-exception]):not(.note-modal-content [data-label]), 
.affliate-product [contenteditable]:not([data-exception]):not(.note-modal-content [contenteditable]) {
  background-color: #D9D9D9;
}
.affliate-product .note-frame.note-editor button,
.affliate-product .note-frame.note-editor textarea,
.affliate-product .note-frame.note-editor [contenteditable],
.affliate-product .note-frame.note-editor input {
  pointer-events: initial !important;  
}
.disabled-btn {
  background: #D9D9D9 !important;
  color: #9F9F9F !important;
  border: 1px solid transparent !important;
  pointer-events: none; 
}
.print-table {
  display: table;
  width: 100%;  
  padding: 8px 0;  
  break-inside: avoid;
  page-break-inside: avoid;
}
.print-tr {
  display: table-row;
  break-inside: avoid;
  page-break-inside: avoid;
}
.print-td {
  display: table-cell;
  width: 50%;
  height: 100%;
  break-inside: avoid;
  page-break-inside: avoid;
}

.checkbox-1 {
  accent-color: #2da373;
}
.table-base td {
  vertical-align: top;
}
.success-price {
  display: inline-block;
  margin-top: 8px;
}
.cinline .flatpickr-calendar.inline{
  margin: auto;
}
.ui-timepicker-viewport {
  overflow-y: scroll !important;
  padding-right: 4px !important;
}
.ui-corner-all {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 85%;
}
.nhl {
  display: inline-block;
  padding-bottom: 4px;
  border: 2px solid transparent;
  margin-bottom: 20px;
  opacity: 0.5;
  font-weight: 700;
}
.nhl.nhl__active,  .nhl:hover{
  border-bottom: 2px solid white;
  opacity: 1;
}
.sic {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateY(-200%);
  transition: all 0.3s ease-in-out;
}
.sic.sic__active {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.glass-bg {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass-bg-preview {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.bgm {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.bga {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.product-steps {
  list-style: none;
  display: flex;  
  align-items: center;  
  margin: 16px 32px 0 32px;
}
.product-step {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d8d8d8;  
}
.product-line {
  background-color: #f4f4f4;  
  height: 4px;  
  flex: 1;  
}
.product-step.product-step__active {
  background-color: var(--p-green);
  position: relative;
}
.product-step.product-step__done {
  background-color: var(--p-green);  
}
.product-step.product-step__done + .product-line {
  background-color: var(--p-green);
}
.product-step.product-step__active::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 50%;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background-color: #f4f4f4;
}
.divider-sizes {
  list-style-type: none;
  display: flex;
  height: 8px;
  background-color: #D9D9D9;
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px;
}
.divider-size {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
}
.divider-size:hover {
  background-color: var(--p-green);
}
.divider-size.divider-size__active {
  width: 24px;
  height: 24px;
  background-color: var(--p-green);
  border: 3px solid white;
}
.column_classic, 
.column_grid_1, 
.column_grid_2,
.column_large_1,
.column_large_2 {  
  display: grid;  
  grid-template-columns: repeat(12, 1fr);  
  gap: 1rem;  
}
.column_classic [data-preview-column]{  
  grid-column: span 6;
}
.column_grid_1 [data-preview-column]:first-child{  
  grid-column: span 4;  
}
.column_grid_1 [data-preview-column]:nth-child(2){  
  grid-column: span 8;    
}
.column_grid_2 [data-preview-column]:first-child{  
  grid-column: span 8;  
}
.column_grid_2 [data-preview-column]:nth-child(2){  
  grid-column: span 4;  
}
.column_large_1 [data-preview-column]{  
  grid-column: span 4;
}
.column_large_2 [data-preview-column]:first-child, 
.column_large_2 [data-preview-column]:last-child{  
  grid-column: span 3;
}
.column_large_2 [data-preview-column]:nth-child(2) {
  grid-column: span 6;
}
.isl svg{
  color: var(--sc);
}
.product-steps {
  list-style: none;
  display: flex;  
  align-items: center;  
  margin: 16px 32px 0 32px;
}
.product-step {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d8d8d8;  
}
.product-line {
  background-color: #f4f4f4;  
  height: 4px;  
  flex: 1;  
}
.product-step.product-step__active {
  background-color: var(--p-green);
  position: relative;
}
.product-step.product-step__done {
  background-color: var(--p-green);  
}
.product-step.product-step__done + .product-line {
  background-color: var(--p-green);
}
.product-step.product-step__active::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 50%;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background-color: #f4f4f4;
}
.divider-sizes {
  list-style-type: none;
  display: flex;
  height: 8px;
  background-color: #D9D9D9;
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px;
}
.divider-size {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
}
.divider-size:hover {
  background-color: var(--p-green);
}
.divider-size.divider-size__active {
  width: 24px;
  height: 24px;
  background-color: var(--p-green);
  border: 3px solid white;
}
.column_classic, 
.column_grid_1, 
.column_grid_2,
.column_large_1,
.column_large_2 {  
  display: grid;  
  grid-template-columns: repeat(12, 1fr);  
  gap: 1rem;  
}
.column_classic [data-preview-column]{  
  grid-column: span 6;
}
.column_grid_1 [data-preview-column]:first-child{  
  grid-column: span 4;  
}
.column_grid_1 [data-preview-column]:nth-child(2){  
  grid-column: span 8;    
}
.column_grid_2 [data-preview-column]:first-child{  
  grid-column: span 8;  
}
.column_grid_2 [data-preview-column]:nth-child(2){  
  grid-column: span 4;  
}
.column_large_1 [data-preview-column]{  
  grid-column: span 4;
}
.column_large_2 [data-preview-column]:first-child, 
.column_large_2 [data-preview-column]:last-child{  
  grid-column: span 3;
}
.column_large_2 [data-preview-column]:nth-child(2) {
  grid-column: span 6;
}
.isl svg{
  color: var(--sc);
}
.product-steps {
  list-style: none;
  display: flex;  
  align-items: center;  
  margin: 16px 32px 0 32px;
}
.product-step {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d8d8d8;  
}
.product-line {
  background-color: #f4f4f4;  
  height: 4px;  
  flex: 1;  
}
.product-step.product-step__active {
  background-color: var(--p-green);
  position: relative;
}
.product-step.product-step__done {
  background-color: var(--p-green);  
}
.product-step.product-step__done + .product-line {
  background-color: var(--p-green);
}
.product-step.product-step__active::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 50%;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background-color: #f4f4f4;
}
.divider-sizes {
  list-style-type: none;
  display: flex;
  height: 8px;
  background-color: #D9D9D9;
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px;
}
.divider-size {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
}
.divider-size:hover {
  background-color: var(--p-green);
}
.divider-size.divider-size__active {
  width: 24px;
  height: 24px;
  background-color: var(--p-green);
  border: 3px solid white;
}
.column_classic, 
.column_grid_1, 
.column_grid_2,
.column_large_1,
.column_large_2 {  
  display: grid;  
  grid-template-columns: repeat(12, 1fr);  
  gap: 1rem;  
}
.column_classic [data-preview-column]{  
  grid-column: span 6;
}
.column_grid_1 [data-preview-column]:first-child{  
  grid-column: span 4;  
}
.column_grid_1 [data-preview-column]:nth-child(2){  
  grid-column: span 8;    
}
.column_grid_2 [data-preview-column]:first-child{  
  grid-column: span 8;  
}
.column_grid_2 [data-preview-column]:nth-child(2){  
  grid-column: span 4;  
}
.column_large_1 [data-preview-column]{  
  grid-column: span 4;
}
.column_large_2 [data-preview-column]:first-child, 
.column_large_2 [data-preview-column]:last-child{  
  grid-column: span 3;
}
.column_large_2 [data-preview-column]:nth-child(2) {
  grid-column: span 6;
}
.isl svg{
  color: var(--sc);
}
.line-clamp-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.cdd {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #70707066;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  padding: 8px;
  z-index: 6;
  display: none;
}
[data-cddc].open__cddp .cdd {
  display: block;
}
.cddp {
  min-height: 41px;
  padding-right: 24px;
  cursor: pointer;
}
.cddp.cddp__error {
  border: 1px solid #EF5064;
}
[data-cddc].open__cddp .cddp::after {
  transform: rotate(180deg) translateY(31%);
  transform-origin: center center; 
}
.height-preview{
  height: 100% !important;
  overflow-x: hidden;
}
.cddp::after {
  content: "";
  right: 10px;
  height: 15px;
  width: 15px;
  display: inline-block;
  position: absolute;
  background-image: url("/static/assets/imgs/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform-origin: center center; 
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.3s ease-in-out;
}
.bcc {
  min-width: 40px;
  min-height: 40px;
  background-color: #EAF7F2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcc img {
  max-width: 100%;
  max-height: 100%;
}

.more-opt-btn.more-opt-btn__open, .more-opt-btn:hover {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 0 0;
}
.block-inactive .bcc, .block-draft .bcc, .block-inactive [data-bc]{
  filter: grayscale(1);
}
.block-inactive .block-title, .block-draft .block-title {
  opacity: 0.5;
}
.block-draft .dup-block {
  opacity: 0.5;
}
.more-options {
  width: 200px;
  position: absolute;
  right: 0;
  border-radius: 8px 0 8px 8px;
  display: none;
  z-index: 2;
}
.more-opt-btn__open + .more-options {
  display: block;
}
.more-opt-btn.option-flexi {
  background-color: #EAF7F2;
  border-radius: 8px;
}
.more-opt-btn.more-opt-btn__open, .more-opt-btn:hover {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 0 0;
  background-color: white;
}
.more-opt-btn.option-flexi.more-opt-btn__open .option-chev{
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}
.option-chev {
  transition: transform 0.3s ease-in-out;
}
.flex-shrink {
  flex-shrink: 0;
}
.list-alt li:nth-child(odd){
  background-color: #F4F4F4;
}
.list-alt li{
  padding: 8px;
  border-radius: 8px;
}
.list-alt {
  max-height: 210px;
  overflow: auto;
}
.img-con {
  object-fit: cover;
}
.nav-page li a{
  font-weight: 600;
  cursor: pointer;
  padding: 6px 15px;
  display: inline-block;
  border-radius: 8px;
}
.nav-page li.nav-page__active a{
  background-color: var(--p-green);
  color: white;
  pointer-events: none;
  opacity: 0.8;
}
.nav-page li a:hover{
  color: var(--p-green);
}
.skeleton {
  background-color: #e2e5e7;
  background-image:	linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
	background-size: 40px 100%;
  background-repeat: no-repeat; 
  animation: shine 1s ease infinite; 
  background-position: left -40px top 0; 
}
.blinking {
  animation: blinking 1.2s linear infinite; 
}
.ibl {
  height: 272px;
  width: 272px;
}
div[contenteditable] {
  word-break: break-word;
}
[data-summer-wrapper] ol {
  list-style-type: decimal;
  list-style-position: inside;
}
[data-summer-wrapper] ul {
  list-style-type: circle;
  list-style-position: inside; 
}
.ibl {
  height: 272px;
  width: 272px;
}
[data-summer-wrapper] preview-image ul,
[data-summer-wrapper] edit-grid ul,
[data-summer-wrapper] preview-videoimage ul {
  list-style-type: none;
}
preview-image .glide__slide, 
preview-videoimage .glide__slide,
image-preview .glide__slide, 
videoimage-preview .glide__slide{
  height: inherit;
  display: flex;
  align-items: center;
}
.half-star {
  transform: translateX(100%);
  margin-left: -10px;
}
.half-star svg {
  width: 12px;
}

.starsss:hover svg,
.starsss:hover ~ .starsss svg{
  fill: #ffd560;
}
@keyframes shine {
	to {
		background-position: right -40px top 0;
	}
}
@keyframes blinking {
	0% {
		opacity: 0.3;
	}
  33% {
    opacity: 0.5;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.cimage {
  max-width: 100%;
  max-height: 100%;
}
[data-content] p {
  font-size: 14px;
}
[data-content] img {
  width: 100%;
  height: auto;
}
[data-content] a {
  text-decoration: underline;
}
.t-image img {
  width: 100% !important;
}
.my-table  {
  border-collapse: collapse;
  text-align: left;
}
.my-table td, .my-table th {
  padding: 6px 16px;
}
.my-table th {
  background-color: var(--p-green);
  color: white;
}
.my-table tbody tr:nth-child(even) td {
  background-color: #EAF7F2;
}
.flex-start {
  align-items: flex-start;
}
.my-progress {
  width: var(--width);
}
.post-card {
  width: 153px;
  height: 175px;
}
.glass-box {
  background-color: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.skeleton {
  background-color: #e2e5e7;
  background-image:	linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
	background-size: 40px 100%;
  background-repeat: no-repeat; 
  animation: shine 1s ease infinite; 
  background-position: left -40px top 0; 
}
.blinking {
  animation: blinking 1.2s linear infinite; 
}
.trumbowyg-editor {
  resize: vertical !important;
}
fieldset:disabled, [data-input-disable]:disabled + label{
  filter: grayscale(1);
  opacity: 0.7;
}
/* flex items-center flex-row-reverse justify-end  */
.comment-rating {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.preview-star .comment-rating svg {
  height: 6px;
  width: 6px
}
.preview-star  .comment-rating .half-star {
  width: 5px;
}
.preview-star .comment-rating .half-star {
  margin-left: -4px;
}
.comment-rating svg {
  height: 16px;
  width: 16px;
  fill: #D9D9D9;
}
.comment-rating.comment-rating__review svg {
  height: 21px;
  width: 21px;
}
.comment-rating.comment-rating__review .half-star {
  width: 11px;
}
.comment-rating .half-star {
  width: 8px;
  margin-left: -9px;
}
[data-fill], [data-fill] ~ svg , svg.active-star , svg.active-star ~ svg, .active-star {
  fill: #FFAD33 !important;
}
/* .blur-right {
  position: relative;
}
.blur-right::before {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  background-image: linear-gradient(270deg, #ffffff50 0%, rgba(239, 246, 244, 0) 100%);
  width: 16px;
  z-index: 1;
} */
details[open] .ddown {
  transform: rotate(180deg);
}
.ddown, details[open] .ddown {
  transition: all ease-in-out 0.3s
}
@keyframes shine {
	to {
		background-position: right -40px top 0;
	}
}
@keyframes blinking {
	0% {
		opacity: 0.3;
	}
  33% {
    opacity: 0.5;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
.note-fontsize .note-btn.dropdown-toggle {
  display: flex;
  justify-content: center;
  min-width: 60px;
}
.note-frame {
  color: #404040;
  font-family: 'lato';
}
.note-toolbar {
  background-color: white;
}
.note-btn.dropdown-toggle:hover,.note-btn:hover {
  background-color: #EAF7F2;
}
.note-frame ul, .note-frame ol{
  list-style-position: inside;
}
.note-editable {
  background-color: white;
}
.note-modal-footer {
  height: 60px;
}
.note-frame iframe, .contents-details iframe {
  width: 100%;
  aspect-ratio: 9/16;
}
.note-btn-primary {
  background-color: var(--p-green);
  border-radius: 4px;
}
.checkbox.sn-checkbox-open-in-new-window label, .checkbox.sn-checkbox-use-protocol label{
  display: flex;
  gap: 1rem;
}
.checkbox.sn-checkbox-open-in-new-window input, .checkbox.sn-checkbox-use-protocol input{
  width: 18px;
}
.note-modal-content {
  max-width: 504px;
  margin: 32px auto;
}
.note-editor .note-toolbar .note-color-all .note-dropdown-menu, .note-popover .popover-content .note-color-all .note-dropdown-menu {
  min-width: 100%;
}
.note-editor .note-toolbar .note-para .note-dropdown-menu, .note-popover .popover-content .note-para .note-dropdown-menu {
  min-width: 240px;
}
.ww-pl {
  white-space:pre-line !important;
}
.video-thumb img[data-placeholder] {
  width: initial;
}
.active-opt {
  background-color: #EAF7F2;
  color: #2AB57D;
}
.line-clamp-2 {
  white-space:nowrap; 
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.video-thumb img[data-placeholder] {
  width: initial;
}
.table.table-bordered {
  width: 100%;
  border-collapse: collapse;
  word-break: normal;

}
.table.table-bordered td, .table.table-bordered th {
  border: 1px solid #ececec;
  padding: 5px 3px;
}
.f-inherit, .f-inherit::placeholder {
  font-family: inherit;
}
.contact-platform {
  position: fixed;
  bottom: 3%;
  right: 28px;
  z-index: 100;
  filter: drop-shadow(1px 1px 3px var(--current-color));
}
.button-hover {
  color: var(--current-color);
  border: 1px solid var(--current-color);
}
.button-hover:hover {
  background-color: var(--current-color);
  color: white;
}
.brand-list li{
  height: 48px;
  width: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-list li.small-brand {
  width: 50px;
}
.brand-list li img{
  max-height: 100%;
  max-width: 100%;
}
[data-summer-wrapper] *:not(font){
  /* color: inherit !important; */
}
.shop-image {
  border-radius: 8px;
  width: 56px;
  height: 56px;
}
.stack-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.stack-image img {
  animation: updown 3s ease-in-out var(--delay) infinite;
}
.slider-title {
  background-image: var(--bt);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain; 
  display: inline-block;
  height: 40px;
  width: 40px;
}
.slider-nav {
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.slider-nav.slider-nav__active, .slider-nav:hover {
  transition: all 0.3s ease-in-out;
  opacity: 1;
  background: linear-gradient(225deg, #EBFAF4 0%, #F4F9F7 100%);
}
.side-border {
  border-left: 1px solid #D8D8D8;
  border-right: 1px solid #D8D8D8;
}
.slider-card {
  position: absolute;
  top: -37px;
  left: 50%;
  transform: translateX(-50%);
}
.gap-slider .glider-track {
  gap: 2.5rem;
}
.aoci:checked + label {
  border: 1px solid #29B77D;
}
.aoci + label:hover {
  background-color: #E0F1EA;
}
@keyframes updown {
  0% { transform: translateY(0); }
  50% { transform: translateY(3%); }
  100% { transform: translateY(0); }
}
.block-layout {
  aspect-ratio: 13/14;
  overflow: hidden;
}
.table-bordered td, .table-bordered th {
  padding: 6px 8px;
}
/* .table-bordered tr td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.table-bordered tr td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
} */
.table-bordered tr:nth-child(odd) td{
  background-color: #F4F9F7;
}
.text-left-1 tr td:nth-child(1), .text-left-1 tr th:nth-child(1) {
  text-align: left;
}
.text-left-2 tr td:nth-child(2), .text-left-1 tr th:nth-child(2) {
  text-align: left;
}
.calendar-container .flatpickr-calendar, 
.calendar-container .flatpickr-rContainer, 
.calendar-container .flatpickr-weekdaycontainer, 
.calendar-container .flatpickr-days ,  
.calendar-container .flatpickr-days, 
.calendar-container .dayContainer  {
  width: 100%;
  max-width: 100% ;
}
.calendar-container  .flatpickr-day {
  width: max-content ;
  max-width: 100%;
  border-radius: 4px;
  width: 80%;
  margin: auto;
  padding-top: 6px;
  padding-bottom: 6px;
  text-align: center;
  height: max-content;
  line-height: initial;
}
.calendar-container .dayContainer {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(7, 1fr);
  min-width: min-content;
  padding-bottom: 8px;
}
.calendar-container.all-mon .dayContainer > .flatpickr-day:nth-child(7n-5),
.calendar-container.all-tue .dayContainer > .flatpickr-day:nth-child(7n-4),
.calendar-container.all-wed .dayContainer > .flatpickr-day:nth-child(7n-3),
.calendar-container.all-thu .dayContainer > .flatpickr-day:nth-child(7n-2),
.calendar-container.all-fri .dayContainer > .flatpickr-day:nth-child(7n-1),
.calendar-container.all-sat .dayContainer > .flatpickr-day:nth-child(7n-0),
.calendar-container.all-sun .dayContainer > .flatpickr-day:nth-child(7n-6)
{
  background: transparent;
  color: #29B57D;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.02);
}

.flatpickr-day.nextMonthDay.selected:hover, .flatpickr-day.selected:hover {
  color: white !important;
}

.flatpickr-day.flatpickr-disabled {
  color: rgba(57,57,57,0.3) !important;
}

.calendar-container .flatpickr-calendar.animate.inline {
  margin-left: auto;
  margin-right: auto;
}

.calendar-container .flatpickr-month {
  background-color: #EFF6F4;
  border-bottom: 1px solid #D9D9D9;
}

.calendar-container .numInput.cur-year, .calendar-container .flatpickr-monthDropdown-months{
  font-weight: normal;
  font-size: 16px;
}
.flatpickr-day.selected:hover, .flatpickr-day.selected {
  background: #29B57D !important;
}
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}
.checkbox-checked:checked + label {
  border: 1px solid var(--p-green);
  background-color: #E0F8EF;
}
.kasisolusi.theme-bg::after {
  background-image: url('/static/assets/imgs/themes_bg/kasisolusi\ lynk\ bg.svg');
  background-position: bottom center;
}
.kasisolusi .cst{
  background:transparent 0% 0% no-repeat padding-box;
  background-color:#ffffff;
  -webkit-box-shadow:4px 5px 9px #DEDEDE;
  box-shadow:1px 3px 6px blue;
  border-radius: 16px;
  border: 1px solid blue;
}
.reset-bxbr .cst{
  -webkit-box-shadow:initial;
  box-shadow:initial;
  border: initial;
  border-radius: initial;
}
.table.table-bordered {
  background-color: #ffffff;
}
.table.table-bordered td, .table.table-bordered th{
  overflow-wrap: all;  
  word-break: break-word; 
}
[data-col][data-summer-wrapper] iframe {
  width: 100%;
  aspect-ratio: 1/1;
  height: max-content;
}
@keyframes spin { 
  100% { 
      -webkit-transform: rotate(-360deg); 
      transform:rotate(-360deg); 
  } 
}
@media only screen and (max-width: 992px) {  
 .course-container {
  -ms-grid-column: span 6;
    grid-column: span 6;
 }
 .course-details,.course-contents {
  -ms-grid-column: span 12;
  grid-column: span 12;
 }
 .course-responsive, .course-contents, .overview-responsive, .overview-active .course-contents, .responsive-search-head {
   display: none;
 }
 .course-tab-responsive, .course-contents, .overview-active .overview-responsive, .responsive-search-bottom {
   display: block;
 } 
 .slider-title {
  height: 24px;
  width: 24px;
 }
 
}
@media only screen and (max-width: 546px) {  
  .gap-slider .glider-track {
    gap: 1rem;
  }
  .course-container {
    -ms-grid-column: span 12;
      grid-column: span 12;
   }
   .print-table, .print-td, .print-tr {
    display: block;
    width: 100%;
  }
  .nav-page #prev-pg, .nav-page #next-pg{
    padding-left: 8px;
    padding-right: 8px;
  }
  .nav-page {
    gap: 0.5rem;
    flex-wrap: nowrap !important;
  }
  .nav-page li a {
    font-size: 14px;
    padding: 5px 12px;
  }
}
