﻿.contact-box * {
    box-sizing:border-box;
    width:100%;
    margin:0px;
    padding:0px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.cm-text {
    color: #111;
    text-align:center;
}

.cm-title {
    font-size:32px;
    margin-bottom:20px;
    font-weight:bold;
}

.cm-header {
    font-size: 16px;
}

.contact-box {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    overflow: hidden;
    background-color: #808080a6;
    width: 100vw;
    height: 100vh;
    transition: opacity 0.2s linear;
    display: none;
    opacity:0;
}

.show {
    display: block;
}

.v-show {
    opacity: 1;
}

.contact-modal {
    background-color: #ebf4f6;
    border-radius: 15px;
    width: 420px;
    height: 740px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.contact-close {
    color: #111;
    float: right;
    font-size: 28px;
    line-height: 16px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 10px;
    margin-left: auto;
}

.contact-close:hover,
.contact-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.cm-icon {
    color:#111;
    position:absolute;
    font-size:24px;
    margin-top:18px;
    margin-left:16px;
    width:25px;
}

.title-row {
    /*margin-top: 20px!important;
    margin-bottom:75px!important;*/
}

.cm-radios {
    margin-top:15px;
    margin-bottom:15px;
}

.cm-radios > .cm-row {
    height:20px;
}

.cm-radios > .cm-row > label {
    color: #f1683a !important
}

.cm-row > input[type="radio"] {
    width:25%;
}

.cm-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cm-column {
    padding: 0px 2px;
    text-align:center;
}

.cm-input {
    border-radius: 0.725rem;
    border: none;
    height: 60px;
    padding: 0px 10px;
    color: #808080;
    font-size: 18px;
}

.cm-input::placeholder {
    color: #b0b0b0;
}
    
.icon-padding {
    padding-left:55px!important;
}

.cm-input:focus {
    outline: 1px solid #f3f3f3;
}

.cm-submit {
    padding: 14px;
    background-color: #242e4c;
    color: white;
}

.cm-submit:hover {
    background-color: #f1683a !important;
    box-shadow: 0 4px 10px -3px black;
}

.contact-footer {
    padding: 10px 25px;
    text-align: center;
    font-size:13px;
}

.warning {
    border:2px solid red;
}

.cm-alert {
    font-size:12px;
    font-weight:bold;
    color:red;
    text-align:center;
}

.fa {
    font-family: "Font Awesome 5 Free"!important;
}

@media only screen and (max-width: 450px) {
    .contact-modal {
        width: 95vw;
    }

    .captcha-container * {
        padding:0px!important;
        margin-left:auto;
        margin-right:auto;
    }

    /*div.g-recaptcha * {
        padding:0px!important;
        width:40%!important;
    }*/
}