.text-primary{
    color:black !important;
}
html{
    height:100%;
}
body {
    background-color: #d0c9c92b;
    background-image: var(--url-background-image);
    background-repeat: no-repeat;
    background-attachment: fixed;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    min-height :100%;
}
.box-in-middle {
    display: flex;
    margin-top: 0;
}
.box{
    background: #ffffff;
    border:1px solid var(--azul-claro);
    border-radius: 5px;
    box-shadow: 1px 0 5px rgba(0,0,0,.1);
    width: 575px;
    text-align:left;
    padding:20px 20px;
    margin: auto;
}
.box img{
    margin:auto;
}
.box h1{
    font-size: 18px;
    margin-top:0;
    margin-bottom: 6px;
}
input[type="submit"]{
    margin-bottom:10px;
    border:none;
}
input[type=radio].user_type {
    display: none;
}
#user-profile label {
    border: 1px solid var(--btn-accept);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: var(--btn-accept);
    color: #fff;
    cursor: pointer;
    width: 50%;
    float: left;
    text-align: center;
    padding: 6px;
    margin: 3px 25%;
}
#user-profile label:hover {
    border-color: var(--btn-accept-hover);
}
.bg-light{
    background:#ddd;
    width:400px;
    text-align:center;
    margin:auto;
    padding-top:8px;
    padding-bottom:8px;
}
.checkbox label{
    padding-left:0;
}
.logo {
    margin-bottom: 12px;
}
.animation{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
.flipInX {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    backface-visibility: visible !important;
    animation-name: flipInX;
}
.help-block{
    float: left;
}
.bv-form .help-block{
    margin-bottom: 10px;
}
span.help-block{
    color:#a94442 !important;
}
.form-control {
    margin-bottom: 6px;
}
#reg_form {
    display: flex;
}
div#reg_form>div{
    display: none;
    width: 100%;
}
#back-button.active,
div#reg_form div.active {
    display: block;
}
.box>p {
    margin: 12px 0 0 0;
}
#back-button {
    cursor: pointer;
    display: none;
    float: right;
}
#legal-notice {
    font-size: 12px;
    margin-top: 12px;
}
#bDirectionForm {
    display: none;
    height: 100vh;
    background-color: rgba(255,255,255,0.5);
}
#geocoding_form {
    float: left;
    width: 100%;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
}
#geocoding_form .input,
#geocoding_form .input *{
    float: left;
}
#geocoding_form .input {
    display: flex;
    align-items: center;
}
#geocoding_form input[type="text"] {
    padding: 6px;
    border-radius: 5px 0 0 5px;
    border: 1px solid;
    border-right: 0;
}
#geocoding_form input[type="submit"] {
    padding: 6px;
    margin-bottom: 0;
    border: 1px solid;
    border-left: 0;
    border-radius: 0 5px 5px 0;
}
#openMap:hover {
    color: #000;
}
#map1 {
    height: calc(100vh - 100px) !important;
    width: 100% !important;
    position: relative;
}
#closeMap,
#acceptDirection {
    background-color: white;
    color: black;
    margin-left: 24px;
    padding: 6px;
    line-height: 2;
}
#closeMap {
    margin-left: 6px;
}
/*
#acceptDirection:hover {
    background-color: var(--azul-oscuro);
}
*/
.loading_map {
    position: absolute;
    left: -100%;
}
.controls {
    margin-top: 10px;
    border: 1px solid transparent;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 32px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
#pac-input {
    background-color: #fff;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    margin-left: 12px;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
    width: 300px;
}

#pac-input:focus {
    border-color: #4d90fe;
}

.pac-container {
    font-family: Roboto;
}
#address_info {
    display: none;
}
.form-control label {
    margin-bottom: 0;
}
@media (min-width:320px) and (max-width:425px){
    .box{
        width:100% !important;
    }
}
