* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
}

a {
    text-decoration: none;
}

:root {
    --primary-color: #1da1f2;
    --secondary-color: #ffffff;
    --third-color: #003f73;
    --fourth-color: rgb(162, 159, 159);
    --five-color: #161616;
    --fonttext-montserrat: "Montserrat", sans-serif;
    --fonttext-poppins: "Poppins", sans-serif;
    --fonttext-open-sans: "Open Sans", sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    margin-top: 5rem;
}

#loading-data {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    z-index: 200;
    background: rgba(255, 255, 255, 0.6);
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: var(--primary-color);
    animation: l15 1s infinite linear;
    filter: brightness(100%);
    -webkit-filter: brightness(100%);
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
    animation: l15 2s infinite;
}

.loader::after {
    margin: 8px;
    animation-duration: 3s;
}

@keyframes l15 {
    100% {
        transform: rotate(1turn)
    }
}

.loading-data-text {
    font-size: 14px;
    font-family: var(--fonttext-poppins);
    letter-spacing: .2px;
    line-height: 1.52em;
    color: rgba(128, 128, 128);
}

.no-data-found {
    font-size: 14px;
    font-family: var(--fonttext-poppins);
    letter-spacing: .2px;
    line-height: 1.52em;
    color: rgba(128, 128, 128);
    text-align: center;
    margin-top: 11px;
}

.box-popup-info.active {
    display: flex;
}

.box-popup-info {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 14px;
    display: none;
    flex-direction: column;
    gap: 11px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 300;
}

.card-popup-info {
    display: flex;
    padding: 14px;
    background: #fafaff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    max-width: 350px;
    width: 100%;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.card-popup-info img {
    width: 100%;
    object-fit: contain;
} 

.icon-close-popup-info {
    width: 35px;
    height: 35px;
    background: red;
    color: #fafaff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@media (max-width: 600px) {
    .card-popup-info {
        max-width: 80vw;
    }
}