﻿.modal-information {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.75);
    overflow: auto;
}

    .modal-information .modal-information-container {
        background-color: #fff;
        min-width: 20%;
        max-width: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 10px #000;
        padding: 20px;
        overflow: auto;
        max-height: 90%;
    }

    .modal-information .modal-information-message {
        font: normal normal normal 14px/18px Poppins;
        padding-top: 10px;
        padding-bottom: 10px;
    }

        .modal-information .modal-information-message em {
            font-style: italic;
            font-weight: normal;
        }


    .modal-information .modal-information-title {
        font: normal normal 600 16px/25px Poppins;
        color: #1A1A1A;
        opacity: 1;
        text-decoration: none;
        display: block;
    }

    .modal-information .buttonContainer {
        padding-top: 10px;
        padding-bottom: 10px;
        text-align: center;
    }


    .modal-information .popup-button-close {
        float: unset;
        background-color: gray;
        width: auto;
        padding: 0 10px;
    }

    .modal-information .color-white {
        color: white;
    }

    .modal-information .top-close-container {
        position: absolute;
        right: 0;
        padding: 0px 10px;
    }

    .modal-information .popup-button-top-close {
        color: #4B4A4A;
        text-decoration: none;
        font-size: 16px;
    }

.align-text-center {
    text-align: center;
}

.display-none {
    display: none;
}


@media only screen and (max-width: 1199px) {
    .modal-information {
        z-index: 9999;
    }

        .modal-information .modal-information-container {
            max-width: 70%;
            min-width: 70%;
        }
}


@media only screen and (max-width: 767px) {

    .modal-information {
        z-index: 9999;
    }

        .modal-information .modal-information-container {
            max-width: 90%;
            min-width: 90%;
        }
}
