html {
  scroll-behavior: smooth;
}

body{
    font-size: 100%;
    font-family: "Poppins", Arial, Helvetica, Sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    counter-reset: list-count;
    overflow-x: hidden;
    color: #ffffff;
    background:  linear-gradient(90deg, #050939 0%, #141A61 47.57%, #050939 93.19%);
}

.shadow {
    box-shadow: 0 0px 35px rgb(0 0 0 / 10%) !important;
}

a{
    text-decoration: none;
    transition: all 0.3s;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1160px!important;
  }
}

.text-red{
    color: #da4453;
}

.text-bold{
    font-weight: 700;
}
b{
    font-weight: 600!important;
}
/* Buttons */

.btn-md {
    padding: 19px 36px;
    border: 1px solid #e0004d;
    border-radius: 10px;
    background-color: #e0004d;
    /* box-shadow: 0 6px 14px 0 rgb(255 155 71 / 38%); */
    -webkit-transition: color .3s,border .3s,background-color .3s;
    transition: color .3s,border .3s,background-color .3s;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.btn-md:hover {
    background-color: #ea2568;
    color: #fff;
}

.btn-lg {
    padding: 22px 42px;
    border: 1px solid #ff6d00;
    border-radius: 47px;
    background-color: #ff6d00;
    box-shadow: 0 6px 14px 0 rgb(255 155 71 / 38%);
    -webkit-transition: color .3s,border .3s,background-color .3s;
    transition: color .3s,border .3s,background-color .3s;
    color: #fff;
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.btn-lg:hover {
    background-color: transparent;
    color: #ff6d00;
}

/* HEADER */

header{
    width: 100%;
    z-index: 999;
    /* background: #0b0e46; */
    padding: 10px 0;
    position: fixed;
    top: 0;
}

header .logo{
    max-width: 240px;
}

header .logo img{
   max-width: 100%;
   max-height: 50px;
}

header .navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

header nav ul{
    list-style: none;
    padding: 0;
    text-align: right;
    display: flex;
    justify-content: end;
    overflow: hidden;

    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
    margin-bottom: 0;
}

header nav li{
    display: inline-block;
    margin-right: 30px;
}

header nav li a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    transition:all 0.3s ease;
}

header nav li a:hover{
    color: #fb0357;
}

header nav li.button{
    margin-right: 0;
}
header nav li.button a{
    background: #e0004d;
    border-radius: 27px;
    color: #ffffff;
    font-weight: 500;
    padding: 10px 20px;
    text-transform: uppercase;
}

header nav li.button a:hover{
    background: #fb0357;
    color:#ffffff;
}


@media (max-width: 576px) {
    header  {
        position: relative;
    }
}



/* menu icon */

header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 21px 12px;
  position: relative;
  user-select: none;
}

header .menu-icon .navicon {
  background: rgb(255 255 255 / 60%);
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

header .menu-icon .navicon:before,
header .menu-icon .navicon:after {
  background: rgb(255 255 255 / 60%);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

header .menu-icon .navicon:before {
  top: 5px;
}

header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

header .menu-btn {
  display: none;
}

header .menu-btn:checked ~ .menu {
  max-height: 240px;
  display: block;
}

header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 1076px) {
  /*header li {
    float: left;
  }
  header li a {
    padding: 20px 30px;
  }*/
  header .menu {
    clear: none;
    float: right;
    overflow: visible;
    max-height: none;
  }
  header .menu-icon {
    display: none;
  }
}


@media (max-width: 1076px) {
    header .logo{
        max-width: 160px;
        display: inline-block;
    }
    header .navbar{
        display: block;
    }
    header nav ul{
        display: block;
        width: 100%;
        text-align: left;
        margin: 0;
    }
    header nav li{
        display: block;
        margin-right: 0
    }
    header nav li a{
        display: block;
        padding: 10px 0;
    }
}


@media (max-width: 576px) {
    img{
        max-width: 100%;
    }
}

/* GERAL */

.benefits-line ul{
    list-style: none;
    padding: 0;
}

.benefits-line ul li{
    display: inline-flex;
   align-items: center;
   justify-content: center;
   margin-right: 12px;
   margin-bottom: 12px;
}

.benefits-line ul li svg{
   margin-right: 6px;
}

.benefits-line ul li span{
   color: #ffffff;
}


/* HERO */
.hero{
    /* background: #0b0e46; */
    padding-top: 140px;
    padding-bottom: 80px;
    background: url(../images/bg-hero.svg);
    background-size: cover;
    background-position: bottom;
}

.hero .badge-block{
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #3897f0;
  letter-spacing: 0.75px;
  display: flex;
    align-items: center;
}

.hero .badge-block img{
  width: 20px;
  margin-right: 8px;
}

.hero h1{
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.12em;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.hero .hero-lead{
    margin-bottom: 35px;
    font-size: 20px;
    line-height: 1.6em;
    color: #ffffff;
    padding-right: 60px;
}



.hero .btn-cta{
  padding: 1.6rem 2.4rem;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
  background-color: #e0004d;
  border: 1px solid #e0004d;
  color: #fff;
  box-shadow: 0px 0px 20px #e7004c;
  -webkit-transition: color .3s,border .3s,background-color .3s;
  transition: color .3s,border .3s,background-color .3s;
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  margin-bottom: 30px;
}

.hero .btn-cta:hover{
  background-color: #fb0357;
}



@media (max-width: 576px) {

    .hero{
        padding-top: 35px;
        padding-bottom: 20px;
        text-align: center;
    }
    .hero .badge-block{
        font-size: 13px;
        justify-content: center;
    }
    .hero .badge-block img{
        width: 18px;
    }
    .hero h1{
        font-size: 1.8rem;
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .hero .hero-lead{
        font-size: 17px;
        padding-right: 0;
        margin-bottom: 25px
    }

    .hero .btn-cta{
        width: 100%;
        font-size: 1.3rem
    }



    .benefits-line ul li{
        margin-right: 6px;
        margin-bottom: 6px;
        font-size: 14px;
    }
    .benefits-line ul li svg{
        width: 14px;
    }

}

/* Sections */
.section{
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-title{
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2{
    font-size: 38px;
    font-weight: 700;
}

.section-title p{
   margin-top: 10px;
}

@media (max-width: 576px) {
    .section{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section-title{
        text-align: left;
    }
    .section-title h2{
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
}

/* Section Why Buy */

.section.section-1{
    text-align: center;
}

.section.section-1 h3{
   font-size: 2.6em;
   margin-bottom: 30px;
}

.section.section-1 p{
    font-size: 20px;
}

.section.section-1 .profile-comparasion{
    margin-top: 30px;
    margin-bottom: 30px;
    width: 380px;
    max-width: 100%;
    border-radius: 20px;
}

.section.section-1 .use-cases{
    font-size: 18px;
    list-style: none;
    padding: 10px 20px;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
    background: #0b3d8e;
    background: linear-gradient(180deg, #094BA5 0%, rgba(9, 75, 165, 0) 100%);
    border-radius: 18px;
    color: #fff;
}

.section.section-1 .use-cases li{margin: 20px 0;color: #fff;}

.section.section-1 .use-cases li:before{
    content: '';
    width: 22px;
    height: 22px;
    background-image: url('../images/green-check-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: 3px;
}


.section.section-1 .btn{
    margin-top: 20px;
}

@media (max-width: 576px) {
    .section.section-1{
        text-align: left;
    }
    .section.section-1 p{
        font-size: 18px;
    }
}


/* Section 2*/
.section-2{
    text-align: center;
    background-color: #ffffff12;
}

@media (max-width: 576px) {
    .section-2{
        text-align: left;
    }
}

/* Section 3 */

.section-3{
background-color: #ffffff12;
}

.section-3 .section-title{
    margin-bottom: 50px;
}

.section-3 h3{
    
    align-items: center;
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: 500;
}

.section-3 .number{
  color: #ffffff;
  background: #0949a2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  font-weight: 800;
  margin-right: 15px;
margin-bottom: 5px;}

.section-3 p,
.section-3 ul li{
    color: #626369;
}


/* Section Testimonials */

.section-testimonials{
}

.section-testimonials .container{
    max-width: 1600px;
}

.section-testimonials #carouselTestimonials{
  
}

.section-testimonials .avatar{
    width: 60px;
    margin-top: 10px;
    margin-bottom: 10px;
}


.section-testimonials .testimonial-text{
    font-size: 18px;
    color: #fff;
}


.section-testimonials .note{
    text-align: center;
}
.section-testimonials .note .stars{
    width: 140px;
    max-width: 90%;
}

.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon{
  filter:none;
}

/* Section Pricing */

.section-pricing{
}

.pricing-table .pricing-card {
    position: relative;
    -webkit-box-shadow: 0 12px 24px rgb(0 0 0 / 7%)!important;
    box-shadow: 0 12px 24px rgb(0 0 0 / 7%)!important;
    color: rgba(22,28,45, 0.7);
    border-radius: 10px;
    background: #ffffff;
    text-align: center;
    padding: 20px;
    display: block;
    background: linear-gradient(180deg, #094BA5 0%, rgba(9, 75, 165, 0) 100%);
}

.pricing-table .pricing-card:hover{
    -webkit-box-shadow: 0 12px 24px rgb(0 0 0 / 12%)!important;
    box-shadow: 0 22px 42px rgb(0 0 0 / 14%)!important;
}


.pricing-table .pricing-card.featured{
    /* background: #fffee0!important; */
    border-top-right-radius: 0!important;
    border-top-left-radius: 0!important;
}

.pricing-table .pricing-card .badging {
  display: block;
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
  font-size: 12px;
}

.pricing-table .pricing-card .badging span{
   background: #e0024d;
   padding: 8px 0;
   border-top-right-radius: 10px;
   border-top-left-radius: 10px;
   font-size: 12px;
   text-transform: uppercase;
   font-weight: 800;
   color: #ffffff;
   line-height: 1;
   letter-spacing: 0.7px;
   display: block;
}

.pricing-table .pricing-card .title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

.pricing-table .pricing-card .btn-md {
    font-size: 1.2em;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pricing-table  .pricing-card .package-info{

}

.pricing-table .pricing-card .package-info h5 {
    color: #6c18cd;
    background-color: #00000047;
    letter-spacing: -1px!important;
    font-weight: 800!important;
    font-size: 2rem;
    border-radius: 5px;
    padding: 8px 16px;
    margin: 15px 0 15px 0;
    -ms-flex-align: center!important;
    align-items: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    display: inline-flex;
    transition: all 0.3s;
    color: #fff;
}

.pricing-table.is-packages .pricing-card .package-info h5{
    margin-top: 0;
}

.pricing-table .pricing-card:hover .package-info h5{
    background: #00000075;
}

.pricing-table .pricing-card .package-info .icon-followers{
    position: relative;
    top: 1px;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.pricing-table .pricing-card .package-info .text-muted {
    width: 70px!important;
    font-size: 13px;
    font-weight: 700!Important;
    color: #fff!important;
    line-height: 1.2em!important;
    letter-spacing: -0.3px!important;
    text-align: left;
    margin-left: 7px;
}

.pricing-table .pricing-card .package-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2px;
    padding: 0;
    margin-top: 0;
}

.pricing-table .pricing-card .package-list li {
    font-size: 15px;
    color: #ecedff;
    line-height: 1.2em;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-table .pricing-card .package-list li svg,
.pricing-table .pricing-card .package-list li img {
    width: 18px;
    height: 18px;
    margin-right: 7px;
    fill: #c94f5f;
    position: relative;
    top: -0.5px;
}

.pricing-table .pricing-card .txt-for-only{
    font-style: italic;
    padding: 0;
    margin: 0;
    line-height: 1;
    font-size: 0.975em;
    color: #8a8a8a;
    margin-bottom: 15px;
    font-weight: 300;
}

.pricing-table .pricing-card .txt-for-only.strike{
  text-decoration: line-through;
  color: red;
  font-weight: 600;
}

.pricing-table .pricing-card .pricing-value{
    margin-bottom: 20px;
    line-height: 2.2em;
}

.pricing-table .pricing-card .pricing-value .currency{
    font-size: 17px;
    position: relative;
    top: -4px;
    color: #fff;
}

.pricing-table .pricing-card .pricing-value .price-value{
    font-size: 32px;
    color: #ffffff;
    margin: 0 5px;
    font-weight: 600;
}

.pricing-table .pricing-card .pricing-value .per{
    padding-top: 5px;
    font-size: 15px;
}

[data-pricing-dynamic][data-value-active="yearly"] .dynamic-value:before {
  display: inline-block;
  content: attr(data-yearly);
}

[data-pricing-dynamic][data-value-active="yearly"] [data-pricing-trigger] {
  background: #6c18cd!important;
}

[data-pricing-dynamic][data-value-active="yearly"] [data-pricing-trigger] span {
  left: calc(100% - 33px);
}

[data-pricing-dynamic][data-value-active="monthly"] .dynamic-value:before {
  display: inline-block;
  content: attr(data-monthly);
}

[data-pricing-dynamic][data-value-active="monthly"] .price-bottom-text{
  display: none!important;
}

.dynamic-value:before {
  display: inline-block;
  content: attr(data-active);
}

.static-value:before {
  display: inline-block;
  content: attr(data-active);
}


/* SECTION CONTENT */

.section-content.bg{
}

.section-content h2{
    margin-bottom: 20px;
}


/* SECTION CTA */

.section-footer-cta{
    color: #fff;
    text-align: center;
    background: #094ba4;
}

.section-footer-cta .verified-badge{
   width: 100px;
   margin-bottom: 30px;
}

.section-footer-cta .benefits-line ul li span{
  color: #fff;
}

.section-footer-cta ul{
    list-style: none;
    margin-bottom: 40px;
}

.section-footer-cta ul li{
    margin-bottom: 20px;
}



/* FOOTER */
footer{
    padding-top: 15px;
    padding-bottom: 15px;
}

footer .logo{
    max-width: 120px;
    display: inline-block;
}

footer .credits{
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 11px;
    color: #999;
    line-height: 1.4em;
    display: block;
}

footer .menu{
    text-align: right;
    list-style: none;
    margin-bottom: 0;
}

footer .menu li{
    display: inline-block;
}
footer .menu li a{
   color: #999;
   margin-left: 20px;
   font-size: 14px;
}

/* Animations */
.is-shaking {
    -webkit-animation: button-shake 2.5s ease-in-out infinite;
    animation: button-shake 2.5s ease-in-out infinite;
}

.is-glowing:before {
    --glow-size: 12px;
    --glow-color: rgb(1 205 176);
    --glow-color-transparent: rgba(255, 244, 0, 0);
    -webkit-animation: glow 2.5s ease-in-out infinite;
    animation: glow 2.5s ease-in-out infinite
}

.btn-cta.is-glowing:before{
  --glow-color: rgb(255 195 145);
  --glow-size: 10px;
}

.is-glowing {
    position: relative;
    z-index: 1
}

.is-glowing:before {
    background: transparent;
    border-radius: 9999px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

@-webkit-keyframes button-shake{0%{transform:translateZ(0)}5%{transform:translate(-1px)}10%{transform:translate(3px)}15%{transform:translate(-5px)}20%{transform:translate(5px)}25%{transform:translateZ(0)}to{transform:translateZ(0)}}
@keyframes button-shake{0%{transform:translateZ(0)}5%{transform:translate(-1px)}10%{transform:translate(3px)}15%{transform:translate(-5px)}20%{transform:translate(5px)}25%{transform:translateZ(0)}to{transform:translateZ(0)}}
@-webkit-keyframes glow{0%{box-shadow:0 0 0 0 var(--glow-color)}50%{box-shadow:0 0 0 var(--glow-size) var(--glow-color-transparent)}70%{box-shadow:0 0 0 0 var(--glow-color-transparent)}to{box-shadow:0 0 0 0 var(--glow-color-transparent)}}
@keyframes glow{0%{box-shadow:0 0 0 0 var(--glow-color)}50%{box-shadow:0 0 0 var(--glow-size) var(--glow-color-transparent)}70%{box-shadow:0 0 0 0 var(--glow-color-transparent)}to{box-shadow:0 0 0 0 var(--glow-color-transparent)}}

@-webkit-keyframes glow {
    0% {
        box-shadow: 0 0 0 0 var(--glow-color)
    }
    50% {
        box-shadow: 0 0 0 var(--glow-size) var(--glow-color-transparent)
    }
    70% {
        box-shadow: 0 0 0 0 var(--glow-color-transparent)
    }
    to {
        box-shadow: 0 0 0 0 var(--glow-color-transparent)
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 0 0 var(--glow-color)
    }
    50% {
        box-shadow: 0 0 0 var(--glow-size) var(--glow-color-transparent)
    }
    70% {
        box-shadow: 0 0 0 0 var(--glow-color-transparent)
    }
    to {
        box-shadow: 0 0 0 0 var(--glow-color-transparent)
    }
}




/* Checkout Popup */

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 300ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  background-color: rgb(138 58 185 / 33%);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  backdrop-filter: saturate(140%) blur(8px);
  overflow: auto;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}
.popup {
  margin: 60px auto;
  padding: 20px 25px;
  background: #fff;
  border-radius: 6px;
  width: 400px;
  max-width: 90%;
  position: relative;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0px 0px 6px rgb(255 255 255 / 30%);
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 10px;
  transition: all 200ms;
  font-size: 34px;
  font-weight: bold;
  text-decoration: none;
  color: #c1c1c1;
  line-height: 0;
}
.popup .content {
}



.checkout-popup .popup{
  width: 360px;
  max-width: 96%;
  background: #f3f6fe;
  background: rgb(252,37,103);
  background: -moz-linear-gradient(0deg, rgba(252,37,103,1) 0%, rgba(250,38,151,1) 41%, rgba(186,8,181,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(252,37,103,1) 0%, rgba(250,38,151,1) 41%, rgba(186,8,181,1) 100%);
  background: linear-gradient(0deg, rgba(252,37,103,1) 0%, rgba(250,38,151,1) 41%, rgba(186,8,181,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fc2567",endColorstr="#ba08b5",GradientType=1);
  padding: 25px 25px;
  background: linear-gradient(180deg, #07408d 0%, #094ba5 100%);
}



.checkout-popup h2 {
    text-align: center;
    margin-top: 28px;
    margin-bottom: 26px;
    font-weight: 800;
    font-size: 2.1em;
    line-height: 1.1em;
    color: #ffffff;
    text-shadow: 3px 3px 0px rgb(15 59 123);
}
.checkout-popup h3 {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 22px;
    font-weight: 800;
    font-size: 2.1em;
    line-height: 1.1em;
    color: #ffffff;
    text-shadow: 3px 3px 0px rgb(189 10 180);
}

.checkout-popup .popup-icon{
  position: absolute;
  top: -28px;
  width: 80px;
  left: 50%;
  right: 50%;
  top: 5px;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.checkout-popup .buttons {
    padding-bottom: 10px;
}

.checkout-popup .buttons a {
    color: #fff;
    display: block;
    transition: all 0.2s;
    text-align: center;
    padding: 14px 0;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-popup .buttons a.daily-btn-link {
    background: #e0004d;
    color: #fff!important;
    padding: 18px 0;
    font-size: 21px;
    box-shadow: rgb(0 0 0 / 10%) 0px 20px 25px -5px, rgb(0 0 0 / 3%) 0px 10px 10px -5px;
}

.checkout-popup .buttons a.daily-btn-link svg{
  margin-right: 12px;
  position: relative;
  top: -1px;
}

.checkout-popup .buttons a.daily-btn-link:hover{
  background: #6aff4a;
}

.checkout-popup .buttons a.instant-btn-link {
    background: rgba(0, 0, 0, 0.2);
    color: #fff0fe;
}

.checkout-popup .buttons a.instant-btn-link svg{
  margin-right: 10px;
}

.checkout-popup .buttons a.instant-btn-link:hover{
  background: rgba(0, 0, 0, 0.25);
}

.checkout-popup .buttons a.payment-method-btn {
    background: #e0004d;
    color: #ffffff!important;
    padding: 16px 0;
    font-size: 1.2em;
    margin-top: 15px;
    text-align: left;
    position: relative;
}

.checkout-popup .buttons a.payment-method-btn svg{
  margin-right: 10px;
  width: 22px;
  height: 22px;
}

.checkout-popup .buttons a.payment-method-btn:hover{
  background: #5a11af;
}

.checkout-popup .buttons a.payment-method-btn .off-badge{
  background: #32bcad;
      color: #fff;
      border-radius: 9999px;
      text-transform: uppercase;
      display: inline-block;
      transform: translateX(50%) translateY(0.375rem) rotate( 
  -2deg
   ) skewX(0) skewY(0) scaleX(1) scaleY(1);
      font-size: 12px;
      padding: 1px 10px;
      position: absolute;
      font-weight: bold;
      right: 50%;
      top: -17px;
      z-index: 99;
      box-shadow: 1px 1px 13px #4fddcdd1;
}

.checkout-popup .period-explain{
  color: #ececec;
  line-height: 1.4em;
  text-align: center;
  font-size: 14px;
  margin-bottom: 0;
}

.checkout-popup .period-explain.pb {
  padding-bottom: 12px;
}

.checkout-popup .terms-disclaimer{
  color: #ffffffcc;
  line-height: 1.2em;
  text-align: center;
  font-size: 0.75em;
  margin-bottom: 0;
}

.checkout-popup .terms-disclaimer a{
  color: #ffffffcc;
}

.checkout-popup .order-form{

}

.control-terms-group {
  display: inline-block;
  vertical-align: top;
  background: #fff;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  padding: 30px;
  width: 200px;
  height: 210px;
  margin: 10px;
  
}
.control-terms {
  display: block;
  margin: 0 auto;
  position: relative;
  padding-left: 38px;
  margin-bottom: 12px;
  margin-top: 2px;
  cursor: pointer;
  font-size: 0.9em;
  text-align: left;
  line-height: 1.5em;
  padding-top: 1px;
  width: 100%;
  max-width: 285px;
  color: rgb(255 255 255 / 95%);
  color: rgb(255 255 255 / 95%);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.control-terms a{
  color: rgb(255 255 255 / 85%);
  text-decoration: underline;
}
.control-terms a:hover{
  color: rgb(255 255 255 / 66%);
}
.control-terms input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control-terms__indicator {
  position: absolute;
  top: 5px;
  left: 0;
  height: 25px;
  width: 25px;
  background: #ffffff;
  border-radius: 7px;
  border: 2px solid #6c18cd;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
}

.control-terms:hover input ~ .control-terms__indicator,
.control-terms input:focus ~ .control-terms__indicator {
 border-color: #6c18cd;
}

.control-terms input:checked ~ .control-terms__indicator {
  background: #6c18cd;
  border-color: #ffffff;
}

.control-terms input:disabled ~ .control-terms__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control-terms__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control-terms input:checked ~ .control-terms__indicator:after {
  display: block;
}
.control-terms--checkbox .control-terms__indicator:after {
  width: 6px;
    height: 10px;
    border: 3px solid #ffffff;
    border-top: 0;
    border-left: 0;
    left: 8px;
    top: 4px;
    transform: rotate(43deg);
}

.accept-terms .checkbox-terms-error{
  color: #e1fa7f;
    font-size: 17px;
    line-height: 1.3em;
    text-align: center;
    padding-top: 8px;
    position: relative;
    display: none;
    max-width: 287px;
    margin: 0 auto;
    margin-bottom: -2px;
}

.accept-terms .checkbox-terms-error svg {
    position: absolute;
    width: 45px;
    height: auto;
    top: -14px;
    left: -14px;
    transform: rotate(27deg);
}

.checkout-popup .order-form{

}

#terms-box{
  margin-top: 25px;
}

#terms-box .scroll-box{
  overflow: auto;
  height: 144px;
  background: rgb(135 74 74 / 20%);
  padding: 13px 18px 0px 18px;
  border-radius: 8px;
}

#terms-box .scroll-box .title{
  color: rgb(255 255 255 / 80%);
  font-weight: 500;
  margin-bottom: 15px;
}

#terms-box .scroll-box p{
  color: rgb(255 255 255 / 75%);
  font-size: 12.7px;
  font-weight: 300;
  margin-bottom: 12px;
}

.checkout-popup .order-form input{
  padding: 15px 10px 15px 58px;
  width: 100%;
  margin: 0 0 15px;
  border: 0;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  color: #383232;
}

.checkout-popup .order-form input.username{
  background-image: url(../images/icon-ig.svg);
  background-repeat: no-repeat;
  background-position: 23px center;
  background-size: 24px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}