html,
body {
    height: 100%;
    font-family: Lato, Helvetica, sans-serif !important
}

body {
    margin: 0;
}

#app {
    max-width: 100%;
    height: 150%;
    margin: auto;
    background-color: #E6EAF4;
    font-size: 16px;
    background-size: cover;
    background-position-x: center;
}


/** header **/

#app .header-primary {
    width: 100%;
    height: 50px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
}

#app .header-primary span {
    margin: auto;
}

#app .header-secondary {
    width: 100%;
    height: 45px;
    background-color: white;
    color: #4B4B4B;
    display: flex;
    justify-content: flex-start;
}

#app .header-secondary span {
    margin: 10px;
}


/** box **/

#app .box {
    margin-top: 50px !important;
    min-height: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#app .box .content {
    width: 80%;
    max-width: 350px;
    background-color: white;
    margin: 0 auto 20px;
    padding: 15px;
    text-align: center;
    word-wrap: break-word;
    box-shadow: 1px 1px 3px #00000067;
}

#app .content h1 {
    font-size: 16px;
    color: #FE6F42;
    font-weight: 400;
}

#app .content h2 {
    font-size: 16px;
    color: #4B4B4B;
    font-weight: 400;
    margin: 20px 10px;
}

#app .content .bold-title {
    font-weight: bold;
    margin-bottom: 0;
}

#app .content p {
    margin: 5px 0;
}




/* Customer appointments */

.customer-appointments-separator-top {
    width: 50px;
    margin: 20px auto 0;
    height: 2px;
    background-color: #4B4B4B;
}

.customer-appointments-separator-bottom {
    width: 50px;
    margin: 15px auto;
    height: 2px;
    background-color: #4B4B4B;
}

#app .customer-appointments {
    color: #4B4B4B
}

#app .customer-appointments p {
    font-weight: 400;
}

#app .customer-appointments .customer-appointments-list-content {
    margin-bottom: 5px;
    margin-top: 0;
}

#app .customer-appointments-list {
    background-color: #F0F0F0;
    padding: 20px;
    font-size: 16px;
    margin-bottom: 10px;
}

#app .customer-appointments-list-type {
    font-weight: 600;
}

#app .customer-appointments-information {
    margin-bottom: 0;
}


/* type */

#app .appointment-type {
    width: 100%;
    min-height: 40px;
    background-color: #F0F0F0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

#app .appointment-type span {
    margin: auto;
    color: #4B4B4B;
    font-weight: 400;
    padding: 5px
}


/* date */

#app .date-slots-List {
    min-height: 90px;
    width: 100%;
    background-color: #F0F0F0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-content: space-around;
    ;
    border-radius: 3px;
}

#app .date-slots-List p {
    font-size: 13px;
    margin: 5px 0 10px;
    color: #6D7C8B;
}

#app .date-slots-List .date {
    margin: 10px 20px;
    color: #4B4B4B;
    display: flex;
    justify-content: left;
}

#app .date-slots-List .hour {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 10px 10px;
}

#app .date-slots-List .hour a {
    width: 18%;
    background-color: white;
    color: #4B4B4B;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 3px;
}

#app .date-slots-List .date-slots-more-hour {
    font-size: 14px;
    color: #434343;
    margin-bottom: 10px;
    font-weight: 500;
}

#app .date-slots-more-date {
    font-size: 18px;
    color: #4B4B4B;
    margin-bottom: 10px;
    font-weight: 600;
}


/* Button */

#app button {
    background-color: black;
    width: 100%;
    height: 40px;
    margin: 20px 0;
    border-radius: 3px;
    color: white;
    font-size: 16px;
    border: none;
}

#app .customer-appointments-list-remove {
    background-color: white;
    color: #D15959;
    height: 30px;
    width: auto;
    margin-bottom: 0;
    padding: 0 10px;
}

#app .confirm {
    font-weight: 900;
    height: 40px;
    padding: 0 20px;
}

#app button:focus {
    outline: none
}

#app .displayAppointments {
    margin-bottom: 0;
    background-color: #F0F0F0;
    color: #4B4B4B;
}


/* Adress */

#app address {
    font-style: normal;
    color: #4B4B4B;
}


/* Icon */

#app .icon {
    font-size: 30px;
}


/* Comment */

.appointment-comment textarea {
    width: 97%;
    border: 1px solid #9BA8B9;
    height: 40px;
    border-radius: 3px;
    font-size: 16px;
    margin-top: 20px;
    font-family: inherit;
}

.appointment-comment span {
    font-size: 14px !important;
}


/* input */

#app input {
    width: 93%;
    border: 1px solid #9BA8B9;
    height: 40px;
    border-radius: 3px;
    font-size: 16px;
    margin: 10px 0;
    padding: 0 10px;
}

.info-error {
    color: red;
    font-size: 14px;
}

.shop-information-custom-text {
    color: #4B4B4B;
}

.customer-create-consent-section span {
    display: inline-block;
    width: 5%;
    vertical-align: top;
}

.customer-create-consent-section p {
    width: 90%;
    display: inline-block;
    text-align: justify;
}

@media only screen and (min-width: 1000px) {
    #app {
        max-width: 700px;
        height: 1400px;
    }

    body {
        margin: auto;
    }
}

@media only screen and (max-width: 440px) {
    #app .date-slots-List .hour a {
        width: 16%;
        margin: 4px;
    }
}

@media only screen and (max-width: 370px) {
    #app .date-slots-List .hour a {
        width: 100%;
        margin: 5px;
    }
}