.venture-ashore {
    --acent-50: #E16754;

    --blue-90: #293358;
    --blue-80: #16468C;
    --blue-70: #0066b3;
    --blue-50: #008fd4;
    --blue-40: #1ab1eb;
    --blue-05: #F2F6FF;

    --red-50: #FF0000;

    --second-A50: #57C1A6;
    --second-B50: #C2E76B;
    --second-C50: #FFA168;

    --light-20: #D8DADF;
    --light-15: #dee0e6;
    --light-10: #EEEFF1;
    --light-00: #FFFFFF;

    --dark-70: #53555A;
    --dark-30: #9AA0AC;

    --xl: 1440px;
    --lg: 1280px;
    --md: 720px;
    --sm: 640px;
    --main-font: 'Work Sans';

    font-family: var(--main-font);
}

/* LAYOUT */

.right-0 {
    right: 0;
}

.rounded {
    border-radius: 8px;
}

.rounded-2 {
    border-radius: 16px;
}


.sticky {
    position: fixed !important;
    bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    left: 50%;
    transform: translate(-50%, 0);
}

.wrap {
    display: flex;
    flex-wrap: wrap;
}

.none {
    display: none !important;
}

.flex-to-none {
    display: flex !important;
}

.none-to-flex {
    display: none !important;
}

.block {
    display: block;
}

.scroll {
    overflow: scroll;
}

.scroll-x-auto {
    overflow-x: auto;
}

.hidden {
    overflow: hidden;
}

.pointer {
    cursor: pointer;
}

.width-full,
.w-full {
    width: 100%;
}

.w-2f3 {
    width: 66.66%;
}

.w-48 {
    width: 48px;
}

.w-32 {
    width: 32px;
}

.width-auto,
.w-auto {
    width: auto;
}

.height-full,
.h-full {
    height: 100vh;
}

.min-h-480 {
    min-height: 480px;
}

.min-w-320 {
    min-width: 320px;
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.block-container {
    display: block;
    width: 100%;
    overflow: hidden;
    height: 100vh;
}

.flex-content {
    position: relative;
    max-width: var(--lg);
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    width: 100%;
    padding: 0 32px;
}

.block-content {
    position: relative;
    max-width: var(--lg);
    display: block;
    width: 100%;
    padding: 0 32px;
    height: 100vh;
}

.flex-content-xl-mod {
    max-width: var(--xl);
}

.flex-contet-card-mod {
    background-color: var(--light-10);
    border-radius: 8px;
}

.flex-contet-card-white-mod {
    background-color: var(--light-00);
    border-radius: 8px;
}

.content-padding-mod {
    padding: 0 32px;
}

.content-lage-mod {
    max-width: var(--xl);
}

.content-medium-mod {
    max-width: var(--lg);
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-column-to-row {
    display: flex;
    flex-direction: column;
}

.flex-row-to-column,
.flex-row-to-column-rev {
    display: flex;
    flex-direction: row;
}

.flex-rev-row-to-column {
    display: flex;
    flex-direction: row-reverse;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.self-start {
    align-self: flex-start;
}

.self-center {
    align-self: center;
}

.self-end {
    align-self: flex-end;
}

.align-end {
    display: flex;
    align-items: flex-end;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-start {
    display: flex;
    justify-content: start;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

.items-start {
    display: flex;
    align-items: start;
}

.items-center {
    display: flex;
    align-items: center;
}

.items-stretch {
    display: flex;
    align-items: stretch;
}

.flex-cover {
    display: flex;
    flex: 1;
}

.flex-s {
    display: flex;
    flex: 0.25;
}

.flex-m {
    display: flex;
    flex: 0.5;
}

.flex-1 {
    display: flex;
    flex: 1;
}

.flex-2 {
    display: flex;
    flex: 2;
}

.flex-3 {
    display: flex;
    flex: 3;
}

.flex-4 {
    display: flex;
    flex: 4;
}

.flex-5 {
    display: flex;
    flex: 5;
}

.flex-6 {
    display: flex;
    flex: 6;
}

.flex-7 {
    display: flex;
    flex: 7;
}

.flex-8 {
    display: flex;
    flex: 8;
}

.flex-9 {
    display: flex;
    flex: 9;
}

.flex-10 {
    display: flex;
    flex: 10;
}

.flex-15 {
    display: flex;
    flex: 1.5;
}

.gap-2 {
    gap: 2px;
}

.gap-4 {
    gap: 4px;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.gap-32 {
    gap: 32px;
}

.gap-48 {
    gap: 48px;
}

.gap-64 {
    gap: 64px;
}

.margin-l-16 {
    margin-left: 16px;
}

.padding-8 {
    padding: 8px;
}

.padding-12 {
    padding: 12px;
}

.padding-16 {
    padding: 16px;
}

.padding-24 {
    padding: 24px;
}

.padding-32 {
    padding: 32px;
}

.padding-t-32 {
    padding-top: 32px;
}

.padding-xl {
    padding: 96px 32px 96px 32px;
}

.padding-x-4 {
    padding: 0px 4px;
}

.padding-x-8 {
    padding: 0px 8px;
}

.padding-x-12 {
    padding: 0px 12px;
}

.padding-x-16 {
    padding: 0px 16px;
}

.padding-x-24 {
    padding: 0px 24px;
}

.padding-y-4 {
    padding: 4px 0px;
}

.padding-y-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.padding-y-12 {
    padding: 12px 0px;
}

.padding-y-16 {
    padding: 12px 0px;
}

.padding-y-24 {
    padding: 24px 0px;
}

.padding-y-32,
.padding-y-32-to-padding-x-16 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.padding-y-48 {
    padding: 48px 0px;
}

.padding-y-64 {
    padding: 64px 0px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.w-50 {
    width: 50%;
}

.w-100 {
    width: 100%;
}

.box-1 {
    padding: 32px 16px;
    max-width: 420px;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.box-2 {
    padding: 32px 16px;
    max-width: 640px;
    display: flex;
    width: 100%;
    flex-direction: column;
}

/* BUTTONS */
.main-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    color: var(--light-00);
    background-color: var(--acent-50);
    font-family: var(--main-font);
    font-family: 'Work Sans';
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    margin-top: auto;
    cursor: pointer;
    white-space: nowrap;
}

.second-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    color: var(--blue-80);
    background-color: var(--blue-05);
    font-family: var(--main-font);
    font-family: 'Work Sans';
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    margin-top: auto;
    cursor: pointer;
    white-space: nowrap;
}

.blue-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    color: var(--blue-05);
    background-color: var(--blue-80);
    font-family: var(--main-font);
    font-family: 'Work Sans';
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    margin-top: auto;
    cursor: pointer;
    white-space: nowrap;
}

.admin-button-mod {
    color: var(--blue-05);
    background-color: var(--second-A50);
}

.disabled-button-mod {
    color: var(--dark-70);
    background-color: var(--light-20);
    cursor: auto;
}

.small-button-mod {
    border-radius: 6px;
    padding: 8px 12px;
}

.big-button-mod {
    font-size: 20px;
    padding: 16px;  
}

.over-input-text {
    position: absolute;
    top: 10px;
    right: 8px;
    color: var(--dark-70);
}

.list-inside {
    list-style: inside;
}

.dot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    width: 32px;
    height: 32px;
    background-color: var(--light-20);
    color: var(--dark-70);
}

.dot-line-mod {
    background-color: transparent;
    border-color: var(--dark-30);
    border-width: 1px;
    border-style: solid;
}

.sep {
    width: 12px;
    height: 4px;
    background-color: var(--light-20);
    color: var(--dark-70);
}

.blue-dot-mod,
.blue-sep-mod,
.blue-back-mod {
    background-color: var(--blue-80);
    color: var(--light-00);
}


/* INPUT TEXT */
.input-check {
    display: flex;
    position: relative;
    gap: 16px;
    margin-top: 38px;
}

input[type=checkbox] {
    /* Double-sized Checkboxes */
    -ms-transform: scale(2);
    /* IE */
    -moz-transform: scale(2);
    /* FF */
    -webkit-transform: scale(2);
    /* Safari and Chrome */
    -o-transform: scale(2);
    /* Opera */
    transform: scale(2);
    padding: 0;
}

/* INPUT TEXT */
.input-text {
    width: 100%;
    display: flex;
    background-color: var(--light-00);
    border-width: 1px;
    border-style: solid;
    border-radius: 8px;
    border-color: var(--light-20);
    padding: 12px;
    font-size: 16px;
    position: relative;
}

/* SELECTS */
.main-select {
    background-image: url('/content/new/icons/chevron-select.svg');
    background-position: calc(100% - 8px) 50%;
    background-repeat: no-repeat;
    background-size: 32px;
    width: 100%;
    font-size: 16px;
    display: flex;
    background-color: var(--light-00);
    border-width: 1px;
    border-style: solid;
    border-radius: 8px;
    border-color: var(--light-20);
    padding: 12px;
}

.date-select-mod {
    background-image: url('/content/new/icons/calendar.svg');
    background-size: 28px;
    cursor: pointer;
}

/* TEXTS */
.h1 {
    display: inline-block;
    font-family: 'Urbanist', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2em;
    letter-spacing: 0.02em;
    color: var(--dark-70);
}

.h2 {
    display: inline-block;
    font-family: 'Urbanist', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2em;
    letter-spacing: 0.02em;
    color: var(--dark-70);
}

.h3 {
    display: inline-block;
    font-family: 'Urbanist', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.2em;
    letter-spacing: 0.04em;
    color: var(--dark-70);
}

.h4 {
    display: inline-block;
    font-family: 'Urbanist', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2em;
    letter-spacing: 0.04em;
    color: var(--dark-70);
}

.h5 {
    display: inline-block;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--dark-70);
}

.h6 {
    display: inline-block;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2em;
    color: var(--dark-70);
}

.b0 {
    display: inline-block;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2em;
    color: var(--dark-70);
}

.b1 {
    display: inline-block;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--dark-70);
}

.f1 {
    display: inline-block;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--dark-70);
    letter-spacing: 0;
}

.l1 {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--dark-70);
}

.b1 a {
    text-decoration: underline;
    color: var(--blue-70);
}

.d1 {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark-70);
}

.t1 {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    color: var(--dark-70);
}

.a1 {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    text-decoration-line: underline;
    color: var(--dark-70);
}

small {
    font-size: 12px;
}

/* SIMPLE MODS */
.upper {
    text-transform: uppercase;
}

.lower {
    text-transform: lowercase;
}

.transform-none {
    text-transform: none;
}

.word-break {
    overflow-wrap: break-word;
}

.underline {
    text-decoration-line: underline;
}

.no-wrap {
    white-space: nowrap;
}

.link {
    text-decoration-line: underline;
    color: var(--blue-70);
    word-break: break-all;
}

.link-2 {
    text-decoration-line: underline;
    color: var(--blue-70);
}

.list {
    list-style: inside;
}

bold,
.bold {
    font-weight: 600;
}

.medium {
    font-weight: 500;
}

.light {
    font-weight: 300;
}

.white-text {
    color: var(--light-00);
}

.soft-text {
    color: var(--dark-30);
}

.dark-text {
    color: var(--dark-70);
}

.blue-text {
    color: var(--blue-70);
}

.mid-blue-text {
    color: var(--blue-80);
}

.dark-blue-text {
    color: var(--blue-90);
}

.red-text {
    color: var(--red-50);
}

.text-center {
    text-align: center;
}

.opacity-6 {
    opacity: 0.6;
}

.icon {
    width: 42px;
    margin-right: 4px;
}

.icon-2 {
    height: 24px;
}

.icon-3 {
    height: 60px;
}

.shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #030D23 0%, rgba(5, 12, 29, 0) 100%);
}

.back-blue {
    background-color: var(--blue-80);
}

.back-soft-blue {
    background-color: var(--blue-40);
}

.back-orange {
    background-color: var(--acent-50);
}
.back-grey {
    background-color: var(--light-20);
}

.back-white {
    background-color: var(--light-00);
}

.img-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.img-in {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.z1 {
    z-index: 1 !important;
}

.z2 {
    z-index: 2 !important;
}

.z3 {
    z-index: 3 !important;
}

.dsk-sub-menu-open {
    position: absolute;
    top: 100%;
}

.pop-up-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
}

.pop-up-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.pop-up-container-lg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.pop-up-content {
    z-index: 10;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--light-00);
    border-radius: 8px;
    padding: 24px;
    justify-content: start;
}

.pop-up-content .content-main {
    padding: 1px !important;
    display: inline !important;
}

.pop-up-mod-10 {
    gap: 16px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    align-items: flex-start;
    overflow-y: auto;
    display: inline !important;
}

.pop-up-footer {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.pop-up-back {
    z-index: 5;
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
}

.pop-up-close {
    display: flex;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 15;
}

.pop-up-mod-0 {
    gap: 16px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    min-height: 400px;
    align-items: flex-start;
    overflow-y: auto;
}

.pop-up-mod-1 {
    gap: 16px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    align-items: flex-start;
    overflow-y: auto;
}

.pop-up-mod-2 {
    gap: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    align-items: flex-start;
    overflow-y: auto;
}

.popup-h-full {
    max-height: 100vh;
}

.pop-up-mod-3 {
    gap: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    align-items: flex-start;
    overflow-y: auto;
}

.pop-up-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    max-height: 60vh;
    overflow: auto;
}

.ui-datepicker {
    z-index: 99 !important;
}

.plusminus {
    position: relative;
    width: 16px;
    height: 16px;
    cursor: pointer;
    color: var(--blue-80);
}

.plusminus:before,
.plusminus:after {
    content: "";
    display: block;
    background-color: var(--blue-80);
    position: absolute;
    top: 50%;
    left: 0;
    transition: 0.35s;
    width: 100%;
    height: 2px;
}

.plusminus:before {
    transform: translatey(-50%);
}

.plusminus:after {
    transform: translatey(-50%) rotate(90deg);
}

.open .plusminus:before {
    transform: translatey(-50%) rotate(-90deg);
    opacity: 0;
}

.open .plusminus:after {
    transform: translatey(-50%);
}


[data-tip] {
    position: relative;

}

[data-tip]:before {
    content: '';
    /* hides the tooltip when not hovered */
    display: none;
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #1a1a1a;
    position: absolute;
    top: 30px;
    left: 35px;
    z-index: 8;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
}

[data-tip]:after {
    display: none;
    content: attr(data-tip);
    position: absolute;
    top: 35px;
    left: 0px;
    padding: 5px 8px;
    background: #1a1a1a;
    color: #fff;
    z-index: 9;
    font-size: 0.75em;
    height: 18px;
    line-height: 18px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    white-space: nowrap;
    word-wrap: normal;
}

[data-tip]:hover:before,
[data-tip]:hover:after {
    display: block;
}

@media screen and (max-width: 1280px) {
    .tab-none {
        display: none !important;
    }
}

@media screen and (max-width: 964px) {
    .mob-none {
        display: none !important;
    }

    .mob-flex-1 {
        flex: 1;
    }

    .mob-w-full {
        width: 100%;
    }

    .mob-padding-x-16 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .content-padding-mod {
        padding: 0;
    }

    .flex-column-to-row {
        display: flex;
        flex-direction: row;
    }
    
    .flex-row-to-column,
    .flex-rev-row-to-column {
        display: flex;
        flex-direction: column;
    }

    .flex-row-to-column-rev {
        display: flex;
        flex-direction: column-reverse;
    }

    .padding-y-32-to-padding-x-16 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .flex-to-none {
        display: none !important;
    }

    .none-to-flex {
        display: flex !important;
    }

    .mob-min-h-320 {
        min-height: 320px;
    }

    .mob-justify-center {
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    .h1 {
        font-size: 32px;
    }

    .h2 {
        font-size: 28px;
    }

    .h3 {
        font-size: 24px;
    }

    .h4 {
        font-size: 20px;
    }

    .h5 {
        font-size: 18px;
    }

    .h6 {
        font-size: 14px;
    }

    .main-button {
        padding: 12px;
    }

    .blue-button {
        padding: 12px;
    }

    .second-button {
        padding: 12px;
    }

    .pop-up-mod-1 {
        width: 100%;
        max-width: 640px;
        justify-content: flex-start;
    }

    .pop-up-mod-1 form {
        flex: 1
    }

    .pop-up-mod-1 .pop-up-footer {
        display: flex;
        margin-top: auto;
        justify-content: space-between;
    }

    .pop-up-mod-1 .pop-up-footer * {
        flex: 1;
    }

    .pop-up-footer-2 {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}

/* Validation code Control */

.input-container-code {
    margin-bottom: 15px;
    /* Add bottom margin to separate input fields */
}

.validation-message-code {
    font-weight: bold;
    color: red;
    display: none;
    margin-top: 5px;
    /* Add top margin for spacing above validation messages */
}

.cf-buttons-row {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}