.popup {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.75);
    z-index: 7000;
}


.popup .popup-container {
    display: flex;
    flex-direction: column;
    width: 40%;
    border-radius: .5rem;
    padding: 1rem;
}

.popup .popup-header {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.popup .popup-body {
    min-height: 10rem;
}

.popup .popup-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-title {
    font-size: 1.4rem;
}

.popup ::-webkit-scrollbar-track{
	border-radius:0;
	background-color: lightgray;
}

.popup ::-webkit-scrollbar{
	width: 12px;
	background-color: lightgray;
    border-style: solid;
}

.popup ::-webkit-scrollbar-thumb{
	border-radius:0;
    background-color: gray;
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .popup .popup-container {
        overflow: auto;
    }
    .popup .popup-body {
        overflow: auto;
    }
    .popup-container-faq {
        overflow: visible !important;
    }
    .popup .close{
        top: 12px !important;
        right: 4% !important;
        width: 100% !important;
        max-width: 5vw !important;
        cursor: pointer !important;
    }

    .popup-container {
        width: 80vw !important;
    }

    .popup-title {
        font-size: 5vw !important;
        text-transform: uppercase;
    }

    .popup-text {
        font-size: 4vw !important;
    }
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
    .popup .close{
        top: 12px;
        right: 4%;
        width: 100%;
        max-width: 5vw;
        cursor: pointer;
    }

    .popup-container {
        width: 70vw;
    }

    .popup-title {
        font-size: 3vw;
    }

    .popup-text {
        font-size: 2.2vw;
    }
}



