/*BCTT Modal Styling*/

.modalView {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.modalView .header {
    margin: 32px 32px 24px;
    height: 40px;
}

.modalView .header .bancocttlogo {
    float: left;
}

.modalView .header .cetelemlogo {
    float: right;
}

.modalView .body {
    margin: 32px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.modalView .footer {
    text-align: center;
    margin: 32px;
    display: flex;
}

.modalView-content {
    margin: auto;
    border: 1px solid white;
    border-radius: 3px;
    max-height: 368px;
    max-width: 472px;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    display: inline-table;
}

.modalView-content button {
    margin: 0;
    font-weight: 600 !important;
    top: 0 !important;
    padding: 0;
    text-transform: none;
}

.modalView-content .modalViewPreviousBttn {
    width: 100%;
    height: 40px;
    max-width: 200px;
    background-color: #DADADA;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    margin-right: 8px;
    float: left;
}

.modalView-content .modalViewNextBttn {
    width: 100%;
    height: 40px;
    max-width: 200px;
    background-color: #EB3436;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
}

@media only screen and (max-width: 480px) {
    .modalView-content {
        max-height: 380px;
        max-width: 300px;
    }
    .modalView .header {
        margin: 16px 16px 12px;
        height: 20px;
    }
    .modalView .body {
        margin: 16px 16px 12px;
    }
    .modalView .footer {
        display: grid;
        justify-items: center;
        margin: 16px 16px 12px;
    }
    .modalView-content .modalViewPreviousBttn {
        margin-right: 0;
        margin-bottom: 8px;
    }
    .modalView .header .bancocttlogo {
        float: left;
        height: 20px;
        width: 80px;
    }
    .modalView .header .cetelemlogo {
        float: right;
        height: 22px;
        width: 80px;
    }
}