﻿* {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}


::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #b03995;
    cursor: pointer;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #b03995;
    }


.popup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.popup_toolbar {
    background-color: #b03995;
    padding: 15px;
    color: white;
}

.popup_content {
    padding: 15px;
}

html, body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 90%;
    margin: 50px auto;
}

    main > div {
        width: 100%;
    }

#logo {
    width: 40%;
}

#reservation_bar {
    width: 80%;
    margin: 10px auto;
    text-align: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    overflow: hidden;
}

.reservation_bar_button {
    width: 100%;
    padding: 15px;
    color: white;
    background-color: #b03995;
}

#people_container {
    width: 100%;
    overflow-y: scroll;
}

.people {
    justify-content: flex-start;
    text-align: start;
}

    .people i {
        color: #737373;
    }

.itemPayementMethod {
    max-width: 50px;
}

.little_logo {
    max-width: 13px;
}

input[type=text], input[type=password], input[type=numner], input[type=email], select {
    width: 100%;
    padding: 10px 0;
    text-indent: 10px;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    margin-top: 10px;
}

md-select {
    min-width: 50%;
    margin: 0;
    width: 100%;
    padding: 5px 0;
    text-indent: 10px;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    margin-top: 10px;
    background-color: white;
    text-align: start;
}

md-select-value {
    width: 1px;
    border: none!important;
}

.backgroundFade {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    display: flex;
}

h1, h2, h3, h4, h5, h6 {
    color: #b03995;
}

fieldset {
    border-radius: 5px;
    border: 1px solid #d9d9d9;
}

.text-primary {
    color: #b03995;
}

.mt1 {
    margin-top: 10px;
}

.mb1 {
    margin-bottom: 10px;
}

.flex {
    display: flex;
    gap: 5px;
}

.column {
    flex-direction: column;
}

.row {
    flex-direction: row;
    align-items: center;
}

.flex1 {
    flex: 1;
}

.centertext {
    text-align: center;
}

.pointer {
    cursor: pointer;
}

.p15 {
    padding: 15px;
}

.w90 {
    width: 90%;
}

hr {
    border: 1px solid #d9d9d9;
    width: 100%;
}

.content-p15 md-content {
    padding: 15px 0;
    overflow-x: hidden;
}

.button {
    flex: 1;
    padding: 15px;
    background-color: #b03995;
    margin: 10px auto;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    border: none;
}


button:disabled {
    background-color: #e0b1d6;
}

.errorbox {
    background-color: #FFC6C6;
    border: 1px solid #CE4B60;
    padding: 15px;
    border-radius: 5px;
    position: relative;
}

.close_errorbox {
    color: #CE4B60;
    position: absolute;
    top: 0;
    right: 4px;
    font-size: 1.5em;
    cursor: pointer;
}

.warningbox {
    background-color: #fff6c7;
    border: 1px solid #cfb94a;
    padding: 15px;
    border-radius: 5px;
    position: relative;
}

.close_warningbox {
    color: #cfb94a;
    position: absolute;
    top: 0;
    right: 4px;
    font-size: 1.5em;
    cursor: pointer;
}

.closeCross {
    background-color: white;
    color: #b03995;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 100%;
    padding: 0;
    line-height: 0em;
    font-size: 1.5em;
    border: none;
    align-self: flex-end;
}

.popup_toolbar .closeCross {
    background-color: #b03995;
    color: white;
}

.text-success {
    color: #4caf50;
}

.slide {
    transition: 1s ease max-height !important;
    max-height: 500px;
}

    .slide.ng-hide {
        max-height: 0;
    }

md-select-menu md-content {
    overflow-x: hidden;
}

input.ng-invalid-required.ng-touched {
    border-color: lightcoral;
}

.white-space {
    white-space: pre;
}

/* typical tablet screen resolution */
@media only screen and (min-width : 834px) {
    main > div {
        width: 50%;
    }
}