/*LOADING*/
.skeleton-screen {
    max-width: 100%;
    margin: 0 auto;
}
.skeleton-header,
.skeleton-half-content,
.skeleton-min-content,
.skeleton-image,
.skeleton-content {
    width: 100%;
    height: 30px;
    background-color: var(--bs-gray-200);
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}
.skeleton-half-content {
    width: 50%;
}
.skeleton-min-content {
    width: 25%;
}
.skeleton-image {
    height: 200px;
    border-radius: var(--border-radius-lg);
}
.skeleton-header::before,
.skeleton-half-content::before,
.skeleton-min-content::before,
.skeleton-image::before,
.skeleton-content::before  {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, var(--bs-gray-100) 50%, transparent 100%);
    animation: loading 2s linear infinite;
}
@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
/*LOADING*/
.page-loader-absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.7);
    backdrop-filter: blur(30px); /* Arka planı bulanıklaştırır */
    -webkit-backdrop-filter: blur(30px); /* Safari için */
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.loader {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff3040;
    animation: hop 1.2s ease-in-out infinite;
}
.dot:nth-child(2) {
    background: #ffcc00;
    animation-delay: 0.2s;
}
.dot:nth-child(3) {
    background: #00cc99;
    animation-delay: 0.4s;
}
@keyframes hop {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-40px) scale(1.3);
    }
}

@media (min-width: 1500px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1420px;
    }
}
img {
    max-width: 100%;
    height: auto;
}
@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px;
    }
}
.autocomplete {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.suggestions {
    position: absolute;
    max-height: 420px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: var(--bs-box-shadow);
    border-radius: 8px;
    display: none;
    background-color: #fff;
}
@media (max-width: 991px) {
    .suggestions {
        width: calc(100% - 30px) !important;
        left: 15px !important;
    }
}
.suggestions .category-header {
    padding: 15px 15px;
    color: var(--bs-gray-600);
    background-color: var(--bs-gray-200);
    text-transform: uppercase;
    font-size: 0.825rem;
    font-weight: 600;
}
.suggestions .list-group-item {
    border-radius: 0 !important;
    font-size: 1.1rem;
    border-left: 0;
    border-right: 0;
    background-color: #fff;
    color: #000;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    display: block;
    padding: 10px 15px;
}
.suggestions .list-group-item:nth-child(1) {
    border-top: 0;
}
.suggestions .list-group-item:nth-last-child(1) {
    border-bottom: 0;
}
.suggestions .list-group-item:hover {
    background-color: #1B84FF;
    color: white;
}
.suggestions .highlight {
    background-color: #1B84FF; /* Vurgu rengi */
    color: white; /* Vurgu metni rengi */
}
.suggestions .match-highlight {
    text-decoration:underline;
}
.autocomplete_selectedvalue {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.cf-turnstile {
    margin-bottom: 10px;
    text-align: center;
}
.bs-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.bs-slider .bs-slider-item {
    position: relative;
}
.bs-slider .bs-slider-item .bs-slider-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
}
.bs-slider .bs-slider-item:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0c1833;
    opacity: .7;
}
.bs-slider .bs-slider-item .bs-slider-content {
    position: absolute;
    padding: 0 25px 50px;
    bottom: 0;
    width: 100%;
    max-width: 550px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
}
.bs-slider .bs-slider-item .bs-slider-content h3 {
    font-size: 2.75rem;
    font-weight: bolder;
    margin-bottom:15px;
    color: #fff;
}
.bs-slider .bs-slider-item .bs-slider-content p {
    margin-bottom: 20px;
}
.bs-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 8px;
    background-color: #fff;
    opacity: 1;
    transition: all 0.5s;
}
.bs-slider .swiper-pagination-bullet-active {
    background-color: var(--bs-primary);
    width: 44px;
}
.bs-slider .swiper-button-next, .bs-slider .swiper-button-prev {
    color: #fff;
}
.bs-tour-item {
    position: relative;
    background-color: #fff;
    border-radius: 0.625rem;
    box-shadow: var(--bs-root-card-box-shadow);
    border: 2px solid var(--bs-gray-300);
    overflow: hidden;
    transition: all 0.3s;
}
.bs-tour-item:hover {
    border-color: var(--bs-danger);
}
.bs-tour-item .bs-tour-image {
    overflow: hidden;
    border-bottom: 4px solid var(--bs-danger);
    position: relative;
}
.bs-tour-tags {
    position: absolute;
    bottom: 5px;
    display: flex;
    gap: 5px;
    z-index: 2;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 5px;
}
.bs-tour-tags .badge {
    border-radius: 3px;
}

.bs-tour-item.blue:hover {
    border-color: var(--bs-success);
}
.bs-tour-item.blue .bs-tour-image {
    border-color: var(--bs-success);
}
.bs-tour-item .bs-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16 / 10;
    transition: all 0.3s;
}
.bs-tour-item:hover .bs-tour-image img {
    transform: scale(1.1);
}
.bs-tour-item .bs-tour-body {
    padding: 20px;
}
.bs-tour-item .bs-tour-body h4 {
    font-size: 1.35rem;
    font-weight: bolder;
    color: var(--bs-gray-900);
    line-height: 1.4;
    margin-bottom: 15px;
    height: 4.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* Kaç satır gösterilecek */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bs-tour-item .bs-tour-body h4 a {
    color: var(--bs-gray-900);
}
.bs-tour-item:hover .bs-tour-body h4 a {
    color: var(--bs-danger) !important;
}
.bs-tour-item.blue:hover .bs-tour-body h4 a {
    color: var(--bs-success) !important;
}
.bs-tour-item .bs-tour-info {
    margin-bottom:15px;
    display: flex;
    flex-direction: column;
    width: 100%;
    flex:1;
    gap:7px;
    height: 85px;
}
.bs-tour-item .bs-tour-info-item {
    display: flex;
    align-items: start;
    gap:5px;
    color: var(--bs-gray-800);
    margin-bottom: 5px;
}
.bs-tour-item .bs-tour-info-icon {
    width: 22px;
    display: flex;
    align-items: start;
    justify-content: start;
    font-size: 1.25rem;
    padding-top: 2px;
}
.bs-tour-item .bs-tour-info-icon i {
    font-size: 17px;
    color: var(--bs-gray-900);
}
.bs-tour-item .bs-tour-info-detail {
    font-size: 14px;
    flex:1;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* Kaç satır gösterilecek */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bs-tour-item .bs-tour-dates {
    background-color: var(--bs-gray-200);
    border-radius: 0.625rem;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bs-tour-item .bs-tour-dates i {
    font-size: 17px;
    color: var(--bs-gray-900);
}
.bs-tour-item .bs-tour-dates a {
    color: var(--bs-gray-900);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 0.4rem;
}
.bs-tour-item .bs-tour-dates > a.bs-tour-all-date-btn {
    background-color:#fff;
}
.bs-tour-item .bs-tour-dates > a:hover {
    background-color:var(--bs-gray-300);
}
.bs-tour-item .bs-tour-footer {
    border-top:1px solid var(--bs-gray-300);
    display: flex;
    width: 100%;
}
.bs-tour-item .bs-tour-footer .bs-tour-commission {
    width: 100px;
    padding: 15px 20px;
}
.bs-tour-item .bs-tour-footer .bs-tour-price {
    text-align: right;
    flex:1;
    padding: 15px 20px;
}
.bs-tour-commission-amount {
    font-weight: bold;
    color:var(--bs-dark);
    font-size: 1.5rem;
}
.bs-tour-price-title {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--bs-gray-700);
    margin-bottom:5px;
}
.bs-tour-price-amount {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content:end;
    line-height: 1;
}
.bs-tour-price-amount strong {
    font-weight: bold;
    color:var(--bs-primary);
    font-size: 2rem;
}
.bs-tour-price-amount span {
    font-size: 1.25rem;
    font-weight: 500;
    color:var(--bs-gray-700);
    text-decoration: line-through;
}
.bs-tour-label {
    position: absolute;
    top: 10px;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 0 0.425rem 0.425rem 0;
    z-index: 1;
    display: flex;
    color:#fff;
}
.bs-tour-date-list {
    position: absolute;
    z-index: 2;
    background-color: #fff;
    top:0;
    left:-200px;
    visibility: hidden;
    width: 200px;
    height: 100%;
    box-shadow:var(--bs-box-shadow);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
}
.bs-tour-date-list.active {
    left:0;
    visibility: visible;
}
.bs-tour-date-list h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-gray-600);
    padding:15px 15px;
    background-color: var(--bs-gray-200);
    border-bottom: 1px solid var(--bs-gray-300);
    margin: 0;
}
.bs-tour-date-list .bs-tour-date-list-body {
    flex: 1;
    flex-shrink: 1;
    overflow-y: auto;
    overflow-x: hidden;
}
.bs-tour-date-list a {
    display:flex;
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px dashed var(--bs-gray-300);
    color:var(--bs-gray-900);
    font-size: 14px;
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
}
.bs-tour-date-list a:hover {
    background-color:var(--bs-gray-100);
    color:var(--bs-primary);
}
.bs-tour-date-list a span {
    font-size: 0.975rem;
    color: var(--bs-gray-600);
}

.swiper-4-col .swiper-button-next, .swiper-4-col  .swiper-button-prev {
    background-color: #fff;
    width:44px;
    height:44px;
    border-radius: 8px;
    box-shadow:var(--bs-box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:14px;
}
.swiper-tools-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
}
.swiper-tools-box .swiper-prev,.swiper-tools-box .swiper-next {
    width:44px;
    height:44px;
    font-size: 24px;
    background-color:var(--bs-gray-200);
    border-radius: 0.625rem;
    display:flex;
    align-items: center;
    justify-content: center;
}
.swiper-tools-box .swiper-prev.swiper-button-disabled,.swiper-tools-box .swiper-next.swiper-button-disabled {
    opacity:0.4;
    cursor:default;
}
.swiper-tools-box .swiper-prev:not(.swiper-button-disabled):hover,.swiper-tools-box .swiper-next:not(.swiper-button-disabled):hover {
    background-color:var(--bs-gray-300);
}
.swiper-tools-box i {
    font-size:24px;
}
.product-tour-list {
    display: flex;
    flex-direction: column;
    gap:10px;
    width: 100%;
    flex:1;
}
.place-item {
    border-radius: 0.625rem;
    background-color: #fff;
    padding: 15px;
    display: flex;
    gap:20px;
    border:2px solid var(--bs-gray-200);
    margin-bottom: 10px;
    position: relative;
}
.place-item .bs-tour-tags {
    right: 0;
    left: auto;
    justify-content: end;
    top:5px;
    bottom: auto;
}
.place-item:hover {
    border-color:var(--bs-gray-400);
}
.place-item.active {
    border-color:var(--bs-primary);
    box-shadow: 0 5px 0 0 var(--bs-primary);
    -webkit-box-shadow: 0 5px 0 0 var(--bs-primary);
    -moz-box-shadow: 0 5px 0 0 var(--bs-primary);
}
.place-item .place-img {
    width: 260px;
}
.place-item .place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.625rem;
}
.place-item .place-content {
    flex: 1;
    width: calc(100% - 300px);
}
.place-item .place-item-title {
    padding-top: 15px;
    margin-bottom:10px;
}
.place-item .place-item-title a {
    font-size: 1.7rem;
    font-weight: bolder;
    color: var(--bs-gray-900);
    line-height: 1.4;
}
@media (min-width: 1599px) AND (max-width: 1920px) {
    .place-item .place-img {
        width: 200px;
    }
    .place-item .place-content {
        width: calc(100% - 240px);
    }
}
@media (min-width: 1299px) AND (max-width: 1598px) {
    .noscroll {
        overflow: hidden !important;
    }
}
.place-item .place-tour-info {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    gap: 7px;
}
.place-item .place-tour-info-item {
    display: flex;
    align-items: start;
    gap: 5px;
    color: var(--bs-gray-800);
    margin-bottom: 5px;
}
.place-item .place-tour-info-icon {
    width: 22px;
    display: flex;
    align-items: start;
    justify-content: start;
    font-size: 1.25rem;
    padding-top: 2px;
}
.place-item .place-tour-info-icon i {
    font-size: 17px;
    color: var(--bs-gray-900);
}
.place-item .place-tour-info-detail {
    font-size: 14px;
    flex:1;
}
.place-item .place-date-list {
    display: flex;
    border-radius: 0.625rem;
    background-color: var(--bs-gray-200);
    overflow: hidden;
    height: 50px;
}
.place-item .place-date-list .place-date-list-icon {
    height: 50px;
    border-right: 1px dashed var(--bs-gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 15px;
    white-space: nowrap;
    gap:5px;
    line-height: 1;
}
.place-item .place-date-list .place-date-list-icon i {
    font-size: 22px;
    color: var(--bs-gray-900);
    line-height: 1;
}
.place-item .place-date-list .place-date-list-icon span {
    font-size: 0.75rem;
    color: var(--bs-gray-900);
    font-weight: 600;
    line-height: 1;
}
.place-item .place-date-list .place-date-list-body {
    flex: auto;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    gap: 5px;
    padding: 7px 10px;
    background-color: var(--bs-gray-200);
    width: 100%;
}
.place-item .place-date-list .place-date-list-body .place-date-item {
    white-space: nowrap;
    display: flex;
    height: 36px;
    padding: 0 15px;
    background-color: var(--bs-gray-300);
    border-radius: 0.225rem;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-800);
    width: 100px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}
.place-item .place-date-list .place-date-list-body .place-date-item:hover {
    background-color: var(--bs-gray-400);
}
.place-item .place-date-list .place-date-list-body .place-date-item.active {
    background-color: var(--bs-primary);
    color: #fff;
}
.place-item .date-swiper {
    width: 100%;
}
.place-item .place-tour-footer {
    border-top: 1px dashed var(--bs-gray-300);
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap:15px;
    margin-top:10px;
    align-items: start;
    padding-top: 10px;
}
.place-item .place-tour-footer .bs-tour-price {
    text-align: right;
    flex: 1;
}
@media (max-width: 767px) {
    .place-item {
        flex-direction: column;
    }
    .place-item .place-img {
        width: 100%;
    }
    .place-item .place-content {
        width: 100%;
    }
}

.swiper-scrollbar {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
}
.swiper-scrollbar-drag {
    background: rgba(0,0,0,0.2);
}
.swiper:hover .swiper-scrollbar {
    opacity: 1;
}

.dt-slider {
    width: 100%;
    margin: 0 auto;
}
.dt-slider .dt-slider-main {
    border-radius: 0.625rem;
    overflow: hidden;
    position: relative;
}
.dt-slider .dt-slider-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    aspect-ratio: 16 / 9;
    object-position: center;
}
.dt-slider .dt-slider-main .swiper-slide:hover img {
    transform: scale(1.02);
}
.dt-slider .dt-slider-thumbs {
    box-sizing: border-box;
    padding: 10px 0 0;
}
.dt-slider .dt-slider-thumbs .swiper-slide {
    width: calc(100% / 6);
    height: 100%;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 0.425rem;
    overflow: hidden;
    position: relative;
    opacity:0.55;
}
.dt-slider .dt-slider-thumbs .swiper-slide-thumb-active, .dt-slider .dt-slider-thumbs .swiper-slide:hover {
    opacity: 1;
}
.dt-slider .dt-slider-thumbs .swiper-slide-thumb-active:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 0.425rem;
    border: 4px solid var(--bs-primary);
}
.dt-slider .dt-slider-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16 / 12;
    border-radius: 0.425rem;
    transition: transform 0.3s;
}
.dt-slider .dt-slider-thumbs .swiper-slide:hover img {
    transform: scale(1.05);
}
.dt-slider .swiper-button-next,
.dt-slider .swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.dt-slider .swiper-button-next:hover,
.dt-slider .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
.dt-slider .swiper-button-next::after,
.dt-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}
.dt-row {
    display: flex;
    width: 100%;
    position: relative;
    gap: 30px;
}
.dt-row > .dt-content {
    width: calc(100% - 530px);
    flex: auto;
}
.dt-row > .dt-sidebar {
    width: 500px;
    flex: auto;
}
.search-result-preview .dt-row, .drawer .dt-row {
    flex-direction: column;
}
.search-result-preview .dt-row > .dt-content, .search-result-preview .dt-row > .dt-sidebar,
.drawer .dt-row > .dt-content, .drawer .dt-row > .dt-sidebar
{
    width: 100%;
}
.search-result-preview .dt-row > .dt-sidebar,
.drawer .dt-row > .dt-sidebar {
    order: 3; /* .dt-date-info'dan sonra */
}
.dt-date-info {
    order: 2; /* önce .dt-date-info */
}
@media (max-width: 1199px) {
    .dt-row {
        flex-direction: column;
    }
    .dt-row > .dt-content {
        width: 100%;
    }
    .dt-row > .dt-sidebar {
        width: 100%;
    }
}
/*FİYAT HESAPLAMA FORMU BAŞLANGIÇ*/
.price-calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    font-size: 1.1rem;
}
.price-calc-title {
    display: flex;
    flex-direction: column;
    flex:1;
    width: 100%;
}
.price-calc-title strong {
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: 600;
    gap:10px;
    line-height: 1.3;
    font-size:1.2rem;
}
.price-calc-title strong .material-icons-outlined {
    font-size: 18px;
}
.price-calc-room {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dashed var(--bs-gray-400);
}
.price-calc-room:nth-child(1) .price-calc-room-remove {
    display: none;
}
.price-calc-room:nth-last-child(1) {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.price-calc-item {
    padding-bottom: 0;
    margin-bottom: 10px;
}
.price-calc-item:nth-last-child(1) {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.price-calc-item .input-group {
    width: auto;
}
.price-calc-title>span {
    font-size: 0.9rem;
    color: var(--bs-gray-600);
}
.price-calc-item .input-group input {
    border:none !important;
    height: 36px;
    width: 50px;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    font-weight: bold;
    font-size: 1.4rem;
}
.price-calc-item .input-group .btn {
    width: 36px;
    height: 36px;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 0.2rem;
}
.btn-room-add {
    width: 122px;
}
.price-calc-item .input-group .btn i {
    font-size: 20px;
    margin:0;
    padding: 0;
}
.price-calc-item .input-group input[type="number"]::-webkit-inner-spin-button,
.price-calc-item .input-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.price-calc-item .input-group input[type="number"] {
    -moz-appearance: textfield;
}
.price-calc-response .price-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 3px
}
.price-calc-response .price-box .discount {
    font-weight: 600;
    text-decoration: line-through;
    font-size: 1rem;
    line-height: 1;
    color: var(--bs-gray-600);
}
.price-calc-response .price-box .price {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1
}
.price-calc-response {
    display: flex;
    gap:10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 15px;
    border-radius: var(--border-radius);
    background-color: var(--bs-success);
}
.price-table-box {
    position: relative;
    margin-bottom: 30px;
    display: block;
}
.price-table-box:nth-last-child(1) {
    margin-bottom: 0;
}
.price-table-box .price-table-head {
    background-color: var(--bs-gray-200);
    text-align: center;
    padding: 15px;
}
.price-table-box .price-table-head h4 {
    margin: 0;
}
.price-table-box .table {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 0;
}
.price-table-box .table th {
    font-weight: 600;
    text-wrap: nowrap;
}
.price-pack-list {
    display: none;
    gap: 10px;
    margin-bottom: 25px;
}
.price-pack-list .price-pack-item {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    gap:10px;
    border-top:3px solid var(--bs-gray-500);
    padding: 25px 10px;
    border-radius: var(--border-radius);
    box-shadow: .125rem .25rem .625rem .25rem rgba(0,0,0,.10);
    flex: 1;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}
.price-pack-list .price-pack-item input {
    display: none;
}
.price-pack-list .price-pack-item .price-pack-checkbox {
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border:1px solid var(--bs-gray-600);
    border-radius: 50%;
}
.price-pack-list .price-pack-item.active {
    border-top-color: var(--bs-danger);
}
.price-pack-list .price-pack-item.active .price-pack-checkbox {
    border-color: var(--bs-danger)
}
.price-pack-list .price-pack-item.active .price-pack-checkbox:after {
    display: block;
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top:2px;
    left: 2px;
    background-color: var(--bs-danger);
}
.price-calc-found {
    position: relative;
    padding: 15px;
    border-radius: 0.625rem;
    background-color: var(--bs-primary-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.price-calc-sale-box .btn {
    width: 100%;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.price-calc-found .place-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.price-calc-found .place-tour-footer .bs-tour-price-amount {
    display: flex;
    gap: 5px;
    justify-content: end;
    line-height: 1;
    flex-direction: column;
    align-items: end;
}
/*FİYAT HESAPLAMA FORMU BİTİŞ*/
[data-tooltip] {
    position: relative;
}
.tooltip {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 12.5px;
    line-height: 1.4;
    font-weight: 400;
    max-width: 260px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}
.tooltip.visible {
    opacity: 1;
    transform: scale(1);
}
.date-item-list .swiper-slide {
    width: 140px;
}
.date-item-btn {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-gray-200);
    border-radius: 0.425rem;
    padding: 10px 10px;
    line-height: 1.2;
    font-size: 14px;
    color: var(--bs-gray-900);
    opacity: 0.4;
}
.date-item-btn span {
    color: var(--bs-gray-900);
    font-size: 13px;
}
.date-item-btn:hover {
    opacity: 1;
}
.date-item-btn.active {
    cursor:default;
    background-color: var(--bs-danger);
    color: #fff;
    opacity: 1;
}
.date-item-btn.active span {
    color: #fff;
}
.place-discount {
    font-size: 14px;
    font-weight: 400;
    color: var(--bs-gray-800);
    text-decoration: line-through;
}
.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 25px 0;
}
.items-content-body .loader-container {
    padding: 40px 0 0;
}
.loader-ball {
    width: 12px;
    height: 12px;
    background-color: var(--bs-gray-400);
    border-radius: 50%;
    margin: 0 5px;
    animation: bounce 0.4s infinite alternate;
}
.loader-ball:nth-child(2) {
    animation-delay: 0.2s;
}
.loader-ball:nth-child(3) {
    animation-delay: 0.3s;
}
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}
.booking-submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    border-radius: 0.425rem;
}
.step-by-step {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: relative;
    margin-bottom: 40px;
    counter-reset: list-counter;
}
.step-by-step .step {
    font-weight: 600;
    color: var(--bs-gray-500);
    padding: 10px 0;
    position: relative;
    font-size: 1rem;
    text-align: center;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.step-by-step .step:not(:last-child):after {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--bs-gray-500);
    position: absolute;
    transform: translateY(-50%);
    right: -35px;
    content:"\e966";
    top:50%;
    font-family: "keenicons-solid" !important;
    font-size: 20px;
    line-height: 1;
}
@media(max-width: 991px) {
    .step-by-step {
        margin-bottom: 20px;
    }
}
.step-by-step .step .step-count {
    display: flex;
    width: 34px;
    height: 34px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background-color: var(--bs-gray-300);
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}
.step-by-step .step .step-count::before {
    counter-increment: list-counter; /* Sayaç artırılıyor */
    content: counter(list-counter); /* Sadece numara ekleniyor */
    display: block; /* Blok olarak göster */
    text-align: center; /* Ortalamak için */
    font-size: 20px; /* İsteğe bağlı boyut ayarı */
    font-weight: bold;
}

.step-by-step .step.active {
    color:var(--bs-primary);
    font-weight: bold;
}
.step-by-step .step.active .step-count {
    background-color: var(--bs-primary);
    color: #fff;
}

@media (max-width: 767px) {
    .step-by-step .step:not(.active) .step-title {
        display: none;
    }
}

.guest-item {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dashed var(--bs-gray-400);
}
.guest-item:nth-last-child(1) {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    top:8px;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
    left:8px;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
    right:8px;
}
.flatpickr-current-month .flatpickr-monthDropdown-months, .flatpickr-current-month input.cur-year {
    font-size:1.2rem !important;
    padding: 5px 8px;
    color: var(--bs-gray-900);
    border-radius: 4px !important;
    margin-left: 2px;
    margin-right: 2px;
}
.flatpickr-current-month .numInputWrapper {
    border-radius: 4px !important;
    margin-left: 2px;
    margin-right: 2px;
}
.flatpickr-current-month {
    padding-top: 4px;
}
.sk-switch {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    gap:10px;
    padding: 5px 10px 5px 65px;
    border-radius: 5px;
    background-color: var(--bs-gray-100);
}
.flex-button {
    display: flex;
    align-items: center;
}
.customer-card-item {
    display: flex;
    justify-content: space-between;
    position: relative;
    border:1px dashed var(--bs-gray-300);
    border-radius: 6px;
    padding: 15px 30px;
    transition: all .3s;
    outline:2px dashed transparent;
}

@media(max-width: 767px) {
    .customer-card-item {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
}

.customer-card-item:hover {
    border:1px solid var(--bs-primary);
    outline:2px solid var(--bs-primary);
}
.customer-card-item h4 {
    margin-bottom: 0;
}
.customer-card-item:hover h4 {
    color: var(--bs-primary) !important;
}
.customer-card-detail {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 1;
    gap: 7px;
    margin-top:10px;
}
.customer-card-detail>div {
    width: calc(50% - 10px);
    flex:auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.b2b_customer_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
}
.b2b_customer_wrapper .b2b_customer_search {
    margin-bottom: 20px;
}
.b2b_customer_wrapper .b2b_customer_list {
    flex:auto;
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.step_timer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--bs-danger-bg-subtle);
    color: var(--bs-danger);
    border-radius: 5px;
    width: 100%;
    margin-bottom: 15px;
    font-weight: 600;
    background-color: var(--bs-danger-bg-subtle);
}
.step_timer .step_timer_title {
    position: relative;
    font-size:13px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.step_timer .step_timer_time {
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.step_timer .step_timer_time .step_timer_hour, .step_timer .step_timer_time .step_timer_min, .step_timer .step_timer_time .step_timer_sec {
    display:flex;
    flex-direction: column;
    font-size: 22px;
    gap: 3px;
    line-height: 1;
    text-align: center;
}
.step_timer.step_timer_wide .step_timer_time .step_timer_hour, .step_timer.step_timer_wide .step_timer_time .step_timer_min, .step_timer.step_timer_wide .step_timer_time .step_timer_sec {
    font-size:18px;
    line-height: 1;
}
.step_timer_time .step_timer_seperator {
    font-size: 22px;
    font-weight: 600;
}
.step_timer.step_timer_wide .step_timer_time .step_timer_seperator {
    font-size: 18px;
    line-height: 1;
}
.step_timer .step_timer_time .step_timer_hour span, .step_timer .step_timer_time .step_timer_min span, .step_timer .step_timer_time .step_timer_sec span {
    font-weight: 400;
    font-size:10px;
}
.step_timer.step_timer_wide .step_timer_time .step_timer_hour span, .step_timer.step_timer_wide .step_timer_time .step_timer_min span, .step_timer.step_timer_wide .step_timer_time .step_timer_sec span {
    font-size:12px;
    line-height: 1;
}
.phone-group {
    display: flex;
    width: 100%;
    gap: 5px;
}
.phone-group>*:nth-child(1) {
    width: 100px;
}
.phone-group>*:nth-child(2) {
    flex: 1;
}
.view-more-content {
    overflow: hidden;
    max-height: 320px;
    transition: max-height 0.5s ease-in-out;
    position: relative;
}
.view-more-content.clps:before {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 90px;
    bottom: 0;
    left: 0;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,0.90) 0%,rgba(255,255,255,0)  100%);
    z-index: 1;
}
.price-cabin-select-container select option{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}
.price-cabin-select-container select option span {
    font-size:12px;
    font-weight: 600;
    color: var(--bs-gray-400);
}
.price-table-container {
    margin-top: 20px;
    position: relative;
}
.price-table, .price-table-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-table-item {
    border-radius: var(--border-radius);
    border:2px solid var(--bs-gray-200);
    overflow: hidden;
    position: relative;
    transition: var(--transition-effect);
}
.price-table-item .price-table-head {
    padding: 10px;
    background-color: var(--bs-gray-100);
    border-bottom:1px solid var(--bs-gray-300);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    align-items: center;
}
.price-table-item .price-table-head .price-table-title {
    font-size: 1rem;
    color: var(--primary-blue);
}
.price-table-item .price-table-body {
    padding: 10px;
    background-color: #fff;
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
    transition: var(--transition-effect);
    position: relative;
}
.price-table-item .price-table-body:after {
    display: block;
    position: absolute;
    content: ' ';
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    z-index: 2;
}
.price-table-item .price-table-body .price-table-body-item {
    display: flex;
    white-space: nowrap;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 5px;
    line-height: 1;
    border-right: 1px solid var(--bs-gray-400);
    text-align: center;
}
.price-table-item .price-table-body .swiper-slide:nth-last-child(1) .price-table-body-item {
    border-right: 1px solid transparent;
}
.price-table-item .price-table-foot {
    display: none;
    text-align: center;
    padding: 0 10px 10px;
}
.price-table-item .price-table-body .price-table-body-item span {
    color:var(--bs-gray-600);
    font-weight: 600;
    font-size: 1rem;
}
.price-table-item .price-table-body .price-table-body-item strong {
    display: flex;
    font-family: var(--title-font-family);
    text-align: center;
    flex: 1;
    font-size: 1.1rem;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    justify-content: center;
}
.price-table-item .price-table-body .price-table-body-item strong i {
    font-size: 21px;
    color: var(--bs-gray-400);
    cursor: pointer;
    transition: var(--transition-effect);
}
.price-table-item .price-table-body .price-table-body-item strong i:hover {
    color: var(--primary-blue);
}
.price-table-item .price-cabin-button {
    border-radius: var(--border-radius);
    box-shadow: none !important;
    outline: none !important;
    border:none !important;
    background-color: var(--red-color);
    color: var(--primary-blue);
    padding: 6px 15px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-effect);
}
.price-table-item:not(.active) .price-cabin-button:hover {
    opacity: .65;
}
.price-table-item.active {
    border:5px solid var();
}
.price-table-item.active .price-table-head {
    background-color: var(--red-color);
    border-bottom:1px solid var(--red-color);
}
.price-table-item.active .price-cabin-button {
    background-color: var(--red-color);
    color: var(--primary-blue);
    cursor: default;
    opacity: 0.65;
}
@media (max-width: 567px) {
    .price-table-item .price-table-head {
        flex-direction: column;
        gap: 5px;
        padding: 5px;
    }
    .price-table-item .price-table-body .price-table-body-item span {
        height: auto;
    }
    .price-table-item .price-cabin-button {
        width: 100%;
    }
}
.category-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
}
.category-item img {
    aspect-ratio: 5 / 5;
    transition: all 0.3s;
    object-position: center;
    object-fit: cover;
    border-radius: 6px;
    width: 100%;
}
.category-item:hover h4 {
    color: var(--bs-success);
}
.destination-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
}
.destination-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    transition: all 0.3s ease-in-out;
}
.destination-item h4 {
    position:absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    left: 0;
    padding: 25px 15px;
    color:#fff;
    z-index: 1;
    font-size: 1.4rem;
}
.destination-item img {
    aspect-ratio: 14 / 16;
    transition: all 0.3s;
    object-position: center;
    object-fit: cover;
    width: 100%;
}
.destination-item:hover:after {
    background-color: rgba(0,0,0,0.2);
}
.destination-item:hover img {
    transform: scale(1.1);
}
.reservation-reminder-minimal {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-200%);
    z-index: 1055;
    animation: fade-slide-up 1s ease-out forwards;
    opacity: 0;
}
@keyframes fade-slide-up {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
@media (max-width: 667px) {
    .reservation-reminder-minimal {
        width: 90%;
    }
}

.reminder-box {
    background: #ffffff;
    color: #1e1e2d;
    border-radius: 999px;
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #e0e0e0;
    font-size: 1.2rem;
    -webkit-box-shadow: 0 5px 16px 0 rgba(0,0,0,0.4);
    box-shadow: 0 5px 16px 0 rgba(0,0,0,0.4);
}
.message {
    font-weight: 500;
    flex: 1;
}
.resume-link {
    background-color: var(--bs-primary);
    color: white;
    padding: 0.4rem 0.4rem 0.4rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.resume-link:hover {
    background-color: var(--bs-primary-active);
}
.list-filter-box {
    background-color: var(--bs-gray-100);
    padding: 20px;
    border-radius: 6px;
}
.tour_map {
    min-height: 500px;
    width: 100%;
    border-radius: 8px;
    margin-top:30px;
    aspect-ratio: 16 / 9;
}
/* Attribution yazısını küçült ve şıklaştır */
.maplibregl-ctrl-attrib {
    font-size: 10px !important;
    background: rgba(255,255,255,0.6) !important;
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 2px 8px !important;
    margin: 8px !important;
    color: #444 !important;
    opacity: 0.5;
}
/* Navigasyon tuşlarını modernleştir */
.maplibregl-ctrl-group button {
    border-radius: 10px !important;
    margin: 2px !important;
    background: rgba(255,255,255,0.7) !important;
    transition: all 0.2s ease;
}
.maplibregl-ctrl-group button:hover {
    background: rgba(0,119,255,0.85) !important;
    color: white !important;
}
/* Popup stilleri */
.mapboxgl-popup-content {
    font-size: 14px;
    border-radius: 12px;
    padding: 10px 15px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.extra-item {
    background-color: var(--bs-gray-100);
    border-radius: 6px;
    padding: 15px;
    width: 100%;
}
.extra-item.active {
    background-color: var(--bs-primary-light);
}
.extra-item-list .swiper-slide {
    width: 240px;
}
.guest-extra-card.active .card-header {
    background-color: var(--bs-primary-light);
}
.guest-extra-card .card-header .card-title, .guest-extra-card .card-header .card-title i {
    color: var(--bs-dark) !important;
}
.guest-extra-card:hover .card-header .card-title, .guest-extra-card:hover .card-header .card-title i,
.guest-extra-card.active .card-header .card-title, .guest-extra-card.active .card-header .card-title i
{
    color: var(--bs-primary) !important;
}
.extra-item>h4 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
}
.extra-item .extra-item-price-list {
    padding:15px 0;
}
.extra-item .extra-item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--bs-gray-300);
    width: 100%;
}
.extra-item .extra-item-price:nth-last-child(1) {
    border-bottom: none;
}
.extra-item .btn_extra_selected.active, .extra-item .btn_extra_selected.active:hover {
    background-color: var(--bs-primary-active) !important;
    color: white !important;
}

.extra-item .extra-item-price strong {
    display: flex;
    align-items: center;
    gap: 5px;
}
.extra-item .extra-item-price small {
    font-size: 0.9rem;
    color: var(--bs-primary);
    font-weight: 600;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    line-height: 1;
    background-color: var(--bs-primary-light);
    padding: 5px 8px;
    border-radius: 5px;
}
.extra-item .extra-item-price small i {
    font-size: 1.2rem;
    color: var(--bs-primary);
}
.tour_info_mini_btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    gap:5px;
}
.tour_info_mini_btn i {
    color: var(--bs-primary);
    font-size: 1.4rem;
    line-height: 1;
}
.tour_info_mini_table {
    overflow-y:hidden;
    max-height: 100px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.tour_info_mini_table::after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 80%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 2;
    transition: all 0.3s ease-in-out;
}
.tour_info_mini_table.active {
    max-height: 1000px;
}
.tour_info_mini_table.active::after {
    height: 0;
}
.commission_hide_view .commission_view {
    visibility: hidden !important;
}
.commission_hide_view .commission_view.view-none {
    display: none !important;
}
table:not(.table) {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px;
    color: #3F4254;
    background-color: #fff !important;
    border: 1px solid #E4E6EF !important;
    border-radius: 0.475rem !important;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.03);
}
.table table thead {
    background-color: #F9FAFB;
}
.table table thead th {
    padding: 12px 16px !important;
    text-align: left;
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #7E8299 !important;
    border-bottom: 1px solid #E4E6EF !important;
}
.table table tbody tr {
    transition: background-color 0.2s ease;
}
.table table tbody td, .table table tbody th {
    padding: 12px 16px !important;
    border-bottom: 1px solid #E4E6EF !important;
    vertical-align: middle !important;
}
.table table tbody tr:last-child td {
    border-bottom: none !important;
}

.sk-image-input {
    display: inline-block;
    position: relative;
    border-radius: 8px;
    padding: 3px;
    background-color: #fff;
}
.sk-image-input .sk-image-preview {
    width: 115px;
    height: 115px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
}
.sk-image-input .sk-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sk-image-input input[type=file] {
    opacity: 0;
    position: absolute;
    z-index: -1;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.sk-image-input .sk-image-add {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0; display: flex; align-items: center; text-align: center; font-size: 25px; background-color: rgba(0,0,0,0.25); color: #fff !important;
    cursor: pointer; opacity: 0; visibility: hidden; transition: 0.3s; justify-content: center;
    z-index: 1;
}
.sk-image-input .sk-image-add i {
    font-size: 25px; color: #fff !important;
}
.sk-image-input:not([data-image]):hover .sk-image-add {
    opacity: 1; visibility: visible;
}
.sk-image-input .sk-image-min-btn {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    position: absolute;
    z-index: 3;
    transition: all 0.3s;
    cursor: pointer;
    color: #000 !important;
}
.sk-image-input .sk-image-min-btn i {
    font-size: 12px;
}
.sk-image-input .sk-image-min-btn.sk-image-remove {
    bottom: -12px;
    right: -12px;
    display: none;
}
.sk-image-input[data-image] .sk-image-min-btn.sk-image-remove {
    display: flex;
}
.sk-image-input .sk-image-min-btn.sk-image-remove i {
    font-size: 13px;
}
.sk-image-input .sk-image-min-btn.sk-image-edit {
    top: -12px;
    right: -12px;
    display: none;
}
.sk-image-input[data-image] .sk-image-min-btn.sk-image-edit {
    display: flex;
}
.sk-image-input .sk-image-min-btn:hover {
    background-color: #1a252f;
    color: #fff !important;
}
.sk-avatar-img {
    width: 60px;
    height: 60px;
    padding: 8px;
    border-radius: 0.425rem;
    background-color: #f5f8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.image-cover-wrapper {
    position: relative;
    padding: 0 0 70px 0;
}
.image-cover-wrapper .sk-image-input:not(.sk-image-fullwidth) {
    position: absolute;
    left: 30px;
    bottom:30px;
    z-index: 3;
}
.sk-image-input.sk-image-fullwidth {
    display: block;
    position: relative;
    border: 1px solid var(--bs-gray-300);
}
.sk-image-input.sk-image-fullwidth .sk-image-preview {
    width: 100%;
    height: 320px;
}

h1.head-title {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

@media(max-width:991px) {
    h1.head-title {
        font-size: 14px !important;
    }
}

@media(max-width:767px) {
    h1.head-title {
        max-width: 220px;
    }
}

.z-index-0 {
    z-index:0 !important;
}

.z-index-0[data-kt-app-header-fixed-mobile=true] .app-header {
    z-index: 0 !important;
}

@media (max-width: 991.98px) {
    .app-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.pc-cabin-item {
    padding: 10px;
    border-radius: 6px;
    background-color: #fff;
    border:1px solid var(--bs-gray-300);
    cursor: pointer;
    margin:1px;
}

.pc-cabin-item:hover {
    background-color: var(--bs-gray-100);
}

.pc-cabin-item.active {
    border-color: var(--bs-primary);
    background-color: var(--bs-primary-light);
}

.pc-cabin-item .pc-cabin-head {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}

.pc-cabin-item .pc-cabin-body {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    font-size: 12px;
}

.pc-cabin-item .pc-cabin-title {
    line-height: 16px;
    font-size: 13px;
    height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    flex-grow: 1;
}

.payment-price-cart {
    display: flex;
    position: relative;
    width: 100%;
    background-color: #fff;
    border:1px solid var(--bs-gray-300);
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
    align-items: center;
    box-shadow: var(--bs-box-shadow);
}



.payment-price-cart .pyc-title {
    display: flex;
    font-size: 13px;
    color: var(--bs-gray-500);
    padding: 10px 25px;
}

.payment-price-cart .pyc-price-list {
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    gap: 10px;
}

.payment-price-cart .pyc-price-list .pyc-price-item {
    border-radius: 4px;
    padding: 5px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-gray-400);
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex: 1;
}

@media (max-width: 991px) {
    .payment-price-cart {
        flex-direction: column;
    }

    .payment-price-cart .pyc-price-list {
        flex-wrap: wrap;
    }

    .payment-price-cart .pyc-price-list .pyc-price-item {
        flex: auto;
        width: calc(50% - 10px);
    }
}

.payment-price-cart .pyc-price-list .pyc-price-item .pyc-price-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--bs-warning);
    z-index: -1;
    transition: all 0.5s ease;
}

.payment-price-cart .pyc-price-list .pyc-price-item .pyc-price-loader.primary {
    background-color: var(--bs-success);
}

.payment-price-cart .pyc-price-list .pyc-price-item .pyc-price-loader.success {
    background-color: var(--bs-primary);
}

.payment-price-cart .pyc-price-list .pyc-price-item.danger {
    background-color: var(--bs-danger);
    color: #fff;
}

.payment-price-cart .pyc-price-list .pyc-price-item.success {
    background-color: var(--bs-primary);
    color: #fff;
}

.payment-price-cart .pyc-price-list .pyc-price-item.primary {
    background-color: var(--bs-success);
    color: #fff;
}

.payment-price-cart .pyc-price-list .pyc-price-item.warning {
    background-color: var(--bs-warning);
    color: #fff;
}

.payment-price-cart .pyc-price-list .pyc-price-item.danger .pyc-price-title {
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    letter-spacing: 3px;
}

.payment-price-cart .pyc-price-list .pyc-price-item .pyc-price-title {
    font-size: 14px;
    font-weight: bold;
    color: rgba(0,0,0,0.55);
}

.payment-price-cart .pyc-price-list .pyc-price-item .pyc-price {
    font-size: 14px;
    font-weight: bold;
}

.payment-list .table-responsive {
    overflow-y: auto;
    max-height: 365px;
}

.payment-list-table tbody tr {
    position: relative;
    z-index: 1;
}

.payment-list-table tbody tr .prt-loading-row {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--bs-warning-light);
    z-index: -1;
    transition: all 1s ease;
}

.payment-list-table tbody tr .prt-loading-row.primary {
    background-color: var(--bs-success-light);
}

.payment-list-table tbody tr .prt-loading-row.success {
    background-color: var(--bs-primary-light);
}



.ds_collection_list {
    display: flex;
    width: 100%;
    position: relative;
    gap:10px;
    flex-direction: row;
    padding: 5px 0;
}

.ds_collection_list .ds_collection_item {
    flex: 1;
}

@media (max-width: 991px) {
    .ds_collection_list {
        flex-direction: column;
    }
}