.cruise-terms-header {
    font-size: 16px;
}
.cruise-terms {
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}
.cruise-terms-section {
    margin: 3px 0;
    padding: 3px 0 0;
    font-size: 14px;
    font-weight: bold;
    color: rgb(102, 102, 102);
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: rgb(102, 102, 102);
    border-top-width: 1px;
    border-top-style: dotted;
    border-top-color: rgb(102, 102, 102);
    font-family: 'Droid Serif', sans-serif;
    position: relative;
}
.cruise-terms dl, .cruise-terms-top {
    margin: 0 0 12px 12px;
    font-size: 12px;
    line-height: 1.5em;
}
.cruise-terms dt {
    font-weight: bold;
    font-size: 12px;
}
.cruise-terms dd {
    margin: 0 0 1em 0.8em;
    font-size: 12px;
}
.cruising-table {
    display: block;
    min-width: 100%;
    border: 1px solid #000000;
    background: #f2f3ff;
    padding: 10px;
    vertical-align: top;
    text-align: left;
}
.cruising-table-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    columns: 300px auto;
    column-gap: 20px;
    column-rule: 1px solid #ddd;
}
.cruising-table-category {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
    break-inside: avoid;
    column-span: all;
}
.cruising-table-item {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    padding: 2px 0;
    border-bottom: 1px dotted #ccc;
}
.cruising-table-item span:first-child {
    flex: 1 1 auto; /* Allow the first span (name) to take available space */
}

.cruising-table-item span:not(:first-child) {
    flex: 0 0 auto; /* Keep subsequent spans (prices) at natural width */
    margin-left: 10px; /* Spacing between columns; adjust as needed */
}
@media (max-width: 500px) {
    .cruising-table-list {
        columns: 1;
    }
}
@media (min-width: 769px) {
    .image-hover-expand {
        transition: all 0.3s ease;
    }

    .image-hover-expand:hover {
        transform: scale(2);
    }
}
.info-checklist-thumbnail {
    margin: 10px 20px;
    border: 1px solid #000000;
}
.info-container {
    display: block;
}
.info-image-container {
    text-align: center;
}
.info-image {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
    border: 2px solid #000000;
    border-radius: 8px;
}
.info-main {
    margin: 10px;
}
.info-main-head {
    text-align: center;
    margin: 0 5%;
}
.info-main-head img {
    width: 250px;
    max-width: 98%;
    border: 2px solid #000000;
    border-radius: 8px;
}
.info-content-container {
    margin: 20px auto;
    text-align: center;
    width: 1200px;
    max-width: 100%;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    padding: 0 5px 10px 5px;
}
.info-dry-dock-ship-section {
    background-color: #fff;
    border: 2px solid #000000;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.info-dry-dock-ship-image {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
}
.info-dry-dock-ship-image img {
    width: 100%;
    height: auto;
    border: 1px solid #2577b1;
    border-radius: 8px;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 1.0);
    margin-bottom: 10px;
}
.info-dry-dock-ship-details {
    flex: 2;
    min-width: 280px;
}
@media (max-width: 768px) {
    .info-dry-dock-ship-section {
        flex-direction: column;
        align-items: center;
    }
    .info-dry-dock-ship-image img {
        max-height: 150px;
    }
    .info-dry-dock-ship-details {
        text-align: center;
    }
}
.info-list-container {
    margin: 20px auto;
    max-width: 700px;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    padding: 0 5px 10px 5px;
}
.info-list-list {
    text-align: left;
    padding-left: 20px;
    columns: 200px 3;
}
.info-list-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.info-menu {
    text-align: center;
}
.info-section-container {
    margin: 30px auto;
    width: 1200px;
    max-width: 100%;
    border: 2px solid #000000;
    background-color: #FFFFFF;
    padding: 0 20px 20px 20px;
}
.info-section-title {
    font-size: 22px;
    color: #215FBB;
}
.info-options ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.info-options li {
    text-align: center;
    padding: 10px;
    background: #dceaff;
    border: 1px solid #000000;
    break-inside: avoid-column;
    display: inline-block;
    vertical-align: top;
    width: 225px;
    margin: 10px 5px;
    /*box-sizing: border-box;*/
}
.info-options li img, .info-options-line-recipes-section img, .info-content-head img {
    width: 250px;
    height: auto;
    border: 1px solid #2577b1;
    border-radius: 8px;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 1.0);
    margin: 5px 0;
}
.info-options ul li:hover a img, .info-options ul li a img:hover {
    transform: scale(1.02);
    transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
    box-shadow: 0 10px 8px -8px rgba(0, 0, 0, 0.5);
}
.info-options-flag-small {
    all: unset !important;
    border: 1px solid #000000 !important;
    width: 60px !important;
    height: auto !important;
    box-shadow: 0 2px 4px -2px black !important;
}
.info-content-head img {
    margin-top: 10px;
    margin-right: 10px;
}
.info-options a:active img {
    box-shadow: none;
    border: 2px solid #333333;
    margin-bottom: 4px;
}
.info-options-button-container {
    min-width: 280px;
    margin: 10px 5px 10px 10px;
    border: 1px solid #000000;
    background-color: #dceaff;
    display: inline-block;
    vertical-align: top;
}
.info-options-button-list {
    padding: 0 5px 15px 5px;
}
.info-options-button-list .button-blue {
    font-size: 13px;
    padding: 6px 10px 5px 10px;
}
.info-options-line-recipes-section {
    display: inline-block;
    width: 320px;
    background: #dceaff;
    border: 2px solid #000000;
    margin: 10px;
}
@media all and (max-width: 380px) {
    .info-options-line-recipes-section {
        width: 90%;
    }
    .info-options-line-recipes-section img {
        width: 80%;
    }
}
.info-options-line-recipes-section img {
    margin: 10px;
}
.info-options-line-recipes-button-container {
    margin-bottom: 10px;
}
.info-popular-content-downloads {
    margin-top: 20px;
}
.info-popular-content-downloads-widget .block .block-container .block-header { /* suppress widget block header linked to resources listed by upload date */
    display: none;
}
.music-playlist {
    max-width: 1100px;
    margin: auto;
}
.music-playlist header {
    padding: 8px;
    background-color: #ddeefa;
    border: 1px solid #000000;
}
.music-playlist-song {
    font-weight: bold;
}
.music-playlist ol {
    display: inline-block;
    margin: 0 auto;
    padding-top: 5px;
    border: 1px solid #000000;
    background-color: #FFFFFF;
    width: 100%;
}
.music-playlist ol li {
    padding-right: 10px;
}
.products-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.products-container li {
    display: inline-block;
    text-align: center;
    max-width: 260px;
    margin: 5px;
    padding: 5px;
    border: 1px solid #ff9900;
    vertical-align: top;
    background-color: #edf6fd;
}
.product-link a:hover {
    text-decoration: none;
}
.product-link a:hover .product-title {
    text-decoration: underline;
}
.product-link a:hover .product-image {
    border: 1px solid #2577b1;
}
.product-image-container {
    position: relative;
}
.product-image {
    text-align: center;
    object-fit: contain;
    padding: 5px;
    height: 200px;
    width: 240px;
    max-width: 96%;
    background-color: #ffffff;
    border: 1px solid #adcee594;
    border-radius: 4px;
}
.product-image:hover {
    border: 1px solid #2577b1;
}
.product-note {
    margin: 5px;
}
.product-note i {
    color: #007900;
    margin-right: 5px;
}
.product-price {
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 28px;
    color: #0f1111;
}
.product-price-symbol, .product-price-cents {
    position: absolute;
    top: .25em;
    font-size: 13px;
}
.product-price-symbol {
    left: -8px;
}
.product-title {
    margin: 5px;
    text-align: center;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-title:hover {
    text-decoration: underline;
}
.product-watermark {
    position: absolute;
    bottom: 10px;
    left: 10px;
}
.ship-brief {
    text-align: left;
    margin: 10px 20px;
}
.ship-brief h3 {
    margin-top: 24px;
    margin-bottom: -10px;
}
.ship-brief h4 {
    margin-bottom: -10px;
}
.table-of-contents {
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid #000000;
    background-color: #DDEEFA;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0 10px;
}
.table-of-contents-list {
    font-weight: bold;
    font-size: 1.2em;
    max-width: 450px;
    min-height: 180px;
    margin: 0 auto;
}
.table-of-contents-note {
    margin: 20px auto;
    background-color: #EDF6FD;
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 0 5px;
}
.worlds-options li {
    width: 280px;
}
.worlds-options li a {
    margin-bottom: 10px;
}
.worlds-options-ship-statistics {
    margin: 20px 10px 10px;
}
.worlds-options li .button-blue {
    font-size: 13px;
    padding: 6px 10px 5px 10px;
}
.worlds-options-head {
    margin-top: 10px;
    margin-bottom: -15px;
}
@media (min-width: 769px) {
    .music-playlist ol {
        column-count: 2;
        column-gap: 20px;
    }
}
@media (max-width: 768px) {
    .info-section-container ul, .info-section-container ol {
        padding-inline-start: 10px;
    }
    .worlds-options ul {
        justify-content: space-between;
    }
    .worlds-options li {
        flex: 1 1 calc(95% / 2 - 10px);
        min-width: 0;
        max-width: calc(95% - 10px);
        margin: 10px 5px;
    }
    .worlds-options li img {
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .worlds-options ul {
        justify-content: center;
    }
    .worlds-options li {
        flex: 1 1 calc(95% - 10px);
        max-width: calc(95% - 10px);
        margin: 10px auto;
    }
}