/* ====================== GLOBAL ====================== */
:root {
    --alt-color: hsl(13, 79%, 60%);
    --main-color: hsl(177, 100%, 32%);
    --tertiary-color: hsl(282, 44%, 47%);
    --bg-light-color: hsl(13, 2%, 98%);
    --text-light-1: hsl(177, 0%, 46%);
    --text-light-2: hsl(177, 4%, 34%);
    --text-dark-1: hsl(177, 2%, 22%);
    --text-white-1: hsl(177, 0%, 100%);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: #e0e0e0;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

input[type="number"] {
    -moz-appearance: textfield;
}

a:hover {
    color: var(--main-color);
}

.bg-tertiary,
.bg-tertiary:hover {
    background-color: var(--tertiary-color);
}

.text-muted {
    color: var(--text-dark-1) !important;
}

.logo-img {
    width: 160px;
    height: auto;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 20000;
    transition: all 0.3s ease;
}

.loader.active {
    visibility: visible;
    opacity: 1;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.btn {
    border: 0;
    border-radius: 0;
}

.bg-primary,
.btn-primary {
    background-color: var(--main-color) !important;
}

.bg-gray-300 {
    background: var(--bs-gray-300);
}

.bg-secondary,
.btn-secondary {
    background-color: var(--alt-color) !important;
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid var(--alt-color);
    color: var(--alt-color);
    font-weight: 500;
}

.btn-secondary-outline:hover {
    border: 2px solid transparent;
    background: var(--alt-color);
    color: #fff;
}

.btn-dark-outline {
    background: transparent;
    border: 1px solid var(--bs-gray-dark);
    color: var(--bs-gray-dark);
    font-weight: 500;
}

.btn-dark-outline:hover {
    border: 1px solid transparent;
    background: var(--bs-gray-dark);
    color: #fff;
}

.text-primary {
    color: var(--main-color) !important;
}

.text-secondary {
    color: var(--alt-color) !important;
}

.fs-7 {
    font-size: 0.92rem;
}

.fs-8 {
    font-size: 0.86rem;
}

.fs-9 {
    font-size: 0.78rem;
}

.fs-10 {
    font-size: 0.7rem;
}

.card,
.modal-content {
    border-radius: 0;
}

a {
    color: var(--main-color);
    text-decoration: none !important;
}

.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

button:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.modal {
    background: rgba(0, 0, 0, 0.6);
}

/* ====================== HEADER ====================== */

.banner {
    width: 100%;
    height: 80vh;
    position: relative;
    background-size: cover;
    background-position: top;
}

.banner .content {
    /* position: absolute; */
    padding: 80px 0;
}

.banner .content h1 {
    font-weight: 400;
    font-size: 46px;
    margin: 0 auto;
    margin-top: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.banner .content-form {
    padding: 10px 20px;
    opacity: 0.7;
    border-radius: 20px;
}

.banner .content-form .form-title {
    text-align: center;
    text-transform: uppercase;
}

.banner .menu {
    padding: 20px 0;
    background-color: #34495e;
}

.feature-section,
.section.join-us {
    background: var(--bg-light-color);
}

.section-heading {
    font-weight: 800;
    font-size: 24px;
    color: var(--text-dark-1);
    text-transform: uppercase;
}

.join-us p {
    font-weight: 400;
    font-size: 17px;
    color: var(--text-light-1);
}

.section-special,
.members-section {
    position: relative;
    background: linear-gradient(to left, var(--main-color), var(--alt-color));
}

.section-special .section-heading,
.members-section .section-heading {
    color: var(--text-white-1);
}

.section-special .fas {
    font-size: 180px;
    left: 50%;
    top: 4%;
    color: rgba(255, 255, 255, 0.05);
    transform: translate(-50%);
    position: absolute;
}

.section-special p,
.section-special a {
    color: var(--text-white-1);
}

.section-special p,
.join-us p {
    line-height: 24px;
    margin: 0;
    padding: 0;
    font-size: 17px !important;
}

.members-section .btn,
.members-section .see-all-btn {
    color: var(--text-white-1);
    font-weight: 500;
}

.section .card-feature {
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.section .card-feature .icon {
    font-size: 20px;
    color: var(--bg-light-color);
    border-radius: 50%;
    display: inline-block;
    width: 46px;
    height: 46px;
    margin: 0 auto;
    line-height: 50px;
    background-color: var(--alt-color);
    margin-bottom: 16px;
}

.section .card-feature span:last-child {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light-2);
}

@media (max-width: 767.98px) {
    .header .navbar-nav {
        margin-top: 1rem;
    }

    .header .nav-item {
        background: rgba(0, 0, 0, 0.4);
    }
}

/* ====================== SECTION ====================== */
.section {
    padding: 48px 160px;
}

/* ====================== STEP ====================== */
.step {
    position: relative;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    width: 140px;
    height: 140px;
}

.step span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: var(--alt-color);
}

.step span:nth-child(2) {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--main-color);
}

/* ====================== CTA ====================== */
.cta-section {
    background: var(--alt-color);
    color: #fff;
    padding: 2rem 0;
}

.cta-section h3 {
    font-weight: 400;
    font-size: 1.8rem;
}

.cta-section .btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.3rem;
    padding: 0.8rem 1.8rem;
}

/* ====================== MEMBER DASHBOARD ====================== */
.user-menu img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-menu[data-bs-popper] {
    left: -100% !important;
}

.dropdown-toggle::after {
    display: none;
}

.bottom-nav .nav-link {
    color: var(--bs-gray-600) !important;
    font-weight: 500;
}

.bottom-nav .nav-link.active {
    color: var(--alt-color) !important;
    border-bottom: 2px solid var(--alt-color);
}

.bottom-nav .nav-link:hover {
    color: var(--alt-color) !important;
}

.profile-card {
    min-height: 400px;
}

.profile-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.profile-card .list-group .btn-badge {
    font-weight: 500;
    color: var(--main-color);
    padding: 2px 6px;
    height: fit-content;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: all 0.3s;
}

.profile-card .list-group .btn-badge:hover {
    background: #fff;
    border: 1px solid var(--main-color);
}

body.member-area {
    /* background: var(--bs-gray-300); */
    background: #dfe4ea;
}

.visitor-slide {
    min-height: 100px;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    padding: 8px;
    background-color: #fff;
}

.visitor-slide img {
    margin-top: 10px;
    height: 60px !important;
    width: 60px !important;
    border-radius: 50%;
    object-fit: cover;
}

.visitor-slide .btn {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 20px !important;
    padding: 4px 10px;
    font-size: 0.8rem;
    margin: 10px 0;
}

.visitor-slide .btn:hover {
    background: var(--main-color);
    color: #fff;
}

.visitor-carousel {
    position: relative;
}

.visitor-carousel .owl-nav button.owl-next,
.visitor-carousel .owl-nav button.owl-prev {
    font-size: 6rem;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    color: rgba(0, 0, 0, 0.2);
    top: 1.6rem;
    transition: 0.4s all ease;
}

.visitor-carousel .owl-nav button.owl-prev {
    left: -6px;
}

.visitor-carousel .owl-nav button.owl-next {
    right: -6px;
}

.visitor-carousel:hover .owl-nav button.owl-next,
.visitor-carousel:hover .owl-nav button.owl-prev {
    opacity: 1;
    visibility: visible;
}

.list-group .match-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.connect-btn-wrapper {
    cursor: pointer;
}

.connect-btn {
    border: 1px solid var(--main-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    transition: all 0.2s;
}

.connect-btn-wrapper:hover .connect-btn {
    background: var(--main-color);
    color: #fff;
}

.connect-btn-wrapper:hover small {
    color: var(--bs-gray-dark) !important;
}

.img-rounded {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.member-pill .nav-link {
    color: var(--bs-gray-600);
    border-radius: 0 !important;
}

.member-pill .nav-link.active {
    background: var(--alt-color);
}

.profile-pic-wrapper {
    width: 100%;
    height: 200px;
    position: relative;
}

.profile-pic-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 38%;
}

.profile-pic-wrapper .action-menu {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: 2.5rem;
    right: 0;
    display: none;
}

.profile-pic-wrapper .action-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    font-size: 1.2rem;
}

.profile-pic-wrapper .action-btn i {
    pointer-events: none;
}

.action-menu a {
    display: block;
    color: #fff;
    padding: 10px !important;
    transition: all 0.2s ease;
}

.action-menu a:hover {
    background: var(--alt-color);
}

.profile-pic-wrapper .is_profile {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: -4px;
    right: -4px;
    background-color: var(--bs-success);
}

#toast-container > div {
    opacity: 1;
}

.navbar-brand img {
    width: 120px;
}

.top-nav {
    background: #fff;
    z-index: 999;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.top-nav .nav-link {
    color: var(--text-dark-1) !important;
    font-weight: 500;
}

.top-nav .nav-link:hover {
    color: var(--alt-color) !important;
}

.top-nav .nav-link.active {
    background-color: #fff;
    color: var(--alt-color) !important;
}

/* ======== HEADER STYLE ========= */
.topbar {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.topbar li {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.header {
    background-color: transparent;
    transition: all 0.3s ease;
}

/* ========== TOP NAV ========== */
.top-nav {
    transition: all 0.4s ease;
}

.top-nav__menu {
    display: flex;
}

@media (max-width: 991.98px) {
    .top-nav {
        position: fixed;
        top: 0;
        width: 100%;
    }

    .top-nav__menu {
        display: block;
        padding: 5rem 0 2rem 0;
        position: fixed;
        margin-right: 0;
        height: 100vh;
        background: #fff;
        right: 0;
        top: 0;
        width: 68vw;
        transform: translateX(100%);
        transition: all 0.4s ease;
        z-index: 999;
    }

    .top-nav__menu.active {
        box-shadow: -4px 0 4px rgba(0, 0, 0, 0.1);
        overflow-y: scroll;
        transform: translateX(0);
    }

    .top-nav__menu.active::-webkit-scrollbar {
        width: 0;
    }
}

.top-nav__brand {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none;
    padding: 1rem 0;
}

.top-nav__link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    /* color: #fff !important; */
    color: #2d3436 !important;
    font-weight: 400;
    padding: 0 1.2rem;
}

@media (max-width: 991.98px) {
    .top-nav__link {
        align-items: center;
        padding: 1.2rem 1rem;
        justify-content: space-between;
        color: #1f1f1f;
    }
}

.top-nav__dropdown-link {
    font-size: 1rem;
    text-decoration: none;
    color: #000;
    padding: 0.8rem 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991.98px) {
    .top-nav__dropdown-link {
        align-items: center;
        padding: 1.2rem 1rem;
        justify-content: space-between;
        color: var(--text-dark-1);
    }
}

@media (max-width: 991.98px) {
    .top-nav__item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.top-nav__item .top-nav__dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 14rem;
    border-radius: 1px;
    z-index: 1000;
    transform: translateY(10px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

@media (max-width: 991.98px) {
    main {
        padding-top: 80px;
    }

    .top-nav__item .top-nav__dropdown {
        display: none;
        visibility: visible;
        opacity: 1;
        width: 100%;
        position: static;
        transform: none;
        background: #dfe4ea;
        box-shadow: none;
        transition: none;
    }
}

.top-nav__item:hover > .top-nav__dropdown {
    visibility: visible;
    opacity: 1;
    z-index: 10000;
    transform: translateY(-10px);
}

@media (max-width: 991.98px) {
    .top-nav__item:hover > .top-nav__dropdown {
        transform: none;
    }
}

.top-nav__dropdown-item {
    position: relative;
}

@media (max-width: 991.98px) {
    .top-nav__dropdown-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.top-nav__dropdown-item > .top-nav__dropdown {
    visibility: hidden;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: -100%;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

@media (max-width: 991.98px) {
    .top-nav__dropdown-item > .top-nav__dropdown {
        display: none;
        visibility: visible;
        opacity: 1;
        left: 0;
        transform: translateX(0);
        background: rgba(0, 0, 0, 0.1);
        transition: none;
    }
}

.top-nav__dropdown-item:hover > .top-nav__dropdown-link {
    text-decoration: none;
    color: #fff;
    background: var(--alt-color);
}

@media (max-width: 991.98px) {
    .top-nav__dropdown-item:hover > .top-nav__dropdown-link {
        background: var(--alt-color);
        color: #fff;
    }
}

.top-nav__dropdown-item:hover > .top-nav__dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 991.98px) {
    .top-nav__toggler {
        z-index: 1000;
    }
}

.top-nav__dropdown-toggler {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

@media (max-width: 991.98px) {
    .top-nav__dropdown-toggler {
        border: 1px solid rgba(255, 255, 255, 0.5);
        width: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30px;
        border-radius: 50%;
    }
}

.top-nav__btn--login {
    background: #fff;
    color: var(--alt-color) !important;
}

.top-nav__btn--signup {
    background: var(--alt-color);
    color: #fff;
}

@media (max-width: 991.98px) {
    .top-nav__btn--login,
    .top-nav__btn--signup {
        display: inline-block;
        width: 100%;
        margin-bottom: 0.8rem;
        padding: 1rem 1rem;
    }

    .top-nav__btn--signup {
        background: var(--main-color);
    }
}

.profile-pic-slider {
    position: relative;
    background-color: #f5f6fa;
}

.profile-pic-slider,
.profile-pic-slider .owl-stage-outer,
.profile-pic-slider .owl-stage,
.profile-pic-slider .owl-item,
.profile-pic-slider .item,
.profile-pic-slide {
    height: 100%;
}

.profile-pic-slide img {
    height: 100%;
    object-fit: cover;
}

.profile-pic-slider .owl-nav {
    position: absolute;
    bottom: 4px;
    width: 38%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    height: 24px;
}

.profile-pic-slider .owl-nav span {
    display: none;
}

.profile-pic-slider .owl-nav button.owl-prev {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-47%);
}

.profile-pic-slider .owl-nav button.owl-next {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-47%);
}

.profile-pic-slider .owl-nav button.owl-prev::before {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.profile-pic-slider .owl-nav button.owl-next::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.msg-btn,
.connect-profile-btn,
.view-profile-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    font-size: 1.4rem;
}

.msg-btn:hover,
.connect-profile-btn:hover,
.view-profile-btn:hover {
    background: var(--main-color);
    color: #fff;
}

.btn-accept {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
    border: 2px solid green;
    color: green;
    font-size: 1.4rem;
}

.btn-accept:hover {
    background: green;
    color: #fff;
}

.single-profile-card {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: default;
}

.single-profile-card:hover {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

.page-item.active .page-link {
    color: #fff !important;
    background-color: var(--main-color) !important;
}

.page-item .page-link {
    color: var(--main-color) !important;
}

.danger-btn,
.rq-reject {
    border: 2px solid var(--alt-color) !important;
    color: var(--alt-color) !important;
}

.danger-btn:hover,
.rq-reject:hover {
    background: var(--alt-color) !important;
    color: #fff !important;
}

.nav-link,
.nav-link:hover {
    color: #333;
}

.nav-link.active {
    color: #fff !important;
    background: var(--alt-color) !important;
}

#alertMsg {
    z-index: 100000;
}

#alertMsg .modal-dialog {
    z-index: 100000;
}

.second-nav {
    /* background-color: #2c3e50; */
    background-color: #ea1a7f;
    position: sticky;
    top: 0;
    z-index: 2000;
}

.second-nav__menu {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    list-style: none;
}

.second-nav__menu-item {
    flex-grow: 1;
}

.second-nav__menu-item:last-child {
    margin-right: 0;
}

.second-nav__menu-link,
.second-nav__menu-link:hover {
    display: block;
    padding: 14px 18px;
    font-size: 16px;
    color: #fff;
    transition: 0.2s all ease;
}

.second-nav__menu-link:hover {
    background: #fff;
    color: #2c3e50;
}

.notification .avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.notification.unread {
    background: #34495e;
    color: #fff;
}

.edit-profile-img-box {
    width: 100%;
}

.edit-profile-img-box img {
    width: 100%;
    display: block;
    max-height: 400px;
    height: 100%;
    object-fit: cover;
}

.notification-link-wrapper {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: 4px;
    left: 24px;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-content: center;
    background: var(--main-color);
    border-radius: 50%;
}

.notification-link-wrapper:hover .notification-badge {
    background: #2c3e50;
    color: #fff;
}

.mob-nav {
    display: none;
}

@media (max-width: 991px) {
    .second-nav {
        position: fixed;
        top: 18px;
        right: 14%;
        background-color: transparent;
    }

    .second-nav__toggler {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .second-nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(110%);
        width: 68%;
        bottom: 0;
        padding: 10px;
        display: block;
        z-index: 2000;
        background-color: var(--alt-color);
        list-style: none;
        transition: all 0.3s ease;
    }

    .second-nav__menu.active {
        transform: translateX(0);
    }

    .second-nav__menu-item {
        flex-grow: 1;
    }

    .second-nav__menu-item:last-child {
        margin-right: 0;
    }

    .second-nav__menu-link,
    .second-nav__menu-link:hover {
        display: block;
        padding: 14px 18px;
        font-size: 16px;
        color: #fff;
        transition: 0.2s all ease;
    }

    .second-nav__menu-link:hover {
        background: #fff;
        color: #2c3e50;
    }

    /* main {
        padding-bottom: 80px;
    } */

    .mob-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 6px 20px;
        border-radius: 4px 4px 0 0;
        z-index: 999;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
        color: #2c3e50;
    }

    .mob-nav .tabs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #2c3e50;
        gap: 6px;
    }

    .mob-nav ul.tabs {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mob-nav ul.tabs .notification-link-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        color: #2c3e50;
        padding: 0;
    }

    .tabs .second-nav__menu-link:hover {
        background: transparent;
        color: #2c3e50;
    }

    .tabs .second-nav__menu-link:hover .notification-badge {
        background: #2c3e50;
        color: #fff;
    }

    .mob-nav ul.tabs .notification-link-wrapper i {
        font-size: 16px;
    }

    .mob-nav .notification-badge {
        left: 14px;
        top: -4px;
        color: #fff;
    }

    .mob-nav .tabs .icon {
        font-size: 16px;
    }
}

.sticky {
    position: sticky;
    top: 6px;
}

.msg-ph-wrapper {
    width: 80%;
}

.img-ph {
    background: #bdc3c7;
    border-radius: 50%;
    animation: fadeInOut 2s linear infinite alternate;
}

.msg-ph {
    height: 10px;
    border-radius: 5px;
    background: #bdc3c7;
    animation: fadeInOut 2s linear infinite alternate;
}

@keyframes fadeInOut {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

.circle-chart {
    width: 60px;
    height: 60px;
}

.circle-chart__circle {
    stroke: var(--alt-color);
}

.edit-link {
    color: var(--alt-color);
    cursor: pointer;
}

/* .profile-card-row {
    max-height: 260px;
    margin: 10px 0;
} */

.profile-card-row .img-box {
    height: 300px;
    /* margin: -30px 0 -30px 0; */
}

/* @media(max-width: 992px) {
    .profile-card-row {
        max-height: initial !important;
    }

    .profile-card-row .img-box {
        height: initial !important;
        margin: initial !important;
    }
} */

.icon-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-overlay .fas {
    font-size: 40px;
}

.story-carousel {
    position: relative;
}

.story-carousel img {
    width: 460px;
    height: 460px;
    border-radius: 6px;
    object-fit: cover;
}

.story-carousel .owl-nav button.owl-next,
.story-carousel .owl-nav button.owl-prev {
    font-size: 12rem;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    color: rgba(255, 255, 255, 0.5);
    top: 60px;
    transition: 0.4s all ease;
}

.story-carousel .owl-nav button.owl-prev {
    left: -8px;
}

.story-carousel .owl-nav button.owl-next {
    right: -8px;
}

.story-carousel:hover .owl-nav button.owl-next,
.story-carousel:hover .owl-nav button.owl-prev {
    opacity: 1;
    visibility: visible;
}

.story-carousel button.owl-dot {
    background-color: var(--main-color);
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin: 3px;
    transition: all 0.3s ease;
}

.story-carousel button.owl-dot.active {
    background-color: var(--alt-color);
    height: 12px;
    width: 26px;
    border-radius: 10px;
    margin: 3px;
}

@media (max-width: 991px) {
    .profile-btn-wrapper {
        flex-direction: row !important;
        gap: 18px;
        padding: 2px 10px;
    }
}

.modal {
    z-index: 2000;
}

.section-heading {
    text-align: center;
    position: relative;
    padding: 18px;
}

.section-heading::before {
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 240px;
    width: 80%;
    position: absolute;
    height: 2px;
    background-color: var(--alt-color);
}

.section-heading::after {
    content: "";
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    border-radius: 4px;
    position: absolute;
    background-color: var(--alt-color);
}

.nav-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .verify-email-alert {
        margin-top: 80px;
        margin-bottom: -80px;
    }
    footer .nav {
        justify-content: space-between;
    }
    footer .nav .nav-link {
        padding: 0;
    }
}

footer .nav-item .nav-link {
    transition: all 0.3s ease;
}

footer .nav-item:hover .nav-link {
    color: var(--alt-color);
}

.content h1 {
    font-size: 32px;
}

.content h2 {
    font-size: 26px;
}

.content h3 {
    font-size: 22px;
}

.content h4 {
    font-size: 18px;
}

.content h5 {
    font-size: 16px;
}

.border-radius-1 {
    border-radius: 14px;
}

.btn-rounded {
    border-radius: 18px;
}

.swal2-backdrop-show {
    z-index: 2000 !important;
}

.login-form {
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.login-form .form-control {
    padding: 10px;
}

.login-form .btn {
    padding: 10px;
}

.login-form .card-header {
    color: #3b3333;
}

.login-form a {
    color: #333;
}

.login-form .btn {
    background-color: #eee;
}

footer {
    background-color: #ecf0f2;
}

footer a,
footer span {
    color: #828c91 !important;
}

.post-body table,
.post-body tr,
.post-body td,
.post-body th {
    border: 1px solid #000;
    border-collapse: collapse;
}
