﻿header#header {
    border-bottom: 1px solid #CECECE;
    padding: 25px 0px;
}

.inner_header {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.inner_footer {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#footer {
    border-top: 2px solid #f7a825;
    padding: 25px 0px;
    padding-bottom: 40px;
    width: 100%;
}

.copyright {
    width: 100%;
    color: #A5A5A5;
    font-size: 12px;
    font-family: Roboto;
    text-align: center;
}

.inner_header_mobile {
    display: none;
    margin: 0 5px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.no_opacity {
    opacity: 0;
}

.header_img_container {
    max-height: 400px;
    overflow: hidden;
    width: 100%;
    background-image: url('/img/doctor-cabinet-img.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
}

ul.services_list {
    list-style: none;
}

ul.services_list li::before {
    content: "\2022";
    color: #f7a825;
    font-weight: bold;
    display: inline-block;
    width: .5em;
    margin-left: -2em;
}

.form_input {
    border-width: 2px !important;
    border-radius: .8rem !important;
    border-color: #f7a825 !important;
    text-align: center !important;
}

.form_input::placeholder {
    color: darkgrey !important;
}

.form_input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 199, 105, 1) !important;
}

.form_input_container {
    width: 80%;
    text-align: center;
}

input[type=date].form_input_date {
    padding-left: 50px !important;
}

.radio_button {
    border-radius: 15px !important;
    border-width: 2px !important;
}

.radio_button.btn-secondary:not(:disabled):not(.disabled).active {
    color: white !important;
    background-color: #f6a012 !important;
    border-color: #f6a012 !important;
}

.radio_button.btn-secondary:not(:disabled):not(.disabled) {
    color: gray !important;
    background-color: white !important;
    border-color: #f6a012 !important;
}

.form_input.input-validation-error {
    border-color: red !important;
}

.submit_button {
    border-radius: 1rem !important;
    height: 40px;
    width: 110px
}

@media only screen and (min-width: 400px) {
    .header_img_container {
        height: 300px;
    }
}

@media only screen and (min-width: 500px) {
    .header_img_container {
        height: 400px;
    }
}

@media only screen and (min-width: 600px) {
    .header_img_container {
        height: 500px;
    }
}

@media only screen and (min-width: 800px) {
    .header_img_container {
        height: 700px;
    }
}

@media only screen and (max-width: 800px) {
    .inner_header {
        display: none;
    }

    .inner_header_mobile {
        display: flex;
    }

    header#header {
        border: 0;
    }
}

@media only screen and (max-width: 600px) {
    .inner_footer {
        flex-direction: column;
    }
}

.primary_color_background {
    background-color: #00539f !important;
}

.primary_color {
    color: #00539f !important;
}

.secondary_color_background {
    background-color: #f7a825 !important;
}

.secondary_color {
    color: #f7a825 !important;
}


.font_white {
    color: white !important;
}

.font_grey {
    color: grey;
}

.h1 {
    font-size: 2.5rem !important;
}

.h2 {
    font-size: 1.8rem !important;
}

.h3 {
    font-size: 1.2rem !important;
}

.h5 {
    font-size: .9rem !important;
}

@media only screen and (max-width: 600px) {
    .h1 {
        font-size: 1.8rem !important;
    }

    .h2 {
        font-size: 1.1rem !important;
    }

    .h3 {
        font-size: .8rem !important;
    }

    .h5 {
        font-size: .6rem !important;
    }
}

.price-box-del {
    color: gray;
}