﻿/* Contact Form Styles */
#divContactForm {
    text-align: center;
}

    #divContactForm label {
        width: 100%;
        font-size: 16pt;
        color: #fff;
        text-align: left;
    }

.contact-ctrl {
    width: 100%;
    margin-top: 10px;
    color: #333333;
}

.txt-error {
    background-color: #ffd5d5 !important;
}

#divContactFormSent {
    padding: 33px;
    border: dashed;
}

.contact-btn {
    color: #333333;
}

    .contact-btn:hover {
        color: #333333;
    }


/* Modal Styles */
.modalWrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    text-align: center;
    background-color: #333333d9;
    z-index: 9999;
}

.modalMain {
    max-width: 400px;
    max-height: 70vh;
    overflow: auto;
    margin: auto;
    background-color: white;
    padding: 40px;
    position: relative;
    top: 15%;
}

.modal-instruction {
    font-size: 14pt;
    color: #656565;
    margin-bottom: 20px;
}

.modalClose {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 27pt;
    color: #333333;
}
 

/* Button Styles */
.button-outline {
    background-color: transparent;
    border: solid 2px #d8d8d8;
    color: #fff !important;
}

    .button-outline:hover {
        color: #333333 !important;
    }

.button-small {
    line-height: 4rem;
    height: 4rem;
}

    .button-small:visited {
        color: #000;
    }

        .button-small:visited:hover {
            color: #fff;
        }
