﻿.adoor-form select, .adoor-form input[type=text], .adoor-form input[type=email] {
    border-color: transparent;
    height: 45px;
    border-radius: 0;
    width: 100%;
    border: none;
    padding: .375rem .75rem;
}
.adoor-form textarea {
    height: 135px;
    resize: none;
    border-radius: 0;
    width: 100%;
    border: none;
    padding: .375rem .75rem;
}
.adoor-form select:focus, .adoor-form input[type=text]:focus, .adoor-form textarea:focus {
    color: #37373d;
    background-color: #fff;
    border-color: #b0c7ff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(97 142 255 / 25%)
}
.adoor-form select {
    cursor: pointer;
    padding-right: 2rem;
    background-image: url(../../assets/images/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) 50%;
}

.adoor-form .umbraco-forms-field {
    margin-top:20px;
}

.adoor-form .umbraco-forms-field-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: .5rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.adoor-form .checkbox .umbraco-forms-field-wrapper {
    flex-direction:column;
}

.adoor-form .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.adoor-form .umbraco-forms-label {
    width: 100%;
    font-size: 16px;
    transition: all .2s ease-in-out;
    margin: 0;
    cursor: pointer;
    margin-bottom:10px;
    font-weight:600;
}
.adoor-form .checkbox:last-child {
    margin-top: 30px;
}

.adoor-form .checkbox label {
    padding-left: 33px;
    font-size: 1.125rem;
    font-weight: 400;
}
.adoor-form .checkbox .help-block {
    position: relative;
    z-index: 1;
    padding-left: 35px;
    cursor: pointer;
}
.adoor-form input[type=checkbox] {
    position: absolute;
    content: "";
    top: 0px;
    left: 0;
    height: 25px;
    width: 25px;
    border: 2px solid rgba(55,55,61,.5);
    border-radius: 2px;
    cursor: pointer;
}
.adoor-form .btn {
    color: #fff;
    background: #6b8df7;
    border-color: #618eff;
    transition: all .3s ease-in-out;
}
.adoor-form .btn:hover, .adoor-form .btn:focus {
    background: transparent;
    color: #6b8df7;
    border-color: #7199ff;
}

.adoor-form .field-validation-error {
    margin-bottom: 10px;
    border-left: 3px solid #6b8df7;
    padding-left:7px;
}

.adoor-form .umbraco-forms-navigation {
    margin-top:30px;
}

@media (max-width:767px) {
    .adoor-form .umbraco-forms-navigation {
        margin-bottom:50px;
    }
}