*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FDFDFD;
}

ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.x-hidden-checkbox {
    display: none;
}

.x-navbar-left {
    box-shadow: -4px 4px 14px 0px rgba(0, 0, 0, 0.08);
    background-color: #FDFDFD;
    flex-direction: column;
    max-height: 670px;
}

.x-profile-name-title {
    font-size: 18px;
    color: rgba(20, 20, 20, 1);
    font-weight: 500;
}

.x-profile-image {
    width: 120px;
    height: 120px;
    padding: 7px;
    box-shadow: -4px 4px 14px 0px rgba(0, 0, 0, 0.08);
}

.x-profile-email-title {
    font-size: 14px;
    color: rgba(20, 20, 20, 0.6);
    font-weight: 400;
}

.x-profile-info ul li {
    width: 100%;
    padding: 20px;
    cursor: pointer;
}

.x-profile-info ul li a {
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: rgba(20, 20, 20, 0.6);
    font-weight: 500;
}

.x-profile-info ul li:hover {
    background-color: rgba(20, 20, 20, 0.08);
    border-left: 4px solid rgba(20, 20, 20, 1)
}

.x-profile-info ul li:hover a {
    color: rgba(20, 20, 20, 1);
}

.x-data-header-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 40px;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.x-content-wrapper {
    max-width: 900px;
}

.x-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 1060;
    display: none;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.x-w-200 {
    width: 200px;
}

.x-gray-text {
    color: rgba(20, 20, 20, 0.6);
}

@media (min-width: 1200px) {
    .x-navbar-left {
        display: flex;
        position: static;
        width: 25%;
        max-width: 300px;
        box-shadow: -4px 4px 14px 0px rgba(0, 0, 0, 0.08);
    }

    .x-menu-btn {
        display: none !important;
    }

    .x-close-btn {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .x-saveCard-main {
        flex-direction: column;
        gap: 20px;
    }

    .x-navbar-left {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background-color: #FDFDFD;
        z-index: 1050;
        transition: left 0.3s ease-in-out;
        box-shadow: 4px 0 14px rgba(0, 0, 0, 0.1);
        padding: 0;
        overflow-y: auto;
        display: flex;
    }

    .x-navbar-left .x-profile-nav {
        display: block;
        gap: 20px;
        box-shadow: none;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        padding-left: 1rem;
        padding-right: 1rem;
        position: relative;
    }

    .x-menu-btn {
        display: block;
        padding: 8px 15px;
        font-size: 1rem;
        cursor: pointer;
    }

    .x-close-btn {
        display: block;
    }

    #menu-toggle:checked+.x-navbar-left {
        left: 0;
    }

    #menu-toggle:checked~.x-content-wrapper::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
    }

    .x-content-wrapper {
        position: relative;
        z-index: 1;
    }
}


@media (max-width: 991px) {

    .x-navbar-left .x-profile-nav {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        display: flex;
        align-items: center;
    }

    .x-gap {
        --bs-gutter-y: 25px;
    }
}

@media (max-width: 767px) {

    .x-profile-info ul li a {
        font-size: 14px;
    }

    .x-data-header-title {
        font-size: 22px;
        line-height: 32px;
    }

    .x-saveCard-main {
        padding: 15px !important;
    }
}

@media (max-width: 575px) {

    .x-saveCard-main {
        padding: 15px !important;
    }

    .x-profile-info ul li {
        padding: 12px 15px;
    }

    .row.x-gap>div {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .x-data-header-title {
        font-size: 20px;
    }

    .x-font-18 {
        font-size: 16px;
    }
}