﻿
/* ShowBanner Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.close-btn {
    /*    background-color: whitesmoke;
*/
    color: whitesmoke;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 50%;
    padding: 5px;
    z-index: 1201;
}

    .close-btn:hover,
    .close-btn:focus {
        color: black;
        text-decoration: none;
    }

.modal-header {
    background-color: #009892;
    width: 100%;
    height: 80px;
    padding: 10px;
}

.modal-content {
    background-color: #fefefe;
    width: 500px;
    max-height: 65%;
    padding: 0px 0px;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    overflow-y: auto;
}

.logo {
    display: inline-block;
    margin: 0 10px;
    align-content: center;
    margin-top: -40px;
}

h2 {
    padding-top: 2px;
    font-weight: bold;
    font-size: 22px;
}

p {
    margin: 10px 20px;
    color: black;
    font-weight: bold;
    font-size: 12px;
}

span {
    padding: 10px 20px;
}

.proceed-btn {
    background-color: #009892;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

    .proceed-btn:hover {
        background-color: #009892;
    }

.remind-btn {
    margin-bottom: 10px;
    padding: 10px 20px;
}
