/* global rules */
:root {
    --color-primary: #37D2F4;
    --color-purple: #A4549B;
    --color-black-: #3A3A3A;
    --btn-purple: #A4549B;
    --btn-primary: #19B4D6;
    --gradient: linear-gradient(180deg, rgb(135, 198, 235) 0%, rgb(158, 109, 173) 100%);
}
.scrollToTop {
    background: var(--gradient);
    cursor: pointer;
}
@media (min-width: 992px) {
    [data-nav-style=menu-click][data-nav-layout=horizontal] .landing-body .app-sidebar .side-menu__item.active, [data-nav-style=menu-click][data-nav-layout=horizontal] .landing-body .app-sidebar .side-menu__item:hover {
        background-color: var(--color-purple);
        color: var(--color-purple);
    }
}
@media (min-width: 992px) {
    [data-nav-style=menu-click][data-nav-layout=horizontal] .landing-body .app-sidebar .side-menu__item.active .side-menu__label, [data-nav-style=menu-click][data-nav-layout=horizontal] .landing-body .app-sidebar .side-menu__item.active .side-menu__angle, [data-nav-style=menu-click][data-nav-layout=horizontal] .landing-body .app-sidebar .side-menu__item:hover .side-menu__label, [data-nav-style=menu-click][data-nav-layout=horizontal] .landing-body .app-sidebar .side-menu__item:hover .side-menu__angle {
        color: var(--color-purple) !important;
    }
}
@media (min-width: 992px) {
    .landing-body .landing-page-wrapper .app-sidebar.sticky.sticky-pin.app-sidebar .side-menu__item.active .side-menu__label {
        color: var(--color-purple) !important;
    }
}
.bg-login {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
}
.border-primary {
    border-color: #19B4D6 !important;
}
.bg-primary {
    background-color: #19b3d625 !important;
}
/* ./global rules */

/* classes */
.btn-lg {
    width: 160px;
    padding: 9px 12px 9px 12px;
    border-radius: 8px !important;
    font-size: 16px;
    font-weight: 600;
}
.btn-primary {
    background-color: var(--btn-primary) !important;
    border-color: var(--btn-primary) !important;
}
.btn-primary:hover {
    opacity: 0.9;
    background-color: var(--btn-primary) !important;
    border-color: var(--btn-primary) !important;
}
.btn-purple {
    background-color: var(--btn-purple) !important;
    border-color: var(--btn-purple) !important;
}
.btn-purple:hover {
    opacity: 0.9;
    background-color: var(--btn-purple) !important;
    border-color: var(--btn-purple) !important;
}
.text-purple {
    color: var(--color-purple) !important;
}
.text-black {
    color: var(--color-black-) !important;
}
.text-primary {
    color: var(--color-primary) !important;
}
.text-gradient {
    background: -webkit-linear-gradient(var(--gradient));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fs-14 {
    font-size: 14px;
}
.btn-gradient {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    opacity: 0.9;
    color: white !important;
    background: linear-gradient(180deg, rgb(135, 198, 235) 0%, rgb(158, 109, 173) 100%);
    border: none;
    border-radius: 6px;
}
.btn-outline-gradient {
    position: relative;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    opacity: 0.9;
    border-radius: 6px;
    background: #fff; /* Fallback for older browsers */
    z-index: 1;
}
.btn-outline-gradient span {
    background: linear-gradient(180deg, rgb(135, 198, 235) 0%, rgb(158, 109, 173) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.btn-outline-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    padding: 1px; /* Adjust based on your border width */
    background: linear-gradient(180deg, rgb(135, 198, 235) 0%, rgb(158, 109, 173) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.border-purple {
    border-color: var(--color-purple);
}
.bg-image {
    position: relative;
    width: 100% !important;
    height: 300px;
    margin-top: 116px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
@media screen and (max-width: 768px) {
    .bg-image {
        margin-top: 0;
    }
}
/* ./classes */

/* navbar */
.nav-header-top {
    position: relative;
    width: 100% !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.app-sidebar {
    background-color: #fff !important;
}
.app-sidebar .container .main-sidebar .main-menu-container {
    height: 80px;
}
.app-sidebar .side-menu__label {
    font-size: 18px;
    font-weight: 600;
}
.logo {
    height: 53px !important;
}
/* ./navbar */

/* landing-banner */
.landing-body .landing-banner {
    height: 700px;
}
.landing-body .landing-section-heading {
    position: relative;
    color: var(--color-primary);
    font-size: 18px;
}
#home p {
    line-height: 40px;
    max-width: 900px;
    margin: auto;
}
@media only screen and (max-width: 991px) {
    #home h2 {
        font-size: 24px !important;
    }
    #home p {
        max-width: 600px;
        font-size: 16px;
    }
}
/* ./landing-banner */

/* about-us */
#about h4 {
    font-size: 20px !important;
    line-height: 40px ;
}
/* ./about-us */

/* articles */
#articles .text-muted {
    font-weight: 400;
    line-height: 32px;
    font-size: 16px;
}
#articles .card-img-top {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
#articles .card:hover .card-header h4 {
    color: var(--color-purple);
}
/* ./articles */

/* our app */
#ourApp .container {
    background: black;
    border-radius: 16px;
}
#ourApp .container h3 {
    font-weight: bold;
    color: #fff;
}
#ourApp .container p {
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    width: 450px;
    opacity: 0.9;
    color: #fff;
}
/* ./our app */

/* features */
.features-home {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 560px) {
    .note-home a{
        font-size: 12px !important;
    }
    .features-home {
        bottom: 40px;
    }
}
/* ./features */

.form-login .img-email {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}
.form-login .img-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.form-login .img-show-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    cursor: pointer;
}

.box-specialist.active {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    background: #37d1f421; /* Fallback for older browsers */
    z-index: 1;
}

.box-specialist.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px; /* Adjust based on your border width */
    background: linear-gradient(180deg, rgb(135, 198, 235) 0%, rgb(158, 109, 173) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.box-specialist.active img {
    z-index: 1;
}
.box-specialist.not-active .correct {
    position: absolute;
    top: 15px;
    right: 15px;
    display: none;
}
.box-specialist.active .correct {
    position: absolute;
    top: 15px;
    right: 15px;
}

.box-specialist.not-active {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    background: #fff; /* Fallback for older browsers */
    border-color: #37d1f4c9;
    border-style:dashed;
    border-width: 2px;
    z-index: 1;
}

.box-specialist.not-active::before {
    content: none;
}

.location {
    background-color: #77777713;
}

.box-payment input[type="radio"] {
    width: 36px;
    height: 36px;
}

.coupon .img-code {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.coupon .btn-code {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    cursor: pointer;
}

.nav-email {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
}

ul.pagination {
    justify-content: center !important;
}
.page-item .page-link {
    margin: 0 4px !important;
    border-radius: 50% !important;
    width: 38px !important;
    height: 38px !important;
    text-align: center !important;
}
.page-item.active .page-link {
    position: relative;
    border: none;
    background: var(--gradient) !important;
}
