.book-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    z-index: 3;
    background: rgba(255, 255, 255, 0.92);
    padding: 33px 20px 30px 20px;
    box-sizing: border-box;
    overflow-y: scroll;
    text-align: center;
}

.close-book-modal {
    font-size: 36px;
    position: absolute;
    color: #000;
    right: 10px;
    top: 4px;
    cursor: pointer;
    transition:  all .3s;
}

.close-book-modal:hover {
    color: #E37200;
}

.book-step.one {
    margin: auto;
}

.book-step.two {
    display: none;
}

.book-header {
    text-align: center;
    text-transform: uppercase;
    font-size: 23px;
}

.selected-week {
    color: #E37200;
    font-size: 23px;
    margin-bottom: 20px;
}

.book-row {
    margin-bottom: 20px;
}

.book-date {
    display: inline-block;
    width: 200px;
}

.select-week.btn {
    display: inline-block;
    width: 160px;
    margin-top: 7px;
    padding-top: 5px;
    padding-bottom: 4px;
}

.select-week.booked {
    background: #9e9e9e;
    color: #ececec;
    pointer-events: none;
}

.input-wrapper {
    font-size: 20px;
    margin-bottom: 10px;
}

.book-modal input {
    border: 1px solid rgba(112, 112, 112, 0.46);
    box-sizing: border-box;
    height: 32px;
    width: 100%;
    font-family: industry, sans-serif;
    font-size: 16px;
}

.add-family-member-btn {
    font-size: 20px;
}

.add-family-member-btn .fa-plus-circle {
    color: #E37200;
    cursor: pointer;
    font-size: 25px;
}

.remove-btn {
    font-size: 17px;
    padding-top: 5px;
    padding-bottom: 3px;
}

.add-to-cart {
    width: 177px;
    margin-top: 42px;
    float: right;
}

.gallery-container {
    background: #191E23;
    padding-top: 40px;
    padding-bottom: 55px;
}

.gallery-container-inner {
    width: 90%;
    margin: auto;
}

.gallery-header {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.gallery-slide:focus {
    outline: none;
}

.slider-img {
    max-width: max-content;
    width: 83%;
    margin: auto;
    border: 1px solid #E37200;
    cursor: pointer;
}

.right-arrow {
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 20px solid #E37200;
    position: absolute;
    z-index: 1;
    top: 43%;
    right: -20px;
    cursor: pointer;
}

.left-arrow {
    width: 0; 
    height: 0; 
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent; 
    border-right: 20px solid #E37200;
    position: absolute;
    z-index: 1;
    top: 43%;
    left: -15px;
    cursor: pointer;
}

.gallery-image-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
    background: #fff;
    width: 90%;
    max-width: 1000px;
    height: 345px;
    padding-top: 39px;
    border: 1px solid #a7a7a7;
}

.gallery-image-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
    background: #fff;
    width: 90%;
    max-width: 1000px;
    height: 73vw;
    padding-top: 39px;
    border: 1px solid #a7a7a7;
}

.close-gallery-image-modal {
    color: #E37200;
    font-size: 67px;
    line-height: 38px;
    position: absolute;
    right: 2px;
    top: 4px;
    cursor: pointer;
}

.large-image {
    display: block;
    margin: auto;
    width: 90%;
}

.prev-next-arrows {
    text-align: center;
    margin-top: 15px;
}

.prev-image, 
.next-image {
    display: inline-block;
    color: #E37200;
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.prev-image {
    margin-right: 5px;
}

.next-image {
    margin-left: 5px;
}

@media (min-width: 768px) {
    .book-modal input {
        width: 300px;
        margin-left: 15px;
    }

    .remove-btn {
        width: 426px;
        margin: auto;
    }

    .gallery-image-modal {
        height: 66vw;
    }
}

@media (min-width: 1024px) {
    .book-overlay {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.76);
        z-index: 3;
    }

    .book-modal {
        height: 600px;
        width: 800px;
    }

    .gallery-image-modal {
        width: 923px;
        height: 658px;
    }

    .footer-col.one {
        margin-top: -1px;
    }
}

@media (min-width: 1200px) {
    .gallery-header {
        text-align: left;
        padding-left: 5%;
    }
}




