body main {
    margin-top: 0px;
}

.carousel-container {
    background: linear-gradient(327.4deg, #4608A4 -0.74%, #8262F9 92.46%);
    padding: 160px var(--leftMargin) 120px var(--leftMargin);
    max-width: 1200px;
}

.login-container {
    padding: 160px 40px 120px 40px;
    background-color: rgb(245, 244, 246);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.carousel-card-container {
    background: linear-gradient(180deg, #9577F0 0%, rgba(109, 23, 239, 0) 100%);
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 0.5px solid white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.carousel-card-container .owl-stage-outer,
.carousel-card .owl-stage-outer .owl-stage {
    width: 100%;
}

.carousel-card img {
    width: 559px;
}

.carousel-card-container .owl-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 40px;
    margin-bottom: 24px;
}

.carousel-card-container .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 24px;
    background-color: rgb(122, 79, 205);
    transition: all 0.4s ease-in-out;
    display: inline-block;
}

.carousel-card-container .owl-dots button.owl-dot.active {
    width: 40px;
    border-radius: 24px;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

.carousel-card-container .owl-dots button.owl-dot.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: white;
    border-radius: 10px;
    animation: fillProgress 2s linear forwards;
}

@keyframes fillProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

input.form-control,
.was-validated .form-control:invalid,
.form-control.is-valid,
.was-validated .form-control:valid,
textarea.form-control {
    height: 48px;
    border-radius: 4px;
    border: 1px solid rgb(204, 204, 204);
    box-shadow: none !important;
    background-image: none !important;
}

.modal input.form-control {
    height: 40px !important;
}

.password-tool {
    cursor: pointer;
    color: #888888;
    top: 75%;
    right: 20px;
    transform: translate(0px, -50%);
    position: fixed;
}

input.form-control:active,
input.form-control:focus,
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus,
textarea.form-control:focus {
    border: 1px solid var(--orange);
}

.needs-validation .btn-style-1 {
    margin-top: 40px;
    width: 208px;
    height: 48px;
}

p.splitter {
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid rgb(228, 227, 229);
    line-height: 0.1em;
    margin: 10px 0;
}

p.splitter span {
    background: rgb(245, 244, 246);
    padding: 0 10px;
}

.ashed-button {
    display: flex;
    padding: 12px 0px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 40px;
    background: white;
    color: var(--darkligth);
    border: 1px solid rgb(221, 221, 221);
}

.ashed-button:hover,
.ashed-button:active {
    border: 1px solid var(--orange);
    box-shadow: 0px 0px 12px 8px #F07C4133;
}

.orange-btn {
    border-radius: 48px;
    border: 1px solid var(--orange);
    padding: 10px 24px;
    color: var(--orange);
}

.orange-btn:hover {
    background-color: var(--orange);
    color: white;
}

.custom-select,
.custom-select1 {
    background-color: white;
    height: 40px;
    display: flex;
    align-items: center;
    color: #444444;
    border-radius: 4px;
    width: 100%;
    padding: 8px;
    font-size: var(--p);
    border: 1px solid rgb(204, 204, 204);
    min-width: 164px;
    fill: white;
    background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23444444%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M233.4%20406.6c12.5%2012.5%2032.8%2012.5%2045.3%200l192-192c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200L256%20338.7%2086.6%20169.4c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3l192%20192z%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;

}

.custom-select:focus,
.custom-select1 {
    color: #444444;
    box-shadow: none;
    border: 1px solid var(--orange);

}

.custom-select option,
.custom-select1 option {
    background-color: #4F3870;
    color: #fff;
    border: 1px solid #66478F;
    box-shadow: none;
    outline: none;
    border-radius: 8px;
    padding: 6px;

}



.custom-select option:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.nice-select:after {
    border: none;
}


.nice-select .list {
    width: 100%;
    border: 1px solid #4444448c;
    font-size: var(--h5);
    font-weight: 400;
    overflow-y: auto;
    max-height: 270px;

}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #44444422;
    color: #444444;
    font-weight: 500;

}

.nice-select .option {
    padding: 2px 8px;
}

.aboutUsCard,
.describeCard {
    width: 265px;
    height: 116px;
    border-radius: 8px;
    border: 1px solid #DDDDDD;
    padding: 12px;
    cursor: pointer;
    color: #444444;
    position: relative;
}

.aboutUsCard {
    height: 142px;
}

.aboutUsCard svg.tick,
.describeCard svg.tick {
    display: none;
}

.aboutUsCard .icon,
.describeCard .icon {
    width: 56px;
    height: 56px;
    background-color: #EEE2FD;
    border-radius: 50%;
    display: grid;
    place-items: center;
}


.aboutUsCard:hover,
.describeCard:hover {
    background-color: #EEE2FD;
}

.aboutUsCard:hover .icon,
.describeCard:hover .icon,
.aboutUsCard.active .icon,
.describeCard.active .icon {
    background-color: white;
}

.aboutUsCard.active,
.describeCard.active {
    background-color: #6914F4;
    color: white;
}

.aboutUsCard.active svg.tick,
.describeCard.active svg.tick {
    display: block;
    position: absolute;
    right: 12px;
    top: 12px;
}

nav .dropdown-toggle::after {
    content: none;
}

.modal .nav-tabs .nav-link {
    border: none;
    padding: 0;
    color: #444444;
}

.modal .nav-tabs {
    border: none;
}

.modal .nav-tabs .nav-link.active {
    color: #6914F4;
    position: relative;
}

.modal .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #6914F4;
    left: 0;
    top: 24px;
    border-radius: 4px;
}

.modal .profile-cant {
    background-color: #F0F0F0;
    cursor: pointer;
}

.modal .profile-cant:hover {
    background-color: #6914F4;
}

.modal .profile-cant:hover svg path {
    fill: white;
}

.modal .add-plus-btn {
    border: 1px solid #BBBBBB;
    color: #222222;
    width: 32px;
    height: 32px;
    font-size: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: white;
}

.modal .profile-cant:hover .add-plus-btn {
    border: 1px solid #6914F4;
    background-color: white;
}

.modal .profile-cant:hover .add-plus-btn svg path {
    fill: #6914F4;
}

.modal .profile-img-card img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.modal .profile-img-card {
    cursor: pointer;
    position: relative;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    appearance: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s;
    box-shadow: none !important;
}

.custom-checkbox:checked {
    background-color: green;
    border: none;
}

/* .custom-checkbox::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity 0.2s;
} */

.custom-checkbox:checked::after {
    opacity: 1;
}

.modal .profile-img-card:hover::after {
    /* opacity: 50%; */
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    background-color: #000000CC;
}


.modal .banner-img-card {
    position: relative;
    cursor: pointer;

}

.modal .banner-img-card img {
    width: 275px;
    height: 120px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.modal .banner-img-card:hover::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    background-color: #000000CC;
}

.modal .profile-img-card .selected,
.modal .banner-img-card .selected {
    position: absolute;
    color: white;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: #000000CC;
    display: none;
    place-items: center;
    z-index: 1;
}

.modal .banner-img-card .selected {
    border-radius: 4px;
}

.modal .profile-img-card.active .selected,
.modal .banner-img-card.active .selected {
    display: grid;
}

.modal .profile-img-card.active:hover::after,
.modal .banner-img-card.active:hover::after {
    content: none;
}

.modal #myTabContent::-webkit-scrollbar {
    display: none;
}

.modal .upload-new-banner {
    background-color: #F5F5F5;
    border-radius: 4px;
    width: 280px;
    height: 120px;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.modal .upload-new-banner:hover {
    border: 1.5px dashed #6914F4;
    color: #6914F4;
}

.modal .upload-new-banner:hover svg path {
    fill: #6914F4;
}

.price-toggle-container,
.time-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    /* gap: 12px; */
    isolation: isolate;
    width: 172px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 40px;
}

.price-toggle,
.time-toggle {
    cursor: pointer;
    line-height: 16px;
    text-align: center;
    min-width: 72px;
    padding: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #AAAAAA;
}

.price-toggle.active {
    background: #F0B441;
    border-radius: 17.5px;
    color: white;
}

.time-toggle.active {
    background: #6914F4;
    border-radius: 17.5px;
    color: white;
}

.fa-ul p {
    color: #432323;
    font-size: 14px;
    font-weight: 500;
}

.twoMonthChip {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    gap: 8px;
    position: absolute;
    width: 128px;
    height: 32px;
    right: 0px;
    top: 0px;
    background: linear-gradient(90deg, #F07C41 0.59%, #6D17EF 100.59%);
    border-radius: 0px 0px 0px 8px;
}

.white-chip {
    background: white;
    border-radius: 0px 0px 0px 8px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.white-chip .text {
    background: linear-gradient(90deg, #F07C41 0.59%, #6D17EF 100.59%);
    font-size: 12px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-Txt-head {
    background: linear-gradient(277.7deg, #E6744E -2.2%, #6D17EF 98.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.gradient-Txt-head::after {
    position: absolute;
    content: '';
    width: inherit;
    background: linear-gradient(277.7deg, #E6744E -2.2%, #6D17EF 98.94%);
    height: 4px;
    display: block;
    margin-top: 8px;
    border-radius: 4px;
    width: 100%;
}

.border-background-1 {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    color: rgba(68, 68, 68, 1);
}

.plans-card-container {
    column-gap: 25px;
    row-gap: 40px;
    max-height: 385px;
    overflow-y: auto;
}

.plans-card-container::-webkit-scrollbar {
    display: none !important;
}

.plans-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    max-width: 310px;
    width: 100%;
    height: 700px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 12px;
}

.plans-card button {
    color: white;
}

.plans-card .header {
    height: 152px;
    width: 100%;
    border-bottom: 1px solid #DDDDDD;
}

.plans-card.active {
    border-width: 2px;
    border-color: #21A40C !important;
}

.plans-card.expired {
    border-width: 2px;
    border-color: #F04141 !important;
}

.plans-card.active .active-lable {
    display: block;
}

.plans-card.expired .active-lable {
    background-color: #F04141 !important;
    display: block;
}

.plans-card.active a,
.plans-card.active button {
    pointer-events: none !important;
    background: #21A40C !important;
}

.plans-card.expired a,
.plans-card.expired button {
    /* pointer-events: none !important; */
    background: #F04141 !important;
}

.plans-card.active a>span,
.plans-card.active button>span,
.plans-card.expired a>span,
.plans-card.expired button>span {
    display: none;
}

.plans-card.active a::after,
.plans-card.active button::after {
    content: 'Activated';
    background: #21A40C !important;
}

.plans-card.expired a::after,
.plans-card.expired button::after {
    content: 'Reactivate Now';
    background: #F04141 !important;
}

.re-btn {
    color: white !important;
    padding: 8px 20px;
    background-color: #21A40C !important;
    --bs-btn-disabled-bg: #21A40C;
    --bs-btn-disabled-border-color: transparent;
    border-radius: 32px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    text-shadow: none;
    -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    width: max-content;
}

.re-btn:hover {
    border: 1px solid;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    outline-color: rgba(255, 255, 255, 0);
    text-shadow: 1px 1px 2px #4e8645;
}

.tool-card {
    width: 312px;
    height: 188px;
    border-radius: 8px;
    gap: 16px;
    padding: 12px;
    border: 1px solid #DDDDDD
}

.download-btn {
    width: 100%;
    height: 32px;
    border-radius: 64px;
    gap: 12px;
    padding-top: 4px;
    padding-right: 16px;
    padding-bottom: 4px;
    padding-left: 16px;
    background: linear-gradient(278.42deg, #E6744E -39.16%, #6D17EF 79.58%);
    color: white !important;
}

.download-btn:hover {
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
}

.getStartedBtn {
    height: 40px;
    border-radius: 32px;
    gap: 8px;
    padding: 8px;
    font-size: var(--p);
    font-weight: 600;
    background-color: #2BAED8 !important;
    color: white;
    padding: 8px 29px;
}
.getStartedBtn:hover{
    transition: all ease-in 0.5s;
    box-shadow: 0px 0px 16px 4px #F07C4180;
    border: 2px solid var(--White, #FFFFFF)

}