.contact-us {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: var(--overlay-color);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    & div.contact-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        box-shadow: 2px 2px 4px #000;
        height: 600px;
        width: 800px;
        text-align: left;
        box-sizing: border-box;
        padding: 0%;
        margin: 0;
        border-radius: 12px 0 12px 0;
    }
    & input[type=text], textarea {
        padding: 8px;
        font-size: 18px;
        border: solid 1px #ABB2B9;
        border-radius: 8px;
        width: 95%;
        resize: none;
    }
    & textarea {
        padding-left: 12px;
        padding-right: 12px;
        height: 160px;
        border-radius: 12px 0 12px 0;
    }
    & input[type=button] {
        padding: 8px 20px 8px 20px;
        font-size: 18px;
        color: #fff;
        background-color: #079fd7;
        border: solid 1px #ABB2B9;
        border-radius: 25px;
        cursor: pointer;
        &:hover {
            color: #079fd7;
            background-color: transparent;
            box-shadow: 2px 2px 4px #000;
        }
    }
    & input[type=button].contact-cancel {
        background-color: transparent;
        border-color: transparent;
        color: #079fd7;
        color: #515A5A;
    }
}

.contact-us-show {
    opacity: 1;
    pointer-events: all;
    transition: all 0.3s;
}

.contact-section {
    position: relative;
    width: 50%;
    margin: 0;
    font-size: 18px;
    color: #515A5A;
    float: left;
    &::after {
        content: '';
        clear: both;
    }
    & table {
        position: relative;
        width: 90%;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;

    }
    & td {
        padding: 12px 0 0 0;
    }
    & td.contact-actions {
        text-align: right;
    }
    & h1, h2, h3, h4 {
        position: relative;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        margin-bottom: -10px;
    }
}

.contact-left {
    bottom: 10px;
    border: solid 1px #ABB2B9;
    border-radius: 12px 0 12px 0;
    margin-top: 20px;
    margin-left: 20px;
    height: 560px;
}

.contact-email {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    &::before {
        content: '✉ ';
        vertical-align: text-top;
    }
}

.contact-phone {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

#bn_cancel_message {
    margin-right: 6px;
}

.contact-form-errors {
    margin-top: 40px;
    color: #ff0000;
    list-style: circle;
}

.contact-form-errors li {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    font-size: 1.2rem;
    margin: 2px 0 2px 0;
}

.contact-form-errors li.show {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.contact-box::before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url( "../img/GlobeNoBG.png" ) -400px 0 no-repeat;
    opacity: .15;
}

.contact-spinner-box {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    height: 100%;
    background-color: rgba(255,255,255,.50);
    text-align: center;
    align-content: center;
    font-size: 2rem;
    height: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    border-radius: 12px 0 12px 0;
}

.contact-spinner-label {
    background-color: #3d9bf3;
    padding: 20px;
    box-shadow: 2px 2px 4px #000;
    color: #FFF;
    min-width: max-content;
    text-shadow: 1px 1px 2px #000;
}

.contact-spinner-box-open {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.2s ease-in-out;
};
