
/*
    Modal styles
*/
.modal {
    position: fixed;
    display: none;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #fff;
    color: #1892bf;
    font-size: 2em;

    padding: 30px;
    border-radius: 20px;
    z-index: 100;
}

.modal-header {
    text-align: left;
}

.modal-header .icon {
    height: 77px;
    padding-right: 24px;
}
.modal-header .modal-title {
    display: inline-block;
    vertical-align: top;
}
.modal-header .modal-title h1 {
    font-family: 'Montserrat';
    font-size: 22px;
    color: #4a4a4a;
    margin-top: 0;
}
.modal-header .modal-title h2 {
    margin-top: 10px;
    font-family: 'Montserrat';
    font-size: 20px;
    color: #9b9b9b;
    font-weight: 300;
}
.modal-body {
    max-width: 483px;
}
.modal-body p {
    font-family: 'Open Sans', 'Lato', sans-serif;
    font-size: 20px;
    color: #4a4a4a;
    text-align: left;
}
.modal-footer {
    display: inline-block;
}
.btn {
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.7);
    color: #fff;
    background-color: #1892bf;
    text-align: center;
    font-family: 'Open Sans', 'Lato', sans-serif;
    margin: 0 auto;
    padding: 15px 18px;
    font-size: 18px;

    transition: box-shadow 0.3s ease;
}
.hoverstates .btn:hover {
    box-shadow: 0 4px 7px rgba(0,0,0,0.7);
}
.disabled {
    color: #9f9f9f !important;
    background-color: #dfdfdf !important;
    box-shadow: none !important;
}
.flat-btn {
    background-color: transparent !important;
    color: #4a4a4a !important;
    box-shadow: none !important;
    font-size: 18px;
}
.hoverstates .flat-btn:hover {
    background-color: rgba(0,0,0,0.1) !important;
}

@media (max-width: 700px) {
    .modal {
        font-size: 1em;
        padding: 10px;
    }
    .modal-header .icon {
        height: 33px;
        padding-right: 10px;
    }
    .modal-header .modal-title h1 {
        font-size: 12px;
    }
    .modal-header .modal-title h2 {
        margin-top: 10px;
        font-size: 12px;
    }
    .modal-body {
        max-width: 700px;
    }
    .modal-body p {
        font-size: 12px;
    }
    .modal-footer {
        display: inline-block;
    }
    .btn {
        padding: 15px 18px;
        font-size: 14px;
    }
    .flat-btn {
        font-size: 14px;
    }
}

