:root {
    --theme-primary-color: #ff4ca6;
    --theme-secondary-color: #9352d4;
    --theme-light-pick: #f18b92;
    --dark: #000000;
    --light-dark: #999999;
    --light-yellow: #ddb65c;
    --theme-white: #ffffff;
    --bg-theme-color: var(--theme-primary-color);
}

.checkout-content,
.select-post-content,
.home-alert,
.user_loader_welcome_text,
#user_loader_fetch_txt,
#user_loader_fetch_btn,
#user_loader_fetch_txt2,
#user_loader_fetch_btn2 {
    display: none;
}

.home-back-btn1,
.home-back-btn2, #select_checkout_range, #checkout_home_pack_slider_div {
    display: none;
}

.checkout-page-start-box {
    background: #fdf4eb;
    overflow: inherit;
    padding-top: 8em !important;
}
.checkout-overallbox {
    padding-top: 10em !important;
}
.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

.text-xxs {
    font-size: x-small !important;
    line-height: 1.25;
}

.text-bold {
    font-weight: 600;
}

.h-px-400 {
    height: 400px !important;
}

.h-px-100 {
    height: 100px;
}

.w-px-100 {
    width: 100px;
}

/*stick-parent */
.stick-parent {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 4;
}

.stick-parent_2 {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    top: 105px;
}

/*stick-parent */

/* list box animation box */
.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgb(229 228 228 / 77%);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/* box-animation-list */


/*Live Number Count Animation Start*/
.live-ping-new {
    background: #e8f9ef;
    font-size: 14px;
}

.heartbeat {
    position: absolute;
    width: fit-content;
    background-color: #22c55e;
    border-radius: 50px;
    width: 10px;
    height: 10px;
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot {
    position: relative;
    width: fit-content;
    background: #22c55e;
    border-radius: 50px;
    width: 10px;
    height: 10px;
}

@keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/*Live Number Count Animation End*/


.home-pay-load {
    display: none;
}

#user-loader {
    display: none;
    animation: ease-in;
    animation-duration: 3s;
}

.card {
    border-radius: 20px !important;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px !important;
}

.card-body {
    padding: 50px;
}

/*---------------------INPUT UI------Start------------ */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus, input:-internal-autofill-selected {
    background-clip: text !important;
    -webkit-background-clip: text !important;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #c0bfbf !important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #c0bfbf !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #c0bfbf !important;
}

input, select, textarea {
    font-family: var(--font-family-body);
    transition: 0.5s;
}

.form-control:focus::placeholder {
    padding-left: 5px;
    transition: 0.5s;
}


.form-control:focus,
.form-select:focus {
    border-color: var(--bg-theme-color);
}

.form-select:focus {
    box-shadow: none;
}

.input-group:focus-within .form-control,
.input-group:focus-within .input-group-text {
    border-color: var(--bg-theme-color);
}

/*---------------------INPUT UI------End------------ */

/*btn-hover eff Start*/
.btn-hover-eff {
    transition: 1s;
    transform: scale(1);
}

.btn-hover-eff:hover {
    transform: scale(1.1);
    color: var(--theme-primary-color) !important;
}


/*badge secondary color*/
.badge {
    text-transform: uppercase;
}

.badge.bg-secondary {
    color: #707274;
    background-color: #e4e8ed !important;
    font-weight: 600 !important;
}

/*badge secondary color*/


/*--------------Login-UI--------------*/
.login-btn {
    font-size: 16px !important;
}

.login-or-div {
    margin-top: -34px;
}

.login-or {
    font-size: 13px;
    border-radius: 50%;
    padding: 3px 6px;
    background: var(--theme-white);
    text-align: center;
    color: var(--bg-theme-color);
    border: 2px solid var(--bg-theme-color);
    z-index: 3;
}

.login-error-alert {
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
}

.login-error-alert ul {
    padding: 0px;
    margin: 1px !important;
}

.login-error-alert ul li {
    display: block;
    padding: 1px;
    margin: 0px;
    background: #f9d1d1;
    margin: 4px;
    border-radius: 5px;
    font-size: 13px;
    border: 1px solid #fbbebe !important;
}

/*--------------Login-UI--END------------*/


/*---------------sliderRegular Start-----------------*/
.noUi-target {
    background: #e9ecef !important;
    border-radius: 50px;
}

.noUi-horizontal {
    height: 15px;
}

.noUi-horizontal .noUi-handle {
    border-radius: 50%;
    background-color: var(--theme-white);
    box-shadow: 0 1px 13px 0 rgba(0, 0, 0, 0.2);
    height: 28px;
    width: 28px;
    cursor: pointer;
    outline: none;
    right: -10px !important;
    top: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noUi-touch-area {
    border-radius: 33px;
    background-position: center;
    border: 5px solid var(--theme-white);
    background: var(--theme-primary-color);
    width: 50px;
    height: 20px;
    display: flex;
}

.noUi-touch-area:hover {
    box-shadow: 0 0 0 10px rgb(255 0 85 / 10%);
}

.noUi-connect {
    background: var(--theme-secondary-color);
}

.noUi-base, .noUi-connects {
    border-radius: 50px;
}

/*---------------------sliderRegular End---------------------*/

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

.why-list {
    background: #F1F8FF;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}
.why-list ul li {
    display: inline-block;
    margin-bottom: 0px;
    padding: 2px;
    font-size: 13px;
    color: #000;
    width: 49%;
}
/*.why-list:before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    top: -30px;*/
/*    right: 25px;*/
/*    width: 45px;*/
/*    height: 45px;*/
/*    background: var(--theme-primary-color);*/
/*     opacity: .2;*/
/*    border-radius: 8px;*/
/*    transform: rotate(45deg);*/
/*}*/
/*.why-list:after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    bottom: -30px;*/
/*    left: 25px;*/
/*    width: 45px;*/
/*    height: 45px;*/
/*    background: var(--theme-primary-color);*/
/*    opacity: .2;*/
/*    border-radius: 8px;*/
/*    transform: rotate(45deg);*/
/*}*/
.why-list ul li i {
    margin-right: 5px;
    color: var(--theme-secondary-color);
}



/*--------Connecting to server Animation Start------ */
.fetch-api-loader-div {
    display: flex;
}

.fetch-api-loader {
    color: var(--theme-primary-color);
    font-size: 2px;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
    margin-left: 11px;
}

.fetch-api-loader, .fetch-api-loader:before, .fetch-api-loader:after {
    border-radius: 50%;
    width: 5px;
    height: 5px;
    animation-fill-mode: both;
    animation: bblFadInOut 1.8s infinite ease-in-out;
}

.fetch-api-loader:before,
.fetch-api-loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.fetch-api-loader:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

.fetch-api-loader:after {
    left: 3.5em;
}

@keyframes bblFadInOut {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em
    }
    40% {
        box-shadow: 0 2.5em 0 0
    }
}

/*--------Connecting to server Animation End ------------*/


/*-------mobile view only---Start---------*/
@media (min-width: 200px) and (max-width: 900px) {
    .card-body {
        padding: 30px;
    }
    .why-list ul li {
        display: inline-block;
        width: 45.33%;
        /* display: block; */
    }
    .checkout-page-start-box {
        padding-top: 6em !important;
    }

}
@media (min-width: 200px) and (max-width: 767px) {
    .why-list ul li {
        width: auto;
        display: block;
    }
}
/*-------mobile view only---End---------*/

div#checkout-home-slider-div {
    margin: 25px 0;
}
#tl_count_select_txt {
    font-size: 25px;
}
#checkout_home_pack_select_div #tl_amount_select_txt {
    font-size: 25px;
    font-weight: 600;
}

#checkout_home_pack_select_div .box2 {
    text-align: center;
}
#checkout_home_pack_select_div .box2 p {
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
}
#tl_amount_txt {
    font-size: 25px;
    line-height: 0;
}
#tl_real_amount_txt {
    font-size: 18px;
    color: red;
}
.text-sm.checkout-text-and-star {
    margin: 15px 0px;
}
.checkout-rating i {
    color: #ffc700;
}
.pack-price-box {
    font-size: 18px;
    font-weight: 600;
}
#tl_discount_txt {
    font-size: 12px !important;
}
/*-checkout list package drop-down Start*/

.select-btn {
    border: 1px solid var(--theme-primary-color);
    padding: 10px;
    background: var(--theme-white);
    color: #000;
    /*font-size: 17px;*/
    display: none;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

#overall_pack_container_div .select-btn {
    display: flex;
}

.select-btn:hover, .select-btn.show {
    background: var(--theme-primary-color);
    color: var(--theme-white);
    border: 1px solid #eee;
}

.sort-down {
    border-left: 1px solid #ffffff;
    display: flex;
    width: 26px;
    padding-left: 10px;
    font-size: 17px;
    padding-bottom: 6px;
    height: 25px;
    color: #f1f1f1;
    align-items: center;
    justify-content: center;
}

.select-btn::after {
    display: none;
}

.select-drop-down ul {
    width: 100%;
}
.select-drop-down ul li {
    font-size: 13px;
    padding: 0px;
}
.select-drop-down ul li a {
    padding: 2px 5px;
}

.select-drop-down ul li a i {
    color: var(--theme-primary-color);
    /*font-size: 13px;*/
}

.select-drop-down ul li a:hover {
    background: var(--theme-secondary-color) !important;
    color: #fff !important;
}

.select-drop-down ul li a:hover i {
    color: var(--theme-white) !important;
}

/*.select-drop-down.two .select-btn {*/
/*    background: #eeeaff;*/
/*    color: #000;*/
/*    border: 2px solid var(--theme-secondary-color);*/
/*}*/

/*.select-drop-down.two .select-btn:hover, .select-drop-down.two .select-btn.show {*/
/*    background: var(--theme-secondary-color);*/
/*    color: var(--theme-white);*/
/*    border: 2px solid #eee;*/
/*}*/

/*.select-drop-down.two.select-drop-down ul li a i {*/
/*    color: var(--theme-secondary-color);*/
/*}*/

/*.select-drop-down.two.select-drop-down ul li a:hover {*/
/*    background: var(--theme-secondary-color) !important;*/
/*    color: var(--theme-white) !important;*/
/*}*/

/*.select-drop-down.two.select-drop-down ul li a:hover i {*/
/*    color: var(--theme-white) !important;*/
/*}*/

/*.select-drop-down.two .sort-down {*/
/*    border-left: 1px solid #d3b6ff;*/
/*    color: #d3b6ff;*/
/*}*/
/*---------checkout list package drop-down End----------*/
