:root {
    --main-color: #1f2933;
    --gray-color: #9FB3C8;
    --gray2-color: #323f4b;
    --blue-color: #04598B;
    --darker-blue-color: #034873;
    --white-color: rgba(255, 255, 255, 1);
    --black-color: rgba(0, 0, 0, 1);
    --black-color-opacity: #2b2540c4;
    --red-color: #e74c3c;
    --card-border-color: #d2d2d275;
    --border-color: #e5e9f2;
    --title-color: #526484;

    --transparent-shadow: rgba(0, 0, 0, 0.1);

    --header-box-shadow: 0 0 20px 0 rgb(36 83 107 / 15%);
    --box-shadow: 0px 1px 3px 0px rgba(54, 74, 99, 0.05);
    --card-box-shadow: 4px 14px 28px rgba(0, 0, 0, 0.1);
    --tab-box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    --card-box-shadow: -4px -5px 14px rgb(0 0 0 / 8%), 5px 8px 16px rgb(0 0 0 / 8%);

    --radial-gradient: radial-gradient(161.52% 135.78% at 50.46% -7.72%, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 100%);
    --radial-gradient-active: radial-gradient(161.52% 135.78% at 50.46% -7.72%, rgba(0, 0, 0, 0.13) 0%, rgba(0, 0, 0, 0) 100%);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    user-select: none;
}
h1 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 15px;
}
h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
}
h3 {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 15px;
}
h4 {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 15px;
}
h5 {
    font-size: 18px;
    line-height: 40px;
    margin-bottom: 15px;
}
h6 {
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 15px;
}
a {
    color: var(--gray-color);
    text-decoration: none;
    font-size: 15px;
}
a:hover {
    color: var(--white-color);
}
a.text-link:hover {
    color: var(--gray2-color);
}
p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 28px;
}
/* INPUTS, SELECT, RADIO, TEXTAREA, CHECKBOX */
.input-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
}
input[disabled], input[readonly]{
    caret-color: transparent;   /* hide caret if something still focuses it */
}
select {
    width: 100%;
}
input,
select {
    width: 100%;
    height: 40px;
    padding: 10px 15px;
    font-size: 15px;
    line-height: 20px;
    border: 1px solid #dbdfea;
    border-radius: 5px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
input:focus,
select:focus {
    outline: 0;
    /* border-color: var(--main-color); */
    box-shadow: var(--box-shadow);
}
select option:hover {
    box-shadow: 0 0 10px 100px #a81854 inset!important;
    cursor: pointer;
}
input[type="radio"] {
    width: 15px;
    height: 15px;
}
input[type="radio"]:hover {
    cursor: pointer;
}
input[type="radio"]:checked {
    accent-color: var(--main-color);
}
input[type="radio"]:checked + label {
    font-weight: 700;
}
textarea {
    width: 100%;
    min-height: 100px;
}
input[type="checkbox"] {
    accent-color: var(--blue-color);
    width: 15px;
}
input[type="checkbox"]:hover {
    accent-color: var(--main-color);
}
.transparent-button {
    background-color: transparent;
    border-color: transparent;
    border: 0;
    height: 40px;
    width: auto;
    color: var(--title-color);
}
.transparent-button:hover {
    color: var(--main-color);
}
.transparent-button svg {
    color: var(--blue-color);
}
.transparent-button:hover svg {
    color: var(--main-color);
}
.edit-icon {
    height: 20px;
    width: auto;
    color: var(--blue-color);
}
/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: var(--blue-color);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}
.no-scroll {
    overflow: hidden!important;
    overflow-y: hidden!important;
    overflow-x: hidden!important;
}
.no-border {
    border: 0px!important;
}
/* CUSTOM CONTAINER */
.custom-container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
@media only screen and (min-width: 576px) {
    .custom-container {
        max-width: 540px;
    }
}
@media only screen and (min-width: 768px) {
    .custom-container {
        max-width: 720px;
    }
}
@media only screen and (min-width: 992px) {
    .custom-container {
        max-width: 960px;
    }
}
@media only screen and (min-width: 1200px) {
    .custom-container {
        max-width: 1140px;
    }
}
@media only screen and (min-width: 1400px) {
    .custom-container {
        max-width: 1320px;
    }
}
/* CUSTOM CONTAINER - END */
/* MODAL */
.custom-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9980;
    background-color: rgb(0, 0, 0, 0.6);
    display: grid;
    place-items: center;
}
.custom-modal {
    position: relative;
    z-index: 9990;
    background: var(--white-color);
    border: 1px solid var(--main-color);
    border-radius: 5px;
    max-height: 98vh;
    width: auto;
    min-width: 98vw;
    max-width: 98vw;
    display: flex;
    flex-direction: column;
}
.custom-modal-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    padding: 15px;
    border-bottom: 1px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.custom-modal-title {
    font-size: 20px;
    font-weight: 700;
}
.custom-modal-footer {
    background: var(--white-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 10px;
    height: 30px;
}
.custom-modal-body {
    padding: 30px;
    margin-top: 75px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.minimized-modal {
    position: fixed;
    right: 0;
    top: 150px;
    border-radius: 5px;
    padding: 15px;
    background-color: var(--blue-color);
    color: var(--white-color);
}
.minimized-modal:hover {
    background-color: var(--main-color);
    cursor: pointer;
}
/* MODAL - END */
/* CUSTOM DATEPICKER */
.custom-datepicker-main-wrapper {
    width: 100%;
    color: var(--black-color);
}
.custom-datepicker-label {
    font-size: 16px;
}
.custom-datepicker-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.custom-datepicker-arrow-wrapper {
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 4px;
    background-color: #e6e6e6;
    background-image: linear-gradient(to bottom, #e6e6e6, #cbd5e1);
    display: grid;
    place-items: center;
    -webkit-user-select: none;
    -ms-user-select: none;    
    user-select: none;
}
.custom-datepicker-arrow-wrapper:hover {
    cursor: pointer;
    background-color: #d9d9d9;
    background-image: linear-gradient(to bottom, #d9d9d9, #b6c4d6);
    border-color: #999999;
}
.custom-datepicker-arrow-wrapper svg {
    width: 15px;
    height: auto;
}
.custom-datepicker-month-year-wrapper {
    display: flex;
    flex-direction: row;
    gap: 3px;
}
.custom-datepicker-select {
    height: 26px;
    width: 100px;
    padding: 0;
}
.custom-datepicker-wrapper {
    background-color: transparent;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9996;
}
.custom-datepicker-callendar-wrapper {
    background-color: #ffffff;
    width: 300px;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    z-index: 9997;
}
#to .custom-datepicker-callendar-wrapper {
    right: 0;
}
.custom-datepicker-days-text-wrapper {
    font-weight: 600;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}
.custom-datepicker-day-text {
    text-align: center;
}
.custom-datepicker-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}
.custom-datepicker-periods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
}
.custom-datepicker-period-wrapper {
    text-align: center;
    width: 100%;
    height: 28px;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    background-color: #e6e6e6;
    background-image: linear-gradient(to bottom, #e6e6e6, #cbd5e1);
    padding: 4px;
    -webkit-user-select: none;
    -ms-user-select: none;    
    user-select: none;
}
.custom-datepicker-period-wrapper:hover {
    cursor: pointer;
    background-color: #d9d9d9;
    background-image: linear-gradient(to bottom, #d9d9d9, #b6c4d6);
    border-color: #999999;
    color: #111111;
}
.custom-datepicker-period-wrapper.selected-day {
    background-color: #1f2933;
    background-image: linear-gradient(to bottom, #1f2933, #1f2933);
    color: #ffffff;
}
.custom-datepicker-period-wrapper.selected-day:hover {
    background-color: #1f2933;
    background-image: linear-gradient(to bottom, #1f2933, #1f2933);
    color: #ffffff;
    border-color: #d3d3d3;
}
.custom-datepicker-days-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.custom-datepicker-day {
    height: 28px;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    background-color: #e6e6e6;
    background-image: linear-gradient(to bottom, #e6e6e6, #cbd5e1);
    padding: 4px;
    text-align: end;
    -webkit-user-select: none;
    -ms-user-select: none;    
    user-select: none;
}
.custom-datepicker-day:hover {
    cursor: pointer;
    background-color: #d9d9d9;
    background-image: linear-gradient(to bottom, #d9d9d9, #b6c4d6);
    border-color: #999999;
    color: #111111;
}
.custom-datepicker-day.disabled-day,
.custom-datepicker-day.disabled-day-by-picker {
    opacity: 0.5;
}
.custom-datepicker-day.disabled-day:hover,
.custom-datepicker-day.disabled-day-by-picker:hover {
    opacity: 0.5;
    cursor: default;
    background-color: #e6e6e6;
    background-image: linear-gradient(to bottom, #e6e6e6, #cbd5e1);
    border-color: #d3d3d3;
    color: unset;
}
.custom-datepicker-day.empty-day {
    border: 0;
    background-color: #ffffff;
    background-image: none;
    padding: 0;
    text-align: unset;
    color: #ffffff;
}
.custom-datepicker-day.empty-day:hover {
    cursor: unset;
    background-color: #ffffff;
    background-image: none;
    border-color: #ffffff;
    color: #ffffff;
}
.custom-datepicker-day.selected-day {
    background-color: #1f2933;
    background-image: linear-gradient(to bottom, #1f2933, #1f2933);
    color: #ffffff;
}
.custom-datepicker-day.selected-day:hover {
    background-color: #1f2933;
    background-image: linear-gradient(to bottom, #1f2933, #1f2933);
    color: #ffffff;
    border-color: #d3d3d3;
}
.datepicker-changer {
    height: 40px;
    padding: 0px 15px;
    border-radius: 5px;
    text-align: center;
    background-color: var(--blue-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.datepicker-changer.selected {
    background-color: var(--main-color);
}
.custom-datepicker-month-select-2 {
    width: auto;
    border: 0;
    text-align: center;
    pointer-events: none;   /* disable clicking */
    appearance: none;       /* remove arrow (modern browsers) */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none; 
}
/* CUSTOM DATEPICKER - END */
/* CUSTOM ELEMENTS */
.custom-button {
    height: 40px;
    width: auto;
    color: var(--white-color);
    border: 0px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    padding: 10px 20px;
    text-align: center;
    font-weight: 700;
    background-color: var(--blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid transparent;
    transition: 0.4s all ease-in-out;
}
.custom-button:hover {
    background-color: var(--main-color);
    border: 1px solid var(--white-color);
    cursor: pointer;
}
.card {
    border: 1px solid var(--border-color);
    box-shadow: var(--card-box-shadow);
    border-radius: 10px;
    background-color: var(--white-color);
    padding: 30px;
}
.card-title {
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    border-bottom: 1px solid var(--blue-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}
/* CUSTOM ELEMENTS - END */
/* CUSTOM CLASSES */
.position-relative {
    position: relative;
}
.lowercase { 
    text-transform: lowercase; 
}
.font-w-400 {
    font-weight: 400;
}
.font-w-600 {
    font-weight: 600;
}
.hide {
    display: none!important;
}
.w-full {
    width: 100%;
}
.w-33 {
    width: 33.333%;
}
.w-66 {
    width: 66.666%;
}
.w-50 {
    width: 50%;
}
.w-81px {
    width: 81px;
}
.w-100px {
    width: 100px;
}
.w-130px {
    width: 130px;
}
.w-140px {
    width: 140px;
}
.w-200px {
    width: 200px;
}
.fit-content {
  width: fit-content;
}
.height-full {
    height: 100%;
}
.height-30 {
    height: 30px!important;
}
.height-310 {
    height: 310px;
}
.max-height-310 {
    max-height: 310px;
}
.max-height-450 {
    max-height: 450px;
}
.padding-top-15 {
    padding-top: 15px;
}
.no-border-top {
    border-top: 0px!important;
}
.text-center,
.text-align-center {
    text-align: center;
}
.white-space-nowrap {
    white-space: nowrap;
}
.flex {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 15px;
}
.flex-row-0 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
}
.flex-row-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
}
.flex-row-between {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
}
.flex-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.flex-col-30 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.flex-col-0 {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.flex-between {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.flex-between-no-center {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
}
.flex-col-between {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.flex-end {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-wrap {
    flex-wrap: wrap;
}
.gap-5 {
    gap: 5px!important;
}
.gap-10 {
    gap: 10px!important;
}
.gap-15 {
    gap: 15px!important;
}
.cursor-pointer {
    cursor: pointer!important;
}
.cursor-not-allowed {
    cursor: not-allowed!important;
}
.ptb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.mr-15 {
    margin-right: 15px;
}
.mb-0 {
    margin-bottom: 0px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mt-auto {
    margin-top: auto;
}
.mt-15 {
    margin-top: 15px;
}
.pt-15 {
    padding-top: 15px;
}
.pb-0 {
    padding-bottom: 0px!important;
}
.pb-15 {
    padding-bottom: 15px;
}
.pl-4 {
    padding-left: 4px;
}
.pl-15 {
    padding-left: 15px;
}
.pl-30 {
    padding-left: 30px;
}
.pr-15 {
    padding-right: 15px;
}
.blue-text {
    color: var(--blue-color)!important;
}
.red-border {
    border: 1px solid var(--red-color)!important;
}
.red-color {
    color: var(--red-color)!important;
}
.bg-main-color {
    background-color: var(--main-color)!important;
}
.bg-darker-blue {
    background-color: var(--darker-blue-color)!important;
}
.bg-red {
    background-color: var(--red-color)!important;
}
.bg-transparent {
    background-color: transparent!important;
}
.crossed-out-text {
    text-decoration: line-through!important;
}
.border-radius-5 {
    border-radius: 5px;
}
/* CUSTOM CLASSES - END */
/* HEADER */
#header {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}
.header-top {
    height: 40px;
    padding: 10px 0;
    background-color: var(--main-color);
    color: var(--gray-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9970;
}
.header-bottom {
    height: 75px;
    box-shadow: var(--header-box-shadow);
    background-color: var(--transparent-shadow);
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 9970;
}
.header-top.is-scrolled {
    display: none;
}
.header-bottom.is-scrolled {
    background-color: var(--main-color);
    top: 0;
}
.header-thumbnail {
    position:relative;
    margin-top: 40px;
    margin-bottom: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-bg {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.search-tours-wrapper {
    max-width: fit-content;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.search-tours-top-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.search-tour-type {
    border: 1px solid var(--white-color);
    border-radius: 10px;
    background: var(--radial-gradient);
    backdrop-filter: blur(25px);
    padding: 10px 20px;
}
.search-tour-type.active {
    background: var(--white-color);
    color: var(--main-color);
}
.search-tour-type:hover {
    background: var(--radial-gradient-active);
}
.search-tour-type.active:hover {
    background: var(--white-color);
    color: var(--main-color);
}
.search-tours-types {
    border-radius: 10px;
    border: 1px solid var(--white-color);
    background: var(--radial-gradient);
    backdrop-filter: blur(25px);
    padding: 40px 30px;
}
.search-tour-fields-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.search-icon img {
    height: 24px;
    width: auto;
}
img.white-icon {
    filter: brightness(0) invert(1);
}
.search-field-title {
    padding-left: 4px;
}
.search-field-input > select,
.search-field-input input {
    border: 0;
    padding: 0;
    background-color: transparent;
    color: var(--white-color);
    height: auto;
}
.search-field-input input::placeholder {
    color: var(--white-color);
}
.search-field-input select option {
    color: var(--black-color);
}
.search-field-input #header-datepicker {
    width: 115px;
}
.search-tours-button {
    border-radius: 10px;
    border: 1px solid var(--white-color);
    background: var(--radial-gradient);
    backdrop-filter: blur(25px);
    padding: 10px 20px;
}
.search-tours-button:hover {
    background: var(--radial-gradient-active);
    cursor: pointer;
}
.header-menu-cards {
    min-height: 100px;
    height: 100px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.header-card {
    text-align: center;
    font-size: 15px;
    background-color: var(--main-color);
    color: var(--gray-color);
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
}
.header-card:hover {
    cursor: pointer;
    color: var(--white-color);
}
.header-card-border {
    width: 1px;
    height: 80%;
    background-color: var(--gray-color);
}
.header-card-list {
    padding: 15px 0px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background-color: var(--white-color);
    width: 100%;
    max-width: 280px;
    z-index: 9997;
}
.header-card-list-item {
    padding: 15px;
    color: var(--main-color);
    z-index: 9998;
}
.header-card-list-item:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}
.header-card-lvl-2 {
    z-index: 9999;
}
.header-link svg {
    color: var(--gray-color);
    height: 20px;
    width: auto;
}
.header-link:hover svg {
    color: var(--white-color);
}
.header-link svg.instagram-icon {
    height: 22px;
}
/* HEADER - END */
/* FOOTER */
.footer-top {
    background-color: var(--gray2-color);
    padding: 70px 0;
}
.turist-moto {
    color: var(--white-color);
    font-size: 24px;
    font-style: italic;
}
.footer-middle {
    background-color: var(--main-color);
    color: var(--gray-color);
    padding: 30px 0;
}
.footer-middle-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.footer-title {
    display: inline-block;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--white-color);
    align-self: start;
}
.footer-bottom {
    background-color: var(--gray2-color);
    padding: 10px 0;
}
.copyright-turist {
    color: var(--gray-color);
    font-size: 14px;
    font-weight: 600;
}
.credit-cards {
    width: 212px;
    height: auto;
}
.footer-link,
.footer-link svg {
    color: var(--gray-color);
    height: 20px;
    width: auto;
}
.footer-link:hover,
.footer-link:hover svg {
    color: var(--white-color);
}
.footer-link svg.instagram-icon {
    height: 22px;
}
/* FOOTER - END */
/* PAGE */
.page-title {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 30px;
}
.title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 15px;
}
.small-title {
    font-size: 14px;
    font-weight: 600;
}
.download-icon {
    height: 20px;
    width: auto;
    color: var(--white-color);
}
.underlined-title {
    padding-bottom: 50px;
}
.underlined-title::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--blue-color);
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 35px;
}
.underlined-span {
    display: inline-block;
    border-bottom: 1px solid var(--blue-color);
    padding-bottom: 10px;
}
/* PAGE - END */
/* HOMEPAGE */
.last-minute-modal {
    min-width: 10vw!important;
    max-width: 80vw!important;
}
.last-minute-modal .custom-modal-body {
    max-width: 400px;
    margin-top: 0px!important;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
}
.last-minute-img {
    border-radius: 5px;
    width: 100%;
    max-height: auto;
}
.homepage-quote-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.homepage-quote {
    font-size: 25px;
    font-weight: 400;
    line-height: 45px;
}
.homepage-quote-author {
    align-self: self-start;
    font-size: 18px;
    color: var(--black-color-opacity);
}
.home-other-tours-buttons-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-bottom: 30px;
}
.gallery-masonry {
    column-count: 4; 
    column-gap: 16px;
    padding: 16px;
}
.gallery-masonry-2-cols {
    column-count: 2; 
    column-gap: 16px;
    padding: 16px;
}
.gallery-masonry-item {
    break-inside: avoid; 
    margin-bottom: 16px; 
    text-align: center;
}
.gallery-masonry-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out; 
}
.gallery-masonry-item img:hover {
    transform: scale(1.05);
}
.gallery-masonry-2-cols .gallery-masonry-item img {
    max-width: unset;
}
.gallery-masonry-item.krstarenja-home {
    grid-column: span 2;
}
.gallery-masonry-item.krstarenja-home img {
    max-width: fit-content;
}
.gallery-masonry-item.krstarenja-home img.wide-image {
    display: block;
}
.gallery-masonry-item.krstarenja-home img.not-wide-image {
    display: none;
}
/* HOMEPAGE - END */
/* SEARCH TOURS PAGE */
.search-tours-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
}
.responsive-filters {
    display: none;
}
.responsive-filters-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding-bottom: 30px;
}
.filters {
    display: block;
}
.filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tours-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 295px));
    grid-auto-rows: min-content;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}
.tour-card {
    position: relative;
    color: var(--black-color);
    border: 1px solid var(--card-border-color);
    border-radius: 10px;
}
.tour-card:hover {
    box-shadow: var(--card-box-shadow);
    color: var(--black-color);
}
.tour-card-discount-ribbon {
    width: 165px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -1px;
    left: -10px;
    z-index: 9000;
}
.tour-card-discount {
    position: absolute;
    display: block;
    width: 235px;
    padding: 5px 0;
    background: var(--red-color);
    color: var(--white-color);
    font-weight: bold;
    text-align: center;
    transform: rotate(-45deg);
    top: 25px;
    left: -60px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.tour-card-discount-amount {
    font-size: 18px;
}
.tour-card-discount-text {
    font-size: 14px;
}
.tour-card-discount-date {
    font-size: 14px;
}
.tour-card-img-wrapper {
    border-radius: 10px 10px 0px 0px;
    height: auto;
    position: relative;
    overflow: hidden;
}
.tour-card-img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0px 0px;
    transition: .4s all ease-in-out;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.tour-card:hover .tour-card-img {
    transform: scale(1.2);
}
.tour-card-location {
    position: absolute;
    bottom: 10px;
    left: 5px;
    margin-right: 5px;
    background: var(--blue-color);
    border-radius: 5px;
    color: var(--white-color);
    padding: 5px 10px;
    width: auto;
    text-wrap: wrap;
}
.tour-card-texts-wrapper {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tour-card-accomodation-name {
    font-size: 20px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
.tour-card-accomodation-stars {
    display: flex;
    gap: 2px;
    text-align: right;
}
.tour-card-accomodation-stars svg {
    width: 15px;
    height: 15px;
}
.tour-card-price-of-wrapper {
    font-size: 14px;
    white-space: nowrap;
}
.tour-card-price-of {
    font-size: 20px;
    font-weight: 500;
}
.tour-card-icons-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}
.tour-card-icon {
    height: 40px;
    width: auto;
}
.icon-text {
    text-align: center;
}
/* SEARCH TOURS PAGE - END */
/* CHARTERS PAGE */
.charter-card {
    border-radius: 5px;
    width: 295px;
    min-width: 295px;
    padding: 30px;
    color: var(--border-color);
    background-color: var(--blue-color);
    text-align: center;
}
.charter-card:hover {
    cursor: pointer;
    color: var(--white-color);
}
/* CHARTERS PAGE - END */
/* SINGLE TOUR PAGE */
.tour-name * {
    margin-bottom: 0px;
}
.tour-stars {
    display: flex;
    gap: 2px;
}
.tour-stars svg {
    width: 15px;
    height: 15px;
    margin: 0;
}
.tour-info-wrapper {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0 15px;
}
.tour-info * {
    margin-bottom: 0px;
    gap: 0px;
}
.custom-tour-text {
    color: var(--blue-color);
}
.discount {
    color: var(--blue-color);
}
.passengers-wrapper {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
}
.plus-minus-wrapper {
    border: 1px solid var(--main-color);
    border-radius: 5px;
    display: grid;
    place-items: center;
}
.plus-minus-wrapper:hover {
    cursor: pointer;
}
.plus-minus-wrapper svg {
    width: 40px;
    height: auto;
    color: var(--main-color);
}
.selected_adults,
.selected_children,
.selected_num {
    font-size: 30px;
}
.selected_adults_text,
.selected_children_text,
.selected_num_text,
.selected_num_text2 {
    font-size: 20px;
}
.selected-children-ages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
#pricesTables {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.tabs-main-wrapper, .tabs-main-wrapper2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.tab, .tab2 {
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    box-shadow: var(--card-box-shadow);
}
.tab-main-title-wrapper, .tab-main-title-wrapper2 {
    padding: 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tab-main-title-wrapper:hover, .tab-main-title-wrapper2:hover {
    cursor: pointer;
}
.tab-arrows, .tab-arrows2 {
    display: grid;
    place-items: center;
}
.tab-arrows svg, .tab-arrows2 svg {
    height: 25px;
    width: auto;
}
.tab-arrow-right svg, .tab-arrow-right2 svg {
    color: var(--blue-color);
}
.tab-arrow-bottom svg, .tab-arrow-bottom2 svg {
    color: var(--blue-color);
}
.tab .tab-arrow-bottom, .tab2 .tab-arrow-bottom2 {
    display: none;
}
.tab-description-wrapper, 
.tab-description-wrapper2 {
    padding: 30px;
}
.tab-description-wrapper.hidden, 
.tab-description-wrapper2.hidden {
    padding: 0px 30px;
}
.tab-description-wrapper > p,
.tab-description-wrapper2 > p,
.facultative-text-wrap > p {
    margin-bottom: 0px;
}
.tab-description-wrapper a,
.tab-description-wrapper2 a,
.facultative-text-wrap a {
    font-weight: 700;
    color: var(--blue-color);
}
.tab-description-wrapper a:hover,
.tab-description-wrapper2 a:hover,
.facultative-text-wrap a:hover {
    color: var(--main-color);
}
.tab.open .tab-main-title-wrapper, 
.tab2.open .tab-main-title-wrapper2 {
    padding-bottom: 0px;
}
.tab.open .tab-main-title, 
.tab2.open .tab-main-title2 {
    color: var(--blue-color);
}
.tab.open .tab-arrow-right, 
.tab2.open .tab-arrow-right2 {
    display: none;
}
.tab.open .tab-arrow-bottom, 
.tab2.open .tab-arrow-bottom2 {
    display: block;
}
.tab-description-wrapper ul, 
.tab-description-wrapper2 ul, 
.facultative-text-wrap ul {
    padding-left: 15px;
}
.facultatives-tab-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.facultative-tab-wrapper {
    padding: 15px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-box-shadow);
    border-radius: 10px;
    background-color: var(--white-color);
}
.facultative-tab-wrapper iframe {
    border: 0;
    width: 100%;
    height: 200px;
}
.map-wrapper iframe {
    border: 0;
    width: 100%;
    height: 300px;
}
.gallery {
    position: relative;
    user-select: none;
    cursor: grab;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.gallery.dragging { 
    cursor: grabbing; 
}
.gallery-big-track {
    width: 100%;
    height: 600px;
    overflow: hidden;
    cursor: grab;
}
.gallery-big-track.dragging {
    cursor: grabbing;
}
.gallery-big-slide {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    opacity: 0;
    transition: opacity .25s ease;
}
.gallery-big-slide img {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    -webkit-user-drag: none; 
    user-drag: none;
}
.gallery-big-slide.active  {
    z-index: 999;
    opacity: 1;
}
.gallery-slide-number-main-wrapper {
    width: 100px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px 10px 0px 0px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 50px);
    z-index: 1000;
    display: grid;
    place-items: center;
}
.gallery-slide-number-wrapper {
    display: flex;
    gap: 5px;
    color: var(--white-color);
}
.gallery-controls {
    position: relative;
    z-index: 1000;
    width: 50px;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: grid;
    place-items: center;
}
.gallery-controls:hover {
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}
.gallery-prev {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px 0px 0px 10px;
}
.gallery-next {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 0px 10px 10px 0px;
}
.gallery-controls svg {
    color: var(--white-color);
    opacity: 0.7;
}
.gallery-controls:hover svg {
    opacity: 1;
}
.tours-comforts-icons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.tour-comfort-icon {
    width: 50px;
    height: auto;
}
table {
    width: auto;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    border-collapse: collapse;
    box-shadow: var(--box-shadow);
}
th,
td {
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}
th {
    text-align: left;
    border-right: 1px solid var(--border-color);
}
.room-main-wrapper {
    border: 1px solid var(--border-color);
    box-shadow: var(--card-box-shadow);
    border-radius: 10px;
    background-color: var(--white-color);
    padding: 30px;
}
.room-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
.room-small-title {
    font-size: 16px;
    font-weight: 600;
}
.room-img-wrapper {
    width: 330px;
    height: 186px;
    border-radius: 5px;
}
.room-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.icon-image {
    display: grid;
    place-items: center;
}
.icon-image img {
    height: 35px;
    width: auto;
}
.icon-text {
    text-align: center;
}
.reservation-small-title {
    font-size: 16px;
    font-weight: 600;
}
.reservation-step.active {
    background-color: var(--main-color);
    color: var(--white-color);
}
.reservation-addons-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.addon {
    padding:15px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-box-shadow);
    border-radius: 10px;
    background-color: var(--white-color);
}
.reservation-facultatives-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.other-tours-main-wrapper {
    position: relative;
    overflow: hidden; /* Keep this to ensure no overflow */
    display: flex;
    gap: 0px;
}
.other-tours-controls {
    z-index: 1000;
    width: 50px;
    background: rgba(0, 0, 0, 0.2);
    display: grid;
    place-items: center;
    cursor: pointer;
    border-radius: 10px;
}
.other-tours-controls svg {
    color: var(--white-color);
    opacity: 0.7;
}
.other-tours-controls:hover {
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}
.other-tours-wrapper {
    width: 100%;
    display: flex;
    gap: 30px;
    justify-content: start; /* Align to the left */
    align-items: stretch;
    white-space: nowrap; /* Ensure content stays in a single line */
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}
.other-tours-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for WebKit browsers */
}
.other-tours-wrapper a {
    width: 295px;
    flex: 0 0 295px; /* Ensures the cards stay at 295px width */
    scroll-snap-align: start; /* Optional: smooth snap between cards */
}
.other-tours-dots-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.other-tours-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-color); /* Default color */
    transition: background-color 0.3s;
}
.other-tours-dot.active {
    background-color: var(--main-color); /* Active dot color */
}
.comment-card svg {
    width: 20px;
    height: auto;
}
/* SINGLE TOUR PAGE - END */
/* CHARTER PAGES */
.charter-page-main-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.charter-page-main-wrapper-2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.charter-iframe-wrapper {
    width: 66%;
}
.charter-texts-wrapper {
    width: 34%;
}
.charter-texts-wrapper .card-title {
    font-size: 18px;
    font-weight: 500;
}
/* CHARTER PAGES - END */
/* LINK-ZA-KLIENTI PAGE */
.client-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 15px;
}
/* LINK-ZA-KLIENTI PAGE - END */
/* RESPONSIVE */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .gallery-masonry-item.krstarenja-home {
        grid-column: span 1;
    }
    .gallery-masonry-item.krstarenja-home img {
        max-width: 300px;
    }
    .gallery-masonry-item.krstarenja-home img.wide-image {
        display: none;
    }
    .gallery-masonry-item.krstarenja-home img.not-wide-image {
        display: block;
    }
}
@media only screen and (max-width: 1399px) {
    /* GALLERY MASONRY */
    .gallery-masonry {
        column-count: 3;
    }
    .gallery-masonry-2-cols {
        column-count: 2;
    }
    /* GALLERY MASONRY - END */
}
@media only screen and (max-width: 1300px) {
    /* SINGLE TOUR */
    .transport-table-desktop .flex-row {
        flex-direction: column;
        gap: 10px;
    }
    /* SINGLE TOUR - END */
}
@media only screen and (min-width: 991px) {
    /* SINGLE TOUR */
    .transport-table-desktop {
        display: table;
    }
    .transport-table-mobile {
        display: none;
    }
    /* SINGLE TOUR - END */
}
@media only screen and (max-width: 991px) {
    /* HEADER */
    .header-top .header-link span {
        display: none;
    }
    /* HEADER - END */
    /* SEARCH TOURS PAGE */
    .search-tours-page-wrapper {
        grid-template-columns: 1fr;
    }
    .responsive-filters {
        display: block;
    }
    .filters {
        display: none;
    }
    .responsive-filters-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    /* SEARCH TOURS PAGE - END */
    /* GALLERY MASONRY */
    .gallery-masonry {
        column-count: 2;
    }
    /* GALLERY MASONRY - END */
    /* SINGLE TOUR */
    .gallery-big-track,
    .gallery-big-slide img {
        height: 400px;
    }
    .transport-table-desktop {
        display: none;
    }
    .transport-table-mobile {
        display: table;
    }
    #reservation-modal .reservation-passengers-wrapper .flex-row {
        flex-direction: column;
        gap: 15px;
    }
    /* SINGLE TOUR - END */
    /* CHARTER PAGES */
    .charter-page-main-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .charter-iframe-wrapper {
        width: 100%;
    }
    .charter-texts-wrapper {
        width: 100%;
    }
    /* CHARTER PAGES - END */
}
@media only screen and (max-width: 767px) {
    /* HEADER */
    .header-menu-cards {
        height: auto;
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr auto;
        grid-template-rows: 1fr 1fr;
    }
    /* HEADER - END */
    /* FOOTER */
    .footer-middle-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-title {
        align-self: center;
    }
    .footer-link {
        align-self: center;
    }
    .footer-socials {
        justify-content: center;
    }
    /* FOOTER - END */
    /* GALLERY MASONRY */
    .gallery-masonry {
        column-count: 1;
    }
    .gallery-masonry-item.krstarenja-home {
        grid-column: span 1;
    }
    .gallery-masonry-item.krstarenja-home img {
        max-width: 300px;
    }
    .gallery-masonry-item.krstarenja-home img.wide-image {
        display: none;
    }
    .gallery-masonry-item.krstarenja-home img.not-wide-image {
        display: block;
    }
    .homepage-quote-wrapper {
        text-align: center;
    }
    .homepage-quote-wrapper .underlined-span {
        border-bottom: 0px;
        padding-bottom: 0px;
    }
    .homepage-quote-wrapper .homepage-quote-author {
        align-self: center;
    }
    /* GALLERY MASONRY - END */
    /* SINGLE TOUR */
    .tour-info.flex-between {
        flex-direction: unset;
        align-items: unset;
        justify-content: unset;
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
        text-align: center;
    }
    .pdfs .custom-button {
        height: auto;
    }
    .passengers-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .selected-children-ages {
        grid-template-columns: 1fr;
    }
    .room-main-wrapper {
        flex-direction: column;
    }
    .gallery-big-track,
    .gallery-big-slide img {
        height: 300px;
    }
    .facultatives-tab-main-wrapper {
        grid-template-columns: 1fr;
    }
    .map-wrapper iframe {
        height: 250px;
    }
    #other-tours .other-tours-controls {
        width: 35px;
    }
    #reservation-modal .custom-modal {
        min-width: 100vw;
        max-width: 100vw;
    }
    #reservation-modal .custom-modal-body .flex,
    #reservation-modal .responsive-text,
    #reservation-modal .main-passenger-wrapper {
        flex-direction: column;
    }
    #reservation-modal .reservation-addons-list,
    #reservation-modal .reservation-facultatives-list {
        grid-template-columns: 1fr;
    }
    #reservation-modal .pl-15 {
        padding-left: 0px;
    }
    #reservation-modal .responsive-text-center,
    #reservation-modal .reservation-tour,
    #reservation-modal .reservation-period,
    #reservation-modal .reservation-passengers,
    #reservation-modal .reservation-service,
    #reservation-modal .reservation-room {
        text-align: center;
    }
    /* SINGLE TOUR - END */
}
@media only screen and (max-width: 675px) {
    #reservation-modal .reservation-steps {
        flex-direction: unset;
        align-items: unset;
        column-gap: unset;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    #reservation-modal .reservation-modal-navigation-buttons-wrapper {
        padding-bottom: 30px;
    }
    .search-prices,
    #reservation-modal .reservation-modal-navigation-buttons-wrapper button,
    #reservation-modal .save-cancel-addon-buttons-wrapper button,
    .facultative-picker-buttons-wrapper .custom-button,
    .show-facultative-prices-button,
    .select-addon,
    .reserve-button {
        width: 100%;
    }
    .payment-step .payment-title {
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 651px) {
    .search-tour-fields-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: self-start;
    }
    .search-tour-fields-wrapper .search-tours-button {
        align-self: center;
    }
}
@media only screen and (max-width: 575px) {
    .card {
        padding-left: 15px;
        padding-right: 15px;
    }
    table {
        font-size: 12px;
    }
}
@media only screen and (max-width: 480px) {
    .custom_popup-card {
        width: 90vw!important;
    }
    .custom-datepicker-callendar-wrapper {
        width: 250px;
    }
}
@media only screen and (max-width: 400px) {
    .page-title {
        font-size: 25px;
    }
    .responsive-filters-wrapper {
        grid-template-columns: 1fr;
    }
    /* SINGLE TOUR */
    .search-prices {
        width: 100%;
    }
    .gallery-big-track,
    .gallery-big-slide img {
        height: 275px;
    }
    /* SINGLE TOUR - END */
}
/* RESPONSIVE - END */