.venture-ashore {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.venture-ashore-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.venture-ashore-content-morf {
    display: flex;
    flex-direction: row;
    flex: 1;
}

/* HEADER START */
/* mains screens */
.venture-ashore-logo img {
    width: 100%;
}

.va-main .venture-ashore-logo {
    width: 420px;
}

.va-main .agency-logo img {
    width: auto;
    max-width: 420px;
    max-height: 82.5px;
    object-fit: contain;
}

.va-main .dsk-second-top-content {
    padding: 24px 32px;
}

/* regular screens */
.va-regular .venture-ashore-logo {
    width: 320px;
}

.va-regular .agency-logo img {
    width: auto;
    max-width: 320px;
    height: 62.5px;
    object-fit: contain;
}

.va-regular .dsk-second-top-content {
    padding: 16px 32px;
}

.dsk-main-top-bar-container {
    background-color: var(--blue-80);
}

.dsk-main-top-bar-menu {
    gap: 4px;
    padding: 4px 0;
    align-items: center;
    justify-content: center;
}

.dsk-main-top-bar-content {
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cart-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    position: relative;
}

    .cart-button span {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--second-C50);
        width: 22px;
        height: 22px;
        border-radius: 10px;
        color: var(--dark-70);
    }

.main-menu-button {
    display: flex;
    padding: 12px 8px;
    color: var(--light-00);
    font-family: var(--main-font);
    font-family: 'Work Sans';
    font-weight: 500;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 1px;
    position: relative;
}

    .main-menu-button a,
    span {
        line-height: 18px;
    }

.dsk-second-top-container {
    background-color: var(--light-10);
}

.dsk-second-top-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* Account selector */
.dsk-account-select-options {
    background-color: var(--light-00);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 4px;
    z-index: 10;
}
.dsk-account-select-options a:hover{
    color: var(--blue-90);  
}



/* Currency selector */
.currency-select {
    display: flex;
    position: relative;
}

.currency-select-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 108px;
    padding: 12px 32px 12px 12px;
    cursor: pointer;
    color: var(--light-00);
    border-radius: 4px;
    background-image: url('/content/new/icons/chevron-bottom.svg');
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: 100% 50%;
    font-family: 'Work Sans';
    font-weight: 500;
}

.currency-select-btn-disabled-mod {
    opacity: 0.5;
}

.currency-select-options {
    z-index: 0;
    opacity: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    top: 100%;
    position: absolute;
    background-color: var(--light-00);
    border-top: 1px solid #54656d;
    border-radius: 4px;
    padding: 16px;
    gap: 8px;
    max-height: 50vh;
    overflow-y: auto;
}

.currency-select-options-open {
    z-index: 90;
    opacity: 1;
    border: 1px solid var(--light-10);
}

.currency-select li {
    display: flex;
    flex-direction: row;
    width: 100%;
    cursor: pointer;
}

    .currency-select li img {
        height: 18px;
        margin-right: 8px;
    }

/* mob phone */
.mob-phone {
    display: flex;
    gap: 8px;
    background-image: url('/content/new/icons/phone-grey.svg');
    background-position: calc(100% - 8px) 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    border-color: var(--dark-30);
    padding: 8px 0;
    min-width: 275px;
}

/* Input search */
.input-search-by-key {
    background-color: var(--light-00);
    border-width: 1px;
    border-style: solid;
    border-radius: 8px 0 0 8px;
    border-color: var(--light-20);
    padding: 12px;
    min-width: 228px;
}

.second-top-send-btn {
    display: flex;
    background-color: var(--acent-50);
    padding: 7px;
    border-color: var(--light-20);
    border-width: 1px;
    margin-left: -1px;
    border-style: solid;
    border-radius: 0 8px 8px 0;
}

/* Mob area */
.mob-menu-container {
    z-index: 1;
    background-color: var(--light-00);
}

.mob-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.mob-menu-top-bar {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: flex-start;
    background-color: var(--blue-80);
    padding: 12px 16px;
}

.mob-menu-main {
    display: flex;
    flex-direction: column;
    padding: 16px;
    width: 100%;
    gap: 8px;
}

.mob-menu-item {
    width: 100%;
    min-height: 56px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--light-15);
    text-transform: uppercase;
    font-weight: 500;
    background-image: url('/content/new/icons/chevron-right-grey.svg');
    background-position: calc(100% - 8px) 50%;
    background-repeat: no-repeat;
    background-size: 24px;
}

.mob-menu-group {
    padding: 32px 0px;
}

.mob-main-top-bar-container {
    display: flex;
    flex-direction: row;
    background-color: var(--blue-80);
    width: 100%;
    justify-content: space-between;
    /* padding: 12px 16px; */
}

    .mob-main-top-bar-container main {
        display: flex;
        flex-direction: row;
    }

    .mob-main-top-bar-container a,
    .mob-main-top-bar-container button,
    .mob-menu-container button {
        display: flex;
        padding: 12px 16px;
        cursor: pointer;
    }

        .mob-menu-container button li {
            padding-left: 0;
        }


.mob-second-top-container {
    display: flex;
}

    .mob-second-top-container form {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

.mob-currency-select {
    position: relative;
}

.mob-currency-select-btn {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 8px;
    border-color: var(--light-15);
    background-image: url('/content/new/icons/chevron-bottom-grey.svg');
    background-position: calc(100% - 8px) 50%;
    background-repeat: no-repeat;
    background-size: 24px;
}

    .mob-currency-select-btn li,
    .mob-currency-select-options li {
        width: 100%;
        display: flex;
        flex-direction: row;
        font-weight: 500;
        align-items: center;
        gap: 8px;
        padding-left: 16px;
    }

.mob-currency-select-options li {
    padding: 12px;
}

    .mob-currency-select-options li:nth-child(odd) {
        background-color: var(--light-10);
    }

.mob-currency-select-options {
    display: none;
    position: absolute;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
    background-color: var(--light-00);
    border-width: 1px;
    border-style: solid;
    border-radius: 8px;
    border-color: var(--light-15);
    overflow: hidden;
    top: 50px;
}

.mob-currency-select-options-open {
    z-index: 10;
    display: flex;
}

.mob-main-top-bar-container,
.mob-second-top-container {
    display: none;
}

.mob-menu-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 10;
    overflow:auto;
}

.mob-menu-account-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media screen and (max-width: 1120px) {

    .dsk-main-top-bar-container,
    .dsk-second-top-container {
        display: none;
    }

    .mob-main-top-bar-container,
    .mob-second-top-container {
        display: flex;
    }

    .input-search-by-key {
        width: 100%;
        max-width: 480px;
    }

    .gf-content-mod {
        flex-direction: column;
    }
}

/* HEADER END */

/* GUARANTEE */
.hh-h1 {
    max-width: 640px;
    color: var(--light-10);
}

.hg-container-mod {
    background-color: var(--blue-80);
}

.hg-content-mod {
    flex-direction: row;
    padding: 14px 32px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.hg-item {
    background-image: url('/content/new/icons/check.svg');
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 48px;
    display: flex;
    flex-direction: row;
    padding: 0 0 0 64px;
}

    .hg-item p {
        color: var(--light-00);
    }

@media screen and (max-width: 964px) {

    .hg-item {
        width: calc(50% - 8px);
    }
}

@media screen and (max-width: 640px) {

    .hg-item {
        width: 100%;
        background-size: 24px;
        padding: 0 0 0 42px;
    }

        .hg-item br {
            display: none;
        }
}

/* GUARANTEE END */

/* HORNBLOWER START */

.ghb-container-mod {
    padding: 24px 8px;
    background-color: var(--light-20);
}

.ghb-content {
    padding: 0px;
    background-color: var(--light-00);
    border-radius: 8px;
}

.ghb-hornblower {
    padding: 12px 0px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: var(--blue-80);
    display: flex;
    justify-content: center;
}

.ghb-logos {
    padding: 12px 0px;
    gap: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    .ghb-logos img {
        display: flex;
        align-self: center;
    }

@media screen and (max-width: 870px) {
    .ghb-container-mod {
        align-items: stretch;
        padding: 0 8px;
    }


    .ghb-hornblower {
        position: relative;
    }

        .ghb-hornblower img {
            object-fit: contain;
            max-width: 100%;
        }

    .ghb-logos {
        flex-direction: column;
        justify-content: center;
        padding: 32px 12px;
    }

        .ghb-logos img {
            max-width: 100%;
        }
}

/* HORNBLOWER END */

/* FOOTER START */
.gf-container-mod {
    background-color: var(--light-20);
}

.gf-content-mod {
    flex-direction: row;
    justify-content: space-between;
    padding: 32px;
    gap: 32px;
}

.gf-cop {
    padding: 32px;
}

.gf-h5-mod {
    color: var(--blue-80);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    padding-bottom: 16px;
}

@media screen and (max-width: 1120px) {
    .gf-content-mod {
        flex-direction: column;
    }
}

/* FOOTER END */

/* HERO START */

.ghi-content-mod {
    padding: 48px 32px 32px 32px;
    gap: 42px;
}

.ghi-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
}

.gh-selector {
    max-width: 584px;
}

.gh-container {
    display: flex;
    flex-direction: row;
}

.gh-content-mod {
    min-height: 400px;
    max-width: var(--xl);
    padding: 0px;
}

.gh-left {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    background-color: var(--blue-80);
    overflow: hidden;
}

    .gh-left h1 {
        color: var(--light-00);
    }

.gh-right {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-color: var(--blue-80);
}

    .gh-right img {
        position: absolute;
        max-width: 964px;
        object-fit: contain;
        object-position: 50% 0%;
    }

@media screen and (max-width: 964px) {
    .gh-content-mod {
        flex-direction: column;
    }

    .gh-left {
        width: 100%;
        padding: 32px;
    }

    .gh-right {
        width: 100%;
    }

        .gh-right img {
            object-fit: cover;
        }
}

/* HERO END */

/* ASIDE START */

.gm-aside {
    width: 30%;
    padding: 24px 0px;
}

.gm-main-mod {
    width: 70%;
    padding-bottom: 24px;
}

    .gm-main-mod h4 {
        padding: 12px 0px;
    }

@media screen and (max-width: 964px) {
    .gm-content-mod {
        flex-direction: column;
    }

    .gm-aside {
        width: 100%;
        padding: 24px 0px;
    }

    .gm-main-mod {
        width: 100%;
        padding-bottom: 24px;
    }
}

/* ASIDE END */

/* NEWS LETTER START */
.gn-container-mod {
    padding: 24px 8px;
    background-color: var(--light-20);
}

.gn-card-mod {
    background-color: var(--blue-70);
    background-image: url('/content/new/images/nl-ship-01.png'), url('/content/new/images/nl-ship-02.png'), url('/content/new/images/nl-ocean.png');
    background-position-x: 10%, 90%, 0%;
    background-position-y: 115%, -45%, 0%;
    background-size: 168px, 168px, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
    padding: 32px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
}

.gn-card-mod-v2 {
    background-color: var(--light-00);
    border: 1px solid var(--light-00);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
}

.gn-content-mod {
    max-width: var(--md);
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
}

    .gn-content-mod form {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 8px;
    }

    .gn-content-mod .input-text {
        width: 100%;
    }

@media screen and (max-width: 964px) {
    .va-main .venture-ashore-logo {
        width: 50%;
        max-width: 240px;
    }

    .va-regular .venture-ashore-logo {
        width: 50%;
        max-width: 240px;
    }

    .va-main .agency-logo img {
        height: 40px;
        width: auto;
        max-width: 240px;
    }

    .va-regular .agency-logo img {
        height: 40px;
        width: auto;
        max-width: 240px;
    }

    .gn-card-mod {
        background-image: url('/content/new/images/nl-ocean.png');
        background-position-x: 0%;
        background-position-y: 0%;
        background-size: cover;
    }

    .gn-content-mod form {
        flex-direction: column;
    }

    .gn-content-mod input {
        width: 100%;
    }
}

.gn-iframe-container {
    width: 100%;
    background-color: var(--light-00);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.gn-iframe {
    position: relative;
    top: -48px;
    min-height: 400px;
    max-width: 600px;
    width: 100%;
}

@media screen and (max-width: 824px) {
    .gn-iframe {
        height: 420px;
        width: 100%;
    }
}

@media screen and (max-width: 535px) {
    .gn-iframe {
        height: 460px;
        width: 100%;
    }
}

@media screen and (max-width: 425px) {
    .gn-iframe {
        height: 520px;
        width: 100%;
    }
}

/* NEWS LETTER END */

/* EXPLORE START */
.ge-container-mod {
    background-color: var(--light-20);
}

.ge-content-mod {
    justify-content: center;
    align-items: center;
    padding: 32px;
}

.ge-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ge-cards-grid {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px 16px;
    justify-content: center;
}

.ge-region {
    display: flex;
    width: calc(33.33% - 10.66px);
}

    .ge-region a {
        display: flex;
        width: 100%;
        height: 420px;
        align-items: flex-end;
        padding: 8px 16px;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }

.ge-content-small .ge-region a {
    height: 130px;
}

.ge-region h4 {
    display: flex;
    color: var(--light-00);
    position: relative;
    z-index: 3;
}

.ge-region img {
    position: absolute;
    display: flex;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.ge-region a:after {
    content: "";
    height: 130px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(180deg, #00000000, #170f2db8);
}

@media screen and (max-width: 964px) {
    .ge-region {
        width: calc(50% - 16px);
    }
}

@media screen and (max-width: 640px) {
    .ge-region {
        width: 100%;
    }
}

/* EXPLORE END */
/* INFO PAGES START */
.gc-content-mod {
    padding: 40px 32px;
    gap: 16px;
}

.gh-title {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

@media screen and (max-width: 640PX) {
    .gc-content-mod {
        padding: 16px;
    }
}

/* INFO PAGES END */

/* ACCORDIONS HERO START */

.accordion-icon {
    display: flex;
    content: "";
    background-image: url('/content/new/icons/chevron-bottom-grey.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 32px;
    position: absolute;
    width: 32px;
    height: 32px;
    right: 16px;
    top: 16px;
    transition: all 0.3s;
}

.open .accordion-icon {
    transform: rotate(180deg);
}

/* ACCORDIONS HERO END */

/* LOADING START START */
.gl-cover {
    top: 0;
    left: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: var(--light-10);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes rotate360 {
    to {
        transform: rotate(360deg);
    }
}

.gl-logo {
    width: 64px;
    height: 64px;
    animation: 2s rotate360 infinite linear;
}

/* LOADING START END */


@media print {
    .noPrint {
        display: none;
    }
}

.em-container-mod {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 72px);
    max-height: 720px;
}

.em-bg-container-mod {
    background-color: var(--light-00);
}

.em-content-mod {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.em-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: start;
}

.embeddedServiceHelpButton .helpButton,
.embeddedServiceSidebarMinimizedDefaultUI.helpButton {
    right: 200px;
}

    .embeddedServiceHelpButton .helpButton .uiButton {
        background-color: #23a5e1;
        font-family: "Arial", sans-serif;
    }

        .embeddedServiceHelpButton .helpButton .uiButton:focus {
            outline: 1px solid #23a5e1;
        }

.embeddedServiceSidebar.layout-docked .dockableContainer.showDockableContainer,
.embeddedServiceSidebar.layout-float .dockableContainer.showDockableContainer {
    margin-bottom: 50px
}

h2[embeddedService-chatHeader_chatHeader] {
    color: #ffffff !important;
}

.embeddedServiceHelpButton.hb_repositioned_chat_btn {
    z-index: 1111 !important;
}

    .embeddedServiceHelpButton.hb_repositioned_chat_btn .helpButton {
        top: 74px;
        right: 10px !important;
    }

        .embeddedServiceHelpButton.hb_repositioned_chat_btn .helpButton .uiButton {
            border-radius: 8px !important;
            min-width: auto;
        }

@media screen and (max-width: 964px) {
    .embeddedServiceHelpButton .helpButton .uiButton {
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5) !important;
        height: 32px !important;
    }
}
