:root {
    --primaryColor: #2E3D62;
    --lightPrimaryColor: #686b6e;
    --secondaryColor: #5D50C5;
    --lightSecondaryColor: #F0EEFD;
    --activeLinkColor: #1B7F8B;
    --lightGrayBg: #E3E6EB;
    --transparentDropDown: #2e3d62da;
    --transparentColor: rgba(0, 0, 0, 0.548);
    --shadow: rgba(189, 188, 188, 0.514);
    --svgColor: #f8fafd;
    /* --------------------------------- */
    --whatsappColor: #25D366;
    --white: #ffff;
    --blue: #1877F2;
    --gray: #f8f8f8;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 20000;
    box-sizing: border-box;
}


.modal-content {
    box-sizing: border-box;
    background: white;
    padding: 60px 30px 30px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    position: relative;

}


.modal-image-section {
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 50%);
    width: 100%;
}

.modal-image-container {
    height: 700px;
    overflow-x: auto;
    overflow-y: auto;
    width: 100%;
}

.modal-image-container::-webkit-scrollbar {
    width: 5px
}

.modal-image-container::-webkit-scrollbar-track {
    background-color: var(--primaryColor)
}

.modal-image-container::-webkit-scrollbar-thumb {
    background-color: var(--lightSecondaryColor);
    background-image: linear-gradient(0deg, var(--lightSecondaryColor) 0%, var(--secondaryColor) 100%);
    border-radius: 5px
}


.modal img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.modal h2 {
    margin: 10px 0;
    color: var(--primaryColor);
}

.modal p {
    color: var(--secondaryColor);

}

.modal a {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-image: linear-gradient(90deg, var(--secondaryColor) 0%, var(--primaryColor) 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.modal .close {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    font-size: large;
    font-weight: bold;
    border-radius: 50%;
    background: var(--primaryColor);
    color: var(--white);
    align-content: center;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 8px var(--shadow);
    transition: 0.3s;
}

.modal .close:hover {
    background: var(--secondaryColor);
}