body{
    font-family: -apple-system,BlinkMacSystemFont,Roboto,Helvetica Neue,sans-serif;
    background-color: #edeef0;
}

body {
    margin: 0;
    padding: 0;
}

a:link {color:black;}    /* normal link */
a:visited {color:black;} /* visited link */
a:hover {color:#007bb7}   /* mouse over link */
a:active {color:#007bb7}   /* selected link */

.container{
    /* Make the content flex to the middle vertically and horizontally.
       When the view port is too small don't cut away top part of the content.
       I.e. the content is positioned from the top border down. */
    display: flex;
    width: 100%;
    height: 100vh;
}

.wrapper{
    width: 346px;
    margin: auto;
}
.wrapper_content{
    width: 340px;
    overflow: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 3px #b9b9b9;
    margin: 3px;
}
.title {
    color: #000;
    font-size: 22px;
    margin: 0;
    font-weight: 600;
    text-align: center;
}
.select_zones{
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 18px;
    background-color: #fff;
    color: #313131;
    outline: none;
    cursor: pointer;
    padding: 7px 20px 7px 20px;
    border-radius: 50px;
    box-shadow: 0 0 4px #d6d6d6;
    text-overflow: ellipsis;
}
.select_zones:focus{
    box-shadow: 0 0 4px #ffd80c;
}
.input_form{
    width: 300px;
    font-size: 18px;
    padding: 9px 10px 9px 16px;
    border: 0;
    box-shadow: 0 0 4px #d6d6d6;
    outline: none;
    margin-bottom: 5px;
    border-radius: 50px;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
}
.input_form:focus{
    box-shadow: 0 0 4px #ffd80c;
}
.input_form_validated{
    width: 300px;
    font-size: 18px;
    padding: 9px 10px 9px 16px;
    border: 0;
    box-shadow: 0 0 4px #d6d6d6;
    outline: none;
    margin-bottom: 5px;
    border-radius: 50px;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
}
.input_form_validated:focus{
    box-shadow: 0 0 4px #ffd80c;
}
.input_form_submit{
    width: 300px;
    background-color: #ffd80c;
    padding: 10px 0 10px 0;
    color: #000;
    font-size: 18px;
    border-radius: 50px;
    border: 0;
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 4px #d6d6d6;
    appearance: none;
    -webkit-appearance: none;
}
.input_form_date_time{
    width: 110px;
    font-size: 18px;
    padding: 9px 10px 9px 16px;
    border: 0;
    box-shadow: 0 0 4px #d6d6d6;
    outline: none;
    margin: 0 0 10px 0;
    border-radius: 50px;
    appearance: none;
    -webkit-appearance: none;
    text-align: center;
    float: left;
}
.input_form_date_time:focus{
    box-shadow: 0 0 4px #ffd80c;
}
.input_date_container{
    width: 300px;
    display: flex;
    justify-content: space-between;
}
.button{
    width: 305px;
    background-color: #ffd80c;
    padding: 10px 0 10px 0;
    color: #000;
    font-size: 18px;
    border-radius: 50px;
    border: 0;
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 4px #d6d6d6;
    appearance: none;
    -webkit-appearance: none;
}
.button_disabled{
    background-color: #b3b3b3;
}
.select{
    position: relative;
    margin-bottom: 15px;
}
.select, .select_zones{
    width: 300px;
}
.select:after{
    content: "";
    display: block;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #000 transparent transparent transparent;
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 1rem;
    z-index: 1;
    margin-top: -3px;
}
.select_role{
    width: 300px;
    margin-bottom: 15px;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 18px;
    background-color: #fff;
    color: #313131;
    outline: none;
    cursor: pointer;
    padding: 7px 20px 7px 20px;
    border-radius: 50px;
    box-shadow: 0 0 4px #d6d6d6;
}
.select_role:focus{
    box-shadow: 0 0 4px #ffd80c;
}

.form_wrapper{
    margin: 0 20px 20px 20px;
}
.title_input{
    color: #000;
    font-size: 22px;
    margin: 10px 0 10px 0;
    font-weight: 600;
}
.user_img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 0 4px #525252;
    background-size: cover;
}
.success{
    width: 320px;
    padding: 15px 10px 15px 10px;
    background-color: #5fb053;
    box-shadow: 0 0 3px #b9b9b9;
    border-radius: 10px;
    margin: 3px 3px 15px 3px;
}
.error{
    width: 320px;
    padding: 15px 10px 15px 10px;
    background-color: red;
    box-shadow: 0 0 3px #b9b9b9;
    border-radius: 10px;
    margin: 3px 3px 15px 3px;
}
.result_title{
    color: #fff;
    font-size: 18px;
    margin: 0;
    text-align: center;
}
.data_wrapper{
    margin: 20px 20px 20px 20px;
}
.data_title{
    color: #000;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}
.margin_bottom{
    margin-bottom: 20px;
}
.small_margin_bottom {
    margin-bottom: 10px;
}
.data_description{
    margin: 5px;
    color: grey;
    font-size: 16px;
}
.in_zone_title{
    color: #000;
    font-size: 22px;
    margin: 0;
    font-weight: 600;
    text-align: center;
}
.in_zone_wrapper{
    background-color: #dfe4eb;
    padding: 15px 0 15px 0;
}

/* Tabs */
.section_wrapper{
    width: 340px;
    padding: 0;
    margin: 0 0 20px 0;
    overflow: hidden;
    border-bottom: 1px solid #e8e8e8;
}
.section_left{
    width: 140px;
    color: #000;
    font-size: 19px;
    background-color: #dfe4eb;
    text-decoration: none;
    float: left;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}
.section_right{
    width: 140px;
    color: #000;
    font-size: 19px;
    background-color: #dfe4eb;
    text-decoration: none;
    float: left;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}
::-webkit-input-placeholder{
    color: #000000;
    opacity: 1;
}
::-moz-placeholder{
    color: #000000;
    opacity: 1;
}
:-moz-placeholder{
    color: #000000;
    opacity: 1;
}
:-ms-input-placeholder{
    color: #000000;
    opacity: 1;
}

textarea::-webkit-input-placeholder {
    color: #c0c0c0;
}

textarea::-moz-placeholder {  /* Firefox 19+ */
    color: #c0c0c0;
}

textarea:-ms-input-placeholder {
    color: #c0c0c0;
}

textarea::placeholder {
    color: #c0c0c0;
}
/* Switch between tabs */
.display_none{
    display: none;
}
.background_color_activ{
    background-color: #fff;
}
.iti__flag {background-image: url("/assets/intl-tel-input/build/img/flags.png");}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {background-image: url("/assets/intl-tel-input/build/img/flags@2x.png");}
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0); }
.iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0); }

.flex_space_around {
    display: flex;
    flex-direction: row;
    justify-content: space-around
}

.flex_space_between {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}
.visited:invalid{
    box-shadow: 0 0 4px #ff0000;
}
.disabled_text{
    color: #c0c0c0;
}
.disabled_text:hover{
    color: #c0c0c0;
}