.popup {
    display: none;
}

.close-btn {
    cursor: pointer;
    z-index: 1000000;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 14px;
    height: 14px;
    background-color: #445383;
    border: none;   
    background-image: url("../images/cancel.png");
    background-size: contain;
    background-repeat: no-repeat;
}
  
.container-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translate(-50%);
    transform: translateY(-50%) translate(-50%);
    z-index: 10000;
    bottom: 0;
}

.cta-description {
    margin-top: 0;
    margin-bottom: 60px;
    font-size: 20px;
    color: white;
}

.input-cta {
    max-width: 100%;    
    width: auto;
    border: 2px solid white;
    border-radius: 4px;
    padding: 20px 37px;
    font-size: 22px;
    margin-bottom: 20px;
}

#cta-white {
    cursor: pointer;
    padding: 22px 45px;
    background-color: #EE6366;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

#popup {
    position: relative;  
    width: 100%;
    max-width: 640px;
    height: 100%;
    align-self: center;
    border-radius: 4px;
    background-color: #445383;
    color: white;
    text-align: center;
    padding: 80px 60px;
}

#icon {
    font-size: 3rem;
    margin-left: 0.5rem; 
    color: #445383;
}

.flex-container {
    display: flex;
    align-items: center;
}

.input-header {
    border-radius: 4px;
    border: 2px solid #eeeeee;
    padding-left: 1rem;
    padding-right: 1.8rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1rem;
}

.btn-custom {
    background-color: #ee6366;
    border: 2px solid #3e4964;
    color: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.margin-left {
    margin-left: 0.8rem;
}

.header-divider {
    margin-top:2rem;
    border:2px solid #ee6366;
}

.text-right-container {
    margin-right: 2rem;
}

@media (max-width: 960px) {
    .flex-container {flex-direction: column;
    }
    .title-center-container {
        text-align: center;
    }
    #btn-column {
        margin-left: 0;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .header-divider {
        display: none;
    }
    .text-right-container {
        margin-right: 0;
    }
}