#bookingForm{
    /*width: 80%;*/
    /*margin: 50px auto;*/
    /*text-align: center;*/
    position: relative;
    min-height: 610px;
    background-color: white;
}
#bookingForm fieldset{
    /*background: white;*/
    /*border: 0 none;*/
    /*border-radius: 3px;*/
    /*box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);*/
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
    position: absolute;
    min-height: 610px;
}
#bookingForm fieldset:not(:first-of-type){
    display: none;
}
#bookingForm fieldset .form-button {
    /*position: absolute;*/
    /*top: 540px;*/
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
}
#bookingForm .action-button, .confirm-page .action-button{
    width: 100px;
    background: #D4C28C;
    font-weight: 400;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}
.confirm-page .action-button {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
}

#bookingForm .action-button:hover, #bookingForm .action-button:focus{
    box-shadow: 0 0 0 2px white, 0 0 0 3px #D4C28C;
}

.overlay{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255,255,255,0.8) url("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_loader{
    display: flex;
    overflow: hidden;
}

.overlay_loader {
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(57, 57, 57, 0.8);
    flex-direction: column;
}

#loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #D4C28C;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
