.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-button-secondary);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-container {
    position: relative;
    width: 200px;
    height: 200px;
    z-index: 10000;
}

.loading-container .logo-home {
    background: url('/img/logo/logo-njdweb-100x100.png') no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 77px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    padding: 8px;
    height: 100px;
    transform: translate(-50%, -50%);
    z-index: 10;
    object-fit: cover;
}

.loading-container .logo-home-auth {
    background: url('/img/logo/icon-njdweb-authentifications-100x100.png') no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 77px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    padding: 8px;
    height: 100px;
    transform: translate(-50%, -50%);
    z-index: 10;
    object-fit: cover;
}

.loading-container .logo-home-service {
    background: url('/img/logo/ico-njdweb-service-100x100.png') no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 77px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    padding: 8px;
    height: 100px;
    transform: translate(-50%, -50%);
    z-index: 10;
    object-fit: cover;
}

.loading-container .logo-users {
    background: url('/img/logo/icon-njdweb-user-100x100.png') no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 77px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    padding: 8px;
    height: 100px;
    transform: translate(-50%, -50%);
    z-index: 10;
    object-fit: cover;
}

.loading-container .logo-home-payment {
    background: url('/img/logo/icon-njdweb-delivray-100x100.png') no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 77px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    padding: 8px;
    height: 100px;
    transform: translate(-50%, -50%);
    z-index: 10;
    object-fit: cover;
}

.spinner {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 160px;
    height: 160px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid transparent;
    border-right-color: var(--color-text-button-primary);
    position: relative;
    animation: l24 1s infinite linear;
}

.spinner:before,
.spinner:after {
    content: "";
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    border: inherit;
    animation: inherit;
    animation-duration: 2s;
}

.spinner:after {
    animation-duration: 4s;
}

@keyframes l24 {
    100% {
        transform: rotate(1turn)
    }
}

@media screen and (max-width: 980px) {
    .loading-container .logo-home {
        background-size: 67px;
        width: 80px;
        height: 80px;
    }

    .loading-container .logo-home-auth {
        background-size: 67px;
        width: 80px;
        height: 80px;
    }

    .loading-container .logo-home-service {
        background-size: 67px;
        width: 80px;
        height: 80px;
    }

    .loading-container .logo-users {
        background-size: 67px;
        width: 80px;
        height: 80px;
    }

    .loading-container .logo-home-payment {
        background-size: 67px;
        width: 80px;
        height: 80px;
    }

    .spinner {
        top: 15%;
        left: 15%;
        width: 140px;
        height: 140px;
    }

    .container-slid {
        height: 400px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
}

@media screen and (max-width: 736px) {
    .loading-container .logo-home {
        background-size: 57px;
        width: 60px;
        padding: 6px;
        height: 60px;
    }

    .loading-container .logo-home-auth {
        background-size: 57px;
        width: 60px;
        padding: 6px;
        height: 60px;
    }

    .loading-container .logo-home-service {
        background-size: 57px;
        width: 60px;
        padding: 6px;
        height: 60px;
    }

    .loading-container .logo-users {
        background-size: 57px;
        width: 60px;
        padding: 6px;
        height: 60px;
    }

    .loading-container .logo-home-payment {
        background-size: 57px;
        width: 60px;
        padding: 6px;
        height: 60px;
    }

    .spinner {
        top: 20%;
        left: 20%;
        width: 120px;
        height: 120px;
    }

    .container-slid {
        height: 320px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
}

@media screen and (max-width: 480px) {
    .loading-container .logo-home {
        background-size: 47px;
        width: 50px;
        padding: 5px;
        height: 50px;
    }

    .loading-container .logo-home-auth {
        background-size: 47px;
        width: 50px;
        padding: 5px;
        height: 50px;
    }

    .loading-container .logo-home-service {
        background-size: 47px;
        width: 50px;
        padding: 5px;
        height: 50px;
    }

    .loading-container .logo-users {
        background-size: 47px;
        width: 50px;
        padding: 5px;
        height: 50px;
    }

    .loading-container .logo-home-payment {
        background-size: 47px;
        width: 50px;
        padding: 5px;
        height: 50px;
    }

    .spinner {
        top: 25%;
        left: 25%;
        width: 100px;
        height: 100px;
    }

    .container-slid {
        height: 220px;
        margin-bottom: 10px;
        padding: 0 2px;
    }
}

/* Skeleton effect */
.skeleton {
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
}


@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}


/* loading */

/* card */

.skeleton.books {
    width: 150px;
    height: 195px;
    border: var(--size-border-solid) solid transparent;
    border-radius: var(--border-raduis-default);
    padding: 5px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.skele {
    display: flex;
    justify-content: space-between;
}

.skele .spandiv {
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.skele-content {
    padding: 10px;
    text-align: center;
}

.skele-content a {
    margin-top: 10px;
}

.skele-content .btn-card-book {
    height: 33px;
}

.pagination-skeleton {
    list-style: none;
    padding: 0;
    align-items: center;
    border-radius: 5px;
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
}

.pagination li {
    padding: 8px 12px;
    margin: 2px;
    border: var(--size-border-solid) solid var(--color-border-button-secondary);
    cursor: pointer;
    color: var(--color-text-button-primary);
    border-radius: 4px;
    transition: 0.3s ease-in-out;
    width: 30px;
    height: 30px;
}

.skeleton-img-comment {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skeleton-title-comment {
    width: 200px;
    height: 20px;
    border-radius: 5px;
}

.skeleton-subtitle-comment {
    width: 150px;
    height: 15px;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.skele-comment {
    display: flex;
    gap: 8px;
}

.skele-comment .spandiv {
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.skeleton-message-comment {
    width: 100%;
    height: 100px;
    border-radius: var(--border-raduis-default);
    margin-top: 20px;
}

.skeleton-review-content {
    width: 100%;
}

.skeleton-img-books {
    max-width: 350px;
    border-radius: var(--border-raduis-default);
    height: 500px;
}

.skeleton-title-books {
    width: 100%;
    height: 50px;
    border-radius: var(--border-raduis-default);
}

.skeleton-img-author-books {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.skeleton-title-author-books {
    width: 200px;
    height: 25px;
    border-radius: 5px;
}

.skeleton-message-books {
    width: 100%;
    height: 100px;
    border-radius: var(--border-raduis-default);
    margin-top: 20px;
}

.skeleton-propriety-book {
    width: 40px;
    height: 40px;
    border-radius: var(--border-raduis-default);
}

.skeleton-result-books {
    width: 60%;
    height: 40px;
    border-radius: var(--border-raduis-default);
}

.skeleton-btn-books {
    width: 180px;
    height: 50px;
    border-radius: var(--border-raduis-default);
}

.modal-shadow {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--background-over-play);
    z-index: 100;
}

.skeleton-nav-user {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Overlay */
.overlay-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-over-play);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Loader */
.container-verifysx {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-icon-secondary);
}

.container-verifysx p {
    margin-top: 10px;
    font-weight: 700;
    color: var(--color-text-button-primary) !important;
}

.container-verifysx .verifysx {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 60px;
    height: 60px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid transparent;
    border-right-color: #7CACF8;
    position: relative;
    animation: l24 1s infinite linear;
}

.container-verifysx .icon-check-circle {
    position: absolute;
    top: 0%;
    left: 0%;
    font-size: 55px;
    position: relative;
    color: var(--green);
}

.container-verifysx .icon-times-circle {
    position: absolute;
    top: 0%;
    left: 0%;
    font-size: 55px;
    position: relative;
    color: var(--red);
}

.container-verifysx .icon-warning {
    position: absolute;
    top: 0%;
    left: 0%;
    font-size: 55px;
    position: relative;
    color: var(--yellow);
}

.container-verifysx .verifysx:before,
.container-verifysx .verifysx:after {
    content: "";
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    border: inherit;
    animation: inherit;
    animation-duration: 2s;
}

.container-verifysx .verifysx:after {
    animation-duration: 4s;
}

@keyframes l24 {
    100% {
        transform: rotate(1turn)
    }
}


.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-container::after {
    content: attr(data-tooltip);
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 100;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;

    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
}

.tooltip-container:hover::after {
    opacity: 1;
    visibility: visible;
}


.snake-thread {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(0, 150, 255, 0.7);
    border-radius: 50%;
    pointer-events: none;
    position: absolute;
    opacity: 1;
    transition: opacity 0.5s;
    z-index: 9999;
}

#messageCheck {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    font-family: sans-serif;
    z-index: 1000;
    background-color: rgba(60, 64, 67, .9);
    border-radius: 4px;
    color: var(--white);
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    letter-spacing: .3px;
    line-height: 16px;
    margin-top: 4px;
    padding: 8px 12px;
    white-space: normal;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#messageCheck span {
    font-size: 16px;
    margin-left: 4px;
    margin-right: 4px;
}

@media screen and (max-width: 736px) {
    #messageCheck {
        font-size: 14px;
        width: 80%;
    }

    #messageCheck span {
        font-size: 14px;
        width: 80%;
    }
}

#messageCheckSystem {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    font-family: sans-serif;
    z-index: 1000;
    background-color: rgba(60, 64, 67, .9);
    border-radius: var(--border-raduis-default);
    color: var(--white);
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    letter-spacing: .3px;
    line-height: 16px;
    margin-top: 4px;
    padding: 12px 14px;
    white-space: normal;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#messageCheckSystem span {
    font-size: 20px;
    margin-left: 4px;
    margin-right: 4px;
}

#messageCheckSystem span.icon-warning {
    color: var(--yellow);
    font-size: 24px;
}

#messageCheckSystem span.icon-error {
    color: var(--red);
    font-size: 24px;
}

#messageCheckSystem span.icon-check {
    color: var(--green);
    font-size: 24px;
}

@media screen and (max-width: 736px) {
    #messageCheckSystem {
        font-size: 14px;
        width: 80%;
    }

    #messageCheckSystem span {
        font-size: 16px;
        width: 80%;
    }

    #messageCheckSystem span.icon-warning {
        color: var(--yellow);
        font-size: 18px;
    }

    #messageCheckSystem span.icon-error {
        color: var(--red);
        font-size: 18px;
    }

    #messageCheckSystem span.icon-check {
        color: var(--green);
        font-size: 18px;
    }
}

.skeleton-titlesw {
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    width: 100%;
    height: 60px;
    border-radius: 5px;
}

.skeleton-descriptionsw {
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    width: 80%;
    height: 40px;
    border-radius: 5px;
}

.skeleton-imagesw {
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    width: 100%;
    height: 237px;
    border-radius: 5px;
}

.skeleton-btn-book {
    width: 100%;
    height: 25px;
    border-radius: 5px;
}

.minLoadingx {
    width: 20px;
    height: 20px;
    padding: 10px;
    border: 3px solid #3498db;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.background-image-sckeleton {
    height: 40vh;
    width: 100%;
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    border-top-left-radius: var(--border-raduis-default);
    border-top-right-radius: var(--border-raduis-default);
}

.profile-picture-skeletion {
    margin-left: 40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    border: 4px solid white;
}

.profil-name .skeleton-title {
    width: 350px;
    height: 30px;
    border-radius: 5px;
    margin-top: 5px;
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
}

.profil-social-skeleton {
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    border-radius: var(--border-raduis-default);
    height: 45px;
    padding: 2px;
    width: 155px;
}

.profil-more-item .skeleton-title {
    width: 100px;
    height: 30px;
    border-radius: 5px;
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
}

.profil-name .skeleton-subtitle {
    margin-top: 10px;
    width: 250px;
    height: 20px;
    border-radius: 5px;
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
}

.profil-more-item .skeleton-subtitle {
    margin-top: 10px;
    width: 70px;
    height: 20px;
    border-radius: 5px;
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
}

.container-button-flux .skeleton-button {
    width: 150px;
    height: 40px;
    background: var(--linear-gradient-skeleton-primary);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    border-radius: var(--border-raduis-default);
}

@media screen and (max-width: 800px) {

    .profil-name .skeleton-title {
        width: 100%
    }

    .profil-more-item .skeleton-title {
        width: 100px
    }

    .profil-name .skeleton-subtitle {
        width: 100%;
    }

    .profil-more-item .skeleton-subtitle {
        width: 100px;
    }

    .background-image-sckeleton {
        height: 30vh;
    }

    .profile-picture-skeletion {
        margin: 0 auto;
    }
}

.container-slid {
    height: 650px;
    width: 100%;
    border-radius: 0;
    z-index: 12;
    text-align: center;
    margin-bottom: 40px;
    background: var(--bg-section-primary);
    border: var(--size-border-solid) solid var(--color-border-section-primary);
    border-radius: var(--border-raduis-default);
}


.slider_x {
    height: 100%;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    --_filter: blur(5px) saturate(200%);
    background: var(--bg-popup-message-primary);
    backdrop-filter: var(--_filter);
    -webkit-backdrop-filter: var(--_filter);
    border-radius: var(--border-raduis-default);
}

.slider_x__nav {
    width: 12px;
    height: 12px;
    margin: 2rem 12px;
    border-radius: 50%;
    z-index: 10;
    outline: 6px solid var(--color-border-input-primary);
    outline-offset: -6px;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 var(--bg-button-primary);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slider_x__nav:checked {
    -webkit-animation: check 0.4s linear forwards;
    animation: check 0.4s linear forwards;
}

.slider_x__nav:checked:nth-of-type(1)~.slider_x__inner {
    left: 0%;
}

.slider_x__nav:checked:nth-of-type(2)~.slider_x__inner {
    left: -100%;
}

.slider_x__nav:checked:nth-of-type(3)~.slider_x__inner {
    left: -200%;
}

.slider_x__nav:checked:nth-of-type(4)~.slider_x__inner {
    left: -300%;
}

.slider_x__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 400%;
    height: 100%;
    -webkit-transition: left 0.4s;
    transition: left 0.4s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-right: auto;
    margin-left: auto;
}

.slider_x__contents {
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-flow: row-reverse nowrap;
    -ms-flex-flow: row-reverse nowrap;
    flex-flow: row-reverse nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.slider_x-image {
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.slider_x-image img {
    max-width: 400px;
    height: auto;
    vertical-align: middle;
    border-style: none;
    box-sizing: border-box;
    width: 100%;
    height: auto;
}

.slider_x-texte {

    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;

}

.slider_x-texte-sub {
    text-align: left;
}

.slider_x__caption {
    font-weight: 600;
    margin: 0 0 10px 0;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    font-size: 29px;
}

@-webkit-keyframes check {
    50% {
        outline-color: var(--color-text-button-primary);
        box-shadow: 0 0 0 12px var(--color-text-button-primary), 0 0 0 36px var(--bg-button-primary);
    }

    100% {
        outline-color: var(--color-text-button-primary);
        box-shadow: 0 0 0 0 var(--color-text-button-primary), 0 0 0 0 var(--bg-button-primary);
    }
}

@keyframes check {
    50% {
        outline-color: var(--color-text-button-primary);
        box-shadow: 0 0 0 12px var(--color-text-button-primary), 0 0 0 36px var(--bg-button-primary);
    }

    100% {
        outline-color: var(--color-text-button-primary);
        box-shadow: 0 0 0 0 var(--color-text-button-primary), 0 0 0 0 var(--bg-button-primary);
    }
}

@media screen and (max-width: 800px) {

    .slider_x__contents .slider_x-texte {
        padding: 2em 1em 0.1em 1em !important;
    }

    .slider_x__contents .slider_x-texte h2 {
        font-size: 2em;
    }

    .slider_x__contents .slider_x-texte p {
        font-size: 1em;
    }

    .slider_x__contents {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        justify-content: center;
    }

    .slider_x-image img {
        max-width: 300px;
        height: auto;
    }

    .slider_x-texte,
    .slider_x-image {
        width: 100%;
        padding: 0;
    }

    .slider_x__caption {
        font-size: 24px;
    }

    .slider_x__txt {
        font-size: 16px;
    }

    .head-button a {
        display: inline-block;
        margin: 5px 10px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 480px) {
    .slider_x__contents .slider_x-texte {
        padding: 1em 0.5em 0em 0.5em !important;
    }

    .slider_x__contents .slider_x-texte h2 {
        font-size: 1.5em;
    }

    .slider_x__contents .slider_x-texte p {
        font-size: 1em;
    }

    .slider_x__contents {
        flex-direction: column;
        text-align: center;
        padding: 0.1rem;
        justify-content: center;
    }

    .slider_x-image img {
        max-width: 250px;
    }

    .slider_x__nav {
        margin: 1rem 6px;
        width: 10px;
        height: 10px;
    }

    .slider_x__caption {
        font-size: 20px;
    }

    .slider_x__txt {
        font-size: 14px;
    }
}