/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Light.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Roman.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{

    /* Google Font */
    --montserrat: "Montserrat", sans-serif;
    --helvetica-neue: 'Helvetica Neue', sans-serif;
    
    /* Color Palette */
    --white: #fff;
    --black: #000;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html, body {
    height: 100%;
    overflow-x:hidden;
    scroll-behavior: smooth;
}
body {
    font-family: var(--helvetica-neue);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    background: #E7D1FF;
    text-rendering: optimizeLegibility;
    color: var(--black);
}
p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
section, .section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
}
a, button {
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a, a:hover, a:focus,
button, button:focus, .btn:focus {
	outline: none;
	box-shadow: none;
}
button {
	background: unset;
}
ol, ul {
    margin: 0;
    padding: 0;
}

ol li, ul li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input, input:focus, input:focus-visible, input:active, select, .form-select, .form-select:focus, textarea {
    outline: none;
    border: none;
    box-shadow: none;
}
* + address, * + dl, * + fieldset, * + figure, * + ol, * + p, * + pre, * + ul {
	margin: 0;
	padding: 0;
}

*::-moz-selection {
  background: #EF2FC3;
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: #EF2FC3;
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: #EF2FC3;
  color: var(--white);
  text-shadow: none;
}



/* ===== Components CSS Start ===== */
.btn {
    min-width: 110px;
    height: 45px;
    border-radius: 30px;
    color: #9B19F0;
    font-weight: 400;
    background: linear-gradient(to right, #E05CFF 0%, #D43CBE);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    transition: all .3s ease-in-out;
}
.btn__text {
	width: 100%;
	height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-transform: capitalize;
	padding: 4px 16px 5px;
	border-radius: 30px;
	background-color: var(--white);
    transition: all .3s ease-in-out;
}
.btn:hover .btn__text {
    color: var(--white);
    background-color: transparent;
}
.btn--common {
	height: 62px;
	color: #E32BC9;
	font-size: 25px;
	background: #fff;
	border: 1px solid #707070;
	padding: 10px 29px 11px;
}
.btn--common:hover {
    color: #fff;
    background: #E05CFF;
}
.btn--gradient {
	background: linear-gradient(to right, #9229E1 0%, #D237B3 50%, #9229E1 100%);
	color: var(--white);
	padding: 10px 25px;
    background-size: 200% auto;
}
.btn--gradient:Hover {
    color: var(--white);
    background-position: center right;
}
/* ===== Components CSS End ===== */

/* ===== Bootstrap Customized CSS Start ===== */
/* ===== Bootstrap Customized CSS End ===== */



/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header {
    padding: 40px 0;
}
.nav__ul {
    gap: 48px;
}
.nav__link {
    font-size: 24px;
    color: var(--white);
}
.nav__link::after, .nav__link.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background-color: var(--white);
    transition: all .3s ease-in-out;
}
.nav__link:hover::after, .nav__link.active::after {
    width: 100%;
}
.header__btns {
    gap: 32px;
}






/* Mobile MenuBar Start */
.logo {
    max-width: 75px;
}
.mobile__menu__btn {
    min-width: auto;
    height: auto;
    border-radius: 4px;
}
.mobile__menu__btn .btn__text {
	padding: 10px 13px;
	border-radius: 2px;
}
.mobile__menu .offcanvas {
    background-color: #E7D1FF;
}
.mobile__menu__close .btn__text {
	padding: 7px 10px;
	border-radius: 2px;
}

.mobile__menu .offcanvas-header {
    padding: 25px 16px;
}
.nav__link--mobile {
    width: 100%;
    display: flex;
    padding: 14px 16px;
    color: #9B19F0;
    border-bottom: 1px solid #C55DF0;
}
.nav__item:first-child .nav__link--mobile {
    border-top: 1px solid #C55DF0;
}
.nav__link--mobile:hover {
    background-color: rgba(126, 17, 199, 0.1);
}
/* Mobile MenuBar End */






.sticky-header {
    position: relative; /* Default position */
    width: 100%;
    z-index: 99999;
    transition: top 0.3s ease-in-out; /* Transition for smooth effect */
}

.sticky-header.sticky-active {
    position: fixed;
    top: -100px; /* Start off-screen when sticky-active is first applied */
    left: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.sticky-header.sticky-active.show {
    top: 0; /* Slide down smoothly to 0 */
}
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero {
    background: url("../imgs/bg/hero-bg.png") no-repeat center / 100% 100%;
    min-height: 1600px;
    margin-bottom: 110px;
}
.hero-wm {
    background: url("../imgs/bg/Walmart-V2.png") no-repeat center;
    background-size: cover;
    min-height: 100vh;
    margin-bottom: 110px;
    position: relative;
    margin-top: 40px; /* Smaller offset for mobile */
}
@media (min-width: 992px) { /* lg breakpoint */
    .hero-wm {
        margin-top: 80px; /* Larger offset for desktop */
    }
}
.hero__wrapper {
    max-width: 790px;
}
.hero__title {
    font-size: 70px;
    color: #7F11C7;
    line-height: 1.07;
}
.hero__para {
    font-size: 28px;
    color: #552872;
    line-height: 1.45;
}
.btn--hero {
    min-width: 205px;
    border-radius: 18px;
}
.btn--hero .btn__text {
    border-radius: 15px;
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 CTA Section CSS Start */
/* =============================== */
.cta {
    min-height: 450px;
    padding: 65px;
}
.cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #FDB9EE 0%, #8F5DFF 100%);
    z-index: -1;
}
.cta__wrapper {
    max-width: 900px;
}
.cta__title {
    font-size: 71px;
    line-height: 1.08;
}
.cta__para {
    font-size: 28px;
    max-width: 795px;
}
.hero__polygon {
    z-index: -2;
}
.hero__polygon--1 {
	left: -90px;
	bottom: -210px;
}
.hero__polygon--2 {
	right: -165px;
	top: -200px;
}
/* =============================== */
/* :: 6.0 CTA Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Facility Section CSS Start */
/* =============================== */
.facility {
    padding: 140px 0;
}
.facility__wrapper {
    max-width: 1500px;
}
.facility__row.g-5 {
    --bs-gutter-x: 230px;
    --bs-gutter-y: 48px;
}
.facility__card {
    font-size: 20px;
    line-height: 1.5;
}
.facility__thumb {
    height: 380px;
    border-radius: 55px;
    background-color: #fff;
    margin-bottom: 35px;
}
.facility__thumb img {
    transition: all .3s linear;
}
.facility__card:hover .facility__thumb img {
    transform: scale(1.03);
}
.facility__title {
    font-size: 38px;
    color: #C55DF0;
    margin-bottom: 12px;
}
.facility__title span {
    color: #481A98;
}
.facility__list {
    padding: 32px 0;
}
.facility__list__item {
    padding-left: 20px;
}
.facility__list__item::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #481A98;
}
/* =============================== */
/* :: 7.0 Facility Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Feature Section CSS Start */
/* =============================== */
.feature {
    padding: 70px 0;
}
.feature__row.g-5 {
    --bs-gutter-x: 85px;
    --bs-gutter-y: 48px;
}
.feature__video video {
    width: 100%;
    cursor: pointer;
}
.feature__title {
    font-size: 57px;
    color: #C55DF0;
}
.feature__list {
    font-size: 25px;
    line-height: normal;
    text-transform: capitalize;
}
.feature__list::after {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #481A98;
}
/* =============================== */
/* :: 8.0 Feature Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Footer Area CSS Start */
/* =============================== */
.footer {
    padding: 125px 0 55px;
}
.footer__social {
    gap: 35px;
    margin-bottom: 30px;
}
.footer__social__link {
    width: 43px;
    height: 43px;
    border-radius: 50%;
}
.footer__social__link img {
    transition: all .3s linear;
}
.footer__social__link:hover img {
    filter: brightness(0);
}
.footer__bottom p, .footer__bottom a {
	font-size: 25px;
	font-weight: 500;
	color: #A126CB;
	line-height: 1.5;
}
.footer__link {
    margin-left: 20px;
}
.footer__link::after {
	content: "";
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 100%;
	background-color: #A126CB;
}
.footer__bottom a:hover {
    color: #481A98;
}
/* =============================== */
/* :: 9.0 Footer Area CSS End */
/* =============================== */



/* =============================== */
/* :: 10.0 Login Page CSS Start */
/* =============================== */
.authentication__page {
    background: url("../imgs/bg/auth-page-bg.png") no-repeat center / 100% 100%, #E7D1FF;
    height: 100vh;
}
.auth__wrapper {
    max-width: 1500px;
}
.auth__box {
    border-radius: 0 30px 30px 0;
    width: 100%;
}
.auth__thumb {
    background: url("../imgs/bg/auth-form-bg.png") no-repeat center / cover;
    width: 50%;
    padding: 40px;
    border-radius: 0 30px 30px 0;
}
.auth__thumb img {
    max-width: 345px;
}
.auth__form__box {
    width: 50%;
    padding: 95px 45px 75px;
}
.auth__head {
    margin-bottom: 140px;
}
.auth__title {
    color: #7F11C7;
    font-size: 55px;
    letter-spacing: -2px;
    line-height: 1.1;
}
.auth__subtitle {
    color: #6A6A6A;
    font-size: 35px;
    letter-spacing: -.2px;
    line-height: 1.1;
}
.input__item {
    border-bottom: 8px solid transparent;
    border-image-source: linear-gradient(to right, #A41AED 0%, #F89CE2 100%);
    border-image-slice: 1;
}
.input__item--1 {
    margin-bottom: 70px;
}
.input__item--2 {
    margin-bottom: 40px;
}
.input__item:last-child {
    margin-bottom: 40px;
}
.input__item input {
    width: 100%;
    font-size: 27px;
    font-weight: 300;
    font-family: var(--montserrat);
    padding: 25px 0;
    border: none;
    letter-spacing: -.5px;
}
.input__item input::placeholder {
    opacity: 1;
    color: #6A6A6A;
    letter-spacing: -.5px;
}
.input__check label {
    cursor: pointer;
    gap: 12px;
}
.check__box {
    width: 25px;
    height: 25px;
    color: var(--white);
    border-radius: 4px;
    border: 1px solid #707070;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}
.input__check input:checked + label .check__box {
    border-color: #A41AED;
    background-color: #A41AED;
}
.chcek__text {
	margin-top: 4px;
    font-size: 22px;
    color: #585858;
}
.auth__btn {
    margin-top: 130px;
    width: 100%;
    min-height: 65px;
    font-size: 30px;
    letter-spacing: -.5px;
    padding: 10px 30px;
    color: var(--white);
    background: linear-gradient(to right, #FDB9EE 0%, #8F5DFF 50%, #FDB9EE 100%);
    background-size: 200% auto;
}
.auth__btn:hover {
    background-position: center right;
}
.auth__link__text {
    margin-top: 30px;
}
.auth__link {
    font-size: 22px;
    color: #6A6A6A;
}
.auth__link:hover {
    color: #A41AED;
}
/* =============================== */
/* :: 10.0 Login Page CSS End */
/* =============================== */



/* ======================================== */
/* :: 11.0 Terms & Conditions Pages CSS Start */
/* ======================================== */

/* ---------- T&C Page 1 Start ---------- */
.terms__conditions__page--1 {
    background-color: #D9C0F4;
    height: 100vh;
}
.prev__page {
    max-width: 90px;
}
.terms__conditions--1 {
    padding: 55px 0;
}
.tc__wrapper__row {
    align-items: center;
}
.tc__title {
    font-size: 100px;
}
.tc__title__para {
	font-size: 25px;
	max-width: 625px;
}
/* ---------- T&C Page 1 End ---------- */

/* ---------- T&C Page 2 Start ---------- */
.tc__hero {
	background: linear-gradient(to right, #F0ADF0 0%, #8F5DFF 100%);
	min-height: 510px;
	padding: 100px 20px 40px;
}
.filter__white {
    filter: brightness(200);
}
.tc__info__wrapper {
    max-width: 1560px;
    margin-top: 90px;
    padding: 80px 0;
    border-top: 8px solid transparent;
    border-image-source: linear-gradient(to right, #9B19F0 0%, #EF2EC3 100%);
    border-image-slice: 1;
}
.tc__info__text__box {
    gap: 60px;
}
.tc__info__text {
	font-weight: 400;
	font-size: 25px;
	line-height: 1.3;
}
.tc__info__text a:hover {
    color: #EF2EC3;
}
/* ---------- T&C Page 2 End ---------- */

/* ======================================== */
/* :: 11.0 Terms & Conditions Pages CSS End */
/* ======================================== */



/* ======================================== */
/* :: 11.0 pricing.html Page CSS Start */
/* ======================================== */
.obj__bg {
	position: relative;
    height: auto;
}
.obj__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 125px);
	background: url("../imgs/bg/obj-bg.png") no-repeat center / 100% 100%;
    z-index: -1;
    margin-top: 125px;
}
.header.bg-white .nav__link {
    color: var(--black);
}
.header.bg-white .nav__link::after, .header.bg-white .nav__link.active::after {
	background: linear-gradient(to right, #8E29E3 0%, #D237B3 100%);
}
.pricing {
	margin: 200px 0;
}
.pricing::before {
	content: "";
	position: absolute;
	top: 307px;
	left: 0;
	width: 100%;
	height: 78%;
	background-color: rgba(255, 255, 255, 0.8);
}
.pricing__wrapper {
    max-width: 1520px;
}
.pricing__cards__row.g-5 {
    --bs-gutter-x: 92px;
    --bs-gutter-y: 92px;
}
.pricing__card {
    min-height: 830px;
    height: 100%;
}
.pricing__card__content {
    border-radius: 56px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transition: all .3s ease-in-out;
}
.pricing__card__content:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.pricing__card__head {
    min-height: 215px;
    background-color: #7948FF;
}
.pricing__card__title {
    font-size: 43px;
}
.pricing__card__details {
    padding: 20px 20px 30px;
}
.pricing__card__list {
	padding: 75px 0 40px;
}
.pc__currency {
	font-size: 43px;
	color: #9D9D9D;
	margin-top: 15px;
}
.pc__price {
    font-size: 100px;
    color: #8527EF;
}
.pc__duration {
    font-size: 24px;
    color: #9D9D9D;
}
.pricing__card__list {
    gap: 15px;
}
.pricing__list {
	gap: 12px;
	font-size: 20px;
}
.pricing__list span {
	max-width: 25px;
	margin-top: -2px;
}
.btn--pricing {
	min-height: 76px;
	border-radius: 100px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	font-size: 24px;
	font-weight: 500;
	border: none;
	background-color: #7948FF;
    border: 2px solid #7948FF;
	padding: 12px 20px;
    white-space: nowrap;
	margin-bottom: -35px;
    transition: all .3s ease-in-out;
}

.pricing__card--essentials .pricing__card__head {
    background-color: #7948FF;
}
.pricing__card--essentials .btn--pricing {
	background-color: #7948FF;
    border-color: #7948FF;
}
.pricing__card--growth .pricing__card__head {
    background-color: #F734FF;
}
.pricing__card--growth .btn--pricing {
	background-color: #F734FF;
    border-color: #F734FF;
}
.pricing__card--elite .pricing__card__head {
    background-color: #A208CF;
}
.pricing__card--elite .btn--pricing {
	background-color: #A208CF;
    border-color: #A208CF;
}
.btn--pricing:hover {
    background-color: var(--white);
    color: #000;
}
/* ======================================== */
/* :: 11.0 pricing.html Page CSS End */
/* ======================================== */

/* ======================================== */
/* :: 11.0 Checkout Pages CSS Start */
/* ======================================== */

/* checkout-1.html Page Start */
.checkout {
    padding: 130px 0;
}
.return__page {
	font-size: 28px;
	color: var(--white);
	padding: 7px 11px;
	border-radius: 50px;
	background: linear-gradient(to right, #9229E1 0%, #D237B3 50%, #9229E1 100%);
	background-size: 200% auto;
	transition: all .3s ease-in-out;
    margin-left: 70px;
}
.return__page span img {
	max-width: 24px;
	margin-top: -5px;
}
.return__page:hover {
    background-position: center right;
}
.checkout__details {
    padding-top: 100px;
}
.checkout__btns {
    gap: 130px;
    margin-left: 70px;
}
.tab__btn {
    color: var(--white);
    font-size: 37px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}
.tab__btn.active {
    font-size: 47px;
    font-weight: 700;
    cursor: default;
}
.checkout__btns {
    margin-bottom: 36px;
}
.checkout__content {
    gap: 48px;
}
.checkout__form__wrapper {
	padding: 60px 65px;
	font-family: var(--montserrat);
	width: 100%;
	padding-left: 50px;
    z-index: 1;
}
.checkout__form__wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 99999%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: -1;
}
.checkout__input {
    margin-bottom: 40px;
}
.checkout__input label {
    font-family: var(--montserrat);
    font-size: 33px;
    color: #8013BE;
    text-transform: capitalize;
}
.checkout__input input, .checkout__input--select .nice-select {
    width: 100%;
    height: 72px;
    font-size: 24px;
    font-family: var(--montserrat);
    font-weight: 500;
    padding: 15px 22px;
    background-color: var(--white);
    border: 1px solid #707070;
    border-radius: 0;
    margin-bottom: 8px;
    transition: all .2s ease-in-out;
}
.checkout__input input::placeholder {
    color: #B9B9B9;
    opacity: 1;
}
.checkout__input input:focus {
    border-color: #8013BE;
}
.input__alert {
    font-size: 21px;
    font-weight: 500;
    color: #FF0000;
}
.checkout__submit {
	height: 72px;
	min-width: 191px;
	font-size: 35px;
	border-radius: 18px;
	background-color: #7849FF;
	border: 2px solid #7849FF;
	color: var(--white);
	padding: 10px 22px;
}
.checkout__essentials .checkout__submit {
	background-color: #7849FF;
	border: 2px solid #7849FF;
}
.checkout__growth .checkout__submit {
	background-color: #F834FF;
	border: 2px solid #F834FF;
}
.checkout__elite .checkout__submit {
	background-color: #A621D6;
	border: 2px solid #A621D6;
}
.checkout__submit:Hover {
    background-color: var(--white);
    color: var(--black);
}
.checkout__form__info {
    padding: 32px 40px;
    background-color: var(--white);
    border: 1px solid #707070;
    border-radius: 30px;
}
.checkout__form__info__text {
    max-width: 797px;
}
.checkout__form__info__text .check__box {
	width: 30px;
	height: 30px;
	font-size: 20px;
}
.checkout__form__info__text p {
    font-size: 28px;
    font-weight: 500;
}
.checkout__form__info__text a {
    color: #1400FF;
}
.checkout__form__info__text a:hover {
    color: #8013BE;
}
.checkout__form__info__text .chcek__text {
	font-size: 18px;
	font-weight: 500;
	color: var(--black);
	margin-top: 4px;
}
.checkout__card {
	border-radius: 56px;
	border: 1px solid #707070;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	width: 625px;
    flex-direction: column;
}
.chekcout__card__head {
    padding: 50px;
}
.checkout__card__logo {
	max-width: 202px;
}
.chekcout__card__head p {
    font-size: 40px;
}
.checkout__card__body {
    padding: 95px 20px 115px;
    background-color: #7849FF;
}
.checkout__essentials .checkout__card__body {
    background-color: #7849FF;
}
.checkout__growth .checkout__card__body {
    background-color: #F834FF;
}
.checkout__elite .checkout__card__body {
    background-color: #A621D6;
}
.checkout__card__title {
    font-size: 73px;
    margin-bottom: 80px;
}
.checkout__card__body p {
    font-size: 53px;
    font-weight: 700;
}
.checkout__card__body p span {
    font-weight: 300;
}
/* checkout-1.html Page End */

/* checkout-2.html Page Start */
.checout__input__row {
    display: flex;
}
.checkout__input--lg {
	width: 70%;
}
.checkout__input--sm {
    width: calc(30% - 30px);
    margin-left: 30px;
}
.checkout__input--select .nice-select {
    color: var(--black);
    display: flex;
    align-items: center;
}
.checkout__input--select .nice-select .current {
    color: #4856FF;
}
.checkout__input--select .nice-select .list {
    width: 100%;
    border: 1px solid #707070;
    border-radius: 0;
    padding: 15px 0;
    left: auto;
    right: 0;
}
.checkout__input--select .nice-select .focus, .checkout__input--select .nice-select .selected {
    font-weight: 500;
}
.checkout__input--select .nice-select::after {
	border-bottom: 20px solid #999;
	border-right: 11px solid transparent;
	border-left: 11px solid transparent;
	width: 0;
	height: 0;
	transform: translateY(-50%) rotate(180deg);
	transform-origin: 50% 50%;
	right: 20px;
	margin-top: 0;
	transition: all .3s ease-in-out;
}
.checkout__input--select .nice-select.open::after {
	transform: translateY(-50%) rotate(0);
}
.checkout__multiple__inputs label {
    font-size: 25px;
    font-family: var(--montserrat);
}
.pyament__select {
    width: 314px;
}
.payment__card {
    width: 62px;
    height: 72px;
    font-size: 24px;
    font-family: var(--montserrat);
    font-weight: 500;
    padding: 15px;
    padding-right: 0;
    background-color: var(--white);
    border: 1px solid #707070;
    border-right: 0;
    border-radius: 0;
    margin-bottom: 8px;
    transition: all .2s ease-in-out;
}
.pyament__select .nice-select {
    padding-left: 10px;
    border-left: 0;
}
.pyament__select .nice-select .list {
	width: calc(100% + 53px);
}
.pyament__select .nice-select .current {
    color: var(--black);
}
.checkout__single__input--2, .checkout__single__input--3 {
	width: 185px;
}
.checkout__single__input--4 {
    width: 100%;
}
.checkout__multiple__inputs__row {
    flex-wrap: wrap;
}
.agree__box {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #707070;
    background-color: #fff;
}
.agree__box img {
    opacity: 0;
    transition: all .2s ease-in-out;
}
.agree__text {
	font-size: 21px;
	color: #959595;
	margin-top: 2px;
}
.checkout__input--agree input:checked + label img {
    opacity: 1;
}
/* checkout-2.html Page End */

/* ======================================== */
/* :: 11.0 Checkout Pages CSS End */
/* ======================================== */