/* Style dla modalnego okna rezerujestolik */

html body .rezerujestolik-button{
    padding: .5em 1.5em;
    border-radius: 5px;
    /*border: 1px solid #00a32a;*/
    background-color: #00a32a;
    /*color: #fff;*/
    display: inline-block;
    font-size: 1em;
    cursor: pointer;
    border:2px solid transparent;
    outline-width: 2px;
    outline-offset: 4px;
    scale: 1;
    transition: all 0.2s linear;
}
html body .rezerujestolik-button:hover{
    scale: 1.05;
}
html body .rezerwujestolik-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    margin: 0!important;
    /*display: grid;*/
    /*place-items: center;*/
    /*padding: 50px;*/
    padding: 40px!important;

}

.rezerwujestolik-modal-content {
    position: relative;
    background-color: #ffffff;
    /*margin: 0;*/
    padding: 0;
    border: 1px solid #888;
    border-radius: 6px;
    display: flex;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .5);
    /*width: 100%;*/
    /*height: 100%;*/
    /*flex-grow: 1;*/
    margin: 0 auto;
    width: min(100%,1400px);
    /*height: min(100%,800px);*/
    overflow-x: hidden;
    /*overflow-y: auto;*/

}
.rezerwujestolik-modal-content > *,
#rezerujestolik-frame{
    width: 100%;
    display: block;
    /*height: 100%;*/
    border-radius: 6px;
}

#rezerwujestolik-close-button {
    color: #e3e3e3;
    /*float: right;*/
    font-size: 20px;
    line-height: 1em;
    font-weight: normal;
    position: absolute;
    right: 4px!important;
    top: 4px!important;
    z-index: 999999;
    width: 40px;
    height: 40px;
    padding: 0!important;
    background-color: rgba(0,0,0,.7);
    border-color: transparent!important;
    transition: background-color 0.2s linear;
    border-radius: 20px;
}
#rezerwujestolik-close-button:hover{
    background-color: rgba(0,0,0,.99);
}

.rezerwujestolik-close:hover,
.rezerwujestolik-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
