/*
Theme Name: Royal Elementor Kit Child
Theme URI: https://royal-elementor-addons.com/royal-elementor-kit-child
Description: Child theme for the Royal Elementor Kit
Author: WP Royal
Author URI: https://royal-elementor-addons.com/
Template: royal-elementor-kit
Version: 1.0.0
*/

.select-option {
    display: flex;
    gap: 30px;
    justify-content: start;
    align-items: center;
    padding-bottom: 40px;
}

.select-option .select-title {
    font-size: 20px;
    line-height: 30px;
    font-family: sans-serif;
    font-weight: 500;
}

select#destination-select {
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #b4905d;
    width: 300px;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s ease-in;
    color: #000;
}

select#destination-select option {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}

.des-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.des-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

table.destination-table {
    max-width: 100%;
    width: 100%;
}

/* .. */


.table-container {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #cccccc59;
}

.cruise-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

/* Header Styling */
.cruise-table thead th {
    background-color: #b4905d;
    color: white;
    padding: 25px 15px;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
}

/* Cell Styling */
.cruise-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

table.cruise-table tbody tr:nth-child(odd) {
    background: #fff !important;
}

table.cruise-table tbody tr:nth-child(even) {
    background: #faf7fc !important;
}

table.cruise-table tbody tr {
    transition: 0.3s ease-in;
}

table.cruise-table tbody tr:hover {
    background: #F9F6F1 !important;
}

#b4905d1f .ship-name {
    font-weight: bold;
    color: #444;
}

.itinerary {
    color: #777;
    font-size: 15px;
    margin-top: 4px;
    font-weight: 500;
    font-family: 'Poppins';
}

.date-cell {
    color: #444;
}

h3.ship-title {
    font-size: 22px;
    line-height: 28px;
    margin: 0;
}

/* Map Section */
.map-thumb {
    display: block;
    width: 180px;
    height: auto;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: 0.3s ease-in;
}

.map-thumb:hover {
    border-color: #B4905D;
}

.btn-map {
    background: #b4905d;
    color: white;
    border: none;
    padding: 10px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 8px;
    text-transform: uppercase;
    transition: 0.3s ease-in;
}

/* Pricing Section */
.brochure-fare {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.exclusive-fare {
    color: #b38b4d;
    font-weight: bold;
    font-size: 18px;
}

/* Buttons */
.btn-exclusive,
.btn-inquire {
    display: inline-block;
    background-color: #b4905d;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: 0.3s ease-in;
}

.btn-inquire:hover,
.btn-map:hover,
.btn-exclusive:hover {
    background-color: #000;
    color: #fff !important;
}

.book-now-link {
    margin-top: 15px;
}

/* .. modal css .. */
.modal-design {
    display: none;
}

.modal-design.open-modal {
    position: fixed;
    inset: 0;
    background: #0000005e;
    width: 100%;
    height: 100dvh;
    z-index: 9999;
    display: grid;
    place-items: center;
    opacity: 1;
    animation: showmodal 0.3s linear;
}

@keyframes showmodal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

.modal-design.open-modal .modal-image {
    position: relative;
    max-width: 1024px;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.modal-design.open-modal .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-design.open-modal .modal-image i {
    position: absolute;
    top: 10px;
    right: 7px;
    font-size: 30px;
    color: #B4905D;
    cursor: pointer;
    z-index: 11;
    transition: 0.3s ease-in;
}

.modal-design.open-modal .modal-image i:hover {
    color: #000;
}

/* .. modal css end .. */

@media(max-width: 1599px) {
    .modal-design.open-modal .modal-image {
    max-width: 750px;
}
}
@media(max-width: 1399px) {
    .modal-design.open-modal .modal-image {
    max-width: 550px;
}
}
@media(max-width: 1199px) {
    .des-img {
        height: 340px;
    }
    .modal-design.open-modal .modal-image {
    max-width: 550px;
}
}

@media(max-width: 991px) {
    .cruise-table {
        display: inline-table;
    }

    .des-img {
        height: 300px;
    }
}

@media(max-width: 767px) {
    .des-img {
        height: 230px;
    }
}

@media(max-width: 575px) {
    .des-img {
        height: 170px;
    }
}