.popup {
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    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-faq {
    justify-content: flex-start;
}
/*
    Cores
     "#E50051",
     "#FFCB03",
     "#924C97",
     "#019839",
     '#E42320',
     "#F39410",
     "#5299D3",
*/

.popup .popup-container {
    display: flex;
    flex-direction: column;
    width: 40%;
    border-radius: .5rem;
    background-color: #e2cbcb;
}

.popup-container-perguntas {
    background-color: white !important;
}

.popup .popup-header {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 5rem;
    padding: 1rem;
    border-radius: .5rem .5rem 0 0;
    background-color: #E42320;
    color: #fff;
}

.popup-container-success {
    background-color: #c0d7ea !important;
}
.popup-header-success {
    background-color: #5299D3 !important;
}

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

.popup .popup-header .title {
    height: 80%;
}

.popup .popup-header .close {
    position: absolute;
    right: 2rem;
    height: 35%;
    cursor: pointer;
}

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

.popup-text {
    font-size: 1.2rem;
    font-weight: normal;
}

.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;
    }
}



