:root{

    --main-font :'Roboto', sans-serif;



    --background-color: #ededed;

    --background-sidebar:#094562;

    --background-light:#094562;

    

    --border-input-color:#79dcffad;

    --background-input-color:#ffffff;


    --color-btn:#ffffff;
    --background-btn:#aea182 ;

    --background-hover-btn:#979798 ;



    --number-of-chair-color:#012861;
    --background-of-seat:#94a8c8;
    

    --main-padding:0px 50px 0 50px;

    --main-transition: .2s ;



}

.removeBtn{
    background-color: #f73c68;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    transition: .3s;
    color: white;

}
.removeBtn:hover{
    color: white;
    background-color: #f73c6873;
}

.guests-list{

}
*{

    padding: 0;

    margin: 0;

    box-sizing: border-box;

}



body{

    font-family: var(--main-font);

    background-color:var(--background-color) ;

}

a{

    text-decoration: none;

}

.sidebar{

    max-width: 140px;

    z-index: 100;

    padding: 18px;

    height:auto;

    display: flex;

    justify-content: center;

    align-content: center;

    flex-direction: column;

    background-color:var(--background-sidebar);

    position: fixed;

    height: 100vh;



}

.landing-page .sidebar .link {

    display: flex;

    margin: 20px 0;

    justify-content: center;

    align-content: center;

    flex-direction: column;

    text-align: center;

    transition: .3s;

}

.landing-page .sidebar .link a img{

    max-width: 66%;

}

.landing-page .sidebar .link:hover{

    opacity: .5;

}

.landing-page .sidebar .link p{

    font-size: 12px;

    font-family: 'Roboto', sans-serif;

    text-transform: uppercase;

    margin-top: 7px;

    color: #ffffff;

}

/* ----------logo -------------- */

.landing-page .content header {


    padding: 0 50px 0 50px;
    height: 120px;
    background-color: var(--background-light);
    display: flex;
    align-items: center;

}

.landing-page .content header img{

    width:600px; 

}

/* ----------logo -------------- */
.closePOP{
    font-size: 20px;
    cursor: pointer;
    transition: var(--main-transition);
}
.closePOP:hover{
    color: rgba(0, 0, 0, 0.541);
}

@media (max-width : 1025px){

    .sidebar {
        height: 100vh;
        min-width: 100px ;

    }

    .sidebar .link a img {

        max-width: 65% !important;

    }



}

@media (max-width : 493px){

    .sidebar {

        min-width: 75px;

    }

    .landing-page .sidebar .link p {

        font-size: 11px;

    }

}

.hiddenP.zoom-out {
    position: absolute;
    top: 0px;
    left: 7px;
    width: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 5px;
    transform: translateX(5%);
    z-index: 16;
    background-color: #000000bf;
    border-radius: 2px;
    color: white;
    height: 15px;
}

.chairs-section .hiddenP.zoom-out {
    left: 20px;
    width: auto;
}

.zoom-content {
 
 
    position: absolute;
    bottom: 80px;
    right: 100px;
    background-color: white;
 
 
    z-index: 999999;
 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
}

 .zoom-content input{
    margin: 0 12px;
}
.zoom-content img {
    max-width: 45px;
    padding-top: 3px;
}
.zoom-content.seating-plan-zoom {
    position: absolute;
    bottom: 80px;
    right:75px;
    width: 335px;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    background-color: transparent;
}

.zoom-content.seating-plan-zoom img {
    width: 16px;

}
.zoom-content.seating-plan-zoom .zoom-tools{
    border: 1px solid #012861;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 268px;
    height: 60px;
    border-radius: 31px;
    background-color: white;
}
.zoom-content.seating-plan-zoom .view-icons img {
    margin-left: 20px;
    width: 58px;
    background-color: white;
    border-radius: 20px;
}


.tables-section-s .row .table .hiddenP{
     z-index: 99999;
         display: none; 
        background-color: black;
        font-size: 12px;
        padding: 10px;
        border-radius: 10px;
        position: absolute;
        top: -45%;
        left: -327%;
        width: 120px;
        text-align: center;
}
.modal{
    padding: 0 20px;
}
.modal form h3:first-child{
    margin-bottom: 20px;
}

.modal form .select-categ{
    margin-bottom: 20px;
}
.modal form .select-categ label{
    margin-right: 10px;
}
.modal form h3:last-child{
    margin-bottom: 20px;
}
.modal form select{
    width: 150px;
    position: relative;
    height: 50px;
    border-radius: 20px;
    outline: none;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 12px 18px;
    margin-bottom: 20px;
    background-color: var(--background-color);
    border: 1px solid var(--background-color);
    background-image: url(../images/arrow-down.png);
    background-repeat: no-repeat;
    background-position: right 18px bottom 20px;
    background-size: 15px;
    cursor: pointer;
}
.modal form input[type="submit"] {
    display: block;
    padding: 14px 20px;
    background-color: var(--background-sidebar);
    border-radius: 40px;
    transition: var(--main-transition);
    color: var(--background-light);
    margin-right: 20px;
    border: none;
    cursor: pointer;
}



.overlay{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255,255,255,0.8) url("/public/assets/images/loader.gif") center no-repeat;
}
/* Turn off scrollbar when body element has the loading class */
body.loading{
    overflow: hidden;   
}
/* Make spinner image visible when body element has the loading class */
body.loading .overlay{
    display: block;
}