.banner-container > .banner-content {
    align-items: flex-start;
    padding-left: 60px;
}

.banner-container > .banner-image > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.item-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.item-info > * {
    width: 50%;
}

.item-info .images > img {
    width: 700px;
    height: 500px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    cursor: pointer;
}

.item-info .images > span {
    width: 700px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 20px;
}

.item-info .images > span > img {
    width: 160px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center center;
    cursor: pointer;
}

.item-info .images {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
}

.item-info .info {
    padding-left: 100px;
    border: 1px dashed var(--color-green-alter);
    padding-bottom: 40px;
    border-radius: 10px;
}

.item-info .info p {
    line-height: 30px;
    font-size: 18px;
}

.item-info .info > a {
    font-weight: 600;
    cursor: pointer;
    color: var(--color-green-dark);
    text-decoration: none;
    transition: 0.2s ease all;
    --webkit-transition: 0.2s ease all;
}

.item-info .info > a * {
    cursor: pointer;
}

.item-info .info > a > font {
    margin-left: 15px;
}


.item-info .info > span {
    display: block;
    margin-top: 50px;
}

.item-info .info > span > * {
    text-decoration: none;
    display: inline-block;
    width: 300px;
    text-align: center;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
}

.item-info .info > span > button {
    color: white;
    background-color: var(--color-green-dark);
    border: 2px solid var(--color-green-dark);
    transition: 0.2s ease all;
    --webkit-transition: 0.2s ease all;
}

.item-info .info > span > button.not-available {
    background-color: #d3d3d3;
    border: 2px solid #d3d3d3;
    color: #636363;
    cursor: default;
}

.item-info .info > span > a {
    color: var(--color-green-dark);
    border: 2px solid var(--color-green-dark);
    background-color: white;
    margin-left: 50px;
    transition: 0.2s ease all;
    --webkit-transition: 0.2s ease all;
}

.item-description {
    padding-left: 100px;
    padding-right: 100px;
    margin-top: 100px;
}

.item-description h1 {
    font-size: 22px;
    color: var(--color-green-dark);
}

.item-presentation {
    text-align: center;
    margin-top: 100px;
}

.item-presentation span {
    display: flex;
    width: auto;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow: auto;
    margin-top: 50px;
    overflow: hidden;
}

.item-presentation span img {
    height: 400px;
    border: 5px solid white;
    width: auto;
    object-position: center center;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.item-presentation span ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.item-presentation h3 {
    color: var(--color-green-dark);
}

#show_gallery {
    font-weight: bold;
    color: var(--color-green-dark);
    background-color: white;
    padding: 12px 24px;
    cursor: pointer;
    border: 2px solid white;
    position: absolute;
    right: 513px;
    bottom: 130px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    z-index: 1;
    --webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

#show_gallery i {
    margin-right: 15px;
    cursor: pointer;
}

#show_gallery font {
    cursor: pointer;
}

.splide__pagination, .splide__arrows {
    display: none;
}

.gallery {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: fixed;
    left: 0;
    top: 0;
}

.gallery > div {
    width: 1380px;
    min-height: 700px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.gallery > div > img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center center;
    background-color: white;
    border: 2px dashed var(--color-green);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}

.gallery > div > span {
    width: 100%;
    height: 200px;
    display: block;
    margin-top: 20px;
}

.gallery > div > span > img {
    width: 140px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 4px solid white;
}

.gallery > div > span > img.active {
    border: 4px solid var(--color-green);
}

.gallery.visible {
    display: flex;
}

.close-gallery {
    position: absolute;
    width: 120px;
    right: 10px;
    bottom: 10px;
    border-top-left-radius: 50px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    color: white;
    background-color: black;
    border: none;
    padding: 8px 0;
    --webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
    z-index: 1;
}

.close-gallery > * {
    cursor: pointer;
}

.close-gallery > i {
    margin-right: 5px;
}

.reservation {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
}

.reservation.visible {
    display: flex;
}

.reservation > div {
    width: 1000px;
    height: 800px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px;
}

.rev-info {
    width: 100%;
    border-bottom: 1px solid black;
}

.rev-info h2 font {
    color: var(--color-green-dark);
}

.rev-info p {
    font-size: 14px;
    display: none;
}

.rev-price {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.rev-price > span > span {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.rev-price > span > span p {
    margin-right: 20px;
    font-weight: 600;
    width: 30%;
    margin: 0;
    padding: 0;
}

.rev-price > span {
    width: 30%;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.rev-price > div {
    width: 40%;
    text-align: right;
}

.rev-price > div > h3 {
    margin: 0;
    padding: 0;
}

.rev-price > div p {
    font-size: 12px;
}

.reservation > div > h3 {
    font-size: 18px;
    margin-top: 5px;
}

.rev-price > div h2 {
    color: var(--color-green-dark);
}

.rev-client {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.rev-client > span {
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.rev-client > span > input {
    padding: 8px 24px;
    cursor: text;
    font-size: 16px;
    font-weight: 600;
    width: 90%;
    border: 1px solid #adadad;
    border-radius: 5px;
    --webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

#discount_code {
    background-color: var(--color-green-alter-2);
    border: 1px solid var(--color-green-alter);
    --webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

.rev-client > span:last-of-type {
    align-items: flex-end;
}

.rev-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: auto;
}

.rev-submit button {
    background-color: var(--color-green-dark);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    border-radius: 50px;
    border: none;
    padding: 12px 24px;
    margin: 0 0;
    --webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

.rev-submit button * {
    cursor: pointer;
}

.rev-submit button i {
    margin-right: 15px;
}

.rev-submit p {
    font-size: 14px;
    text-align: center;
    color: red;
    font-weight: 600;
}

.rev-close {
    font-size: 32px;
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    background-color: white;
    cursor: pointer;
    z-index: 1;
    --webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
    color: black;
}

.rev-close * {
    cursor: pointer;
}

.reservation input[type="date"], .reservation input[type="time"], .reservation input.form-control, .reservation input.flatpickr-input {
    border-radius: 50px;
    font-size: 16px;
    border: none;
    padding: 12px;
    background-color: var(--color-green);
    cursor: pointer;
    width: 60%;
    text-align: center;
    font-weight: 600;
}

.loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: center;
}

.loading.visible {
    display: flex;
}

.loading > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.loading > div > img {
    height: 120px;
    width: auto;
    animation: 5s loading infinite;
}

.loading > div > p {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    color: white;
    margin-top: 50px;
}

@keyframes loading {
    0% { transform: scale(1.0); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1.0); }
    75% { transform: scale(1.1); }
}

@media screen and (min-width: 1000px) {
    .close-gallery:hover {
        color: black;
        background-color: var(--color-red);
    }

    #show_gallery:hover {
        background-color: var(--color-green-dark);
        color: white;
    }

    .item-info .info > span > button:hover {
        background-color: var(--color-green);
        border: 2px solid var(--color-green);
        color: black;
    }

    .item-info .info > span > a:hover {
        background-color: var(--color-green-alter);
        border: 2px solid var(--color-green-alter);
    }

    .item-info .info > a:hover {
        text-decoration: underline;
        color: var(--color-green-dark-2);
    }

    .rev-close:hover {
        color: var(--color-red);
    }

    .rev-client > span > input:focus, #discount_code:focus {
        border: 1px solid var(--color-green-dark);
    }

    .rev-submit button:hover {
        background-color: var(--color-green-dark-2);
    }
}

@media screen and (max-height: 800px) {
    .reservation > div {
        height: 100%;
        border-radius: 0;
    }
}

@media screen and (max-width: 1500px) {
    .gallery > div {
        width: 100vw;
        height: 100vh;
        border-radius: 0px;
    }

    .item-info .images > img, .item-info .images > span {
        width: 100%;
    }

    .item-info .images > img {
        height: 400px;
    }

    #show_gallery {
        width: 200px;
        right: 433px;
    }

    .item-info {
        gap: 20px;
    }

    .item-info .info p {
        font-size: 14px;
    }

    .item-info .info > span > a {
        margin-left: 0;
        margin-top: 20px;
    }

    .item-info .info {
        border: none;
    }

    .rev-info h2 {
        margin: 0;
        padding: 0;
    }

    .item-description {
        padding-left: 0;
        padding-right: 0;
        margin-top: 50px;
    }
}

@media screen and (max-width: 1350px) {
    #show_gallery {
        right: 10px;
        border-top-left-radius: 50px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 15px;
    }
}

@media screen and (max-width: 1300px) {
    .item-info .images > span > img:nth-child(4) {
        display: none;
    }

    .item-presentation span img {
        height: 300px;
    }
}

@media screen and (max-width: 1000px) {
    .item-info {
        display: grid;
        grid-template-areas:
        "image"
        "info";
        width: 100%;
        overflow: hidden;
    }

    .banner-content h1 {
        text-align: center;
        width: 100%;
    }

    .rental-widget > .widget-container > h2 {
        margin-top: 40px;
    }

    .item-info > * {
        width: 100vw;
    }

    .item-info .info {
        padding-left: 0;
        text-align: center;
        grid-area: info;
    }

    .item-info .images {
        grid-area: image;
    }

    .item-info .images > img {
        height: 300px;
    }

    .item-description h1 {
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }

    #slider, .item-info .images > span {
        display: none;
    }

    .item-info .info p {
        font-size: 18px;
    }

    #show_gallery {
        right: 10px;
        bottom: 10px;
        color: white;
        background-color: var(--color-green-dark);
    }

    .item-info .images > img {
        border-radius: 0px;
        object-fit: contain;
    }

    .gallery > div {
        padding: 5px;
    }

    .gallery > div > img {
        border: none;
        height: 300px;
    }

    .gallery > div > span > img {
        width: 32%;
    }

    .close-gallery {
        bottom: initial;
        top: 10px;
    }

    .close-gallery, #show_gallery {
        font-size: 18px;
        width: auto;
        padding: 8px 16px;
    }

    .reservation > div {
        width: 100vw;
        border-radius: 0;
        height: auto;
        min-height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
    }

    .reservation {
        overflow-y: auto;
    }

    .rev-price {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .rev-info > p {
        display: none;
    }

    .rev-info {
        padding-bottom: 20px;
    }

    .rev-price > div * {
        font-size: 16px;
    }

    .rev-price > span {
        flex-direction: row;
        width: 100%;
        margin-bottom: 20px;
    }

    .rev-price > div {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    .rev-price > span > span p {
        width: 50%;
    }

    .rev-client > span > input {
        width: 100%;
    }

    .rev-client {
        gap: 10px;
        margin-bottom: 20px;
    }

    .rev-submit {
        margin-top: auto;
    }

    .rev-price > div h2, .rev-price > div h2 > font {
        font-size: 20px;
    }

}