.popup {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.popup__content {
    padding: 20px 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    box-shadow: 0px 2px 16px rgba(0, 24, 26, 0.12);
    border-radius: 8px;
    overflow: hidden;
    width: 660px;
    height: 240px;
}

.popup__text {
   
}

.popup__btn-container {
    width:85px;
    height:38px;
    text-align: center;
    cursor:pointer;
    background: #E6F2F3;
    border-radius: 4px;
    padding: 8px 16px;
    letter-spacing: 0.2px;
    text-transform: uppercase;  
    color: #007983;
    float: right;
    font-weight: 600;
    margin-top:18px;
}


@media only screen and (max-width: 768px) {
    .popup__content {
        width: 80vw;
        padding: 30px;
        height:auto;
    }
}

