

/***** SCROLLBAR *****/
::-webkit-scrollbar-track
{
    border-radius: 9px;
}
::-webkit-scrollbar
{
    width: 4px;
}
::-webkit-scrollbar-thumb
{
    border: 1px solid #f5b20a;
    background: #f5b20a;
}
/***** END SCROLLBAR *****/

/***** NAVBAR *****/
#load_screen{
    opacity: 1;
    z-index: 1000000000;
    transition: 0.8s;
    top: 0;
}
#load_screen.off{
    top: -100vh !important;
}
.text-primaryGradient{
    background-color: #FFDE59;
    background-image: linear-gradient(45deg, #FFDE59, #F5B20A);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.navbar ul.navbar-nav li a.nav-link{
    color: #fff;
    font-size: 13px;
    /* padding: 20px 2px; */
    padding: 20px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
    position: relative;
    display: block;
    border-right: 0;
    border-left: 0;
    margin-right: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Muli-Regular';
}
.navbar ul.navbar-nav li a.nav-link:after {
    display: block;
    background-color: #ffde59;
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    transition: all .25s ease-out;
}
.navbar ul.navbar-nav li a.nav-link:hover,  .navbar ul.navbar-nav li a.nav-link.active{
    color: #ffde59;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
}
.navbar ul.navbar-nav li a.nav-link:hover:after,  .navbar ul.navbar-nav li a.nav-link.active:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
header nav.navbar .container-fluid, header nav.navbar .container-fluid .nav___cont, .transition8s{
    transition: all 0.8s;
    /* transition-delay: 0.1s; */
    /* -webkit-transition: all 0.8s cubic-bezier(0.4, 0.01, 0.165, 0.99); */
    /* -webkit-transition-delay: 0.1s; */
}
header nav.navbar .container-fluid.px-md-5, header nav.navbar .container-fluid.px-md-5 .nav___cont {
    background: transparent;
}
header nav.navbar .container-fluid, header nav.navbar .container-fluid .nav___cont{
    background: #3e3e3e;
    box-shadow: 1px 1px 22px 0px rgb(0 0 0 / 20%);
}

.offcanvas-backdrop{top: 62px;}
/* .offcanvas.offcanvas-top{top: 62px;} */
.navbar-toggler-icon{
    background-image: none !important;
}
.navbar-toggler .line {
transition: 0.25s ease-in-out;
/* width: 30px; */
height: 2px;
background: #ffdf59;
border-radius: 10px;
}
.navbar-toggler .center-line {
margin: 6px 0;
}
header .navbar-toggler-icon {
width: 40px;
height: 40px;
border-radius: 6px;
}
.navbar-toggler .line:first-child {
width: 24px;
}
.navbar-toggler .line:nth-child(2) {
width: 17px;
}
.navbar-toggler .line:last-child {
width: 30px;
}
.navbar-toggler.opened .line:first-child {
transform: rotate(45deg);
height: 1.5px;
position: relative;
top: 2px;
width: 30px;
}
.navbar-toggler.opened .line:nth-child(2) {
display: none;
}
.navbar-toggler.opened .line:last-child {
height: 1.5px;
width: 30px;
transform: rotate(-45deg);
}
.offcanvas.offcanvas-top{
background: #1c1c1c;
height: calc(100vh - 62px);
}
.offcanvas.offcanvas-top.show{
top: 62px;
}
header .container-fluid{
    padding: 0 !important;
}
header .container-fluid.px-md-5 div:first-child{
    padding-left: 3rem !important;
}
header .container-fluid.px-md-5 div:last-child{
    padding-right: 3rem !important;
}
header .container-fluid:not(.px-md-5) div:first-child{
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
}
header .container-fluid:not(.px-md-5) div:last-child{
    padding-right: calc(var(--bs-gutter-x) * .5) !important;
}
  @media(max-width:767px){
    header .container-fluid.px-md-5 div:first-child{
        padding-left: calc(var(--bs-gutter-x) * .5) !important;
    }
    header .container-fluid.px-md-5 div:last-child{
        padding-right: calc(var(--bs-gutter-x) * .5) !important;
    }
    .nav___cont{
        width: 100%;
    }
    .navbar ul.navbar-nav li a.nav-link{
        margin-right: 0;
        margin-left: 0 !important;
        padding: 20px 0 5px 0;
        font-weight: 400 !important;
        text-align: center;
        font-size: 22px;
        font-family: 'Muli-Regular';
    }
    .offcanvas{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .navbar-nav.justify-content-end{
        width: 100%;
    }
    .navbar-nav.justify-content-end .nav-item.d-flex .font-13{
        font-size: 20px !important;
    }
    .navbar-nav.justify-content-end .nav-item.d-flex {
        margin-top: 20px;
        justify-content: center;
    }
  }
/***** End NAVBAR *****/

.home_extra_bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-size: 100% 100% !important;
    height: 100%;
    left: 0;
    /* z-index: 100; */
    background-position: 100% 100% !important;
    transition: 0.3s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    z-index: 1;
}
.homeBanner {
    background-size: cover !important;
    min-height: 700px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 100px;
    border-bottom-left-radius: 67% 14%;
    border-bottom-right-radius: 53% 44%;
    position: relative;
    z-index: 2;
    background-position: bottom !important;
}
.innerBanner .homeBanner {
    min-height: 300px;
}
.transform-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.p-btn{
    padding: 11px 25px;
}
.btn.hov {
    position: relative;
    overflow: hidden;
}
.btn.hov span {
    z-index: 3;
    color: #fff !important;
}
.btn.hov:after {
    background-color: rgb(242 135 11);
    border: 1px solid rgb(242 135 11);
    /* color: #212121; */
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    left: 0;
    bottom: -100%;
    border-radius: 2px;
    transition: all 0.5s;
}
.btn.hov:hover:after {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}
.btn-primary-banner{
    background: linear-gradient(90deg, rgba(255,182,0,1) 11%, rgba(254,182,0,1) 21%, rgba(252,181,1,1) 34%, rgba(249,180,2,1) 49%, rgba(248,180,2,1) 65%, rgba(247,180,2,1) 82%);
    box-shadow: 1px 1px 26px 0px rgb(251 181 2 / 68%);
    transition: 0.3s;
    border: 0 !important;
    color: #fff !important;
    padding: 11px 25px;
    text-transform: uppercase;
    font-family: 'Muli-ExtraBold';
    font-size: 16px;
    letter-spacing: 1px;
}
.btn-primary-banner:focus, .btn-primary-banner:hover{
    box-shadow: 1px 1px 26px 0px rgb(251 181 2 / 68%);
}
.btn-outline-primary-banner{
    padding: 11px 25px;
    color: #fff !important;
    border: 1px solid #fff !important;
    transition: 0.3s;
    text-transform: uppercase;
    font-family: 'Muli-ExtraBold';
    font-size: 16px;
    letter-spacing: 1px;
}
.btn-outline-primary-banner:hover{
    border: 1px solid transparent !important;
}
.home_sec_bg {
    position: absolute;
    top: -68px;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    z-index: -1;
    background-size: 100% 100% !important;
}
.home_sec_top {
    position: absolute;
    top: -68px;
    left: 0;
    height: 265px;
    width: 351px;
    background-size: cover !important;
    transition: 0.3s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}
.cursor-pointer{
    cursor: pointer !important;
}
.homeHr{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
    width: 50px;
    background: #f5b303;
    border: 0;
    height: 2px;
    opacity: 1;
}
.br10{
    border-radius: 10px;
}
.mw-380px{
    max-width: 380px;
    width: 100%;
}
.w-600px{
    width: 600px;
}
.w-700px{
    width: 700px;
}
.w-900px{
    width: 900px;
}
.h-90{
    height: 90%;
}
.w-90{
    width: 90%;
}
.w-80{
    width: 79%;
}
.mtn150px{
    margin-top: -150px;
}
.pt100px{
    padding-top: 100px !important;
}
.pb100px{
    padding-bottom: 100px;
}
.pl100px{
    padding-left: 100px;
}
.pr100px{
    padding-right: 100px;
}
.pt200px{
    padding-top: 200px;
}
img.vert-move {
    left: 47%;
    -webkit-animation: mover .5s infinite  alternate;
    animation: mover .5s infinite  alternate;
}
.uperNeechy {
    bottom: 50px;
    -webkit-animation: mover1 .8s infinite  alternate;
    animation: mover1 .8s infinite  alternate;
}
.innerBanner .uperNeechy{
    bottom: -70px;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}
@-webkit-keyframes mover1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-22px); }
}
@keyframes mover1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-22px); }
}
.swiperDiv{
    background-position: top left;
    margin-top: 60px;
    padding-left: 300px;
}
.swiperDiv .swiper {
    width: 100%;
    height: 100%;
}
.swiperDiv .swiper-slide {
    height: auto;
}
.betterGrow{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover !important;
    transition: 0.3s;
}
.btn-primary-betterGrow{
    box-shadow: 1px 1px 26px 0px #fbb502;
    border: none;
    background: linear-gradient(90deg, rgba(255,182,0,1) 11%, rgba(254,182,0,1) 21%, rgba(252,181,1,1) 34%, rgba(249,180,2,1) 49%, rgba(248,180,2,1) 65%, rgba(247,180,2,1) 82%);
}
.btn-secondary-betterGrow{
    box-shadow: 1px 1px 26px 0px #ea5a23;
    border: none;
    background: rgb(234,115,35);
    background: linear-gradient(90deg, rgba(234,115,35,1) 11%, rgba(234,108,35,1) 21%, rgba(234,97,35,1) 34%, rgba(234,88,35,1) 49%, rgba(234,77,35,1) 65%, rgba(234,56,35,1) 82%);
}
.lineInner{
    right: 49.5%;
    top: 30px;
}
.pricing_bg{
    height: 85px;
    width: 2px;
    background: #ffdf59;
}
.how_it_work {
    padding: 0 50px;
    min-height: 480px;
    max-height: 100%;
}
.how_tag_line {
    left: 50%;
    top: 0;
    background: #ffdf59;
    width: 2px;
    margin-left: -0.5px;
}
.how_tag_line span {
    width: 58px;
    height: 58px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    color: #ffdf59;
    font-family: 'Roboto', sans-serif;
    border: solid 1px #ffdf59;
}
.foot_top_layer {
    top: 0;
    left: -50px;
}
.foot_bot_layer {
    bottom: -50px;
    right: -50px;
}
.contact_form {
    margin-top: 50px;
    width: 580px;
    max-width: 100%;
}
.contact_form .form-control {
    padding: 15px;
    height: 48px;
    position: relative;
    z-index: 100;
    transition: 0.3s;
    margin-bottom: 15px;
    border: solid 3px #fff;
    -webkit-box-shadow: 2px 2px 18px 8px rgb(0 0 0 / 8%);
    box-shadow: 2px 2px 18px 8px rgb(0 0 0 / 8%);
    border-radius: 8px;
}

.contact_form textarea.form-control {height: initial;}

.accordion-button .PLUS__MINUS {
    color: #313131;
    border: solid 2px #313131;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    font-size: 11px;
    position: relative;
  }

  .accordion-button:not(.collapsed) .PLUS__MINUS{
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
  }

  .accordion-button .PLUS__MINUS span {
    position: absolute;
    transition: 300ms;
    background: #313131;
    border-radius: 2px;
  }
  .accordion-button:not(.collapsed) .PLUS__MINUS span {
    background: #fff !important;
  }

  /* Create the "+" shape by positioning the spans absolutely */
  .accordion-button .PLUS__MINUS span:first-child {
    top: 25%;
    bottom: 25%;
    width: 10%;
    left: 45%;
  }

  .accordion-button .PLUS__MINUS span:last-child {
    left: 25%;
    right: 25%;
    height: 10%;
    top: 45%;
  }

  /* Morph the shape when the button is hovered over */
  .accordion-button:not(.collapsed) .PLUS__MINUS span {
    transform: rotate(90deg);
  }

  .accordion-button:not(.collapsed) .PLUS__MINUS span:last-child {
    left: 50%;
    right: 50%;
  }
  .FAQ_Accordian .accordion-button::after{
    display: none;
  }
  .accordion-button:focus, .FAQ_Accordian .accordion-button:not(.collapsed){
    box-shadow: none !important;
    background-color: transparent !important;
  }
  .FAQ_Accordian .accordion-button:not(.collapsed){
    color: var(--bs-primary) !important;
  }
  .blog_swiper_img{
    max-height: 350px;
  }
  .blog_swiper_img img{
    max-width:100%;
    max-height:100%;
    vertical-align: middle;
  }
  .font-30.swiper-button-next:after, .font-30.swiper-button-prev:after{
    font-size: 30px !important;
    font-weight: 800 !important;
  }
  .font-30.swiper-button-next:after{
    margin-left: 5px;
  }
  .font-30.swiper-button-prev:after{
    margin-right: 5px;
  }
  .blog_arrows.swiper-button-next, .blog_arrows.swiper-button-prev{
    width: 50px;
    height: 50px;
  }
  .blog_arrows.swiper-button-prev, .swiper-rtl .blog_arrows.swiper-button-next{
    left: -50px;
  }
  .blog_arrows.swiper-button-next, .swiper-rtl .blog_arrows.swiper-button-prev{
    right: -50px;
  }
.Old_css h1{
    font-family: 'HelveticaNeueLTPro-Th';
    color: #181818;
    font-size: 40px;
    font-weight: 700;
}
.Old_css h2{
    color: #464855;
    font-weight: 700;
}
.Old_css p, .Old_css li {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #000000;
    font-size: 18px;
    line-height: 26px;
    text-align: left;
}
.Old_css strong{
    font-weight: 700;
}
.mbn150px{
    margin-bottom: -150px;
}
#pills-signin_signup_forgotPassword-tab{
    border-color: var(--bs-primary) !important;
}
#pills-signin_signup_forgotPassword-tab .active{
    color: white !important;
}
#pills-signin_signup_forgotPassword-tab::after{
    content: "";
    width: 50%;
    background: #f5b303;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0%;
    transition: all 250ms ease-in-out;
    border-radius: 0;
}
#pills-signin_signup_forgotPassword-tab.signupActive::after{
    left: 50%;
}
.authFORM .form-control{
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
    transition: 0.3s;
}
.authFORM .form-control:focus, .authFORM .form-control:focus-visible{
    outline: none !important;
    box-shadow: none !important;
    box-shadow: 0px 4px 1px 0px rgb(245 179 3 / 19%);
    border-color: var(--bs-primary) !important;
}
.authFORM ::-webkit-input-placeholder { /* Edge */
    color: rgb(164, 159, 159);
    font-style: italic;
    font-size: 14px;
}
.authFORM :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgb(164, 159, 159);
    font-style: italic;
    font-size: 14px;
}
.authFORM ::placeholder {
    color: rgb(164, 159, 159);
    font-style: italic;
    font-size: 14px;
}
.switchToggle input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    position: absolute;
}
.switchToggle input:checked + label, .switchToggle input:checked + input + label {
    background: #f5b303;
}
.switchToggle label {
    cursor: pointer;
    width: 41px;
    height: 20px;
    background: #d8d8d8;
    display: block;
    border-radius: 100px;
    position: relative;
}
.switchToggle label span {
    font-family: 'Roboto', sans-serif;
    color: #373737;
    padding-left: 0;
    position: absolute;
    left: 49px;
    width: 111px;
    letter-spacing: 1px;
    top: -2px;
    white-space: nowrap;
}
.switchToggle label:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    background: #a0a0a0;
    border-radius: 96px;
    transition: 0.3s;
}
.switchToggle input:checked + label:after, .switchToggle input:checked + input + label:after {
    left: calc(100% - 0px);
    transform: translateX(-100%);
    background: #a66005;
}
.form-check-input{
    box-shadow: none !important;
    border-color: var(--bs-primary) !important;
}
.form-check-input:checked {
    background-color: var(--bs-primary);
}
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}
.embed-responsive-16by9 iframe{
    border: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    border-radius: 5px;
}
#videoPlayModal .btn-close{
    right: -20px; top: -20px;
}
.alertERROR{
    width: 100%;
    max-width: 500px;
    top: 5%;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: .8s !important;
}
.alertERROR.ERROROFF{
    top: -110%;
}

.hovSecondary:hover h5.text-white{
    color: #ea5f23 !important;
}
#register-form .steps{
    display: none;
}
#register-form .form-control,
#register-form .select2-container--default .select2-selection--multiple{
    border-radius: var(--bs-border-radius-lg)!important;
    border: 1px solid #ced4da !important;
}
#register-form .select2-container--default .select2-selection--multiple .select2-selection__rendered{
    padding: 0 0.75rem !important;
}
#register-form .form-control:focus, #register-form .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--bs-primary) !important;
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgb(234 115 35 / 15%);
}
#register-form.wizard>.actions{
    text-align: center;
    margin-top: 10px;
}
#register-form.wizard>.actions .row .col.disabled{
    display: none;
}
#register-form.wizard>.actions .row .col a.btn{
    border: none !important;
    color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
    width: 100% !important;
    border-radius: var(--bs-border-radius-2xl)!important;
    /* border-radius: var(--bs-border-radius-lg)!important; */
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
}
#register-form.wizard>.actions .row .col a.btn[href="#next"], #register-form.wizard>.actions .row .col a.btn[href="#finish"]{
    background: linear-gradient(90deg, rgba(255,182,0,1) 11%, rgba(254,182,0,1) 21%, rgba(252,181,1,1) 34%, rgba(249,180,2,1) 49%, rgba(248,180,2,1) 65%, rgba(247,180,2,1) 82%);
}
#register-form.wizard>.actions .row .col a.btn[href="#back"], #register-form.wizard>.actions .row .col a.btn[href="#previous"]{
    background: rgb(234,115,35);
    background: linear-gradient(90deg, rgba(234,115,35,1) 11%, rgba(234,108,35,1) 21%, rgba(234,97,35,1) 34%, rgba(234,88,35,1) 49%, rgba(234,77,35,1) 65%, rgba(234,56,35,1) 82%);
}
#register-form.wizard>.actions .row .col a.btn[href="#cancel"]{
    background: rgb(234,115,35);
    background: linear-gradient(90deg, rgba(234,115,35,1) 11%, rgba(234,108,35,1) 21%, rgba(234,97,35,1) 34%, rgba(234,88,35,1) 49%, rgba(234,77,35,1) 65%, rgba(234,56,35,1) 82%);
}
.subscription .subscription-card:hover, .subscription .subscription-card.filled  {
    background: #f5b303;
    color: white;
}
.subscription .subscription-card {
    border: 2px solid #f5b303;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    width: auto;
    cursor: pointer;
}
button{
    outline: none;
}
@media(max-width:767px){
    #videoPlayModal .btn-close{
        right: 0; top: -30px;
    }
    .calendly-inline-widget{
        min-height: 100vh !important;
        min-width: initial !important;
        height: 100% !important;
        width: 100% !important;
    }
    .homeBanner{
        min-height: 100vh;
        border-bottom-left-radius: initial;
        border-bottom-right-radius: initial;
    }
    .topn2px{
        top: -2px;
    }
    .pt100px.pt-0 {
        padding-top: 0 !important;
    }
    .pt200px {
        padding-top: 3rem;
    }
    .pt200px.ptsm-0{
        padding-top: 0;
    }
    .mbn150px{
        margin-bottom: 0;
    }
    .vh-100{
        height: calc(100vh - 62px) !important;
    }
    .vh-50{
        min-height: calc(50vh - 31px) !important;
    }
    .w-80.mw-100{
        width: initial;
    }
    .min-vh-100{
        min-height: calc(100vh - 62px) !important;
    }
    .swiperDiv{
        background: transparent !important;
        margin-top: 2rem;
        padding: 0;
    }
    .innerBanner .homeBanner {
        min-height: 40vh !important;
    }
    .innerBanner .homeBanner .uperNeechy{
        position: initial !important;
        margin-top: 16px;
        font-size: 50px !important;
    }
    .how_it_work{
        min-height: 400px;
        background-blend-mode: overlay;
        background-color: rgb(249 249 250 / 93%) !important;
    }
    .how_it_work .pl100px{
        padding-left: 0;
    }
    .how_it_work .pr100px{
        padding-right: 0;
    }
    .how_it_work .w-50{
        width: 100% !important;
    }
    .how_tag_line{
        left: 1.5rem;
    }
    .how_tag_line span {
        width: 2rem;
        height: 2rem;
        font-size: 1.4rem !important;
    }
    .contact_section .pt100px.pb100px{
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important;
    }
    #signin_signup_forgotPassword .w-90{
        width: initial;
    }
    .loginPAGE{
        min-height: 100vh ;
    }
    .bg_pos_right_mobile{
        background-position: right !important;
    }
    .homeBanner{
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

.swal-button--No, .swal-button--Yes {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    width: 100%;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.swal-modal .btn-primary, .swal-button--Yes{
    background-color: #f5b303;
    border-color: #f5b303;
    color: #fff;
}
.swal-modal .btn-primary:hover, .swal-modal .btn-primary:focus, .swal-modal .btn-primary:active,
.swal-button--Yes:hover, .swal-button--Yes:focus, .swal-button--Yes:active{
    background-color: #eaac03;
    border-color: #eaac03;
    color: #fff;
}
.swal-modal .btn-outline-primary, .swal-button--No{
    background-color: #fff;
    border-color: #cc3333;
    color: #cc3333;
}
#install-pwa-modal .swal-button--No{background-color: transparent;}
.swal-modal .btn-outline-primary:hover, .swal-modal .btn-outline-primary:focus, .swal-modal .btn-outline-primary:active,
.swal-button--No:hover, .swal-button--No:focus, .swal-button--No:active{
    background-color: #cc3333 !important;
    border-color: #cc3333;
    color: #fff;
}


.swal-text{
    color: #f5b303 !important;
}
.swal-title{
    color: #f5b303 !important;
}

.swal-footer.d-flex .swal-button-container {
    width: 49%;
}

 .swal-button-container {
     display: inline-block;
     position: relative;
 }

 .change-request-button{
     margin-left: 100% !important;
 }

 .subscribe-msg{
     font-weight: 500;
     line-height: 1.2;
     font-family: 'Roboto', sans-serif;
     font-size: 22px;
     color: #6c7075;
 }

.subscribe-link{
    color: #f5b303;

}

.subscribe-link:hover {
    color: #ea5f23;
}

.custom-txt-justify {
    text-align: justify !important;
}

.terms-condition-padding {
    padding-left: 15px;
}

.custom-ul-li-padding {
    padding-left: 50px;
}

.bg-orange{
    background-image: -webkit-gradient(linear,left top,right top,from(#ff8008),to(#ffc837));
    background-image: -webkit-linear-gradient(left,#ff8008,#ffc837);
    background-image: -moz-linear-gradient(left,#ff8008,#ffc837);
    background-image: -o-linear-gradient(left,#ff8008,#ffc837);
    background-image: linear-gradient(to right,#ff8008,#ffc837);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #f5b304;
    --bs-btn-border-color: #f5b304;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #ea5f23;
    --bs-btn-hover-border-color: rgb(235, 95, 36);
    --bs-btn-focus-shadow-rgb: 235,95,36;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #ea5f23;
    --bs-btn-active-border-color: #ea5f23;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #f5b304;
    --bs-btn-disabled-border-color: #f5b304;
}

.nav-b {
    border: 1px solid #f5b303 !important;
    /*color: #f5b303;*/
    padding: 0.4rem 3rem !important
}

.border-nav-right {
    border-top-right-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 0px !important;
}

.border-nav-left {
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

.register-subscription .nav-link {
    color: #6c7075 !important;
    background: transparent;
    display: inline-block;
    min-height: auto;
    margin-bottom: -2px;
    font-weight: 500;
}

.register-subscription .nav-item .nav-link.active {
    background-color: #f5b303;
    color: #fff !important;
}

.payTabs{
    border: none !important;
}
