@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

:root {
  /*  --bs-container-max-width: 1121px;*/
  --bs-container-max-width: 1024px;
  --bs-container-max-width: 1130px;


  --bs-default-font: "Open Sans", sans-serif;
  --bs-default-font-size: 16px;
  --bs-default-font-weight: 400;
  --bs-default-font-color: #000;
  /*  --bs-default-font-color-emphasis: #0D0A3A;*/

  --bs-link-color: #172351;
  --bs-link-hover-color: #3c4eee;

  --bs-secondary-color: #6c757d;

  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-default: #0d6efd;
  --bs-dark: #000000;
  --bs-light: #ffffff;
  --bs-dark-blue: #172351;
  --bs-text-grey: #959292;
  --bs-text-dark: #677381;

  --primary-color: #6E55FF;
  --primary-color-hover: #5844cc;

  --star-size: 20px;
  --star-color: #ccc;
  --star-background: #fc0;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  /*:root {
    --bs-default-font-size: 14px;
  }*/
}

*, ::after, ::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body{
  color: var(--bs-default-font-color);
  font-size: var(--bs-default-font-size);
  font-family: var(--bs-default-font);
  scroll-behavior: smooth;
}


ol, ul {
    padding-left: 2rem;
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
}


/*************************************/
/*-------- BOOTSTRAP - START --------*/
/*************************************/
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: var(--bs-container-max-width);
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: var(--bs-container-max-width);
  }
}
/*************************************/
/*-------- BOOTSTRAP - END ----------*/
/*************************************/


/*************************************/
/*-------- TRIGGERS - START ---------*/
/*************************************/
.d-wrap, 
.d-tab-pane{
  display: none;
}
.d-wrap.active,
.d-tab-pane.active{
  display: block;
}


/*.tab-content>.active {
    display: block;
}
.tab-content>.tab-pane {
    display: none;
}*/


.hi-scroll{
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.hi-scroll .scroll-container{
  animation: hi_scroll 15s linear infinite;
}

@keyframes hi_scroll {
  0% {
    transform: translateX(0); /* Start from the initial position */
  }
  50% {
    transform: translateX(-10%); /* Move to the left by the width of the container */
  }
  100% {
    transform: translateX(0); /* Start from the initial position */
  }
}
/*************************************/
/*-------- TRIGGERS - END -----------*/
/*************************************/


h1,h2,h3,h4,h5,h6{
  color: var(--bs-dark-blue);
  font-weight: 700;
  line-height: normal;
}
h1, .h1{
  font-size: 1.94rem;
  line-height: 112%;
  margin-bottom: 1rem;
}
h2, .h2{
  font-size: 1.58rem;
  line-height: 112%;
  margin-bottom: 1rem;
}
h3 {
    font-size: 1.46rem;
    line-height: 112%;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1.22rem;
    line-height: 112%;
    margin-bottom: 1rem;
}

p{
  font-size: 1rem;
  font-weight: 400;
  line-height: 162.5%;
  margin-bottom: 1rem;
}

a{
  color: var(--bs-link-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
a:hover{
  color: var(--bs-link-hover-color);
}

ul{
  list-style: none;
  padding-left: 0;
}

p.small {
    font-size: 0.68rem;
    line-height: 189%;
    font-weight: 400;
}

input[type='text'], 
input[type='search'] {
    color: #858585;
    background: #fbfbfb;
    height: auto;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid #e6e6e6;
    border-radius: 0.25rem;
    box-shadow: none;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    padding: 0.75rem 1.5rem;
}

fieldset {
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0.35em 0.75em 0.625em;
}

.my-10{
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.font-italic {
    font-style: italic!important;
}

.text-start {
    text-align: left!important;
}
.text-center {
    text-align: center!important;
}
.text-end {
    text-align: right!important;
}



/************************************/
/*-------- BUTTONS - START ---------*/
/************************************/
.btn {
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1;
    --bs-btn-color: #000;
    --bs-btn-bg: transparent;
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-border-width: 0;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.756rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);

    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}
.btn:focus-visible {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn .icon:before{
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 500 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: transform 0.3s ease;
}

.btn .arrow-right:before {
    color: var(--bs-btn-color);
    content: "\F138";
    margin-left: 0.3em;
}
.btn:hover .arrow-right:before {
    color: var(--bs-btn-hover-color);
    transform: translateX(5px);
}
.btn:hover .arrow-right:before {
    color: var(--bs-btn-hover-color);
}

/*.btn .icon{
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.btn .arrow {
    width: 40px;
    height: 40px;
    margin-left: 1em;
    background-image: url(../images/icon-reviews.svg);
}*/



.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #6E55FF;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #6E55FF;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #6E55FF;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;

    background: linear-gradient(180deg, #8490FF 0%, #6E55FF 100%);
}
.btn-primary:hover {
    background: linear-gradient(180deg, #8187FF 0%, #AC7BFF 100%);
}
.btn-outline-primary {
  --bs-btn-color: #6E55FF;
  --bs-btn-bg: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6E55FF;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6E55FF;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: #6E55FF;

  /*--bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;*/
}

.btn.rounded,
.btn.rounded-pill {
  border-radius: 1.571rem !important;
  border-radius: 50rem !important;
}


/*
.btn{
  color: #FFFFFF;
  font-size: 1.143rem;
  font-weight: 600;
  line-height: normal;
  border: 0;
  border-radius: 5.989px;
  padding: 0.786rem 1.926rem;
  background: linear-gradient(180deg, #8490FF 0%, #6E55FF 100%), linear-gradient(180deg, #9C6FFF 0%, #7D7DFF 100%);
}
.btn:hover{
  background: linear-gradient(91deg, #8490FF 13.83%, #AC7BFF 93.77%);
}


.btn-primary{
  color: #FFFFFF;
  background: linear-gradient(180deg, #8490FF 0%, #6E55FF 100%), linear-gradient(180deg, #9C6FFF 0%, #7D7DFF 100%);
}
.btn-primary:hover{
  color: #FFFFFF;
  background: linear-gradient(91deg, #8490FF 13.83%, #AC7BFF 93.77%);
}
*/

.btn-secondary{
  color: #000000;
  background: #EBEEFB;
}
.btn-secondary:hover{
  color: #000000;
  background: #EBEEFB;
}

.btn .btn-arrow{
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
  margin-left: 0.571rem;
  vertical-align: middle;
}
.btn:hover .btn-arrow {
    animation: arrowforwards 300ms ease forwards;
}
.btn:not(:hover) .btn-arrow {
    animation: arrowreverse 300ms ease forwards;
}

/*.btn.rounded{
  border-radius: 1.571rem !important;
}*/

/*.btn.btn-sm{
  padding: 0.5rem 1rem;
}
.btn.btn-md{
  font-size: 1.145rem;
  font-weight: 500;
  padding: 0.7rem 1.6rem;
}
.btn.btn-lg{

}
.btn.btn-xl{
  font-size: 1.405rem;
  padding: 1.1rem 3rem;
}
*/

.btn.btn-xxl{
  font-size: 1.286rem;
  font-weight: 500;
  padding: 1.286rem 2.786rem;
}
.btn.btn-xxl.rounded{
  border-radius: 6rem !important;
}
.btn.btn-xxl .btn-arrow{
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 1rem;
}


/******* Button Style ******/

/*
.btn{
  color: #89216B;
  font-size: 1.11rem;
  font-weight: 400;
  line-height: 1.4em;
  border-color: #D04056;
}
.btn-600{
  font-weight: 600;
}
.btn-strong{
  font-weight: 700;
}

.btn-primary,
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background: linear-gradient(271.6deg, #6E55FF 4.17%, #845DE2 96.55%);
    border-color: #D04056;
    border: 0;
}

.btn-outline-primary,
.btn-outline-primary:not(:disabled):not(.disabled).active, 
.btn-outline-primary:not(:disabled):not(.disabled):active, 
.show>.btn-outline-primary.dropdown-toggle {
    background-color: #fff;
    background: #fff;
  color: #6E55FF;
  border-color: #6E55FF;
  font-weight: 600;
}

.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus, 
.btn-primary:not(:disabled):not(.disabled):active:focus, 
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.1rem rgb(208 64 86 / 50%);
}

.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus, 
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, 
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.1rem rgb(208 64 86 / 50%);
}

.btn-secondary,
.btn-secondary:not(:disabled):not(.disabled).active, 
.btn-secondary:not(:disabled):not(.disabled):active{
  color: #FFFFFF;
    background: #5333ED;
    border-color: #5333ED;
}
.btn-outline-secondary,
.btn-outline-secondary:not(:disabled):not(.disabled).active, 
.btn-outline-secondary:not(:disabled):not(.disabled):active {
    color: #5333ED;
    background-color: #fff;
    border-color: #5333ED;
}

.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled):hover {
    color: #5333ED;
    background-color: #fff;
    border-color: #5333ED;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled):hover {
    color: #FFFFFF;
    background: #5333ED;
    border-color: #5333ED;
}

.btn-sm{

}
.btn-md{

}
.btn-lg{

}
.btn-xl{
  padding: 1rem 2rem;
}
.btn-xxl{
  padding: 1.3rem 2rem;
  font-size: 1.3rem;
  font-weight: 400;
}

.icon-btn{
  padding: 0.4rem 2rem 0.4rem 0.5rem;
}
.icon-btn .fas{
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-right: 1rem;
  vertical-align: middle;
}
*/



/*********************************/
/*-------- CARD - START ---------*/
/*********************************/
/*.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
}
.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}*/
/********************************/
/*-------- CARD - END ----------*/
/********************************/



/*---------- NAV LINKS ---------*/
/********************************/
.v-card{
  padding: 1rem;
  color: var(--bs-default-font-color);
  background: #FFFFFF;
}
.v-card img{
  width: 100%;
}
.v-card .title{
  color: #303030;
  font-size: 1.071rem;
  font-weight: 700;
  line-height: 133.2%;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.v-card .subtitle{
  color: #4E4E4E;
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
  padding-right: 1rem;
}

.h-card{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  width: 100%;
}
.h-card .card-header{
  width: 3rem;
  height: 3rem;
  border: 3px solid #FFFFFF;
  border-radius: 6px;
  background: grey;
  padding: 1rem;
  /*  margin-right: 2rem;*/
}
.h-card .card-header img{
  width: 100%;
  height: 100%;
}










/*------- CUSTOMER FACES ---------*/
/**********************************/
.customer-faces{
  text-align: center;
}
.customer-faces img{
  width: 2.875rem;
  width: 2.875rem;
  margin-left: -13px;
}


/***********************************/
/*--------- HEADER - START --------*/
/***********************************/
.header-top{
  /* padding-top: 0.4rem; */
  padding-top: 0;
  padding-bottom: 0.4rem;
}
.navbar .navbar-brand img{
  height: 1.5rem;
}

.navbar{
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 1rem;
  --bs-navbar-color: #172351;
  --bs-navbar-hover-color: #172351;
  --bs-navbar-active-color: #172351;

  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;

  --bs-navbar-toggler-padding-y: 0.15rem;
  --bs-navbar-toggler-padding-x: 0.5rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-border-color: #EFEFEF;
  --bs-navbar-toggler-border-radius: 6px;
  --bs-navbar-toggler-focus-width: 0;

  width: 100%;
  flex-wrap: nowrap;
}

.toggle-btn{
  border: 1px solid #EFEFEF;
  border-radius: 6px;
  padding: 0.2rem 0.7rem;
  background-color: transparent;
}
.toggle-btn .bi{ 
  color: #686666;
  font-size: 1.8rem;
  line-height: 1;
}
.toggle-btn .bi-list{
  display: block;
}
.toggle-btn .bi-x-lg{
  display: none;
}
.toggle-btn.active .bi-list{
  display: none;
}
.toggle-btn.active .bi-x-lg{
  display: block;
}

/***** Dropdown Mobile ********/
/******************************/
.nav-dropdown-mobile {
  --th-dd-border-radius: 16px;
}
.nav-dropdown-mobile .top-border{
  border-top-left-radius: var(--th-dd-border-radius);
  border-top-right-radius: var(--th-dd-border-radius);
}
.nav-dropdown-mobile .dropdown{
  position: absolute;
  top: 50px;
  right: 0;
  width: 100%;
  z-index: 999;
}
.nav-dropdown-mobile .dropdown-inner{
  margin: 0 auto;
  border: 3px solid #E1EAF8;
  border-radius: 20px;
  background: white;
  box-shadow: 0px 0px 12px 0px rgba(129, 136, 255, 0.22);
}
/*.nav-dropdown .dropdown-inner:after {
  content: " ";
  position: absolute;
  right: calc(50% - 7.5px);
  top: 35px;
  border-top: none;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 15px solid #FFFFFF;
}*/
.nav-dropdown-mobile .dropdown-content{
  padding: 1.5rem 1.5rem;
  background: #FFFFFF;
  border-bottom-left-radius: var(--th-dd-border-radius);
  border-bottom-right-radius: var(--th-dd-border-radius);
}

.nav-dropdown-mobile .dropdown-header{
  background: #D8EEFE;
  padding: 1.1rem 1rem;
  border-top-left-radius: var(--th-dd-border-radius);
  border-top-right-radius: var(--th-dd-border-radius);
}
.nav-dropdown-mobile .dropdown-header a{
  color: #6E55FF;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 136.2%;
}
.nav-dropdown-mobile .dropdown-header a.d-next{
  font-weight: 600;
}
.nav-dropdown-mobile .dropdown-header a .bi{
  font-size: 0.7rem;
  line-height: 1;
}
.nav-dropdown-mobile .dropdown-header a .bi-chevron-right{
  margin-left: 0.5rem;
}
.nav-dropdown-mobile .dropdown-header a .bi-chevron-left{
  margin-right: 0.5rem;
}

.nav-dropdown-mobile .navbar-nav .nav-link span{
  color: #1D2657;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 0.5rem;
  display: block;
}
.nav-dropdown-mobile .navbar-nav .nav-link span .bi-chevron-right{
  margin-left: 0.6rem;
}
.nav-dropdown-mobile .navbar-nav .nav-link p{
  color: #7C7474;
  font-size: 1rem;
  font-weight: 500;
  line-height: 165%;
  margin-bottom: 0;
}

.nav-dropdown-mobile h5{
  color: #7C7474;
  font-size: 1.25rem;
  line-height: 130%;
  font-weight: 700;
}
.nav-dropdown-mobile .navbar-nav{
  --bs-nav-link-padding-x: 0rem;
  --bs-nav-link-padding-y: 0.8rem;
  --bs-nav-link-font-weight: 400;

  flex-direction: column;
}
.nav-dropdown-mobile .dropdown-plugins .navbar-nav{
  --bs-nav-link-padding-y: 1.0rem;
}
.nav-dropdown-mobile .navbar-nav .nav-item .nav-link{
  color: #172351;
  font-size: 1rem;
  line-height: 136.2%;
  font-weight: 400;
}
.nav-dropdown-mobile .navbar-nav .nav-item .nav-link .thicon{
  height: 1rem;
  margin-right: 0.9rem;
}


.page-template-bundles{
  --th-theme-color: #702DFF;
  --th-nav-link-color: #FFFFFF;
}
.page-template-bundles .header{
  background-color: var(--th-theme-color);
}
.page-template-bundles .navbar{
  --bs-navbar-color: var(--th-nav-link-color);
  --bs-navbar-hover-color: var(--th-nav-link-color);
  --bs-navbar-active-color: var(--th-nav-link-color);
}
.page-template-bundles .toggle-btn{
  border: 1px solid #FFFFFF;
}
.page-template-bundles .toggle-btn .bi{ 
  color: #FFFFFF;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .header{
    /*box-shadow: 0px 2px 12px 0px #6F56FF17;*/
  }
  .navbar .navbar-brand img{
    height: 1.56rem;
  }

  .navbar-nav{
    --bs-nav-link-padding-x: 1.5rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: 600;

    flex-direction: row;
  }
  .navbar-nav .nav-item .nav-link{
    --bs-nav-link-font-weight: 500;
  }
  .navbar-nav .nav-item .nav-link{
    font-size: 1rem;
    line-height: 1.36em;
    position: relative;
  }
  .navbar-nav .nav-item .nav-link .bi{
    font-size: 0.6rem;
    margin-left: 0.3rem;
    vertical-align: top;
  }

  .nav-link-cart .cart-icon img{
    height: 18px;
    width: auto;
  }
  .navbar-nav .nav-link-cart .cart-icon .bi{
    font-size: 1.2rem;
  }
  .nav-link-cart .cart-qty{
    color: #FFFFFF;
    background: #7B77FF;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 400;
    margin-left: -8px;
    margin-top: -1px;
    position: absolute;
    border: 2px solid #fff;
  }

  .navbar-nav .nav-dropdown .dropdown{
    display: none;
    width: 100%;
    position: absolute;
    top: 57px;
    right: 0;
    z-index: 999;
  }
  .navbar-nav .nav-dropdown:hover .dropdown{
    display: block;
  }

  /********** Dropdown **********/
  /******************************/
  .nav-dropdown .dropdown-inner{
    padding: 0.8rem;
    margin: 0 auto;
    border-radius: 5px;
    background: #F3F8FF;
    box-shadow: 0px 0px 12px 0px rgba(129, 136, 255, 0.22);
    position: relative;
  }
  .nav-dropdown:hover .nav-link:after {
    content: " ";
    position: absolute;
    right: calc(50% - 7.5px);
    top: 35px;
    border-top: none;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #F3F8FF;
  }
  .nav-dropdown .dropdown-inner .content{
    padding: 2rem 1.5rem;
    background: #FFFFFF;
    border-radius: 5px;
  }

  .nav-dropdown .next-link{
    color: #343E67;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 136.2%;
  }

  /***** Dropdown - Card ********/
  /******************************/
  .nav-dropdown .card{
    border-radius: 5px;
  }
  .nav-dropdown .card .card-body{
    padding: 0;
    border-radius: 5px;
  }
  .nav-dropdown .card .card-body img{
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 5px;
  }
  .nav-dropdown .card .card-body .card-title{
    font-size: 15px;
    font-weight: 700;
    line-height: 19.98px;
  }
  .nav-dropdown .card .card-body .card-text{
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
  }

  /***** Nav Item Card *****/
  /******************************/
  .nav-dropdown .nav-item-card{
    display: flex;
    gap: 1rem;
    padding: 1rem;
    position: relative;
  }
  .nav-dropdown .nav-item-card .card-body{
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .nav-dropdown .nav-item-card .card-img{
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 5px;
    background: linear-gradient(180deg, #FEF4FA 0%, #EAF3FE 100%);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.04);
  }
  .nav-dropdown .nav-item-card .card-title{
    color: #172351;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.07px;
    margin-bottom: 0.4rem;
  }
  .nav-dropdown .nav-item-card .card-text{
    color: #514E4E;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.07px;
    margin-bottom: 0;
  }
  .nav-dropdown .nav-item-card:hover .card-title{
    color: #6E55FF;
  }
  .nav-dropdown .nav-item-card:hover .card-text{
    color: #6E55FF;
  }

  /***** Price Plan *****/
  /******************************/
  .nav-dropdown .price-plan .text-offer{
    display: flex;
    align-items: center;
    color: #E79423;
    font-size: 14px;
    font-weight: 400;
    line-height: 15.12px;
    text-transform: uppercase;
  }
  .nav-dropdown .price-plan .lead{
    color: #343E67;
    font-size: 14px;
    font-weight: 600;
    line-height: 26.32px;
    margin-bottom: 0.5rem;
  }
  .nav-dropdown .price-plan ul {
    list-style: none;
    padding: 0;
  }
  .nav-dropdown .price-plan li {
    color: #AAAAAA;
    font-size: 14px;
    font-weight: 400;
    line-height: 38.01px;
    vertical-align: middle;
  }
  .nav-dropdown .price-plan li:before {
    color: #E96380;
    content: "\F2EF";
    display: inline-block;
    font-size: 0.4rem;
    font-family: bootstrap-icons !important;
    line-height: 1;
    margin-right: 0.6rem;
    vertical-align: 2px;
  }
  .price-info{
    display: flex;
    vertical-align: middle;
    justify-content: space-between;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  .price-info .price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 1rem;
  }
  .price-info .price .regular-price{
    color: #939393;
    font-size: 20px;
    font-weight: 400;
    line-height: 28.5px;
    text-decoration: line-through;
    text-decoration-color: #EA0000;
    margin-right: 1rem;
  }
  .price-info .price .sale-price{
    color: #172351;
    font-size: 30px;
    font-weight: 400;
    line-height: 42.75px;
  }
  .price-info .more{
    display: flex;
    align-items: end;
    margin-right: 1.5rem;
  }

  /***** Dropdown - Plugins *****/
  /******************************/
  .nav-dropdown .dropdown-plugins{
    /*  display: block !important;*/
  }
  .nav-dropdown .dropdown-plugins .dropdown-inner .content {
      padding: 1.5rem 1.5rem;
  }

  .nav-dropdown .dropdown-plugins .col-left {
      flex: 0 0 auto;
      width: 28%;
      border-right: 1px solid #D8D8D8;
  }
  .nav-dropdown .dropdown-plugins .col-right {
      flex: 0 0 auto;
      width: 72%;
  }
  .nav-dropdown .dropdown-plugins .next-link{
    color: #6E55FF;
  }

  .nav-dropdown .dropdown-plugins .col-left .card-body{
      padding-right: 0.7rem;
  }

  .nav-dropdown .dropdown-plugins .nav-item-card{
    gap: 2rem;
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
  }
  .nav-dropdown .dropdown-plugins .nav-item-card img{
    width: 30px;
    height: 30px;
  }
  .nav-dropdown .dropdown-plugins .nav-item-card .card-title{
    color: #818181;
    margin-bottom: 0;
  }

  /***** Dropdown - Resources *****/
  /******************************/
  .nav-dropdown .dropdown-resources{
  /*  display: block !important;*/
  }
  /*.dropdown-resources .dropdown-inner{
    width: 1073px !important;
  }*/
  .nav-dropdown.nav-resources{
    position: relative;
  }
  .navbar-nav .nav-dropdown .dropdown-resources{
    width: 400px !important;
    top: 45px;
  }

  .nav-dropdown .dropdown-resources .col-left {
      flex: 0 0 auto;
      width: 60%;
      padding: 1.5rem 0rem 1.5rem 2.25rem;
      border-right: 1px solid #D8D8D8;
  }
  .nav-dropdown .dropdown-resources .col-right {
      flex: 0 0 auto;
      width: 40%;
      padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  }

  .nav-dropdown .dropdown-resources .dropdown-inner .content{
    padding: 0;
  }
  .nav-dropdown .dropdown-resources .dropdown-inner .content .blogs{
    padding: 0 1.5rem 1.5rem 0;
  }

  .nav-dropdown .dropdown-resources .col-left .card{
    padding: 0.8rem;
    background: linear-gradient(180deg, #FEF4FA 0%, #EAF3FE 100%);
  }
  .nav-dropdown .dropdown-resources .col-left .card .card-body{
    
  }
  .nav-dropdown .dropdown-resources .col-left .card .card-body img{
    width: 100%;
    /*  height: 174.61px;*/
  }
  .nav-dropdown .dropdown-resources .col-left .card .card-body .card-title{
    color: #24C03D;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.95px;
  }
  .nav-dropdown .dropdown-resources .col-left .card .card-body .card-text{
    color: #353434;
    line-height: 19.95px;
    margin-bottom: 2.5rem;
  }

  .nav-dropdown .dropdown-resources .nav-item-card{
    gap: 1rem;
    margin: 0;
  }
  .nav-dropdown .dropdown-resources .nav-item-card .card-body{
    flex-direction: column;
    justify-content: flex-start;
  }
  .nav-dropdown .dropdown-resources .nav-item-card .card-img{
      width: 65px;
      height: 65px;
  }

  /***** Dropdown - Bundles *****/
  /******************************/
  .nav-dropdown .dropdown-bundles {
    /*  display: block !important;*/
  }
  .nav-dropdown .dropdown-bundles .dropdown-inner{
    padding: 0.5rem;
    width: 811px !important;
  }
  .nav-dropdown .dropdown-bundles .dropdown-inner .content{
    background: transparent;
    padding: 0rem;
  }

  .nav-dropdown .dropdown-bundles .col-left {
    flex: 0 0 auto;
    width: 35%;
    padding: 0;
    padding: 0 1.5rem 0 0.75rem;
  }
  .nav-dropdown .dropdown-bundles .col-right {
    flex: 0 0 auto;
    width: 65%;
    padding: 1.5rem 2rem;
    background: #FFFFFF;
    border-radius: 5px;
  }

  .nav-dropdown .dropdown-bundles .price-info .more .next-link{
    color: #6E55FF;
  }

  .nav-dropdown .dropdown-bundles .nav-item-card{
    display: flex;
    gap: 1rem;
    padding: 1rem;
  }
  .nav-dropdown .dropdown-bundles .nav-item-card.active{
    background: #FFFFFF;
    border-radius: 5px;
  }
  .nav-dropdown .dropdown-bundles .nav-item-card .card-body{
    padding: 0;
  }
  .nav-dropdown .dropdown-bundles .nav-item-card .card-img{
      width: 52px;
      height: 52px;
  }
  .nav-dropdown .dropdown-bundles .nav-item-card .card-title{
    color: #858689;
    margin-bottom: 0;
  }
  .nav-dropdown .dropdown-bundles .nav-item-card.active .card-title{
    color: #172351;
  }
  .nav-dropdown .dropdown-bundles .nav-item-card:hover .card-title{
    color: #172351;
  }

  .nav-dropdown .dropdown-bundles .nav-item-card.active:after{
    --th-arrow-size: 8px;

    content: " ";
    position: absolute;
    right: calc(-1* (var(--th-arrow-size) - 2px));
    top: calc(50% - var(--th-arrow-size));
    border-top: var(--th-arrow-size) solid transparent;
    border-right: none;
    border-left: var(--th-arrow-size) solid #FFFFFF;
    border-bottom: var(--th-arrow-size) solid transparent;
  }

  .page-template-bundles .nav-link-cart .cart-qty{
    color: #000;
    background: #FFF;
    width: 0.9rem;
    height: 0.9rem;
  }
}


/***********************************/
/*--------- HEADER - END ----------*/
/***********************************/


/***********************************/
/*----------- FOOTER START ----------*/
/*************************************/
.footer-wrap{
  background: linear-gradient(180deg, #DFE9F9 0%, rgba(247, 249, 252, 0.00) 100%);
}
.footer-main .container{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.footer-main .footer-content{
  justify-content: space-between;
}
.footer-main .footer-content .col-brand,
.footer-main .footer-content .col-links{
  margin-top: 1.3rem;
  margin-bottom: 1.3rem;
}
.footer-main .footer-content .col-brand,
.footer-main .footer-content .col-products,
.footer-main .footer-content .col-policy,
.footer-main .footer-content .col-support{
  flex: 0 0 auto;
  width: 100%;
}

.footer-main p{
  color: var(--bs-dark-blue);
  font-size: 1rem;
  font-weight: 500;
  line-height: 185%;
}
.footer-main h2{
  color: var(--bs-dark-blue);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1.43rem;
}
.footer-main h6{
  color: var(--bs-dark-blue);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1.43rem;
}
.footer-main ul li{
  color: var(--bs-dark-blue);
  font-size: 1rem;
  font-weight: 400;
  line-height: 136.2%;
  margin-bottom: 1.5rem;
}

.footer-main .footer-brand img{
  height: 1.563rem;
  margin-top: 0.681rem;
  margin-bottom: 1.4rem;
}
.footer-main .brand-desc{
  margin-bottom: 1.4rem;
}

/*---- Footer Trust Icons -----*/
/***********************************/
.footer-main .trust-elements{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.8rem;
}
.footer-main .trust-elements .title{
  color: #172351;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 0.77rem;
}
.footer-main .trust-elements .icons{
  height: 2.384rem;
  display: flex;
  align-items: center;
  justify-content: start;
}
.footer-main .trust-elements .security-icons img{
  height: 100%;
}
.footer-main .trust-elements .payment-methods img{
  height: 77.6%;
  margin-right: 0.5rem;
}
.footer-main .trust-elements .payment-methods .icons{
  justify-content: space-between;
  gap: 1.4rem;
}

/*---- Social Icons -----*/
/*************************/
.footer-main .follow-us{
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*  gap: 1.5rem;*/
}
.footer-main .social-icon{
  width: 2.969rem;
  height: 2.969rem;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.footer-main .social-icon img{
  height: auto;
}

/*----------- Footer Nav ----------*/
/***********************************/
.footer-main ul.footer-nav{
  margin-bottom: 0;
}
.footer-main ul.footer-nav.nav-mb{
  margin-bottom: 2.5rem;
}
.footer-main ul.footer-nav li:last-child{
  margin-bottom: 0;
}
.footer-main ul.footer-nav li a{
  display: flex;
  align-items: center;
}
.footer-main ul.footer-nav li a,
.footer-main ul.footer-nav li a p{
  font-size: 1rem;
  font-weight: 400;
  line-height: 185%;
  margin-bottom: 0;
  white-space: nowrap;
}
.footer-main ul.footer-nav li .thicon{
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  background-size: 60%;
  margin-right: 0.5rem;
}
.footer-main ul.footer-nav li a.btn-more{
  display: inline-block;
  font-size: 0.908rem;
  padding: 0.242rem 1.088rem;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .footer-main .container{
    padding-top: 2rem;
    padding-bottom: 0.2rem;
  }

  .footer-main .footer-content .col-brand{
    width: 29%;
  }
  .footer-main .footer-content .col-products{
    width: 28%;
  }
  .footer-main .footer-content .col-policy{
    width: 24%;
  }
  .footer-main .footer-content .col-support{
    width: 13%;
  }

  .footer-main p{
    font-size: 0.813rem;
    font-weight: 400;
  }
  .footer-main h2{
    font-size: 0.938rem;
    margin-bottom: 1rem;
  }
  .footer-main h6{
    font-size: 0.938rem;
    margin-bottom: 1rem;
  }
  .footer-main ul li{
    font-size: 0.813rem;
    margin-bottom: 0.75rem;
  }

  .footer-main .footer-brand img{
    height: 1.323rem;
    margin-bottom: 1rem;
  }
  .footer-main .brand-desc{
    margin-bottom: 2.5rem;
  }

  /*---- Footer Trust Icons -----*/
  /***********************************/
  .footer-main .trust-elements {
    padding-right: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .footer-main .trust-elements .title{
    font-size: 0.847rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
  }
  .footer-main .trust-elements .icons{
    height: 1.64rem;
  }
  .footer-main .trust-elements .payment-methods .icons{
    gap: 1.4rem;
  }

  /*---- Social Icons -----*/
  /*************************/
  .footer-main .follow-us{
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    width: 80%;
  }
  .footer-main .social-icon{
    width: 2.487rem;
    height: 2.487rem;
    padding: 0.4rem;
    border-radius: 6.8px;
  }
  .footer-main .social-icon img{
    height: auto;
  }

  /*----------- Footer Nav ----------*/
  /***********************************/
  .footer-main ul.footer-nav.nav-mb{
    margin-bottom: 1.3rem;
  }

  .footer-main ul.footer-nav li a,
  .footer-main ul.footer-nav li a p{
    font-size: 0.813rem;
  }
  .footer-main ul.footer-nav li .thicon{
    width: 1.376rem;
    height: 1.376rem;
/*    background-size: 55%;*/
  }

  .footer-main ul.footer-nav li a.btn-more{
    font-size: 0.813rem;
    padding: 0rem 1rem;
  }
}

/***** FOOTER - BOTTOM ******/
.footer-bottom .container{
  padding-top: 1.1rem;
  padding-bottom: 4.5rem;
  border-top: 0.847px solid #D3D0D0;
}
.footer-bottom .copy-rights p{
  color: #959292;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .footer-bottom .copy-rights p{
    font-size: 0.75rem;
  }
}
/*************************************/
/*------------ FOOTER END -----------*/
/*************************************/



/*************************************/
/*-------- HOME PAGE - START --------*/
/*************************************/
.bg-3{
  background: #F7F9FC;
}
.bg-4{
  background: linear-gradient(90deg, #7972FF 0%, #8EBAD9 35%, #BD87E8 100%);
}
.bg-5{
  background: #F7F9FC;
}
.bg-7{
  background: linear-gradient(180deg, rgba(236, 240, 253, 0) 0%, rgba(236, 240, 253, 0.3) 25.52%, rgba(236, 240, 253, 0.43) 84.33%, rgba(236, 240, 253, 0) 100%);
}

.dark-bg,
.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg p {
  color: #FFFFFF;
}


/******* Link Button *********/
.link-btn{
  --th-link-btn-color: #000000;
  --th-link-btn-bg: #FFFFFF;
  --th-link-btn-font-size: 1.16rem;
  --th-link-btn-icon-size: 2em;
  --th-link-btn-icon-gap: 1rem;
  --th-link-btn-font-weight: 700;
  --th-link-btn-line-height: 100%;
  --th-link-btn-border-radius: 9.31px;
  --th-link-btn-shadow: 0px 1px 7px 0px #00000024;
  --th-card-spacer-y: 0.5rem;
  --th-card-spacer-x: 1.9rem;
  
  color: var(--th-link-btn-color);
  font-size: var(--th-link-btn-font-size);
  font-weight: var(--th-link-btn-font-weight);
  line-height: var(--th-link-btn-line-height);
  padding: var(--th-card-spacer-y) var(--th-card-spacer-x);
  border-radius: var(--th-link-btn-border-radius);
  background: var(--th-link-btn-bg);
  box-shadow: var(--th-link-btn-shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.link-btn .bi{
  display: inline-block;
  font-size: var(--th-link-btn-icon-size);
  line-height: 1;
  margin-right: var(--th-link-btn-icon-gap);
  vertical-align: middle;
}
.link-btn .bi-facebook{
  color: #1877F2;
}
.link-btn:hover{
  color: #000000;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .link-btn{
    --th-link-btn-font-size: 1.35rem;
    --th-link-btn-icon-size: 2em;
    --th-link-btn-icon-gap: 1.2rem;
    --th-link-btn-border-radius: 10.83px;
    --th-card-spacer-y: 0.7rem;
    --th-card-spacer-x: 2.2rem;
  }
}


/******* Profile Card *********/
.profile-card{
  --th-profile-card-gap: 18px;
  --th-profile-card-img-size: 57px;
  --th-profile-card-img-border-radius: 50%;
  --th-profile-card-title-size: 1rem;
  --th-profile-card-subtitle-size: 0.937rem;
  --th-profile-card-title-color: #000000;
  --th-profile-card-title-weight: 600;
  --th-profile-card-title-line-height: 136.2%;
  --th-profile-card-subtitle-color: #8F8F8F;
  --th-profile-card-subtitle-weight: 600;
  --th-profile-card-subtitle-line-height: 136.2%;

  display: flex;
  gap: var(--th-profile-card-gap);
}
.profile-card img{
  flex: 0 0 var(--th-profile-card-img-size);
  width: var(--th-profile-card-img-size);
  height: var(--th-profile-card-img-size);
  border-radius: var(--th-profile-card-img-border-radius);
}
.profile-card .info{
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.profile-card p.title{
  color: var(--th-profile-card-title-color);
  font-size: var(--th-profile-card-title-size);
  font-weight: var(--th-profile-card-title-weight);
  line-height: var(--th-profile-card-title-line-height);
}
.profile-card p.subtitle{
  color: var(--th-profile-card-subtitle-color);
  font-size: var(--th-profile-card-subtitle-size);
  font-weight: var(--th-profile-card-subtitle-weight);
  line-height: var(--th-profile-card-subtitle-line-height);
  margin-bottom: 0;
}


/******* Star Ratings *********/
.star-ratings{
  --th-rating-star-size: 1rem;
  --th-rating-star-gap: 0;
  display: inline-block;
}
.star-ratings .thi{
  display: inline-block;
  margin-right: var(--th-rating-star-gap);
  vertical-align: middle;
  width: var(--th-rating-star-size);
  height: var(--th-rating-star-size);
  background-size: var(--th-rating-star-size) var(--th-rating-star-size);
  background-repeat: no-repeat;
}
.star-ratings .thi:last-child{
  margin-right: 0;
}
.star-ratings .thi-star{
  background-image: url("../images/icons/stars/star.svg");
}
.star-ratings .thi-star-fill{
  background-image: url("../images/icons/stars/star-fill.svg");
}
.star-ratings .thi-star-half{
  background-image: url("../images/icons/stars/star-half.svg");
}


.section-hero1{
  padding-top: 3rem;
  padding-top: 3rem;
}
.section-hero1 h1, 
.section-hero1 .h1{
  color: #172351;
  font-size: 2rem;
  font-weight: 800;
  line-height: 37.7px;
  text-align: center;
  margin-bottom: 0;
}
/*.section-hero .text-scroll{
  min-height: 7.2rem;
}*/
.text-scroll1 .h1{
  background: linear-gradient(180deg, #6E55FF 0%, #AB7CFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-hero1 p.lead{
  color: #3C3C3C;
  font-size: 16px;
  font-weight: 400;
  line-height: 26.4px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/******* Home - Styles *********/
.template-home .section{
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
}

.section h2, .section .h2{
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 136.2%;
  margin-bottom: 1rem;
}
.section p{
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 136.2%;
  margin-bottom: 1rem;
}

.section .btn-xl{
  font-size: 1rem;
  padding: 1.07rem 2.85rem;
}

.section .card{
  --bs-card-border-width: 0.6px;
  --bs-card-border-radius: 12px;
  --bs-card-border-color: #DFDDDD;
  --bs-card-spacer-y: 0.8rem;
  --bs-card-spacer-x: 0.8rem;
  --bs-card-cap-padding-y: 1.3rem;
  --bs-card-cap-padding-x: 1.3rem;

  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.section .card-header,
.section .card-footer{
  background-color: transparent;
  border: 0;
}
.section .card-header{
  padding-bottom: 0;
}
.section .card-footer{
  padding-top: 0;
}
.section .card img{
  width: 100%;
}
.section .card h3,
.section .card .card-title{
  color: #3B3B3B;
  font-size: 0.938rem;
  font-weight: 800;
  line-height: 136.2%;
}
.section .card p{
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 136.2%;
  margin-bottom: 0;
}

.section .grid{
  --th-grid-gap-x: 0;
  --th-grid-gap-y: 0;
  --th-grid-item-bg: #FFFFFF;
  --th-grid-item-border-radius: 0;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--th-grid-gap-x);
}
.section .grid .grid-item{
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--th-grid-item-bg);
  border-radius: var(--th-grid-item-border-radius);
  margin-top: calc(0.5* var(--th-grid-gap-y));
  margin-bottom: calc(0.5* var(--th-grid-gap-y));
}
.section .grid .grid-item img{
  width: auto;
  height: 100%;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .template-home .section{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .section h2, .section .h2{
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
  .section p{
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .section .btn-xl{
    font-size: 1.125rem;
    padding: 1.2rem 3.1rem;
  }
  .section .card{
    --bs-card-border-width: 0.8px;
    --bs-card-border-radius: 17px;
    --bs-card-spacer-y: 1.4rem;
    --bs-card-spacer-x: 1.2rem;
    --bs-card-cap-padding-y: 1.4rem;
    --bs-card-cap-padding-x: 1.9rem;

    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .section .card h3,
  .section .card .card-title{
    font-size: 1.188rem;
    margin-bottom: 0.7rem;
  }
  .section .card p{
    font-size: 1rem;
  }
}

/******* Section - Hero *********/
.section-hero{
  text-align: center;
  padding-top: 3.3rem !important;
}
.section-hero h1,
.section-hero .h1{
  color: #172351;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 135%;
  letter-spacing: -1px;
}
.section-hero .text-scroll{
  position: relative;
  height: 50px;
  vertical-align: middle;
  overflow: hidden;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.section-hero .text-scroll .h1{
  background: linear-gradient(180deg, #6E55FF 0%, #AB7CFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: normal;
}
.section-hero .text-scroll span {
  position: absolute;
  top: 0;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -200%);
  transition: transform 1.5s, opacity 0.25s 0.25s;
}
.section-hero .text-scroll span.current {
  opacity: 1;
  transform: translate(-50%, 0);
}
.section-hero .text-scroll span.next {
  transform: translate(-50%, 200%);
}

.section-hero .lead{
  color: #3C3C3C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 165%;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.section-hero .users{
  margin-bottom: 0.9rem;
}
.section-hero .users .customer-faces{
  margin-bottom: 1rem;
}
.section-hero .users .customer-faces img{
  height: 1.75rem;
  width: 1.75rem;
  margin-left: -10px;
}
.section-hero .users .title{
  color: #999797;
  font-size: 1rem;
  font-weight: 400;
  line-height: 142.5%;
  margin-bottom: 0;
}
.section-hero .users .title strong{
  font-weight: 700;
}
.section-hero .btn-xl{
  font-size: 1rem;
  padding: 1.07rem 2.85rem;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-hero{
    padding-top: 8rem !important;
  }
  .section-hero h1,
  .section-hero .h1{
    font-size: 4.68rem;
    line-height: 112%;
  }
  .section-hero .text-scroll{
    height: 100px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .section-hero .lead{
    width: 70%;
    color: #677381;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 136.2%;
    margin-bottom: 3.4rem;
  }
  .section-hero .users{
    margin-bottom: 1.2rem;
  }
  .section-hero .users .customer-faces{
    margin-bottom: 1.2rem;
  }
  .section-hero .users .customer-faces img{
    height: 2.875rem;
    width: 2.875rem;
    margin-left: -13px;
  }
  .section-hero .users .title{
    font-size: 1.06rem;
  }
  .section-hero .btn-xl{
    font-size: 1.125rem;
    padding: 1.2rem 3.1rem;
  }
}

/******* Section - ROI *********/
.section-roi{

}
.col-summary{
  border-radius: 10px;
  background: linear-gradient(180deg, #d3eaff 0%, #ebe1ff 100%);
}

/*.browser-window{
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-right: 0;
  padding: 1rem;
  border-radius: 6.868px 0px 0px 6.868px;
  background: #F7F9FC;
}*/
/*.browser-window-header{
  height: 50px;
}*/
/*.browser-window-btn{
  width: 0.714rem;
  height: 0.714rem;
  border-radius: 50%;
  display: inline-block;
  background-color: #1BB99B;
}
.red{
  background-color: #EB495F;
}
.orange{
  background-color: #F49D1D;
}
.green{
  background-color: #1BB99B;
}

.browser-window-body{
  height: 99%;
  width: 99%;
}
.browser-window-body .card{
  border: 0;
}*/

/******* Section - Products *********/
.section-products .product-grid{
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
  gap: 1.4rem;
  overflow-x: auto;
  padding-top: 0.6rem;
  padding-bottom: 0.3rem;
}
.section-products .product-grid{
  scrollbar-width: none;
}
.section-products .product-grid::-webkit-scrollbar {
  display: none;
}
.section-products .product-grid .item{
  width: 78px;
  height: 78px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border: 1.68px solid #F5F3FD;
  border-radius: 17.63px;
}
.section-products .product-grid .item:hover,
.section-products .product-grid .item.active{
  border-color: #C453E0;
}
.section-products .product-grid .item img{
  width: auto;
  height: 2.15rem;
}
.section-products .card-product .card-img img{
    border-radius: 9.27px;
  }
.section-products .card-product .card-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.3rem 0 0.5rem;
}
.section-products .card-product .price{
  font-size: 0.891rem;
  font-weight: 800;
  line-height: 136.2%;
}
.section-products .card-product .btn{
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 7.54px;
  padding: 0.56rem 2.2rem;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-products .col-left{
    padding-top: 1rem;
    padding-right: 3rem;
  }
  .section-products .product-grid{
    flex-flow: row wrap;
    gap: 1.6rem 2rem;
    justify-content: space-between;
    padding-right: 0.5rem;
    margin-bottom: 1.2rem;
  }
  .section-products .product-grid .item{
    border-width: 2px;
    border-radius: 13px;
  }
  .section-products .product-grid .item img{
    height: 2.5rem;
  }
  .section-products .card-product .card-header{
    margin-top: 0.5rem;
  }
  .section-products .card-product .card-img img{
    border-radius: 13px;
  }
  .section-products .card-product .price{
    font-size: 1.25rem;
  }
  .section-products .card-product .btn{
    font-size: 1.1rem;
    border-radius: 10.58px;
    padding: 0.77rem 3.15rem;
  }
}

/******* Section - Bundles *********/
.section-bundles h2{
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-bundles .bundle-span{
  color: #6E55FF;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  border: 3.04px solid #CCCED1;
  border-radius: 29.1px;
  padding: 0.38rem 0.88rem;
  margin-left: 0.2rem;
  margin-right: -1rem;
  transform: rotate(-5deg);
  display: inline-block;
}

.section-bundles .d-tab-links{
  display: flex;
  gap: 20px;
  margin-top: 1.8rem;
  margin-bottom: 2.5rem;
}
.section-bundles .d-tab-links .tab-pill{
  font-size: 1rem;
  font-weight: 500;
  line-height: 136.2%;
  white-space: nowrap;
  padding: 0.75rem 1.5rem 0.75rem 1.5rem;
  border: 1px dashed #000000;
  border-radius: 35px;
  background: #FFF;
}
.section-bundles .d-tab-links .tab-pill.active{
  color: #FFFFFF;
  font-weight: 400;
  border: 0;
  background: linear-gradient(180deg, #8490FF 0%, #6E55FF 100%);
}
.section-bundles .d-tab-pane {
  display: block;
}

.section-bundles .card{
  --bs-card-spacer-x: 0.7rem;
  --bs-card-cap-padding-y: 1.1rem;
}
.section-bundles .card .card-title {
  margin-bottom: 0;
}
.section-bundles .bundle-card .offer-box{
  background: #EEFAFD;
  padding: 1.0rem 1.0rem;
  border-radius: var(--bs-card-border-radius);
}
.section-bundles .bundle-card .offer-box ul{
  color: #6C6C6C;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 271.5%;
  margin-bottom: 0.6rem;
}

.section-bundles .bundle-card .card-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 0.3rem 0 0.5rem;
}
.section-bundles .bundle-card .price{
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-bundles .bundle-card .price .regular-price{
  color: #ADADAD;
  font-size: 0.764rem;
  font-weight: 500;
  line-height: normal;
  text-decoration: line-through;
}
.section-bundles .bundle-card .price .sale-price{
  font-size: 1.67rem;
  font-weight: 800;
  line-height: normal;
}
.section-bundles .bundle-card .btn{
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 7.54px;
  padding: 0.56rem 2.2rem;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-bundles .d-tab-pane {
    display: none;
  }
  .section-bundles .d-tab-pane.active {
    display: block;
  }

  .section-bundles h2{
    font-size: 2.32rem;
    margin-bottom: 2.1rem;
  }
  .section-bundles .bundle-span{
    border-width: 5.42px;
    border-radius: 51.9px;
    padding: 0.6rem 1.5rem;
  }

  .section-bundles .card{
    --bs-card-cap-padding-y: 1.1rem;
    --bs-card-spacer-y: 0.8rem;
    --bs-card-spacer-x: 0.8rem;

    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .section-bundles .bundle-card-bnr .card-header{
    --bs-card-cap-padding-y: 2.1rem;
    --bs-card-cap-padding-x: 2.5rem;
    padding-bottom: 0.5rem;
  }
  .section-bundles .bundle-card-bnr h3.card-title{
    font-size: 1.375rem;
    font-weight: 700;
  }
  .section-bundles .bundle-card-bnr .card-img img{
    height: 288.22px;
    width: 100%;
    border-radius: 16px;
  }

  .section-bundles .bundle-card .offer-box{
    padding: 1.2rem 1.8rem;
    height: 100%;
  }
  .section-bundles .bundle-card .offer-box ul{
    font-size: 1rem;
    line-height: 271.5%;
    margin-bottom: 1.2rem;
  }
  .section-bundles .bundle-card .card-actions{
    padding-top: 0.4rem;
  }
  .section-bundles .bundle-card .price .regular-price{
    font-size: 1.07rem;
  }
  .section-bundles .bundle-card .price .sale-price{
    font-size: 2.34rem;
  }
  .section-bundles .bundle-card .btn{
    font-size: 1.1rem;
    border-radius: 10.58px;
    padding: 0.77rem 3.15rem;
  }
}

/******* Section - Compatibility *********/
.section-compatibility{
  padding-top: 2rem!important;
  padding-bottom: 0.6rem!important;
}
.section-compatibility .card{
  --bs-card-spacer-x: 0.6rem;
  --bs-card-spacer-y: 0.6rem;
  --bs-card-cap-padding-x: 1.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-compatibility .card .card-header{
  padding-bottom: 0.2rem;
}
.section-compatibility .card .card-title{
  font-size: 1.188rem;
}

.section-compatibility .card-official-partner .card-header p{
  font-size: 1rem;
  line-height: 160%;
}
.section-compatibility .card-official-partner .card-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}
.section-compatibility .card-official-partner .card-title p{
  font-size: 0.875rem;
  line-height: 136.2%;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}
.section-compatibility .card-official-partner .card-title img{
  height: 1.6rem;
  width: auto;
}
.section-compatibility .card-official-partner .card-body{
  display: flex;
  align-items: flex-end;
}

.section-compatibility .partners-grid{
  --th-grid-gap-x: 4%;
  --th-grid-gap-y: 0.8rem;
  --th-grid-item-bg: #FFFFFF;
  --th-grid-item-border-radius: 6.53px;

  padding: 0.7rem 0.7rem 0.3rem 0.7rem;
  margin-top: 0.2rem;
  background: #EEFAFD;
  border-radius: 10.18px;
}
.section-compatibility .partners-grid .grid-item{
  height: 29px;
  flex: 1 0 20%;
  /*padding: 0.5rem;*/
  padding: 0rem;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-compatibility{
    padding-top: 5.6rem!important;
    padding-bottom: 2.5rem!important;
  }
  .section-compatibility .card{
    --bs-card-spacer-x: 0.8rem;
    --bs-card-spacer-y: 0.8rem;
    --bs-card-cap-padding-x: 2.5rem;
    --bs-card-cap-padding-y: 2.5rem;

    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .section-compatibility .card .card-header{
       padding-bottom: 0rem; 
  }
  .section-compatibility .card .card-title{
    font-size: 1.61rem;
  }

  .section-compatibility .card-official-partner .card-header p{
    line-height: 136.2%;
  }
  .section-compatibility .card-official-partner .card-title{
    margin-bottom: 1rem;
  }
  .section-compatibility .card-official-partner .card-title p{
    font-size: 1rem;
  }
  .section-compatibility .card-official-partner .card-title img{
    height: 2.456rem;
  }

  .section-compatibility .partners-grid{
    --th-grid-gap-x: 4%;
    --th-grid-gap-y: 1.1rem;
    --th-grid-item-border-radius: 10.81px;

    padding: 0.8rem 1rem 0.5rem 1rem;
    margin-top: 0.2rem;
    border-radius: 16.86px;
  }
  .section-compatibility .partners-grid .grid-item{
    height: 48.3px;
    /*padding: 0.8rem;*/
    padding: 0.1rem;
  }
}


/******* Section - Featured In *********/
.section-featuredin{
  padding-top: 1rem!important;
  padding-bottom: 1rem!important;
}
.section-featuredin h2{
  font-size: 1.5rem;
}
.section-featuredin p{
  color: #3B3B3B;
  font-size: 0.875rem;
}

.section-featuredin .featured-grid{
  --th-grid-gap-x: 4%;
  --th-grid-gap-y: 0.6rem;
  --th-grid-item-bg: #FFFFFF;
  --th-grid-item-border-radius: 8px;

  margin-top: 0.1rem;
}
.section-featuredin .featured-grid .grid-item{
  height: 58px;
  flex: 1 0 40%;
  padding: 1.3rem;
}
.section-featuredin .featured-grid .grid-item img{
  filter: grayscale(100%);
}
.section-featuredin .featured-grid .grid-item:hover img{
  filter: grayscale(0%);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-featuredin{
    padding-top: 2.5rem!important;
    padding-bottom: 2.5rem!important;
  }
  .section-featuredin .col-text{
    padding-right: 3.5rem;
  }
  .section-featuredin .col-grid{
    padding-left: 3.5rem;
  }

  .section-featuredin h2{
    font-size: 2.609rem;
  }
  .section-featuredin p{
    color: #3B3B3B;
    font-size: 1.125rem;
  }

  .section-featuredin .featured-grid{
    --th-grid-gap-x: 4%;
    --th-grid-gap-y: 0.8rem;
    --th-grid-item-bg: #FFFFFF;
    --th-grid-item-border-radius: 8px;
  }
  .section-featuredin .featured-grid .grid-item{
    height: 77.55px;
    padding: 1.5rem;
  }
}


/******* Section - Clients *********/
.section-clients{
  padding-top: 2rem!important;
  padding-bottom: 2rem!important;
}
.section-clients h2{
  font-size: 1.5rem;
}
.section-clients p{
  color: #3B3B3B;
  font-size: 0.875rem;
}

.section-clients .featured-grid{
  --th-grid-gap-x: 4%;
  --th-grid-gap-y: 0.6rem;
  --th-grid-item-bg: #FFFFFF;
  --th-grid-item-border-radius: 8px;

  margin-top: 0.1rem;
}
.section-clients .featured-grid .grid-item{
  height: 58px;
  flex: 1 0 40%;
  padding: 0.5rem;
}
.section-clients .featured-grid .grid-item img{
  height: 32px;
  width: auto;
  filter: grayscale(100%);
}
.section-clients .featured-grid .grid-item:hover img{
  filter: grayscale(0%);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-clients{
    padding-top: 2.5rem!important;
    padding-bottom: 2.5rem!important;
  }

  .section-clients .col-text{
    padding-left: 3.5rem;
  }
  .section-clients .col-grid{
    padding-right: 3.5rem;
  }

  .section-clients h2{
    font-size: 2.609rem;
  }
  .section-clients p{
    color: #3B3B3B;
    font-size: 1.125rem;
    padding-right: 3.5rem;
  }

  .section-clients .featured-grid{
    --th-grid-gap-x: 4%;
    --th-grid-gap-y: 0.8rem;
    --th-grid-item-bg: #FFFFFF;
    --th-grid-item-border-radius: 8px;
  }
  .section-clients .featured-grid .grid-item{
    height: 77.55px;
    padding: 1.5rem;
  }
  .section-clients .featured-grid .grid-item img{
    height: 50px;
  }
}

/******* Section - Worldwide Users *********/
.section-global-users{
  padding-top: 0.6rem!important;
  padding-bottom: 2.2rem!important;
}
.section-global-users .content{
  justify-content: space-between;
  background: linear-gradient(180deg, #8490FF 0%, #6E55FF 100%);
  border-radius: 6px;
}
.section-global-users .content .bg-shade{
  width: 300px;
  height: 300px;
  position: absolute;
  display: none;
}
.section-global-users .content .bg-shade-1{
  left: -40px;
  top: -80px;
  background: radial-gradient(circle, rgba(142, 186, 217, 0.5), rgba(142, 186, 217, 0.3), transparent, transparent);
}
.section-global-users .content .bg-shade-2{
  left: -50px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(189, 135, 232, 0.5), rgba(189, 135, 232, 0.3), transparent, transparent);
}
.section-global-users .content .bg-shade-3{
  left: 30%;
  top: -100px;
  background: radial-gradient(circle, rgba(189, 135, 232, 0.5), rgba(189, 135, 232, 0.3), transparent, transparent);
}
.section-global-users .content .bg-shade-4{
  left: 31%;
  bottom: -130px;
  background: radial-gradient(circle, rgba(142, 186, 217, 0.5), rgba(142, 186, 217, 0.3), transparent, transparent);
}
.section-global-users .content .bg-shade-5{
  right: 0%;
  top: -100px;
  background: radial-gradient(circle, rgba(189, 135, 232, 0.5), rgba(189, 135, 232, 0.3), transparent, transparent);
}
.section-global-users .content .bg-shade-6{
  right: 4%;
  bottom: -130px;
  background: radial-gradient(circle, rgba(142, 186, 217, 0.5), rgba(142, 186, 217, 0.3), transparent, transparent);
}

.section-global-users .col-text{
  padding: 1.1rem 1.4rem 1.2rem 1.4rem;
  position: relative;
  overflow: hidden;
  z-index: 99;
}
.section-global-users .col-text-inner{
  z-index: 99;
}

.section-global-users h2,
.section-global-users h3,
.section-global-users p{
  color: #FFFFFF;
  line-height: 129.2%;
}
.section-global-users h2{
  font-size: 1.33rem;
  margin-bottom: 1.8rem;
}
.section-global-users h3{
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0rem;
}
.section-global-users p{
  color: #C1B7FF;
  font-size: 0.875rem;
  font-weight: 400;
}
.section-global-users .trust-values{
  display: flex;
  justify-content: space-between;
}
.section-global-users .trust-values p{
  margin-bottom: 0;
}

.section-global-users .col-globe{
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0;
  height: 260px;
  position: relative;
  z-index: 999;
}
.section-global-users .globe-wrap{
  position: absolute;
  top: -20px;
  right: 0;
  width: 300px;
  height: 300px;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  background: #F7F9FC;
  perspective: 1000px;
}
.section-global-users .rotating-globe{
  width: 100%;
  height: 100%;
  border: 10px solid #F7F9FC;
  border-radius: 50%;
  background: #6E55FF;
  /*  background: red;*/
  background-image: url(../images/home/globe.webp);
  background-size: 300px 300px;
  background-repeat: no-repeat;
  animation: rotate3d 100s linear infinite;
}
@keyframes rotate3d {
  from {
    transform: rotate(0deg);
    /*transform: rotate3d(0, 1, 0, 0deg);*/
  }
  to {
    transform: rotate(360deg);
    /*transform: rotate3d(0, 0, 1, 360deg);*/
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-global-users{
    padding-top: 2.5rem!important;
    padding-bottom: 5.6rem!important;
  }
  .section-global-users .content{
    border-radius: 15.64px;
    height: 260px;
  }
  .section-global-users .content .bg-shade{
    display: block;
  }
  .section-global-users .col-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    padding-left: 4rem;
  }

  .section-global-users h2{
    font-size: 2.266rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
  }
  .section-global-users h3{
    font-size: 2.213rem;
    margin-bottom: 0rem;
  }
  .section-global-users p{
    font-size: 1.086rem;
  }

  .section-global-users .trust-values{
    justify-content: flex-start;
    gap: 5rem;
  }
  .section-global-users .trust-values>*{
    width: 115px;
  }
}


/******* Section - Values *********/
.section-why-themehigh{
  padding-top: 3rem!important;
  padding-bottom: 2.2rem!important;
}
.section-why-themehigh h2{
  font-size: 1.125rem;
  font-weight: 800;
}
.section-why-themehigh p{
  
}

.section-why-themehigh .row-title{
  margin-bottom: 0.3rem;
}
.section-why-themehigh .row-title h2,
.section-why-themehigh .row-title p{
  margin-bottom: 0.7rem;
}
.section-why-themehigh .row-title .col-right{
  display: flex;
  align-items: center;
}

.section-why-themehigh .card{
  --bs-card-border-width: 0;
  --bs-card-border-radius: 9.91px;
  --bs-card-spacer-y: 1.3rem;
  --bs-card-spacer-x: 1rem;

  background: #F7F9FC;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}
.section-why-themehigh .card h3{
  /*color: #303030;*/
  font-size: 1.25rem;
  font-weight: 600;
}
.section-why-themehigh .card p{
  color: #4E4E4E;
  line-height: 160%;
}

.section-why-themehigh .card .col-img{
  display: none;
}

.section-why-themehigh .icon-title{
  margin-bottom: 1.5rem;
  position: relative;
}
.section-why-themehigh .icon-title .thi{
  height: 30px;
  width: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-why-themehigh .icon-title .thi-help{
  height: 28px;
  width: 35px;
  background-image: url(../images/home/icon-help.png);
}
.section-why-themehigh .icon-title .thi-value-for-money{
  width: 32px;
  height: 28px;
  background-image: url(../images/home/icon-value-for-money.png);
}
.section-why-themehigh .icon-title .thi-driven-by-users{
  width: 33px;
  height: 33px;
  background-image: url(../images/home/icon-driven-by-users.png);
}
.section-why-themehigh .icon-title .thi-money-back{
  width: 33px;
  height: 33px;
  background-image: url(../images/home/icon-money-back.png);
}

.section-why-themehigh .icon-title > span{
  position: absolute;
  left: 15px;
  top: 18px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 1rem;
  color: #625FFB;
  background: rgba(237, 237, 255, 0.7);
  border: 0.93px solid #EAEAF6;
  border-radius: 9.3px;
  /*margin-left: -1rem;
  margin-top: -1.5rem;*/
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-why-themehigh{
    padding-top: 4.3rem!important;
    padding-bottom: 2.2rem!important;
  }
  .section-why-themehigh h2{
    font-size: 1.96rem;
    font-weight: 700;
  }
  .section-why-themehigh p{
    font-size: 1rem;
  }

  .section-why-themehigh .row-title{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .section-why-themehigh .row-title h2,
  .section-why-themehigh .row-title p{
    margin-bottom: 0;
  }
  .section-why-themehigh .row-title .col-right p{
    padding-left: 0.5rem;
    padding-right: 0;
    border-left: 5px solid #FFBD3F;
  }

  .section-why-themehigh .card h3{
    font-size: 1.5rem;
  }

  .section-why-themehigh .row-grid{
    /*margin-top: 1rem;
    margin-bottom: 1rem;*/
  }
  .section-why-themehigh .card{
    --bs-card-border-radius: 18.61px;
    --bs-card-spacer-x: 2.2rem;
    --bs-card-spacer-y: 1.5rem;

    height: 295px;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .section-why-themehigh .card .d-flex{
    height: 100%;
  }

  .section-why-themehigh .icon-title{
    margin-top: 1rem;
  }
  .section-why-themehigh .icon-title > span{
    font-size: 0.896rem;
    padding: 0.45rem 0.9rem;
    border-width: 0.78px;
  }

  .section-why-themehigh .card .col-text{
    padding-right: 0.5rem;
  }
  .section-why-themehigh .card .col-img{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .section-why-themehigh .card .col-img .img-wrap{
    width: 283px;
    height: 224px;
    position: relative;
  }

  .section-why-themehigh .card-help .card-body,
  .section-why-themehigh .card-money-back .card-body{
    padding-bottom: 0;
    padding-right: 0;
  }

  .section-why-themehigh .card-help .img-wrap span{
    position: absolute;
    left: -40%;
    top: -15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 18.65px;
    background: #FFFFFF;
    border-radius: 47.85px;
    padding: 1rem 1rem;
  }

  .section-why-themehigh .icon-title .thi-help{
    width: 62.75px;
    height: 51.77px;
  }
  .section-why-themehigh .icon-title .thi-value-for-money{
    width: 45.5px;
    height: 40px;
  }
  .section-why-themehigh .icon-title .thi-driven-by-users{
    width: 45px;
    height: 44.15px;
  }
  .section-why-themehigh .icon-title .thi-money-back{
    width: 41.57px;
    height: 43.14px;
  }
}

/******* Section - With Themehigh *********/
.section-with-themehigh{

}

/******* Section - Values *********/
.section-values-scroll{
  padding-top: 0rem!important;
  padding-bottom: 1rem!important;
}

.section-values-scroll .h-scroll{
  white-space: nowrap;
  overflow: hidden;
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
}
.section-values-scroll .h-scroll ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin-bottom: 0;
}
.section-values-scroll .h-scroll li {
  font-size: 1.23rem;
  font-weight: 600;
  line-height: 136.2%;
}
.section-values-scroll .h-scroll li::before {
  content: "\25CF";
  font-size: 1em;
  margin-right: 1.3rem;
}
.section-values-scroll .h-scroll li.bullet-orange::before {
  color: #FB8C51;
}
.section-values-scroll .h-scroll li.bullet-yellow::before {
  color: #FED33D;
}
.section-values-scroll .h-scroll li.bullet-blue::before {
  color: #3C4EEE;
}

.section-values-scroll .h-scroll .text-blue {
  color: #979EFC;
}

.section-values-scroll .mln-sm{
  margin-left: -2rem;
}
.section-values-scroll .mln-lg{
  margin-left: -8rem;
}

.section-values-scroll .h-scroll ul{
  animation: scroll 15s linear infinite; /* Apply the animation */
}

@keyframes scroll {
  0% {
    transform: translateX(0); /* Start from the initial position */
  }
  50% {
    transform: translateX(-10%); /* Move to the left by the width of the container */
  }
  100% {
    transform: translateX(0); /* Start from the initial position */
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-values-scroll{
    padding-bottom: 1.8rem!important;
  }

  .section-values-scroll .h-scroll{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .section-values-scroll .h-scroll ul {
    gap: 5rem;
  }
  .section-values-scroll .h-scroll li {
    font-size: 2.417rem;
  }
  .section-values-scroll .h-scroll li::before {
    margin-right: 2.5rem;
  }
}


/******* Section - Reviews *********/
.section-reviews{
  --th-review-card-width: 327px;
  --th-review-grid-gap: 28.8px;
  --th-reviews-row-cols: 5;
  --th-reviews-row-cols-visible: 1;

  height: 808px;
  width: 100%;
  padding-top: 0rem!important;
  padding-bottom: 0rem!important;
  overflow: hidden;
}
.section-reviews .row>*{
  --bs-gutter-x: var(--th-review-grid-gap);
}
.section-reviews .reviews-grid{
  --th-card-box-width: calc(var(--th-review-card-width) + var(--th-review-grid-gap));
  --th-balance-area: calc(0.5 * (100vw - var(--th-reviews-row-cols-visible) * var(--th-card-box-width)));

  width: calc(var(--th-reviews-row-cols) * var(--th-card-box-width));
  margin-left: calc(-1 * (var(--th-card-box-width) - var(--th-balance-area)));
}
.section-reviews .card-review{
  width: var(--th-review-card-width);
}

.section-reviews .card{
  --bs-card-border-width: 0;
  --bs-card-border-radius: 11px;
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 2rem;
  --bs-card-cap-padding-y: 2rem;
  --bs-card-cap-padding-x: 2rem;

  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
  box-shadow: 0px 0px 0.5em rgba(67, 71, 85, 0.2);
}
.section-reviews .card-header{
  padding-bottom: 0.4rem;
}
.section-reviews .card-body{
  padding-right: 1rem;
  padding-bottom: 1.3rem;
}
.section-reviews .card-body p{
  font-size: 1rem;
  line-height: 158.7%;
}
.section-reviews .card-body .card-title{
  color: #6E55FF;
  font-size: 1rem;
  font-weight: 500;
  line-height: 158.7%;
}
.section-reviews .card-body .star-ratings{
  margin-top: 0.8rem;
  margin-right: 0.5rem;
}

.section-reviews .card .profile-card{
  --th-profile-card-gap: 18px;
  --th-profile-card-img-size: 57px;
  --th-profile-card-title-size: 1rem;
  --th-profile-card-title-color: #000000;
  --th-profile-card-title-weight: 500;
  --th-profile-card-subtitle-size: 0.937rem;
  --th-profile-card-subtitle-color: #8F8F8F;
  --th-profile-card-subtitle-weight: 500;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-reviews{
    --th-reviews-row-cols: 5;
    --th-reviews-row-cols-visible: 3;
  }
}

/******* Section - Testimony *********/
.section-testimony{
  padding-top: 3.4rem!important;
  padding-bottom: 2.4rem!important;
}
.section-testimony .container{
  --bs-gutter-x: 2.8rem;
}
.section-testimony .col-text h2{
  color: #FFFFFF;
  font-size: 1.459rem;
  font-weight: 700;
  line-height: 158.67%;
  margin-bottom: 0.5rem;
}
.section-testimony .col-text p{
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 158.67%;
  margin-bottom: 1.5rem;
}
.section-testimony .col-text .pill{
  color: #1B1313;
  border-radius: 20.21px;
  padding: 1.1px 5px 1.1px 3px;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  line-height: 115%;
}
.section-testimony .col-text .pill .emoji{
  width: 22.46px;
  height: 22.46px;
}
.section-testimony .col-text .pill .bi{
  color: #7DC485;
  font-size: 1.5rem;
  margin-right: 0.3rem;
}
.section-testimony .col-text .face-group{
  height: 26.05px;
  margin-right: 0.7rem;
  margin-bottom: 4px;
}

.section-testimony .col-img{
  position: relative;
}
.section-testimony .play-btn{
  --th-play-btn-width: 161.86px;
  --th-play-btn-height: 44.81px;

  color: #000000;
  font-size: 11.2px;
  font-weight: 600;
  line-height: 1;
  padding: 0rem 1rem 0rem 0.3rem;
  border-radius: 14.56px;
  background: #FFFFFF;
  box-shadow: 0px 0px 1em rgba(67, 71, 85, 0.5);

  vertical-align: middle;
  position: absolute;
  top: calc(50% - 23px);
  right: calc(50% - 80px);
}
.section-testimony .play-btn .bi{
  font-size: 4em;
  line-height: 1;
  margin-right: 0rem;
  vertical-align: middle;
}
.section-testimony .play-btn .bi-play-fill{
  color: #7972FF;
}
.section-testimony .play-btn:hover{
  color: #000000;
}

.gradient-bg{
  color: #FFFFFF;
  background: linear-gradient(90deg, #7972FF 0%, #BD87E8 100%);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-testimony{
    padding-top: 6.6rem!important;
    padding-bottom: 5.1rem!important;
  }
  .section-testimony .col-text{
    padding-right: 2.5rem;
  }
  .section-testimony .col-text h2{
    font-size: 2.745rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .section-testimony .col-text .pill{
    border-radius: 38.01px;
    padding: 1px 10px 1px 5px;
    margin-left: 0.5rem;
    line-height: 110%;
  }
  .section-testimony .col-text .pill .emoji{
    width: 42.23px;
    height: 42.23px;
  }
  .section-testimony .col-text .pill .bi{
    font-size: 2.6rem;
    margin-right: 0.4rem;
  }
  .section-testimony .col-text .face-group{
    height: 54.99px;
    margin-left: 1rem;
    padding-bottom: 6px;
  }

  .section-testimony .play-btn{
    font-size: 1.16rem;
    padding: 0.4rem 1.8rem 0.4rem 0.8rem;
    border-radius: 23.2px;

    top: calc(50% - 34px);
    right: calc(50% - 127px);
  }
  .section-testimony .play-btn .bi{
    font-size: 3em;
  }
}

/******* Section - Community *********/
.section-community{
  padding-top: 1.5rem!important;
  padding-bottom: 2.2rem!important;
}

.section-community h2{
  font-size: 2.687rem;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 2.3rem;
}

.section-community .col-text .card{
  --bs-card-bg: #F7F9FC;
  --bs-card-border-width: 0;
  --bs-card-border-radius: 18.75px;
  --bs-card-spacer-y: 33px;
  --bs-card-spacer-x: 33px;

  background-image: url(../images/home/bg-community.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 194.47px 158.44px;
}

.section-community .title-grid{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.section-community .title-grid .face-group{
  height: 33.44px;
}
.section-community .title-grid .col-text h3{
  font-size: 1rem;
  font-weight: 700;
  line-height: 158.67%;
  margin-bottom: 0;
  margin-right: 26px;
}

.section-community .col-img .img-card{
  border: 0;
  border-radius: 21.14px;
  background: #9E8DFF;
  position: relative;
}
.section-community .col-img .img-card .bg-rotate-wrap{
  width: 100%;
  height: 100%;
  border-radius: 21.14px;
  object-fit: contain;
  overflow: hidden;
}
.section-community .col-img .img-card .bg-rotate{
  width: 800px;
  height: 800px;
  /*  margin-top: 30%;*/
  margin-left: -90px;

  background-image: url(../images/home/bnr-community.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 1.9s ease;
  object-fit: contain;
  transform-origin: center center;
}
.section-community .col-img .img-card .bg-rotate:hover {
  transform: rotate(-180deg);
}
.section-community .col-img .brand-img{
  --community-brand-img-size: 130px;

  width: var(--community-brand-img-size);
  height: var(--community-brand-img-size);
  background: #AA9BFF;
  border: 10px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  right: calc(50% - 0.5*var(--community-brand-img-size));
  bottom: calc(-0.5*var(--community-brand-img-size) + 25px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 61.75px 45.33px 0px #00000040 inset;
}
.section-community .col-img .brand-img img{
  width: 32.47px;
  height: 25.69px;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-community h2{
    font-size: 3.172rem;
    margin-bottom: 1.8rem;
  }

  .section-community .col-text .card,
  .section-community .col-img .card{
    height: 390.75px;
  }

  .section-community .col-text .card{
    --bs-card-bg: #F7F9FC;
    --bs-card-border-width: 0;
    --bs-card-border-radius: 21.14px;
    --bs-card-spacer-y: 64px;
    --bs-card-spacer-x: 38px;

    background-image: url(../images/home/bg-community-md.png);
    background-size: 226.96px 226px;
  }
  .section-community .card-body{
    padding-bottom: 44px;
  }

  .section-community .title-grid{
    margin-bottom: 2.6rem;
  }
  .section-community .title-grid .face-group{
    height: 39.03px;
  }
  .section-community .title-grid .col-text h3{
    font-size: 1.173rem;
    margin-right: 26px;
  }
}


/******* Section - Subscription *********/
.section-subscribe{
  padding-top: 2.2rem!important;
  padding-bottom: 6rem!important;
}

.section-subscribe .row-subscribe{
  display: flex;
  background: #F7F9FC;
  border-radius: 13.21px;
}
.section-subscribe .col-text{
  padding: 1.5rem;

  /*background-image: url(../images/home/bg-community.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 194.47px 158.44px;*/
}
.section-subscribe .col-text h3{
  font-size: 1rem;
  margin-bottom: 1.4rem;
}
.section-subscribe .col-text p{
  font-size: 0.875rem;
}
.section-subscribe .form-control{
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.802rem;
  font-weight: 400;
  line-height: 141.7%;
  padding: 0.6rem 0.8rem;
  background: #FFFFFF;
  border-radius: 3.98px;
  border: 0.66px solid rgba(0, 0, 0, 0.5);
}
.section-subscribe .btn{
  font-size: 0.802rem;
  font-weight: 400;
  padding: 0.6rem 2.3rem;
  margin-left: 0.2rem;
  border-radius: 3.98px;
}

.section-subscribe .col-img{
  margin: 0;
  padding: 0;
}
.section-subscribe .col-img img{
  width: 467px;
  height: 214px;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-subscribe .row-subscribe{
    border-radius: 22px;
  }
  .section-subscribe .col-text,
  .section-subscribe .col-img{
    height: 213px;
  }

  .section-subscribe .col-md-7{
    width: 57%;
  }
  .section-subscribe .col-md-5{
    width: 43%;
  }

  .section-subscribe .col-text{
    padding: 2.3rem;
  }
  .section-subscribe .col-text h3{
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }
  .section-subscribe .col-text p{
    font-size: 1rem;
    line-height: 141.69%;
    margin-bottom: 0.6rem;
  }
  .section-subscribe .form-control{
    font-size: 0.951rem;
    padding: 0.8rem 0.8rem;
    border-radius: 4.73px;
    border-width: 0.79px;
  }
  .section-subscribe .btn{
    font-size: 0.951rem;
    padding: 0.8rem 2.6rem;
    margin-left: 0.6rem;
    border-radius: 4.73px;
  }
}

/*************************************/
/*-------- HOME PAGE - END ----------*/
/*************************************/

















/*************************************/
/*------------ V1 SUPPORT -----------*/
/*************************************/

.w-55 { width: 55%!important; }
.w-60 { width: 60%!important; }
.w-65 { width: 65%!important; }
.w-70 { width: 70%!important; }
.w-75 { width: 75%!important; }
.w-80 { width: 80%!important; }
.w-85 { width: 85%!important; }
.w-90 { width: 90%!important; }
.w-95 { width: 95%!important; }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .w-md-55 { width: 55%!important; }
  .w-md-60 { width: 60%!important; }
  .w-md-65 { width: 65%!important; }
  .w-md-70 { width: 70%!important; }
  .w-md-75 { width: 75%!important; }
  .w-md-80 { width: 80%!important; }
  .w-md-85 { width: 85%!important; }
  .w-md-90 { width: 90%!important; }
  .w-md-95 { width: 95%!important; }
}

.mt-10, .my-10 { padding-top: 10rem !important; }
.mb-10, .my-10 { padding-bottom: 10rem !important; }
.mt-12, .my-12 { padding-top: 12rem !important; }
.mb-12, .my-12 { padding-bottom: 12rem !important; }
.ml-10, .mx-10 { padding-left: 10rem !important; }
.mr-10, .mx-10 { padding-right: 10rem !important; }

p.large{
  font-size: 1.11rem;
  line-height: 1.18em;
}
p.small{
  font-size: 0.78rem;
  line-height: 1.89em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
    margin-bottom: 0.5rem;
    float: unset;
}
legend{
  font-size: 1rem;
}
.text-small{
  /*font-size: 0.9rem;*/
  font-size: 0.85rem;
  line-height: 1.89em;
}
.text-normal{
  font-size: 1rem;
}
.text-large{
  font-size: 1.1rem;
  line-height: 1.8;
}
.text-xl{
  font-size: 1.3rem;
  line-height: 1.8;
}

.text-gold, .color-gold{
  color: #F4C01E;
}
.text-gradient-primary{
  background: linear-gradient(180deg, #6E55FF 0%, #AB7CFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fw-800{ font-weight: 800 !important; }



.page .entry-header{
  background-color: #f6f8f9;
}
.page .entry-header .container{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.page .entry-content .container{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/*=================================*/
/*====== COMMON PAGE - START ======*/
/*=================================*/
p.entry-subtitle{
  font-size: 18px;
    color: #151b26;
}

.template-shop h1.entry-title{
  margin-bottom: 0.5rem;
}
.template-shop p.entry-subtitle {
    max-width: 600px;
}

p.entry-subtitle span {
    position: relative;
    font-size: 20px;
    color: #151b26;
    z-index: 1;
}
.txt_bg {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    left: 0;
    height: 8px;
    background: rgba(246, 190, 80, .7);
    z-index: -1;
}
/*================================*/
/*====== COMMON PAGE - END =======*/
/*================================*/


/*==================================*/
/*====== PRODUCT PAGE - START ======*/
/*==================================*/
.product-page{
  font-size: 0.875rem;
  line-height: 178%;
}
.product-page h1 {
  line-height: 1.36em;
}
.product-page h2 {
  font-size: 1.94rem;
  line-height: 1.67em;
  margin-bottom: 2.19rem;
}
.product-page h3 {
  font-size: 1.46rem;
  line-height: 1.67em;
  margin-bottom: 0.875rem;
}
.product-page h4{
  line-height: 1.44em;
}
.product-page h5{
  font-size: 1.07rem;
  line-height: 1.64em;
  margin-bottom: 0.5rem;
}
.product-page h6{
  font-size: 0.97rem;
  line-height: 1.4em;
}

.product-page p {
    font-size: 0.875rem;
    line-height: 178%;
    margin-bottom: 1.5rem;
}
.product-page .text-small{
  font-size: 0.744rem;
}

.text-woo, .color-woo {
    color: var(--primary-color);
    font-size: inherit;
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
.media .media-body{
    font-size: 1.11rem;
    /* line-height: 1.8em; */
    line-height: 1.4em;
}
.media-boxed .media, .media-bordered .media {
    height: 100%;
}

.product-page .media .media-body {
    font-size: 0.875rem;
}
.product-page .media-inline {
    font-size: 0.875rem;
}

.border-x-light .container{
  border-left: 1px dashed #EBEAEA;
  border-right: 1px dashed #EBEAEA;
}
.border-x-dark .container{
  border-left: 1px dashed #2C0525;
  border-right: 1px dashed #2C0525;
}
.bg-1 {
    background: #F9F8F8;
}
.bg-2 {
    background: #001848;
    color: #D1D5E4;
}
.bg-6 {
    background: #F7F8FA;
}
.bg-ribbon {
    background: #F9F8F8;
}
.bg-arc {
    background-image: url(../images/v1/bg-circle-1.svg);
    background-repeat: no-repeat;
    background-position: -5% 50%;
    background-size: 40%;
}
.bg-map {
  background-image: url(../images/v1/bg-map.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 60%;
}

.bg-2 h3, .bg-2 h6 {
    color: #fff;
}

.img-1 {
  /*background: #C4C4C4;*/
  box-shadow: 0px 10px 15px 2px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.img-2{
  box-shadow: 0px 4px 20px 6px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
}
.img-3{
  box-shadow: 0px 4px 20px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.img-size-1{
  width: 66%;
}

.w-60 {
    width: 60% !important;
}
.w-80 {
    width: 80% !important;
}
.w-90 {
    width: 90% !important;
}

ul.circle-checkmark {
  position: relative;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
ul.circle-checkmark li{
  padding: 0.5rem 0;
}
ul.circle-checkmark li:before {
  /*content: url(../images/circle-checkmark.svg?v=5.0);
  position: absolute;
  left: 0;
  margin-top: 0.14em;
  transform: scale(0.8);*/

  color: #8187FF;
  content: "\F26B";
  display: inline-block;
  font-size: 0.86rem;
  font-family: bootstrap-icons !important;
  line-height: inherit;
  margin-right: 1.2rem;
  vertical-align: 2px;
  vertical-align: middle;
}

.content-wrapper section > .container{
  /*padding-top: 4rem;
  padding-bottom: 4rem;*/
  /*padding-top: 2.67rem;
  padding-bottom: 2.67rem;*/
  padding-top: 3rem;
  padding-bottom: 3rem;

  /*border-left: 1px dashed #EBEAEA;
  border-right: 1px dashed #EBEAEA;*/
}

.content-wrapper p{
  margin-bottom: 1.5em;
}
.content-wrapper legend{
  font-size: 1.22rem;
  line-height: 1.64em;
  font-weight: 700;
  width: 6.5em;
}

.th-masthead > .container{
    padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.th-masthead .col-md{
  margin-top: 1rem;
}

.th-masthead .desc-box{
  padding-top: 1rem;
  padding-right: 0;
  text-align: center;
  margin-bottom: 3rem;
}
.desc-box a.text-link{
  /*color: #89216B;*/
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: underline;
}
.desc-box .icon-btn{
  padding-top: 0.61rem;
  padding-left: 0.6rem;
}
.desc-box .icon-btn .fas{
  font-size: 2.33rem;
}

.th-masthead .price-box{
  padding-left: 1rem;
  position: relative;
}
.th-masthead .price-box h3{
  /*color: #CF3F57;*/
  color: var(--primary-color);
  line-height: 1.33em;
  margin-bottom: 0.8rem;
}
.th-masthead .card{
  border: none;
  padding: 1rem;
  box-shadow: 0 2px 40px 0 #f0f1f2;
}

.th-masthead .desc-box .action-btns{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.th-masthead .desc-box a.btn{
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;

  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 50px;
  padding-left: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
  /*
  padding: 1rem 2rem;
  font-weight: 500;*/
}
.th-masthead .desc-box a.demo-btn{
  /*  padding: 0.3rem 2rem 0.3 0.8rem;*/
  padding-left: 0.8rem;
}
.th-masthead .desc-box a.demo-btn .bi{
  font-size: 2rem;
}

.th-masthead .desc-box .action-links{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.th-masthead .desc-box a.text-link{
  /*margin-top: 1rem;
  margin-right: 2rem;*/
  margin: 1rem;
}

.money_back {
    position: absolute;
    top: -30px;
    right: 0px;
    width: 87px;
}
.money_back img {
    width: 90%;
    display: block;
}

.edd_price_options.edd_single_mode .eddr-terms-notice.variable-prices{
  display: none;
}

/***** Themehigh Icons *****/
.thicon{
  width: 40px;
  height: 40px;
  padding: .5rem;
  margin-right: 1em;
  border-radius: 8px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.thicon-1{
  width: 40px;
  height: 40px;
  padding: .5rem;
  margin-right: 1em;
  border-radius: 8px;
  background-color: #F4F4F4;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}
.thicon-reviews{
  background-image: url(../images/v1/icon-reviews.svg);
}
.thicon-comments{
  background-image: url(../images/v1/icon-comments.svg);
}
.thicon-version{
  background-image: url(../images/v1/icon-version.svg);
}
.thicon-installations{
  background-image: url(../images/v1/icon-installations.svg);
}
.thicon-downloads{
  background-image: url(../images/v1/icon-downloads.svg);
}

.thicon-wcfe{
  background-image: url(../images/products/prod-wcfe.png);
}
.thicon-wepo{
  background-image: url(../images/products/prod-wepo.png);
}
.thicon-wmsc{
  background-image: url(../images/products/prod-wmsc.png);
}
.thicon-wecm{
  background-image: url(../images/products/prod-wecm.png);
}
.thicon-wpvs{
  background-image: url(../images/products/prod-wpvs.png);
}
.thicon-wmap{
  background-image: url(../images/products/prod-wmap.png);
}
.thicon-wsd{
  background-image: url(../images/products/prod-wsd.png);
}
.thicon-faq{
  background-image: url(../images/products/prod-faq.png);
}
.thicon-jm{
  background-image: url(../images/products/prod-jm.png);
}



.thi{
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.thi-fire{
  width: 15px;
  height: 17.36px;
  background-image: url(../images/icons/icon-fire.svg);
}

/***** Media *****/
.media p{
  margin-bottom: 0;
}
.media img{
  width: 1.94rem;
  height: 1.94rem;
  padding: .35rem;
  margin-right: 1em;
  border-radius: 8px;
  background: #F4F4F4;
}
.media-grid-lg .media img{
  width: 2.53rem;
  height: 2.53rem;
  padding: .49rem;
}



.media-inline,
.media-boxed{
  padding: 1em;
}

.media-list .media,
.media-inline .media{
  -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.4em;
}
.media-boxed .media,
.media-bordered .media{
  height: 100%;
}

.media-inline p,
.media-boxed p,
.media-bordered p{
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.media-list .media{
  margin-bottom: 2em;
}

.media-bordered{
  /*padding: 0;
  padding-right: 1em;
  padding-bottom: 1.3em;*/
  padding: 0.6rem 0.5rem;
}
.start-left .media-bordered{
  padding-left: 0;
  padding-right: 1em;
}
.media-bordered .media{
  /*border: 1px solid #DAD2D2;*/
  border: 1px solid #E3DDDD;
  box-sizing: border-box;
  border-radius: 15px;
  padding: 1.3em 1.3em 1.3em 1em;
}
.media-bordered p{
  line-height: 1.5em;
}


.media-list .media h5,
.media-list .media h6{
  margin-bottom: 0;
  line-height: 2.6em;
}
.media-list .media img{
  background: #fff;
}
.media-list.compact .media{
  margin-bottom: 1em;
}

.bg-6 .media img{
  background: #ECECEC;
}

@media (min-width: 768px){
  .media-grid .col-md {
      flex: 45%;
  }
}

/******* Recent Products ******/
.recent-products-wrapper .container{
  padding-top: 3rem;
  padding-bottom: 3rem
}

/***** Meta Ribbon *****/
.content-wrapper section.meta-ribbon > .container{
  padding-top: 1.7rem;
  padding-bottom: 1.8rem;
}
.meta-ribbon .col-md{
    flex: 1 0 50%;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.meta-ribbon .media-body{
  font-size: 0.875rem;
  line-height: 178%;
}
.meta-ribbon .media img,
.meta-ribbon .media .thicon{
  background-color: #FFFFFF;
  margin-right: 1rem;

  width: 2.78rem;
  height: 2.78rem;
  background-size: 50%;
}
.meta-ribbon .media h4{
  font-size: 1.22rem;
  margin-bottom: 0;
}
.meta-ribbon .media p{
  font-size: 0.875rem;
  line-height: 1.2;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .meta-ribbon .col-md{
    flex: 1 0 0%;
  }
}

/***** ZigZag Items *****/
.zigzag-item{
  align-items: center!important;
  margin-top: auto;
  margin-bottom: auto;
}
.zigzag-item .zz-text{
/*  padding-right: 0;*/
  font-size: 0.875rem;
  line-height: 178%;
  text-align: center;
}
.zigzag-item .zz-image{
  height: 100%;
  text-align: center;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.zigzag-item .zz-image img{
  width: 100%;
  /*box-shadow: 4px 4px 30px 8px rgba(0, 0, 0, 0.15);*/
  /*box-shadow: 0px 30px 30px -25px rgba(0, 0, 0, 0.25);*/
  /*border-radius: 10px;*/
}
.zigzag-item .zz-text ul{
  text-align: left;
}

.zigzag-item.reverse{
  flex-direction: row-reverse;
}
.zigzag-item.reverse .zz-text{
  text-align: center;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .zigzag-item .zz-text{
    padding-right: 5rem;
    text-align: left;
  }
  .zigzag-item.reverse .zz-text {
    padding-left: 5rem;
    padding-right: 1rem;
    text-align: left;
  }
}

/******* Contact Us form ******/
.contact-us{
  background-color: #FAF9F9;
}
.contact-us .container{
  padding-top: 3.2rem;
  padding-bottom: 3.2rem
}
.contact-us h2{
  line-height: 1em;
}
.contact-us p{
  margin-bottom: 1.3rem;
}

/***** Free-Pro button *****/
.free-pro-btn{
  font-size: 1.1rem;
  border: 1px solid #F9F8F8;
  border-radius: 50rem;
  background: #F9F8F8;
  display: inline-block;
}
.free-pro-btn span{
  display: inline-block;
  padding-left: 4rem;
}
.free-pro-btn .active{
  font-weight: 600;
  padding: 0.5rem 4rem;
  margin-left: 4rem;
  border: 1px solid #D04056;
  border-radius: 50rem;
  color: #fff;
    background: linear-gradient(274.35deg, #DA4453 -13.12%, #89216B 155.2%);
}

/***** Review Item *****/
.review-item{
  font-size: 0.875rem;
  line-height: 178%;
  margin-bottom: 0.3rem;
}
.review-item h6{
  line-height: 1.8em;
  margin-bottom: 0.3rem;
}
.review-item p{
  margin-bottom: 0.8rem;
}
.review-item .rating{
  list-style-type: none;
}
.review-item .rating li{
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 178%;
  padding: 0;
  padding-right: 10px;
  display: inline-block;
  border-right: 1px solid #ccc;
  
}
.review-item .rating li.star{
  padding-left: 10px;
  display: inline-block;
  border-right: 0;
}
.review-item .rating li.star .checked {
    color: orange;
}

.review-item .stars {
  --percent: calc(var(--rating) / 5 * 100%);

  display: inline-block;
  font-size: var(--star-size);
  font-family: Times; // make sure ★ appears correctly
  line-height: 1;
 }
.review-item .stars:before{
    content: '★★★★★';
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/***** Image Grid *****/
.image-grid{
  /*gap: 2%;*/
  /*margin-left: -1rem;
  margin-right: -1rem;*/
}
.image-grid.grid-6{
  /*gap: 4%;*/
  /*margin-left: -1rem;
  margin-right: -1rem;*/
}
.image-grid.grid-4{
  /*gap: 2%;*/
  /*margin-left: -1rem;
  margin-right: -1rem;*/
}
.image-grid .col-md{
  align-items: stretch;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}
.image-grid .col-md-6{
  /*padding-left: 0;
  padding-right: 0;*/
  /*padding-top: 2rem;
    padding-bottom: 2.2rem;*/
}
.image-grid .col-md-4{
  /*padding-left: 0;
  padding-right: 0;*/
  /*padding-top: 1.1rem;
    padding-bottom: 1.1rem;*/
}

/***** Screenshots *****/
.ss-item{
  padding: 1.2rem 1.3rem;
  vertical-align: bottom;

  border: 1px solid #4F5769;
  box-sizing: border-box;
  border-radius: 34px;
}
.ss-item img{
  width: 100%;
  margin-bottom: 10px;
}
.ss-item p{
  font-weight: 600;
  margin-bottom: 0;
}
.ss-item p.text-large{
  font-weight: 400;
}

.image-grid .ss-header{
  padding-bottom: 0;
}
.image-grid .ss-header .ss-item{
  border: 0;
  padding-bottom: 0;
}

/***** Logo Grid *****/
.content-wrapper section.logo-grid > .container {
    padding-top: 0rem;
}

.logo-grid .col-md{
    flex: 0 0 50%;
    padding-right: 1rem;
    padding-left: 1rem;
    min-width: 165px;
  }
.logo-grid img{
  width: 80%;
}

.logo{
  width: 100%;
  min-height: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  background: #fff;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}
.logo-flatsome{
  background-image: url(../images/logo/theme-flatsome.webp);
}
.logo-astra{
  background-image: url(../images/logo/theme-astra.webp);
}
.logo-avada{
  background-image: url(../images/logo/theme-avada.webp);
}
.logo-storefront{
  background-image: url(../images/logo/theme-storefront.webp);
}
.logo-divi-builders{
  background-image: url(../images/logo/theme-divi.webp);
}
.logo-oceanwp{
  background-image: url(../images/logo/theme-oceanwp.webp);
}
.logo-elementor{
  background-image: url(../images/logo/theme-elementor.webp);
}
.logo-sydney{
  background-image: url(../images/logo/theme-sydney.png);
}
.logo-neve{
  background-image: url(../images/logo/theme-neve.webp);
}
.logo-hestia{
  background-image: url(../images/logo/theme-hestia.webp);
}
.logo-ashe{
  background-image: url(../images/logo/theme-ashe.webp);
}
.logo-spacious{
  background-image: url(../images/logo/theme-spacious.webp);
}
.logo-zakra{
  background-image: url(../images/logo/theme-zakra.webp);
}
.logo-kadence{
  background-image: url(../images/logo/theme-kadence.webp);
}
.logo-generate-press{
  background-image: url(../images/logo/theme-generatepress.webp);
}
.logo-colibri{
  background-image: url(../images/logo/theme-colibri.webp);
}
.logo-popular-fx{
  background-image: url(../images/logo/theme-popular-fx.png);
}
.logo-go{
  background-image: url(../images/logo/theme-go.png);
}
.logo-twenty-twenty-one{
  background-image: url(../images/logo/theme-twenty-twenty-one.png);
}
.logo-twenty-twenty{
  background-image: url(../images/logo/theme-twenty-twenty.png);
}
.logo-twenty-nineteen{
  background-image: url(../images/logo/theme-twenty-nineteen.png);
}
.logo-themehunk{
  background-image: url(../images/logo/theme-themehunk.webp);
}

.logo-yith-gift-card{
  background-image: url(../images/logo/plugin-yith-gift-card.png);
}
.logo-yith-quick-view{
  background-image: url(../images/logo/plugin-yith-quick-view.png);
}
.logo-wcfe{
  background-image: url(../images/logo/plugin-thwcfe.png);
}
.logo-wepo{
  background-image: url(../images/logo/plugin-thwepo.png);
}
.logo-wmsc{
  background-image: url(../images/logo/plugin-thwmsc.png);
}
.logo-wpvs{
  background-image: url(../images/logo/plugin-thwpvs.png);
}
.logo-wmsa{
  background-image: url(../images/logo/plugin-thwmsa.png);
}
.logo-skyv-csv-export{
  background-image: url(../images/logo/plugin-skyv-csv-export.png);
}
.logo-skyv-osm{
  background-image: url(../images/logo/plugin-skyv-osm.png);
}
.logo-wpo-pdf-invoice{
  background-image: url(../images/logo/plugin-wpo-pdf-invoice.png);
}
.logo-wsd{
  background-image: url(../images/logo/plugin-thwsd.png);
}
.logo-webtoffee{
  background-image: url(../images/logo/plugin-webtoffee-pie.png);
}
.logo-woo-shipping-tax{
  background-image: url(../images/logo/plugin-woo-shipping-tax.png);
}
.logo-wpml{
  background-image: url(../images/logo/plugin-wpml.png);
}
.logo-dokan{
  background-image: url(../images/logo/plugin-dokan-mv.png);
}
.logo-algoplus-aoew{
  background-image: url(../images/logo/plugin-algoplus-aoew.png);
}
.logo-aelia-cs{
  background-image: url(../images/logo/plugin-aelia-cs.png);
}
.logo-ast{
  background-image: url(../images/logo/plugin-ast.png);
}
.logo-wpclever{
  background-image: url(../images/logo/plugin-wpclever.png);
}
.logo-woo-product-bundles{
  background-image: url(../images/logo/plugin-woo-product-bundles.png);
}
.logo-pl-elementor{
  background-image: url(../images/logo/plugin-elementor.png);
}
.logo-pl-bisn-woo{
  background-image: url(../images/logo/plugin-bisn-woo.png);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .logo-grid .col-md{
    flex: 0 0 0%;
  }
}

/***** FAQs *****/
.faq-item .faq-header{
  
}
.faq-item .faq-header a{
  font-size: 1.1rem;
  font-weight: 600;
  color: #89216B;
  display: block;
  text-align: left;
  padding: 1.5rem 1.5rem;
}
.faq-item .faq-header a.collapsed{
  color: #001848;
  border-bottom: 1px solid #E4E0E0;
}

.faq-item .faq-header a:after {
  content: "\f068";
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  float: right;
}
.faq-item .faq-header a.collapsed:after {
    content: "\f067";
}

.faq-item .faq-body{
  padding: 1rem 2.5rem;
}




/* --- Product page ----*/
.edd-download-summary h1.product-title {
    font-family: utopia-std-caption, serif;
    font-size: 55px;
    color: #151b26;
    font-weight: 600;
}
.edd-download-summary .short-description{
  font-size: 20px;
  color: #151b26;
  margin-top: 30px;
}

.plugin_price_details {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0px 5px 13.5px 1.5px rgb(36 44 51 / 5%);
    margin-bottom: 15px;
    z-index: 1;
}
.price_list .edd_price_options ul li {
    padding: 10px 0;
}

.edd_price_options input[type=checkbox], .edd_price_options input[type=radio] {
  margin-right: 6px;
}
.edd-download-summary .edd-add-to-cart.button, .edd-download-summary .edd_go_to_checkout.button {
  background: #ef4c85;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 18px 45px;
    border-radius: 4px;
  width:100%;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.edd-download-summary .edd-add-to-cart.button:hover, .edd-download-summary .edd_go_to_checkout.button:hover,
.edd-download-summary .edd-add-to-cart.button:active, .edd-download-summary .edd_go_to_checkout.button:active,
.edd-download-summary .edd-add-to-cart.button:focus, .edd-download-summary .edd_go_to_checkout.button:focus
{
  background: #e2437b;
    color: #fff;
}

.edd-download-summary .edd-add-to-cart.button .edd-add-to-cart-label {
  color: #fff;
}

.edd-cart-added-alert {
    margin-top: 6px;
}

.why_choose ul, .plugins_details_para ul, .plugin_feature_item ul,  ul.feature-list{
  padding-left:0;
}
.why_choose ul li:before, .plugins_details_para ul li:before, .plugin_feature_item ul li:before,.feature-list li:before {
    content: '\2713';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    color: #4f5963;
    font-weight: 800;
}
.feature-list li:before {
  color:#ef4c85;
}

.why_choose ul li, .plugins_details_para ul li, .plugin_feature_item ul li, .feature-list li {
    position: relative;
    margin-top: 5px;
    padding-left: 25px;
    font-size: 16px;
    color: #4f5963;
    font-weight: 300;
}

.feature-list li {
    margin-top: 18px;
}

#tab-changelog pre {
    font-family: basic-sans, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #3d4145;
    line-height: 2;
    margin: 6px 0;
}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .th-masthead .desc-box {
      padding-top: 3rem;
      padding-right: 5rem;
      text-align: left;
      margin-bottom: 0rem;
  }

  .th-masthead .desc-box .action-btns,
  .th-masthead .desc-box .action-links{
    justify-content: start;
  }

  .money_back {
      top: -30px;
      right: -27px;
  }
}


@media (min-width: 768px) {
  .single-download .reviews {
    gap: 5%;
  }
  .single-download .reviews .review-item {
    flex: 45%;
    margin-bottom: 1.5em;
  }

  .single-download .fgrid{
    gap: 5%;
  }
  .single-download .fg-0{
    gap: 0%;
  }
  .single-download .fg-10{
    gap: 10%;
  }
  .single-download .fgrid .col-md{
    flex: 45%;
    margin-bottom: 1.2em;
  }
}
/*==================================*/
/*====== PRODUCT PAGE - END ========*/
/*==================================*/


/*===================================*/
/*===== AFFILIATE PAGES - START =====*/
/*===================================*/
.page-template-template-blank .th-header{
    background-color: #F7FDFF;
    background: transparent;
}

.af-banner .container{
  padding-top: 6em!important;
  padding-bottom: 6.5em;
}
.af-banner .text-xl{
  line-height: 2;
}
.af-banner:after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    bottom: 0px;
    top: -150px;
    background: url(../images/bg-banner.svg) no-repeat center center;
    background-color: #F7FDFF;
    background-size: cover;
}

.media-grid-nobg .media img{
  width: 30%;
    height: 30%;
    padding: 0rem;
    margin-right: 1.2em;
    border-radius: 0;
    background: transparent;
}

.page-template-template-blank .zigzag-item h3{
  color: #5333ED;
  font-size: 1.4rem;
  font-weight: 600;
}
.page-template-template-blank .zigzag-item .zz-text {
    padding-right: 1rem;
}
.page-template-template-blank .zigzag-item.reverse .zz-text {
    padding-left: 1rem;
}
.page-template-template-blank .zigzag-item .zz-image img {
    width: 60%;
    box-shadow: none;
}

.page-template-template-blank .faq-item .faq-header a{
  color: #5333ED;
}
.page-template-template-blank .faq-item .faq-header a.collapsed {
    color: #001848;
}
.faqs-solid .faq-item{
  background: #FFFFFF;
  margin-bottom: 5px;
  border: 1px solid #ECECEC;
  border-radius: 6px;
  box-sizing: border-box;
  /* box-shadow: 0px 7px 18px -3px rgba(0, 0, 0, 0.07); */
}
.faqs-solid .faq-item .faq-header a.collapsed{
  border-bottom: 0;
}


form#affwp-login-form {
    float: left;
    width: 47%;
    margin-left: 3%;
}
form#affwp-register-form {
    float: left;
    width: 47%;
    margin-right: 3%;
}
footer.footer-wrapper {
    clear: both;
}
.affwp-form input[type=password], 
.affwp-form input[type=email] {
    color: #858585;
    background: #fbfbfb;
    height: auto;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid #e6e6e6;
    border-radius: .25rem;
    box-shadow: none;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    padding: 0.75rem 1.5rem;
}
a.member-login-ca {
    display: none;
    padding: 0.35em 0.75em 0.625em;
    font-size: 15px;
    color: #cf3f56;
    padding-bottom: 0px;
}
.affwp-form legend {
    font-size: 17px;
    font-weight: 700;
}
.affiliate-work-p {
    text-align: center;
    margin-bottom: 40px;
}
.work-head {
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  form#affwp-login-form {
      float: left;
      width: 100%;
      margin-left: 0px;
  }
  form#affwp-register-form {
      float: left;
      width: 100%;
      margin-right: 0px;
  }
  a.member-login-ca {
    display:block;
  }
}

/* Header Ribbon */
.affiliate-cta-wrapper {
    background: url(../images/affiliate-cta-bg.jpeg) no-repeat;
    color: #fff;
    padding: 13px 0px;
    background-size: cover;
}
.affiliate-cta-container {
    position: relative;
    text-align: center;
}
a.affiliate-cta {
    color: #fff;
    padding: 8px 20px 8px 0px;
    border-radius: 21px;
    text-decoration: underline;
    font-weight: 700;
}
p.affliate-ct {
    display: inline-block;
}
p.affiliate-cnt {
    margin-right: 10px;
    margin-bottom: 0px;
}
.affiliate-close {
    background: url(../images/close.svg);
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 3px;
    right: 2px;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    cursor: pointer;
    background-color: rgb(0 0 0 / 30%);
}
/*==================================*/
/*====== AFFILIATE PAGES - END =====*/
/*==================================*/


/*====================================*/
/*===== USER DASHBOARD - START =======*/
/*====================================*/
.user-dashboard{
  background: #f4f4f4;
  box-shadow: 0 2px 40px 0 #f0f1f2;
}
.user-dashboard .col-md{
  padding: 0;
  height: 100%;
}
.user-dashboard .col-md-3{
  padding: 30px 0 30px 20px;
}


.user-dashboard .nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.user-dashboard .nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.user-dashboard .nav-pills .nav-link{
  padding: 0.8rem 1.5rem;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  /*font-size: 1rem;*/
}
.user-dashboard .nav-pills .nav-link .fas{
  margin-right: 10px;
}
.user-dashboard .nav-pills .nav-link.active, 
.user-dashboard .nav-pills .show>.nav-link {
  color: #001848;
    background-color: #fff;
}
.user-dashboard .tab-content{
  background: #fff;
  padding: 1.5rem 3rem 1.5rem 3rem !important;
  height: 100%;
  min-height: 300px;
}

.user-dashboard .main_title_dk{
  font-size: 1.5em;
    margin-bottom: 0.67em;
}

.user-dashboard .tab-content a{
  /*color: #89216B;*/
  color: var(--primary-color);
}
.user-dashboard .tab-content a:hover{
  /*color: #6d1a55;*/
  color: var(--primary-color-hover);
  text-decoration: underline;
}
/*====================================*/
/*===== USER DASHBOARD - END =========*/
/*====================================*/



/*----- Shop Page -----*/
.page-template-template-shop .header {
    box-shadow: none;
    background-color: #f6f8f9;
}

.template-shop .entry-header{
  /*padding: 3rem 0;*/
  background-color: #F7F9FC;
}
.template-shop h1.entry-title {
  font-size: 2.22rem;
  font-weight: 700;
  line-height: 1.36em;
  margin-bottom: 0.5rem;
}
.template-shop p.entry-subtitle {
  color: #151b26;
  font-size: 1.286rem;
  line-height: 1.78em;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.template-shop .entry-content{

}
.products-grid {
/*    margin: 3rem 0;*/
}
.products-grid .col-md {
    padding: 1rem;
}

.products-grid .card {
    height: 100%;
    /*border: 1px solid #E8E8E8;
    border-radius: 1.11rem;*/

    border: 0;
    background: #F7F9FC;
}
.products-grid .card:hover {
    box-shadow: 0 2px 40px 0 #f0f1f2;
}
.products-grid .media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: center;
}
.products-grid .media img {
    width: 4.44rem;
    height: 4.44rem;
    padding: 1rem;
    margin-right: 1.2em;
    border-radius: 1.11rem;
}
.products-grid .media h6 {
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.4em;
}
.products-grid .card-content {
    margin-top: 0.875rem;
    padding: 0.44rem;
}
.products-grid p.card-text {
    font-size: 0.875rem;
    line-height: 1.78em;
    margin-bottom: 1.31rem;
}
.products-grid h6.card-price {
    font-size: 0.97rem;
    line-height: 1.4em;
}
.products-grid .col-md a:hover {
    color: #001848;
}
.product-archive-wrapper .pagination {
    display: -ms-flexbox;
    display: flex;
    display: none;
    padding-left: 0;
    margin: 2rem 0;
    list-style: none;
    border-radius: 0.25rem;
}
.product-archive-wrapper .pagination ul{
    display: flex;
}
.product-archive-wrapper .pagination ul li{
    margin: 0 1rem;
}


/*----- Default Page -----*/
.page-template-default .header {
    box-shadow: none;
    background-color: #f6f8f9;
}

.page-template-default .entry-content h2,
.page-template-default .entry-content h3,
.page-template-default .entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-template-default .entry-content p {
  /*  font-size: 1.143rem;*/
  margin-bottom: 1.5rem;
}

.page-template-default .entry-content ul,
.page-template-default .entry-content ol {
  /*  font-size: 1.143rem;*/
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  margin-left: 3rem;
}
.page-template-default .entry-content ul {
  list-style: disc;
}
.page-template-default .entry-content ul li,
.page-template-default .entry-content ol li{
  margin-bottom: 1rem;
}







/*====================================*/
/*===== EDD OVERRIDES - START =======*/
/*====================================*/

/********** COMMON STYLES ***********/
/**************************************/
.edd-input,
.edd-select{
  background: #fbfbfb;
    height: auto;
    font-size: 15px;
    font-weight: 300;
    color: #858585;
    padding: 13px 20px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    box-shadow: none;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
}
.edd-input{
  /*-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;*/
}

.edd-input,
.edd-select{
  max-width: 500px;
    width: 100%;
}
.edd-select{
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='grey' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 7px;
}

.edd-submit{
  padding: 12px 50px !important;
  color: #fff;
  /*background: linear-gradient(274.35deg, #DA4453 -13.12%, #89216B 155.2%);*/
    background: linear-gradient(271.6deg, #6E55FF 4.17%, #845DE2 96.55%) !important;;
    border-color: #D04056;
    border: 0;
}
.edd-submit.button.blue {
    color: #fff;
  /*background: linear-gradient(274.35deg, #DA4453 -13.12%, #89216B 155.2%) !important;*/
  background: linear-gradient(271.6deg, #6E55FF 4.17%, #845DE2 96.55%) !important;
    border-color: #D04056 !important;
    border: 0;
}
.edd-submit.button.blue.active, 
.edd-submit.button.blue:focus, 
.edd-submit.button.blue:hover{
  color: #fff;
  /*background: linear-gradient(274.35deg, #DA4453 -13.12%, #89216B 155.2%) !important;*/
  background: linear-gradient(271.6deg, #6E55FF 4.17%, #845DE2 96.55%) !important;
    border-color: #D04056 !important;
    border: 0;
}


/********** LOGIN/REGISTER PAGES ***********/
/*******************************************/
#edd_login_form label, 
#edd_register_form label {
    display: block;
    font-weight: 500;
    margin-bottom: .2rem;
}
#edd_login_form legend, 
#edd_register_form legend {
    font-weight: 600;
    margin-bottom: 2em !important;
}

/*.edd-lost-password a{
  color: #89216B;
}*/

#edd_login_form{
  width: 45%;
  margin: 0 auto;
  padding: 2rem 3em 3em 3em !important;
    box-shadow: 0 2px 40px 0 #f0f1f2;
}
#edd_login_form fieldset{
  padding: 0 !important;
}
#edd_login_form .edd-lost-password{
  margin-bottom: 0;
}


/********** USER DASHBOARD ***********/
/*************************************/
.edd_sl_table th,
.edd-recurring-subscription-transactions th,
#edd_user_history th {
    font-weight: 600 !important;
    background: #f4f4f4 !important;
}

.edd_sl_table th, .edd_sl_table td,
.edd-recurring-subscription-transactions th, .edd-recurring-subscription-transactions td,
#edd_user_history td, #edd_user_history th {
    padding: 8px 12px !important;
    border-bottom: 1px solid #f0f0f0;
    border-top: none;
    vertical-align: top !important;
}

.edd_sl_table td,
.edd-recurring-subscription-transactions td,
#edd_user_history td{
  font-size: 0.9em;
}

#edd_profile_editor_form fieldset{
  margin-top: 1em;
  display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#edd_profile_editor_form fieldset legend{
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1em !important;
  margin-bottom: 0.5em !important;
}
#edd_profile_editor_form fieldset p{
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 0em 0.8em;
    flex: 0 0 50%;
    max-width: 50%;
}
#edd_profile_editor_form fieldset p label{
  display: block;
  font-weight: 400 !important;
    margin-bottom: 0px !important;
}

#edd_profile_personal_fieldset,
#edd_profile_address_fieldset,
#edd_profile_password_fieldset{
  border: 1px solid #f0f0f0;
  padding: 1em 1.5em 0.5em 1.5em !important;
}

#edd_profile_editor_form input[type=email], 
#edd_profile_editor_form input[type=password], 
#edd_profile_editor_form input[type=tel], 
#edd_profile_editor_form input[type=text],
#edd_profile_editor_form select.edd-select,
#edd_profile_editor_form textarea {
    padding: 10px 10px !important;
}
#edd_profile_submit_wrap{
  text-align: center;
}
#edd_profile_editor_form fieldset #edd_profile_submit_wrap{
  flex: none;
    max-width: 100%;
    width: 100%;
}



#edd_sl_license_keys, #edd_sl_license_sites{
  text-align: left;
    width: 100%;
    border-top: 1px solid #f0f0f0;
    border-bottom: none;
}

#edd_sl_license_keys th, #edd_sl_license_sites th{
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  border-top: none;
  padding: 8px 12px !important;
  font-weight: 600 !important;
  background: #f4f4f4 !important;
}

#edd_sl_license_keys td , #edd_sl_license_sites td {
    line-height: 25px;
    vertical-align: top;
    text-align: left;
    border-top: none;
    font-size: 0.9em;
    padding: 8px 12px !important;
    border-bottom: 1px solid #f0f0f0;
    border-top: none;
}

#edd_sl_license_keys .edd_sl_license_key{
    position: absolute;
    width: 300px;

    height: 2rem!important;
    display: block;
    position: relative;
}

#edd_sl_license_keys .edd_sl_license_row .edd_sl_item{
  width: 50%;
}

.edd-sl-manage-license-details{font-size: 1.15rem;}
.edd-sl-manage-license-key {margin-right: 14px;}

form#edd_sl_license_add_site_form{
  margin: 1.5rem 0;
}

#edd_sl_license_add_site_form.edd_sl_form { 
  display: none !important;
}

.edd-recurring-subscription-transactions,
#edd_sl_license_upgrades{
  width: 100% !important;
}
.edd_sl_table{
  border-top: 1px solid #f0f0f0;
    border-bottom: none;
}


/***** Success Page *****/
.my-account-pages *, body.edd-success .entry-content * {
    font-weight: 400;
    color: #3d4145;
    line-height: 1.6;
}

.my-account-pages table, body.edd-success .entry-content table {
  border-collapse: collapse;
  width: 100%;
}

.my-account-pages td,
.my-account-pages th,
body.edd-success .entry-content td, body.edd-success .entry-content th  {
  /* border: 1px solid #dddddd; */
  text-align: left;
  padding: 12px;
}

body.edd-success .entry-content table {
  margin:2rem 0;
}

body.edd-success .entry-content table tr{
  border: 1px solid #dddddd;
}

body.edd-success .entry-content strong {
    font-weight: bold;
}

body.edd-success .entry-content a{
    /*color: #ef4c85;*/
    color: var(--primary-color);
}

body.edd-success .entry-content h3 {
    font-size: 1.75rem;
}


.my-account-pages th, body.edd-success .entry-content th {
    font-weight: 700;
    background: #f5f5f5;
}

.my-account-pages ul.nav li.nav-item a{
  font-weight: 700;
  color: #3d4145;
}
.my-account-pages ul.nav li.nav-item a.active{
  color: #ef4c85;
}

/* #3d4145 */

.my-account-pages a {
    color: #ef4c85;
}

.my-account-pages a:hover {
    color: #ef4c85;
}


.my-account-pages #edd_profile_editor_form p{
  width:100%;
  float:left;
  margin-bottom:10px;
}
@media (min-width: 576px) {
  .my-account-pages #edd_profile_editor_form p{
    width:47%;
    padding-right:3%;
  }
}


.my-account-pages #edd_profile_editor_form label{
  width:100%;
  display:block;
  margin-bottom:4px;
}

.my-account-pages #edd_profile_editor_form input,
.my-account-pages #edd_profile_editor_form select {
  width: 100%;
    padding: 8px;
    margin: 0 0 10px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  font-size: 16px;
  font-weight: 300;
  background-color: transparent;
}

.my-account-pages #edd_profile_editor_form input[type=submit] {
  width: auto;
  background-color: #ef4c85;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}
.my-account-pages fieldset {
  margin-bottom:1.2rem;
}
.my-account-pages fieldset legend {
  font-weight:700;
}


/********** PRODUCT PAGE *************/
/*************************************/
.single-download .edd_download_purchase_form {
    margin-bottom: 0!important;
}
.edd_price_options ul{
  list-style: none;
}
.edd_price_options li{
  padding: 15px 0 !important;
  border-top: 0px solid #e5e5e5;
  align-items: center!important;
  justify-content: space-between!important;
}
.edd_price_options li label{
  width: 100%;
}
.edd_price_options input[type=checkbox], 
.edd_price_options input[type=radio] {
    margin-right: 1.5rem !important;
}

.edd_price_options input[type='radio']:after, 
.edd_price_options input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    top: -4px;
    left: -1px;
    position: relative;
    content: '';
    display: inline-block;
    visibility: visible;
}
.edd_price_options input[type=radio]:after {
    background-color: #fff;
    border: 1px solid #d1d3d1;
}
.edd_price_options input[type=radio]:checked:after {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.edd_download_purchase_form .edd_price_options span {
  font-size: 0.96rem;
  line-height: 1.2em;
}
.edd_download_purchase_form .edd_price_option_sep {
    padding: 0 0.5rem !important;
    display: none!important;
}
.edd_download_purchase_form .edd_price_option_price{
  font-weight: 700;
  float: right;
  margin-right: 2rem!important;
}

.edd-add-to-cart{
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 1rem;
}


/********** CHECKOUT PAGE ************/
/*************************************/
#edd_checkout_wrap{
  width: 80%;
    margin: 0 auto;
}

#edd_checkout_wrap .edd_empty_cart{
  font-size: 1.5rem;
    margin: 2rem 1rem;
    text-align: center;
    display: block;
}

#edd_checkout_wrap p {
    margin-top: 0;
    margin-bottom: 1.5rem;
}
#edd_checkout_form_wrap fieldset p:last-child {
    margin-bottom: 0!important;
}

/*#edd-email-wrap,
#edd-user-pass-confirm-wrap,
#edd-card-state-wrap{
  margin-bottom: 0 !important;
}*/
#edd_checkout_form_wrap label {
    font-weight: 400 !important;
    margin-bottom: 5px !important;
}

.edd-discount-code-field-wrap .edd-input{
  margin-bottom: 1rem;
}
.edd-discount-code-field-wrap .edd-apply-discount{
  
}

#edd_checkout_cart_wrap,
#edd_checkout_form_wrap{
  padding: 3rem 3rem 1.5rem 3rem !important;
    box-shadow: 0 2px 40px 0 #f0f1f2;
}

#edd_checkout_cart_wrap {
    margin: 0 0 1.5rem !important;
}

#edd_checkout_form_wrap #edd-login-account-wrap, 
#edd_checkout_form_wrap #edd-new-account-wrap, 
#edd_checkout_form_wrap #edd_final_total_wrap, 
#edd_checkout_form_wrap #edd_show_discount, 
#edd_checkout_form_wrap .edd-cart-adjustment {
    background: transparent !important;
}


#edd_checkout_form_wrap fieldset{
    /*margin: 0 !important;*/
}

#edd_payment_mode_select,
#edd_checkout_login_register,
/*#edd_checkout_user_info,
#edd_register_account_fields,*/
#edd_cc_fields,
#edd_cc_address{
  margin: 0 0 2rem 0 !important;
}

#edd_checkout_form_wrap #edd-login-account-wrap{
  font-size: 1.1rem;
}
#edd_checkout_form_wrap #edd-login-account-wrap, 
#edd_checkout_form_wrap #edd-new-account-wrap {
  padding: 0 !important;
    margin: 0 0 1.5rem 0 !important;
}

#edd_checkout_cart .edd_cart_header_row th {
    background: transparent !important;
}

#edd_checkout_login_register,
#edd_cc_fields,
#edd_cc_address {
    border: 1px solid #f4f4f4 !important;
    padding: 1.5rem !important;
}

#edd_register_fields,
#edd_login_fields{
  border: 0 !important;
  margin: 0 !important;
  padding: 0rem !important;
}
#edd_register_fields #edd_checkout_user_info{
  border: 0 !important;
}

#edd_checkout_form_wrap input[type=email], 
#edd_checkout_form_wrap input[type=password], 
#edd_checkout_form_wrap input[type=tel], 
#edd_checkout_form_wrap input[type=text],
#edd_checkout_form_wrap select.edd-select,
#edd_checkout_form_wrap textarea {
    padding: 10px 10px !important;
}

#edd_checkout_form_wrap select.edd-select {
    display: block;
    max-width: 100% !important;
    width: 100% !important;
}
#edd_checkout_form_wrap input.edd-input, 
#edd_checkout_form_wrap textarea.edd-input {
    display: inline-block;
    max-width: 100% !important;
    width: 100% !important;
}

#edd_checkout_form_wrap span.edd-description {
    display: none !important;
}

/*#edd_checkout_form_wrap select.edd-select {
    display: block;
    width: 60%;
}*/

#edd_final_total_wrap{
  background: transparent !important;
  border: 0 !important;
  padding: .5em 0 !important;
  margin-bottom: 1rem !important;
  font-size: 1.2rem;
  text-align: center;
}


#edd_purchase_submit{
  width: 300px;
  margin: 0 auto !important;
}
#edd-purchase-button{
  width: 100%;
  margin: 0 auto !important;
  padding: 15px 50px !important;
  font-size: 1.4rem !important;
  border: 0 !important;
}
#edd-user-login-submit .edd-submit.button.gray{
  color: #89216B;
  background-color: #fff;
  border-color: #D04056;
}
#edd_checkout_login_register #edd-user-login-submit .edd-submit.button.gray {
    color: #fff;
    border: 0;
}


#edd_checkout_form_wrap fieldset#edd_cc_fields {
    border: 1px solid #f0f0f0;
    background: transparent !important;
    position: relative;
}

#edd_purchase_form #edd-card-wrap .TermsText{
  display: none;
}
.TermsText {
    display: none;
}


#edd_checkout_cart{
    margin: 0 !important;
}


#edd_checkout_cart td {
    line-height: 25px;
    background: transparent !important; 
}
#edd_checkout_cart td, 
#edd_checkout_cart th {
  border: 0 !important;
    color: #666 !important;
    padding: .5em 0em !important;
}
.edd_cart_header_row,
.edd_cart_item{
  border-bottom: 1px solid #eee !important;
}
/*#edd_checkout_login_register*/


#edd_checkout_form_wrap fieldset#edd_sl_renewal_fields {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}
#edd_sl_show_renewal_form{
  color: #000000 !important;
  background: #fafafa !important;
    border-color: #eee !important;
    padding: 0.5rem 1rem !important;
}
#edd_sl_show_renewal_form:hover{
  background: #eee !important;
}

/********** SUCCESS PAGE ************/
/*************************************/
.edd-receipt-wrapper{
  padding: 3rem 3rem 1.5rem 3rem !important;
    box-shadow: 0 2px 40px 0 #f0f1f2;
}

/********** RESPONSIVE ************/
/**********************************/
@media screen and (max-width:768px) {
  #edd_login_form {
      width: 100%;
  }

  #edd_checkout_wrap{
    width: 100%;
  }

  #edd_checkout_cart_wrap,
  #edd_checkout_form_wrap{
    padding: 1rem 1rem 0.5rem 1rem !important;
  }

  .edd-receipt-wrapper{
    padding: 1rem 1rem 0.5rem 1rem !important;
  }
  .edd-receipt-wrapper .edd_license_key{
    font-size: 0.8rem;
  }

  #edd_profile_editor_form fieldset p {
      padding: 0em 0.8em;
      flex: 0 0 100%;
      max-width: 100%;
  }
}

#edd_sl_renewal_fields legend.screen-reader-text {
  width: auto !important;
}
/*====================================*/
/*===== EDD OVERRIDES - END =======*/
/*====================================*/













/****** TOP BAR ******/
.th-notice {
  height: auto;
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(291deg, #1872B2 14.37%, #37084E 86.85%), #D9D9D9;
  background-size: cover;
}
.th-notice .th-notice-col-left,
.th-notice .th-notice-col-center,
.th-notice .th-notice-col-right{
  height: auto;
  /*text-align: center;
  justify-content: center;*/
}
.th-notice .th-notice-col-left {
  
}
.th-notice .th-notice-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.th-notice .th-notice-col-right {
  
}

.th-notice .bnr-img{
  max-height: 100%;
}
/*.halloween-sale-notice .pumpkin {
    top: -1.5rem;
    left: 2rem;
}
.halloween-sale-notice .pumpkin img {
    height: 70px;
    width: 70px;
}*/

.th-notice .counter {
/*    margin-left: auto;*/
    display: flex;
}
.th-notice .count {
    display: inline-block;
    /*width: 48px;
    height: 48px;*/
    background: #274385;
    border: 0.866px solid #AA8B8B;
    text-align: center;
    border-radius: 9px;
    vertical-align: middle;
}
.th-notice .count {
    width: 55px;
    height: 55px;
}
.th-notice .count > span {
    display: block;
}
.th-notice .count-word {
  font-size: 20px;
  color: #fff;
  margin: 2px;
  display: inline-block;
  vertical-align: middle;
}
.th-notice .count .count-number {
    font-size: 25px;
    color: #fff;
    line-height: 15px;
    margin-top: 11px;
    margin-bottom: 4px;
}
.th-notice .count .count-text {
    font-size: 7px;
    line-height: 18px;
    color: #fff;
}

.th-notice .initial-txt{
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
.th-notice .initial-txt p {
  font-size: 16px;
  color: #fff;
  margin-right: 30px;
  margin-left: 20px;
  margin-bottom: 0px;
  display: inline-block;
}

.th-notice .coupon-claim {
  display: inline-block;
  display: flex;
  height: 42px;
  margin-left: 20px;
    cursor: pointer;
  /*    position: relative;*/
}
.th-notice .coupon-claim::before {
  content: '';
  display: none;
  position: absolute;
  z-index: 9998;
  top: 35px;
  left: 155px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0,0,0,.72);
}
.th-notice .coupon-claim::after {
  content: 'Copy to Clipboard';
  display: none;
  position: absolute;
  z-index: 9999;
  top: 40px;
  left: 95px;
  width: 114px;
  height: 36px;
  color: #fff;
  font-size: 10px;
  line-height: 36px;
  text-align: center;
  background: rgba(0,0,0,.72);
  border-radius: 3px;
}
.th-notice .coupon-claim:hover {
  transform: scale(1);
}
.th-notice .coupon-claim:hover::before, 
.th-notice .coupon-claim:hover::after {
  display: block;
}
.th-notice .coupon-claim:active, 
.th-notice .coupon-claim:focus {
  outline: none;
}
.th-notice .coupon-claim:active::after, 
.th-notice .coupon-claim:focus::after {
  content: 'Copied!';
}
/*.th-notice .coupon-claim .line {
    left: -2rem;
    top: 0.5rem;
}*/
.th-notice .coupon-claim .claim-now {
    display: flex;
    align-items: center;
    color: #fff;
    background: #E1688C;
    padding: 5px 15px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    width: 137px;
    height: 42px;
    padding-left: 33px;
    background: linear-gradient(180deg, #F2AB4B 0%, #EB7B32 100%);
}
.th-notice .coupon-claim button {
    height: 42px;
    border: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 45px;
}
.th-notice .coupon-claim .cancel-mob {
    color: #fff;
    border: 1px solid #fff;
    padding: 2px 30px;
    border-radius: 47px;
    margin-right: 15px;
    display: none;
}

.th-notice .money-back-wrapper-mob {
    display: block;
    position: relative;
}
.th-notice .money-back-wrapper-mob img {
    position: absolute;
    left: 23px;
    top: -1px;
    width: 50px;
    height: 50px;
}

.th-notice .line-mob {
  display: block;
  position: absolute;
  left: 14px;
  top: 9px;
  height: 28px;
  background-color: #fff;
  width: 0.5px;
}


/*.offer-highlite p {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
}
.offer-highlite span{
    font-size: 30px;
    color: #fff;
    font-weight: 700;
}*/






/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .th-notice {
    height: 87px;
    padding: 6px 0px;
    flex-direction: row;
    justify-content: space-between;
  }
  .th-notice .th-notice-col-left {
    width: 180px;
  }
  .th-notice .th-notice-col-center {
    flex-direction: row;
  }
  .th-notice .th-notice-col-right {
    width: 180px;
  }

  .th-notice .line-mob {
    display: none;
  }
  .th-notice .line {
    position: absolute;
    height: 28px;
    background-color: #fff;
    width: 0.5px;
    top: 35%;
  }

  .th-notice .money-back-wrapper-mob {
    display: none;
  }
  .th-notice .money-back-wrapper {
    display: inline-block;
  }
  .th-notice .money-back {
    background: url(../images/halloween/money-back-icon.svg);
    background-repeat: no-repeat;
    display: inline-block;
    width: 61px;
    height: 51px;
    background-size: 100%;
    position: relative;
    margin-left: 12px;
  }
  
}




/*-------------------------------------
 *----- HALLOWEEN SALE - START --------
 *-------------------------------------*/
.th-notice.halloween-sale-notice .initial-txt {
  font-family: 'Mochiy Pop One';
}
.th-notice.halloween-sale-notice .initial-txt .hallo-desc {
  font-family: 'Open Sans';
  font-size: 13px;
}
.th-notice.halloween-sale-notice .initial-txt .hallo-color{
  filter: drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.57));
  background: linear-gradient(180deg, #F2AB4B 0%, #EB7B32 100%), #D9D9D9;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.th-notice.halloween-sale-notice .img-pumpkin {
  height: 50px;
  width: 50px;
  position: absolute;
  bottom: 0rem;
  left: 1rem;
}
.th-notice.halloween-sale-notice .img-bat {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 0rem;
  right: 1rem;
}
.th-notice.halloween-sale-notice .img-ghost {
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: 0rem;
  right: 0rem;
}

.th-notice.halloween-sale-notice .count {
  background: transparent;
  border: 0;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .th-notice.halloween-sale-notice .img-pumpkin {
    height: 70px;
    width: 70px;
    position: relative;
  }
  .th-notice.halloween-sale-notice .img-bat {
    width: 80px;
    height: 80px;
    position: relative;
  }
  .th-notice.halloween-sale-notice .img-ghost {
    width: 65px;
    height: 65px;
    position: relative;
  }
}
/*-------------------------------------
 *----- HALLOWEEN SALE - END ----------
 *-------------------------------------*/





