:root {
    --color_blue_nav: rgb(87,187,191);
    --color_green_yellow:#FAEEB3;
    --color_green: #FAEEB3;
}

.logo_navbar {
    width: 32px;
    height: 32px;
}

.navCustomerBooking {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}
  
.logoStbarth {
    font-size: 1.8rem;
}

.logoStbarth > img {
    max-width: 250px !important;
}   
  
.hamburger {
    padding-right: 20px;
    cursor: pointer;
}
  
.hamburger .line {
    display: block;
    width: 40px;
    height: 5px;
    margin-bottom: 10px;
    background-color: black;
}
  
.nav__link {
    position: fixed;
    width: 94%;
    top: 5rem;
    left: 18px;
    background-color: #FAEEB3;
    z-index: 1100;
}
  
.nav__link a {
    display: flex;
    text-align: center;
    padding: 10px 10px;
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.nav__link div {
    padding: 10px 10px;
}

.nav__link a:hover {
    color: var(--color_blue_nav);
}


.hide {
    display: none;
}
  
.dropdown_customer_style .dropbtn {
    border: none;
    outline: none;
    padding: 14px 16px;
    background-color: inherit;

    text-transform: uppercase;  
    color: black;
    font-size: 1.2rem;
}

.dropdown_customer {
    border: none;
    outline: none;
    padding: 14px 16px;
    background-color: inherit;

    text-transform: uppercase;  
    color: black;
    font-size: 1.2rem;
}


.dropbtn:hover {
    color: var(--color_blue_nav);
}

.dropdown_customer-content {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 100;
    top: 80px;
    
}
  
.dropdown_customer-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
  
.dropdown_customer-content a:hover {
    color: var(--color_blue_nav);
}
  
.dropbtn:hover .dropdown_customer-content {
    display: flex;
    color: var(--color_blue_nav);

}

@media screen and (min-width: 600px) {
    .nav__link {
      display: flex;
      position: static;
      width: auto;
      margin-right: 20px;
      background: none;
    }
  
    .nav__link a {
      display: inline-block;
    }
  
    .hamburger {
      display: none;
    }
}

@media screen and (max-width: 768px) {
    .loginForm {
        width: 95% !important;
    }
    .logoStbarth {
        display: flex !important;
    }   
    .logoStbarth > img {
        font-size: 1.8rem;
        min-width: 200px !important;
    }   
}  

/* Screen all categories */
.square_categories {
    background-color: white;
    color: black;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform .4s;
    cursor: pointer;
    max-width: 280px;
    max-height: 280px;
}

.square_categories:hover {
    transform: scale(1.06);
    color: black !important;
}

.text_square_cate {
    text-transform: uppercase !important;
    font-size: 1.5rem;
}

/* Screen category */
.title_category {
    background-color: #eaeaea54;
    font-size: 3rem;
    color: black;
    font-weight: bold;
    letter-spacing: 7px;
}

.title_article_cat {
    font-weight: bold;
    color: black;
}

.text_grey {
    color: grey;
}
.text_hyper_grey {
    color: rgb(189, 189, 189);
}

.btn_je_loue {
    background-color: black;
    color: white !important;
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform .2s;
    cursor: pointer;
}

.btn_je_loue:hover {
    transform: scale(1.06);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.div_size_category {
    /* width: 245px !important; */
    /* height: 245px !important; */
}

/* view page */

.text_bold {
    font-weight: bold !important;
}

.view_size_text {
    font-size: 1.5rem;
}
  
/* minus plus btn */
.input-group .button-minus,
.input-group .button-plus {
    font-weight: bold;
    width: 38px;
    position: relative;
    border-radius: 0;
    border: none;
}
  
.input-group .quantity-field {
    position: relative;
    left: -6px;
    text-align: center;
    width: 62px;
    display: inline-block;
    font-size: 13px;
}
  
.button-plus {
    left: -13px;
}

.quantity-field {
    -webkit-appearance: none !important;
    -moz-appearance: textfield !important;

    border-color: rgb(229, 229, 229);
    border-style: double;
}

.reservation_btn {
    background-color: #ddd;
    color: gray;
    border-radius: 0 !important;
}

.reservation_btn:hover {
    background-color: var(--color_green_yellow);
}

.cursor_pointer {
    cursor: pointer !important;
}

.dark_grey {
    background-color: rgb(171, 171, 171);
}

.green_bg {
    background-color: #FAEEB3;
}

/* Screen Basket */
.sous-total {
    background-color: rgb(238, 238, 238);
    border-top: solid 3px;
    border-top-color: var(--color_green);
}

.productsDiv {
    max-width: 400px;
}

.btnValiderPanier {
    background-color: var(--color_green);
    color: rgb(0, 0, 0);
    transition: transform .2s;
}

.btnValiderPanier:hover {
    background-color: #ffe76d;
    transform: scale(1.02);
    /* color: white; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.errorDates {
    border: solid 1px rgb(255, 67, 67) !important;
    background-color: rgba(255, 192, 192, 0.595) !important;
}

/* Customer Login Logout Sign up */

.checkbox_label label {
    margin-right: 3%;
    font-weight: normal !important;
}

.manOrWomanInput {
    background-color:rgb(255, 255, 255);
    border: solid 2px rgb(86, 86, 86) !important;
    width: 60%;
    
}

.manOrWomanInput:focus  {     
    background-color: var(--color_green_yellow);
    color: black;  
}

.showHidePassword {
    background-color:rgb(255, 255, 255);
    border: solid 2px rgb(86, 86, 86) !important;
    width: 25%;
    border-radius: 0% .25rem .25rem 0%;
}

.passwordInput {
    background-color:rgb(255, 255, 255);
    border: solid 2px rgb(86, 86, 86) !important;
    border-radius: .25rem 0% 0% .25rem;
    border-right: none !important;
    height: auto !important;
}

.linebreak {
    border: solid 1px rgb(159, 159, 159);
}

.btnDeconnecterCustomer {
    background-color: white;
    border: solid 1px rgb(227, 227, 227);
    border-radius: 10rem;
    color: rgb(47, 47, 47) !important;
}

.btnDeconnecterCustomer:hover {
    background-color: rgb(255, 120, 120);
    color: rgb(255, 255, 255) !important;
}

.container_80vh {
    height: 80vh;
}

.sidebar_borders {
    border-right: 4px double rgba(206, 206, 206, 0.48);
}
