@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;800&display=swap');

:root {
    /* Site Properties */
    --background-color: #101010;
    --main-color: #FE9506;
    --alternate-color: #B36902;
    --main-text-color: #fff;
    --soft-text-color: #ddd;
    --column-gap: 10px;
    --main-gap: 20px;
    --section-gap: 40px;
    --main-transition: 0.2s;
    --box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    --border-radius: 5px;
    --small-border-radius: 3px;
    --border-color: rgba(255,255,255,0.1);
    --transparent-color: rgba(255,255,255,0.2);
    --transparent-color-2: rgba(255,255,255,0.1);

    /* Font Properties */
    --font-size: 16px;
    --mobile-font-size: 14px;
    --line-height: 1.4em;
    --letter-spacing: 0.4px;
    --font-family: "Noto Sans", serif;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;

    /* Form Elements */
    --input-color: #fff;
    --input-padding: 0 10px;
    --input-height: 40px;
    --input-border: solid 1px #888;
    --placeholder-color: #888;
    --textarea-padding: 10px;
    --button-color: #FE9506;
    --button-hover-color: #B36902;
    --button-padding: 0 10px;
    --button-height: 40px;
    --button-border: none;
}

body {
    margin: 0;
    padding: 0;
    background: var(--background-color);
    font-family: var(--font-family);
    color: var(--main-text-color);
    background-image: url("../img/material/lighttexture.png");
}

html {
    font-size: var(--font-size);
    font-weight: var(--font-regular);
}

* {
    text-decoration: none !important;
    outline: none !important;
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25);
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border: solid 1px rgba(0,0,0,0.25);
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.25);
}

*::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

::placeholder {
    color: var(--placeholder-color);
}

.panel-text {
    font-size: 0.9rem;
    color: var(--soft-text-color);
    margin-bottom: -10px;
    font-weight: var(--font-regular);
    text-align: justify;
}

.panel-text img,
.panel-text iframe,
.panel-text video {
    max-width: 100%;
}

.panel-text iframe {
    width: 100%;
}

.panel-text h1,
.panel-text h2,
.panel-text h3,
.panel-text h4,
.panel-text h5,
.panel-text h6 {
    display: block;
    margin-bottom: 10px;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
}

.panel-text h1 {
    font-size: 1.6em;
}

.panel-text h2 {
    font-size: 1.5em;
}

.panel-text h3 {
    font-size: 1.4em;
}

.panel-text h4 {
    font-size: 1.3em;
}

.panel-text h5 {
    font-size: 1.2em;
}

.panel-text h6 {
    font-size: 1em;
}

.panel-text p {
    display: block;
    margin-bottom: 10px;
}

.panel-text b {
    font-weight: 600;
}

.panel-text ul {
    list-style: circle;
    display: block;
    padding-left: 20px;
}

.panel-text ul li {
    margin-bottom: 5px;
    position: relative;
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: none !important;
    min-width: unset !important;
    margin: 0;
    border-radius: 0;
    border: none;
    background: #fff;
    box-shadow: none;
    padding: 0;
}

.row {
    margin-left: calc(var(--column-gap) * -1);
    margin-right: calc(var(--column-gap) * -1);
}

.row > [class*="col-"],
.container,
.container-fluid {
    padding-left: var(--column-gap);
    padding-right: var(--column-gap);
}

.smt {
    margin-top: var(--section-gap);
}

.smr {
    margin-right: var(--section-gap);
}

.smb {
    margin-bottom: var(--section-gap);
}

.sml {
    margin-left: var(--section-gap);
}

.dmt {
    margin-top: var(--main-gap);
}

.dmr {
    margin-right: var(--main-gap);
}

.dmb {
    margin-bottom: var(--main-gap);
}

.dml {
    margin-left: var(--main-gap);
}

.dmth {
    margin-top: calc(var(--main-gap) / 2);
}

.dmrh {
    margin-right: calc(var(--main-gap) / 2);
}

.dmbh {
    margin-bottom: calc(var(--main-gap) / 2);
}

.dmlh {
    margin-left: calc(var(--main-gap) / 2);
}

.dpt {
    padding-top: var(--main-gap);
}

.dpr {
    padding-right: var(--main-gap);
}

.dpb {
    padding-bottom: var(--main-gap);
}

.dpl {
    padding-left: var(--main-gap);
}

.dpth {
    padding-top: calc(var(--main-gap) / 2);
}

.dprh {
    padding-right: calc(var(--main-gap) / 2);
}

.dpbh {
    padding-bottom: calc(var(--main-gap) / 2);
}

.dplh {
    padding-left: calc(var(--main-gap) / 2);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.mobile-nav > .mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 400px;
    height: 100%;
    background: none;
    z-index: 99;
}

.mobile-nav > .mobile-nav-content > .mobile-nav-inner {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    box-shadow: var(--box-shadow);
    padding: var(--main-gap);
    pointer-events: all;
}

.mobile-nav.active {
    pointer-events: all;
}

.mobile-nav.active > .mobile-nav-content > .mobile-nav-inner {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: var(--section-gap) 0;
    min-height: calc(50vh);
    position: relative;
    border-bottom: solid 2px var(--background-color);
}

.showcase > * {
    position: relative;
    z-index: 10;
}

.showcase:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/material/texture.png");
    z-index: 1;
}

.main-nav {
    background: #000;
    position: relative;
    z-index: 999;
}

.main-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.main-nav-flex > .left,
.main-nav-flex > .right {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.main-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.main-logo img {
    width: 200px;
}

.main-nav-links {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.main-nav-links > .item > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10px 15px;
    border-left: solid 1px var(--border-color);
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
    transition: var(--main-transition) ease 0s;
}

.main-nav-links > .item.colored > a {
    background: var(--main-color);
}

.main-nav-links > .item > a:hover {
    background: var(--transparent-color);
}

.main-nav-links > .item.colored > a:hover {
    background: var(--alternate-color);
}

.main-nav-links > .item:last-child > a {
    border-right: solid 1px var(--border-color);
}

.main-nav-links-2 {
    display: flex;
    align-items: stretch;
    margin-top: 1%;

}
.main-nav-links-2 > .item > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10px 15px;
    border-left: solid 1px var(--border-color);
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
    transition: var(--main-transition) ease 0s;
}

.main-nav-links-2 > .item.colored > a {
    background: var(--main-color);
}

.main-nav-links-2 > .item > a:hover {
    background: var(--transparent-color);
}

.main-nav-links-2 > .item.colored > a:hover {
    background: var(--alternate-color);
}

.main-nav-links-2 > .item:last-child > a {
    border-right: solid 1px var(--border-color);
}



.showcase-text > .title {
    display: block;
    font-size: 2.2rem;
    color: #fff;
    margin: 0;
    font-weight: var(--font-bold);
}

.showcase-text > .desc {
    display: block;
    font-size: 1rem;
    color: #ddd;
    font-weight: var(--font-medium);
    margin-top: 5px;
}

.main-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: var(--button-border);
    background: var(--button-color);
    padding: var(--button-padding);
    height: var(--button-height);
    border-radius: var(--border-radius);
    overflow: hidden;
    white-space: nowrap;
}

.main-btn.small {
    height: calc(var(--button-height) / 1.4);
}

.main-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: var(--button-hover-color);
    transition: var(--main-transition) ease 0s;
}

.main-btn:hover:before {
    left: 0;
}

.main-btn > span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
    color: var(--main-text-color);
    font-weight: var(--font-medium);
    text-transform: uppercase;
}

.main-btn.small > span {
    font-size: 1.0rem;
    text-transform: unset;
}

.main-btn > span > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    font-size: 1.2rem;
    border-radius: var(--small-border-radius);
    background: var(--transparent-color);
}

.main-btn.small > span > i {
    font-size: 1rem;
    min-width: 20px;
    height: 20px;
}

.main-btn.full-width {
    display: flex;
    width: 100%;
}

.main-btn.full-height {
    height: 100%;
}

.main-btn.no-radius {
    border-radius: 0;
}

.main-form {
    background: var(--background-color);
    border: solid 2px var(--main-color);
    outline: solid 4px var(--transparent-color) !important;
    border-radius: var(--border-radius);
}

.main-form .row {
    margin-left: 0;
    margin-right: 0;
}

.main-form .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.nice-select:after {
    transition: none !important;
}

.nice-select {
    float: unset;
}

.nice-select .list {
    margin: 0;
    width: 100%;
    border-radius: var(--border-radius);
    border: solid 1px var(--border-color);
    background: var(--background-color);
    box-shadow: none;
    transform: none !important;
    transition: unset !important;
    z-index: 20;
    max-height: 200px;
    overflow-y: auto;
}

.nice-select .option {
    padding: 10px;
    min-height: unset;
    font-size: 0.8rem;
    line-height: var(--line-height);
    border-bottom: solid 1px var(--border-color);
    white-space: normal;
    transition: 0.2s ease 0s;
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
    background: var(--transparent-color);
}

.nice-select .option.selected {
    font-weight: 600;
    background: var(--transparent-color);
}

.s-group {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border-right: solid 2px var(--main-color);
}

.s-group > i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0, -50%);
    width: 20px;
    text-align: center;
    font-size: 1.4rem;
    color: var(--main-color);
}

.s-group > input,
.s-group > .nice-select {
    display: block;
    width: 100%;
    padding: 0 20px;
    padding-left: 40px;
    height: 50px;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    color: var(--main-text-color);
}

.s-group > .nice-select {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.s-group > input::placeholder {
    color: var(--placeholder-color);
}

.main-title {
    display: block;
    font-size: 1.6rem;
    font-weight: var(--font-bold);
    margin-bottom: var(--main-gap);
    padding-bottom: 5px;
    border-bottom: solid 2px var(--border-color);
    position: relative;
}

.main-title:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    border-bottom: solid 4px var(--main-color);
    width: 40px;
    z-index: 2;
}

.badge-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: var(--main-gap);
}

.badge-item > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    border-radius: var(--border-radius);
    color: var(--main-text-color);
    background: var(--main-color);
    margin-right: 10px;
}

.badge-item > i:before {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: var(--transparent-color);
    border-radius: var(--border-radius);
}

.badge-item > .content > .title {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    color: var(--main-text-color);
    margin-bottom: 5px;
}

.badge-item > .content > .desc {
    display: block;
    font-size: 0.8rem;
    color: var(--main-text-color);
}

.badge-item > .content {
    padding: 0 10px;
    border-left: solid 1px var(--border-color);
}

.top-nav {
    padding: 5px 0;
    background: #000;
    border-bottom: solid 1px var(--border-color);
}

.top-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-flex > .left,
.top-nav-flex > .right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top-nav-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top-nav-contact > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: var(--main-color);
    border-radius: var(--small-border-radius);
    font-size: 0.9rem;
    margin-right: 5px;
}

.top-nav-contact > a {
    display: block;
    font-size: 0.9rem;
    color: #fff;
}

.top-nav-contact > a:hover {
    text-decoration: underline !important;
}

.tour-item {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: var(--main-gap);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.tour-item > .img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
}

.tour-item > .img > .price {
    display: block;
    position: absolute;
    top: 10px;
    right: 0;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background: var(--main-color);
    padding: 5px 10px;
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    color: #fff;
}

.tour-item > .img > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition) ease 0s;
}

.tour-item:hover > .img > img {
    transform: scale(1.1);
}

.tour-item > .content {
    border-top: solid 2px var(--main-color);
    padding: 20px;
    background: var(--transparent-color-2);
    transition: var(--main-transition) ease 0s;
}

.tour-item:hover > .content {
    background: var(--transparent-color);
}

.tour-item > .content > .title {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    margin: 0;
    color: var(--main-text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-item > .content > .period {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.8rem;
    color: var(--soft-text-color);
    margin-top: 5px;
}

.dynamic-col-region-template {
    margin: calc(var(--column-gap) * -1);
}

.dynamic-col-region-template > .row {
    margin-left: 0;
    margin-right: 0;
}

.dynamic-col-region-template > .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.dynamic-col-region-item {
    display: block;
}

.dynamic-col-region-item>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.dynamic-col-region-item>.img>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition) ease 0s;
    padding: var(--column-gap);
}

.side>.dynamic-col-region-item>.img {
    padding-top: calc(4/3*100%);
}

.bottom>.dynamic-col-region-item>.img {
    padding-top: calc(6/16*100%);
}

.small>.dynamic-col-region-item>.img {
    padding-top: calc(2/2*100%);
}

.tall>.dynamic-col-region-item>.img {
    padding-top: calc(4/2*100%);
}

.dynamic-col-region-item>.img>div > a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow);
}

.dynamic-col-region-item>.img>div > a > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition) ease 0s;
}

.dynamic-col-region-item>.img>div > a:hover > img {
    transform: scale(1.1);
}

.dynamic-col-region-item>.img>div > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 8;
    transition: var(--main-transition) ease 0s;
}

.dynamic-col-region-item>.img>div > a:hover:before {
    background: rgba(0,0,0,0.8);
}

.dynamic-col-region-item>.img>div > a > .title {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    margin: 0;
    padding: 10px;
    z-index: 10;
    color: #fff;
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    text-align: center;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.8);
}

footer {
    padding: var(--section-gap) 0;
    background: #000;
}

.ftr-logo img {
    width: 175px;
}

.ftr-title {
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-bold);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--border-color);
}

.ftr-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.ftr-social > a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    background: var(--transparent-color-2);
    border-radius: var(--small-border-radius);
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #fff;
    transition: var(--main-transition) ease 0s;
}

.ftr-social > a:hover {
    background: var(--transparent-color);
}

.ftr-contacts > .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ftr-contacts > .item:not(:last-child) {
    margin-bottom: 10px;
}

.ftr-contacts > .item > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    font-size: 1rem;
    background: var(--main-color);
    border-radius: var(--small-border-radius);
    margin-right: 5px;
}

.ftr-contacts > .item > span,
.ftr-contacts > .item > a {
    display: block;
    font-size: 0.8rem;
    color: #fff !important;
}

.ftr-contacts > .item > a:hover {
    text-decoration: underline !important;
}

.ftr-links {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.ftr-links > a {
    display: block;
    font-size: 0.8rem;
    color: #fff !important;
}

.ftr-links > a:not(:last-child) {
    margin-bottom: 5px;
}

.ftr-links > a:hover {
    text-decoration: underline !important;
}

.ftr-bottom {
    border-top: solid 1px var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: -5px;
}

.ftr-copy {
    display: block;
    margin-bottom: 5px;
    font-size: 0.7rem;
    color: #ddd;
}

.ftr-developer {
    display: block;
    margin-bottom: 5px;
}

.ftr-developer > img {
    width: 50px;
    filter: grayscale(1);
}

.ftr-developer:hover > img {
    filter: none;
}

.top-nav-dropdown {
    display: block;
    position: relative;
}

.top-nav-dropdown > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.9rem;
    color: #fff !important;
    white-space: nowrap;
}

.top-nav-dropdown > a:hover > span {
    text-decoration: underline !important;
}

.top-nav-dropdown > .dropdown-menu {
    left: unset !important;
    right: 0 !important;
    padding: 5px 0;
    background: var(--background-color);
    border: solid 1px var(--border-color);
}

.top-nav-dropdown > .dropdown-menu > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.9rem;
    color: #fff !important;
    padding: 5px 10px;
    white-space: nowrap;
}

.top-nav-dropdown > .dropdown-menu > a:hover > span {
    text-decoration: underline !important;
}

.live-result {
    position: absolute;
    z-index: 20;
    min-width: 300px;
    width: 100%;
    top: 100%;
    left: 0;
    background: var(--background-color);
    border: solid 1px var(--border-color);
    max-height: 300px;
    z-index: 99;
    overflow-y: scroll;
    overflow-x: hidden !important;
    border-radius: var(--border-radius);
}

.live-result .item {
    padding: 10px;
    width: 100%;
    font-size: 0.8rem;
    cursor: pointer;
    color: var(--main-text-color);
    border-bottom: solid 1px var(--border-color);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.live-result .item i {
    color: var(--main-color);
}

.live-result .item:hover {
    background: var(--transparent-color);
}

.mobile-menu-links > .item > a {
    position: relative;
    display: block;
    font-size: 1rem;
    color: var(--main-text-color) !important;
    font-weight: var(--font-medium);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px var(--border-color);
}

.mobile-menu-links > .item > .inner-menu {
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
    background: var(--transparent-color-2);
    margin-top: -10px;
    margin-bottom: 10px;
}

.mobile-menu-links > .item.active > .inner-menu {
    display: flex;
}

.mobile-menu-links > .item > .inner-menu > a {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-text-color) !important;
}

.mobile-menu-links > .item > .inner-menu > a:not(:last-child) {
    margin-bottom: 5px;
}

.mobile-menu-links > .item > a > i {
    position: absolute;
    top: 0;
    right: 0;
}

.mobile-menu-links > .item.active > a > i:before {
    content: "\F0140";
}

.showcase-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: var(--main-gap);
}

.showcase-tabs > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 15px;
    background: none;
    border: solid 1px var(--main-color);
    border-radius: var(--border-radius);
    color: var(--main-color) !important;
    font-weight: var(--font-medium);
    transition: var(--main-transition) ease 0s;
}

.showcase-tabs > a:not(:last-child) {
    margin-right: var(--main-gap);
}

.showcase-tabs > a:hover,
.showcase-tabs > a.active {
    background: var(--main-color);
    color: #fff !important;
}

.normalcase {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: var(--section-gap) 0;
    position: relative;
    border-bottom: solid 2px var(--background-color);
}

.normalcase > * {
    position: relative;
    z-index: 10;
}

.normalcase:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/material/texture.png");
    z-index: 1;
}

.about-img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(768/1280*100%);
    height: 100%;
}

.about-img > img {
    display: block;
    position: absolute;
    border-radius: var(--border-radius);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.bcrumb-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.bcrumb-flex > .title {
    display: block;
    font-size: 2.4rem;
    font-weight: var(--font-regular);
    color: #fff;
    margin: 0;
}

.bcrumb-flex > .links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.bcrumb-flex > .links > a {
    display: block;
    font-size: 1rem;
    color: #fff;
    position: relative;
}

.bcrumb-flex > .links > a:hover {
    text-decoration: underline !important;
}

.bcrumb-flex > .links > a:not(:last-child) {
    margin-right: 20px;
}

.bcrumb-flex > .links > a:not(:last-child):before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: -10px;
    border-right: solid 1px #ccc;
    height: 20px;
    pointer-events: none;
}

.inpage-title {
    display: block;
    font-size: 1.4rem;
    color:#FE9506 !important;
    margin-bottom: calc(var(--main-gap)/2);
    padding-bottom: calc(var(--main-gap)/2);
    border-bottom: solid 1px var(--border-color);
  }

  
.gal-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    border: solid 1px #555;
}

.gal-item>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}

.gal-item:hover>img {
    transform: scale(1.1);
}

.gal-item>span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    transition: 0.4s ease 0s;
    z-index: 12;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.gal-item:hover>span {
    background: none;
}

.gal-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    transition: 0.4s ease 0s;
}

.gal-item:hover:before {
    opacity: 1;
}

.gal-item:after {
    content: "\2b";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    line-height: 26px;
    transform: translate(-50%, -50%);
    z-index: 12;
    color: #fff;
    opacity: 0;
    transition: 0.4s ease 0s;
}

.gal-item:hover:after {
    opacity: 1;
}


.blog-item {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    margin-bottom: var(--main-gap);
    background: #282828;
    border: solid 1px #555;
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.blog-item>.img {
    display: block;
    width: 140px;
    min-width: 140px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.blog-item>.img>div {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(4/3*100%);
}

.blog-item>.img>div>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s ease 0s;
}

.blog-item>.img:hover>div>img {
    transform: scale(1.1);
}

.blog-item>.content {
    padding: 20px;
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    overflow: hidden;
}

.blog-item>.content>.top {
    display: block;
    overflow: hidden;
    width: 100%;
}

.blog-item>.content>.top>.title {
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 26px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-item>.content>.top>.title>a {
    color: #FE9506 !important;
}

.blog-item>.content>.top>.title>a:hover {
    text-decoration: underline !important;
}

.blog-item>.content>.top>.desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    overflow: hidden;
}

.blog-item>.content>.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.blog-item>.content>.bottom>.date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    line-height: 18px;
    color: var(--main-text-color);
}


.soru-item {
    margin-bottom: 10px;
    border-radius: 0;
  }
  
  .soru-header {
    display: block;
    color: #fff !important;
    font-weight: 600;
    background: #282828;
    border: solid 1px #555;
    border-radius: var(--border-radius);
    padding: 14px 0;
    position: relative;
    padding-right: 30px;
    padding-left: 15px;
  }
  
  .soru-header h3 {
    font-size: 16px;
    line-height: 22px;
    margin: 0;
    font-weight: 600;
    transition: 0.2s ease 0s;
  }
  
  .soru-header:after {
    content: "\F0415";
    font-family: "Material Design Icons";
    font-weight: 900;
    position: absolute;
    top: 16px;
    right: 12px;
    font-size: 14px;
  }

  .collapse-item {
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: solid 1px #555;
}

.collapse-item:last-child {
    margin-bottom: 0;
}

.collapse-item>.title {
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #FE9506;
    width: 100%;
    padding: 10px 15px;
    padding-right: calc(15px + 15px + 10px);
    background: #282828;
    cursor: pointer;
    height: unset !important;
    border: none;
    margin: 0;
    position: relative;
}

.collapse-item>.title:after {
    content: "\F0415";
    font-family: "Material Design Icons";
    font-weight: 400;
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 14px;
    line-height: 20px;
    height: calc(22px + 10px + 10px);
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.collapse-item>.title[aria-expanded="true"]:after {
    content: "\F0374";
}

.collapse-item>.content {
    border: solid 1px #555
}

.collapse-item>.content>.content-inner {
    padding: 15px;
}

.collapse-item>.content>.content-inner>p {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #444;
    margin: 0;
}

  .collapse:not(.show) {
    display: none;
  }

  
.soru-header[aria-expanded="true"] h3 {
    color: #FE9506 !important;
   
  }
  .soru-header[aria-expanded="true"]:after{
    content: "\F0374";
  }

  
.contact-page-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    flex-direction: column;
    border-radius: var(--border-radius);
   padding: 40px;
    background: #282828;
    border: solid 1px var(--border-color);
    height: 100%;
  }
  
  .contact-page-item > i {
    display: block;
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 10px;
  }
  .contact-page-item > span {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--font-regular);
    color: var(--soft-text-color);
    margin-bottom: 10px;
  }
  
  .contact-page-item > a {
    display: block;
    font-size: 1rem;
    font-weight: var(--font-medium);
    color: var(--main-color) !important;
  }
  
  .ml-1, .mx-1 {
    margin-left: 0.25rem!important;
  }
  
  .mdi-arrow-right::before {
    content: "\F0054";
  }
  
  .side-map {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    border-radius: var(--border-radius);
    border: solid 1px var(--border-color);
    background: #fff;
  }
  
  .side-map > * {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ymaps-2-1-79-map {
    position: relative;
    z-index: 0;
    display: block;
    margin: 0!important;
    padding: 0!important;
    text-align: left!important;
    text-decoration: none!important;
    color: #282828;
    font-weight: 400!important;
    font-style: normal!important;
    line-height: normal;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-print-color-adjust: exact;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
  
  
  .form-box {
    padding: 20px;
    background: #282828;
    border-radius: var(--border-radius);
    border: solid 1px var(--border-color);
  }
  
  .form-label {
    display: block;
    font-size: 0.8rem;
    color: #FE9506;
    margin: 0;
    margin-bottom: 2px;
  }

  .form-label > a {
    color: #FE9506;
  }
  
  .form-group {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: var(--main-gap);
    
  }
  
  .form-group > input,
  .form-group > .nice-select,
  .form-group > textarea,
   .form-group > 
   {
      display: block;
      width: 100%;
      height: var(--input-height);
      border: var(--input-border);
      padding: var(--input-padding);
      color:  #fff;
      font-size: 0.9rem;
  }
  
  .form-group > textarea {
    resize: none;
    height: unset;
    padding: var(--textarea-padding);
  }
  
  .form-group > input::placeholder {
    color: var(--placeholder-color);
  }

  .captcha-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
   
  }
  
  .captcha-flex > * {
    margin-bottom: calc(var(--main-gap)/2);
  }
  
  .result-top {
    justify-content: space-between;
    align-items: center;
}

.result-top .title {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #FE9506;
    font-weight: 600;
    margin: 0;
}

.side-box {
    border: solid 1px #ddd;
    border-radius: 4px;
    padding: 10px;
    border: solid 2px #000;
    background: #282828;
}

.step-specs {
    display: block;
}

.step-specs>span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: var(--main-text-color);
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.step-specs>span:before {
    content: "\F012C";
    font-family: "Material Design Icons";
    font-weight: 900;
    position: absolute;
    top: 10px;
    transform: translate(0, -50%);
    left: 0;
    color: #00ACEE;
}

.car-item {
    display: block;
    padding: 10px;
    margin-bottom: 20px;
    background: #282828;
    border: solid 1px #555;
    border-radius: var(--border-radius);
}

.car-item .row {
    margin-left: -5px;
    margin-right: -5px;
    height: 100%;
}

.car-item .row>[class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.car-item .img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
}

.car-item .img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.car-item .desc {
    display: block;
    overflow: hidden;
    padding: 0 10px;
    border-left: solid 1px #555;
    border-right: solid 1px #555;
    height: 100%;
}

.car-item .desc>h2 {
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FE9506;
}

.car-item .desc>.specs {
    display: block;
}

.car-item .desc>.specs>span {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    line-height: 18px;
    color: var(--main-text-color);
    margin-bottom: 5px;
}

.car-item .desc>.specs>span>i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    background: #ED7D00;
    color: #fff;
    margin-right: 6px;
    border-radius: 4px;
}

.mdi-user::before {
    content: "\F0013";
}

.car-item .desc>.specs>span>b {
    margin-right: 6px;
    color: var(--main-text-color);
}

.mdi-suitcase::before {
    content: "\F158C";
}

.car-item .desc>.specs>span:last-child {
    margin-bottom: 0;
}

.mdi-info::before {
    content: "\F064E";
}

.car-item .price {
    display: block;
}

.car-item .price>.title {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: var(--main-text-color);
    margin-bottom: 5px;
}

.car-item .price>.total {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 10px;
    background: #282828;
    border: solid 1px #555;
    border-radius: 4px;
    padding: 10px 15px;
}

.main-btn.full {
    display: flex;
    width: 100%;
}

.mdi-angle-right::before {
    content: "\F0142";
}

.main-title.text-left:after {
    left: 0;
    transform: none;
}

.rez-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.rez-title span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fe9506;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 20px;
    margin-right: 10px;
    color: #fff;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group .nice-select,
.form-group .select2-container .select2-selection--single {
    display: block;
    width: 100%;
    border: solid 1px #555;
    border-radius: 5px;
    background-color: #282828;
    padding: 10px 15px;
    resize: none;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: #fff;
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.form-group .select2-container .select2-selection__rendered {
    line-height: unset;
    padding: 0;
    height: unset;
    color: unset;
    text-overflow: unset;
    overflow: unset;
    white-space: unset;
}

.form-group .select2-container .select2-selection__arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 20px;
    text-align: center;
    height: unset;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.ctxt {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    color: #888;
}

.main-title.small {
    font-size: 20px;
    line-height: 26px;
}

.tourrez-spec {
    display: block;
    margin-bottom: 10px;
}

.tourrez-spec > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    border: solid 1px #555;
    border-radius: var(--border-radius);
    background: #282828;
    margin-bottom: 10px;
}

.tourrez-spec > div > i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    line-height: 22px;
    min-width: 40px;
    height: 40px;
    color: #fe9506;
    border: solid 1px #555;
    margin-right: 10px;
    border-radius: var(--border-radius);
}

.tourrez-spec > div > div > small {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
}

.tourrez-spec > div > div > span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
}

.main-btn.second {
    background: #FE9506;
    color: #fff !important;
    border-color: #FE9506;
}

.mdi-angle-right:before {
    content: "\F0142";
}

.inpage-slider-container {
    display: block;
    width: 100%;
    position: relative;
}

.tns-outer {
    padding: 0 !important;
}


.inpage-slider-container > .tns-outer > .tns-controls {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translate(0, -50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	z-index: 10;
	pointer-events: none;
}

.inpage-slider-container > .tns-outer > .tns-controls > button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	background: rgba(0,0,0,0.5);
	border-radius: 50%;
	pointer-events: all;
	border: none;
}

.inpage-slide {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-top: calc(720/1280*100%);
}

.inpage-slide img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.tour-specs {
	display: block;
	margin-bottom: 30px;
}

.tour-specs .tour-spec:last-child {
	margin: 0;
}

.tour-spec {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	border: solid 1px #555;
	border-radius: var(--border-radius);
	overflow-y: hidden;
	margin-bottom: 20px;
}

.tour-spec > .left {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 50%;
	padding: 10px;
	background: #282828;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: #fff;
    
	border-right: solid 1px #555;
}

.tour-spec > .left > i {
	color: #FE9506;
	border: solid 1px #555;
	margin-right: 10px;
	min-width: 34px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: var(--border-radius);
	font-size: 20px;
	line-height: 22px;
}

.tour-spec > span {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 50%;
	padding: 10px;
	font-size: 12px;
	line-height: 18px;
    background: #282828;
	color: #fff;
}

.tour-spec > span.price {
	color: #D98929;
	font-weight: 800;
	font-size: 16px;
	line-height: 22px;
}



.blog-spec {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: solid 0px #555;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.blog-spec .left,
.blog-spec .right {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.blog-spec .left span {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 12px;
	line-height: 20px;
	color: #222;
}

.blog-spec .left span i {
	color: #888;
}

.blog-spec .right a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 14px;
	line-height: 20px;
	color: #fff !important;
	background: #FE9506;
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: 600;
	transition: 0.2s ease 0s;
}

.blog-spec .right a:hover {
	background: #0D648C !important;
}


.tour-calc-line {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #282828;
	border: solid 1px #555;
	border-radius: 5px;
	margin-bottom: 10px;
}

.tour-calc-line > span {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 50%;
	padding: 10px 15px;
	font-size: 12px;
	line-height: 18px;
	font-weight: 600;
	color: #fff;
	position: relative;
}

.tour-calc-line > span i {
	color: #FE9506;
}

.tour-calc-line > span:after {
	content: ":";
	position: absolute;
	top: 10px;
	right: 0;
}

.tour-calc-line > .right {
	width: 50%;
	display: block;
	padding: 10px;
}

.tour-calc-line .price {
	background: none;
	border: solid 1px #555;
	width: 100%;
	border-radius: 4px;
	padding: 10px 15px;
	font-size: 16px;
	line-height: 22px;
	font-weight: 800;
	color: #D98929;
}


.tour-item {
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 30px;
}

.tour-item:hover .tour-desc {
	top: -20px;
}

.tour-item:hover .tour-img > div img {
	transform: scale(1.1);
}

.tour-img {
	display: block;
	width: 100%;
	padding: 0 10px;
}

.tour-img > div {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-top: calc(800/1200*100%);
	border-radius: 5px 5px 0 0;
}

.tour-img > div > span {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 5px 15px;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	font-weight: 600;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: rgba(0,0,0,0.6);
	z-index: 8;
	border-radius: 5px;
}

.tour-img > div img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 4;
	transition: 0.4s ease 0s;
}

.tour-desc {
	transition: 0.4s ease 0s;
	padding: 10px 15px;
	background: #fe9506;
	border-radius: 0 5px 5px 5px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: solid 1px #282828;
	z-index: 10;
	top: 0;
}

.tour-desc:before {
	content: "";
	position: absolute;
	border-right: solid 10px #282828;
	border-top: solid 10px transparent;
	left: 0;
	top: -10px;
	z-index: 2;
}

.tour-desc h3 {
	display: block;
	font-size: 16px;
	line-height: 20px;
	color: #fff !important;
	font-weight: 600;
	margin-bottom: 5px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.tour-desc small {
	display: block;
	font-size: 12px;
	line-height: 18px;
	font-weight: 600;
	color: #fff;
}

.tour-desc span {
	display: block;
	white-space: nowrap;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	font-weight: 600;
	background: #282828;
	padding: 10px;
	border-radius: 5px;
	margin-left: 5px;
}

.tour-desc > div {
	width: 100%;
	overflow: hidden;
}


.datepicker-group {
	position: relative;
}

.Zebra_DatePicker {
	box-shadow: none;
	border-radius: 0;
	border: solid 1px #555;
}

.Zebra_DatePicker td, .Zebra_DatePicker th {
	border-radius: 0;
	/*border: solid 1px #eee;*/
}

.Zebra_DatePicker .dp_header td,
.Zebra_DatePicker .dp_footer td {
	border: none;
	border-radius: 0;
}

.Zebra_DatePicker .dp_body .dp_selected {
	background: #28A0D8 !important;
	color: #fff !important;
}
.voucher-box {
    background: #121212;
    color: #FE9506;
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
    border: solid 1px #555;
    letter-spacing: 0.8px;
}

.voucher-box table {
    width: 100%;
}

.voucher-box tr {
    background: #333;
}

.voucher-box tr.vb-title {
    background: #000;
    font-weight: 600;
    color: #fff;
}

.voucher-box tr.vb-title-in {
    background: #202020;
    font-weight: 600;
    color: #fff;
}

.voucher-box tr:not(.vb-title):not(.vb-title-in) td:first-child {
    white-space: nowrap;
    background: #282828;
    font-size: 12px;
    line-height: 18px;
}

.voucher-box tr:not(.vb-title):not(.vb-title-in) td:last-child {
    color: #fff;
}

.voucher-box td {
    border: solid 1px #555;
    padding: 8px 10px;
    vertical-align: top;
}

.voucher-box td small {
    display: block;
    font-size: 12px;
    line-height: 18px;
}

.voucher-box .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.voucher-box .logo {
    margin-bottom: 15px;
}

.voucher-box .logo img {
    width: 200px;
}

.voucher-box .contact {
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.voucher-box .contact>a {
    display: block;
    margin: 0 5px;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 20px;
    color: #A58C16 !important;
}

.voucher-box .contact>a:hover {
    text-decoration: underline !important;
}

.voucher-box .vb-color {
    color: #A58C16 !important;
}


.content-box {
    display: block;
    width: 100%;
    border: solid 1px #555;
}

.content-box-title {
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 10px;
    background: #282828;
    border: solid 1px #555;
    color: #FE9506;
    font-weight: 600;
    margin: 0;
}

.content-box-inner {
    padding: 20px;
}

.content-box-inner.small-padding {
    padding: 10px;
}


.panel-table > table {
    width: 100%;
}

.panel-table > table thead {
    background: #282828;
}

.panel-table > table thead td {
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    font-size: 14px;
    line-height: 20px;
}

.panel-table > table td {
    border: solid 1px #555;
    padding: 10px;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
}

.panel-table > table tbody td > span {
    display: block;
    border-bottom: solid 1px #444;
    width: 100%;
    padding-bottom: 2px;
    margin-bottom: 2px;
    white-space: nowrap;

}

.panel-table > table tbody td > span:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.panel-table > table tbody td > span > b {
    font-weight: 600;
}

.panel-table {
    overflow-x: auto;
}


.pagination {
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px 0;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination ul li {
    margin: 5px;
    display: block;
}

.pagination ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    border-radius: 0;
    background: #282828;
    border: solid 1px #555;
    color: #FE9506 !important;
}

.pagination ul li a:hover {
    background: var(--transparent-color);
}

.pagination ul li.active a {
    background: var(--transparent-color);
}


.iti {
    display: block;
    width: 100%;
}

.iti__country-list {
    background: #fff;
    border: solid 1px #555;
    border-radius: 4px;
    margin: 0;
    box-shadow: none;
    max-height: 200px;
}

.iti__country {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    padding: 5px 10px !important;
    padding-left: 40px !important;
    max-width: 200px;
    border-bottom: solid 1px #444;
}

.iti__country.iti__highlight {
    background: #f5f5f5;
}

.iti__country-name {
    font-size: 12px;
    line-height: 18px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.iti__dial-code {
    font-size: 14px;
    line-height: 20px;
    color: #fff !important;
}

.iti__flag-box {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 10px;
}

.iti__flag {
    height: 14px !important;
}

.iti__arrow {
    margin-left: 5px;
    border-top-color: #222;
}

.iti__arrow--up {
    border-bottom-color: #222;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #fff;
    margin-left: 5px;
    font-size: 14px;
    line-height: 20px;
}

.iti--separate-dial-code .iti__selected-flag {
    background: #fff;
    border-right: solid 1px #555;
    padding: 0 10px;
    height: 36px;
    border-radius: 4px 0 0 4px;
}

.iti--separate-dial-code .iti__flag-container:hover .iti__selected-flag {
    background: #fff;
}


.side-agency-menu {
    display: block;
}

.side-agency-menu > a {
    display: block;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    color: #fff;
    padding: 15px;
    background: #282828;
    border: solid 1px #555;
    margin-bottom: 10px;
    transition: 0.2s ease 0s;
}

.side-agency-menu > a:hover {
    background: var(--transparent-color);
}

.side-agency-menu > a:last-child {
    margin-bottom: 0;
}

.side-agency-menu > a.active {
    background: #0073A1;
    border-color: #0073A1;
    color: #fff !important;
}


.page-wrapper {
    display: block;
    padding: 20px;
    background: #282828;
    border: solid 1px #555;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}


.form-box-support {
    padding: 20px;
    background: #282828;
    border-radius: var(--border-radius);
    }

  
.blog-item-ticket {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    margin-bottom: var(--main-gap);
    background: #282828;
    border: solid 1px #555;
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 20px;
}


.blog-item-ticket>.content {
    padding: 20px;
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    overflow: hidden;
}

.blog-item-ticket>.content>.top {
    display: block;
    overflow: hidden;
    width: 100%;
}

.blog-item-ticket>.content>.top>.title {
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 26px;
    color: #FE9506;
    margin-bottom: 10px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-item-ticket>.content>.top>.title>a:hover {
    text-decoration: underline !important;
}

.blog-item-ticket>.content>.top>.desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    overflow: hidden;
}

.blog-item-ticket>.content>.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.blog-item-ticket>.content>.bottom>.date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    line-height: 18px;
    color: var(--main-text-color);
}


.article-img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(620 / 1280 * 100%);
  }
  
  .article-img > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  
.side-articles > a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  background: #282828;
  border: solid 1px var(--border-color);
  border-radius: var(--border-radius)
}

.side-articles > a > .img {
  display: block;
  min-width: 80px;
  width: 80px;
  position: relative;
  margin-right: 10px;
}

.side-articles > a > .img > div {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: calc(3 / 4 * 100%);
}

.side-articles > a > .img > div > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--main-transition);
}

.side-articles > a:hover > .img > div > img {
  transform: scale(1.1);
}

.side-articles > a > .content {
  display: block;
  overflow: hidden;
}

.side-articles > a > .content > .title {
  display: block;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--main-text-color);
  margin-bottom: 10px;
  font-weight: var(--font-medium);
}

.side-articles > a > .content > .detail {
  display: block;
  font-size: 0.9rem;
  font-weight: var(--font-medium);
  color: var(--main-color);
}

.side-articles > a:hover > .content > .detail {
  text-decoration: underline !important;
}

.side-articles > a:not(:last-child) {
  margin-bottom: calc(var(--main-gap) / 2);
}

.side-articles > a > .content > .date {
  display: block;
  font-size: 0.8rem;
  margin-top: -10px;
  color: var(--soft-text-color);
}

.article-date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.9rem;
  color: var(--soft-text-color);
  margin-bottom: var(--main-gap);
}


.article-item {
    display: block;
    margin-bottom: var(--main-gap);
  }
  
  .article-item > .img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%);
    margin-bottom: 10px;
  }
  
  .article-item > .img > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition);
  }
  
  .article-item > .img:hover > img {
    transform: scale(1.1);
  }
  
  .article-item > .img > .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: 20px;
    right: 0;
    padding: 10px;
    background: var(--main-color);
    font-size: 0.9rem;
    color: #fff;
  }
  
  .article-item > .content > .title {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
    padding-right: 50px;
    position: relative;
    margin-bottom: 10px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .article-item > .content > .title > a {
    color: #FE9506 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .article-item > .content > .title > a:hover {
    text-decoration: underline !important;
  }
  
  
  .article-item > .content > .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 0.9rem;
    color: var(--soft-text-color);
    margin: 0;
  }
  
  .article-item > .content {
    display: block;
    margin-bottom: 10px;
  }
  
  .article-item > .link {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
    font-weight: var(--font-medium);
    color: var(--main-color);
  }
  
  .article-item > .link:hover > span {
    text-decoration: underline !important;
  }

  
  .rsv-title {
    padding: 8px 12px;
    border: solid 1px #ddd;
    background: #fbfbfb;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #EC008C;
}

.rsv-table {
    width: 100%;
    margin-bottom: 20px;
}

.rsv-table td {
    border: solid 1px #555;
    padding: 10px;
    vertical-align: top;
    background-color: #282828
}

.rsvt-label {
    display: block;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 2px;
    color: #666;
}

.rsvt-caption {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #222;
    font-weight: 600;
}

.rsvt-total-price {
    display: block;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: #EC008C;
}

.rsvt-price {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #EC008C;
    font-weight: 600;
}

.tooltip-box {
    display: block;
    position: relative;
}

.tooltip-box>span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #888;
    font-weight: 600;
    cursor: pointer;
}

.tooltip-box:hover>span {
    text-decoration: underline !important;
}

.tooltip-box>.tooltip-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 350px;
    max-width: 100vw;
    z-index: 90;
}

.tooltip-box:hover>.tooltip-content {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.cvv-desc {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px;
    background: #fbfbfb;
    border: solid 1px #ddd;
    border-radius: 4px;
}

.cvv-desc>.img {
    display: block;
    min-width: 100px;
    width: 100px;
    margin-right: 10px;
    border: solid 1px #ddd;
    padding: 5px;
    background: #fff;
}

.cvv-desc>.img>div {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720/1280*100%);
    border-radius: 4px;
}

.cvv-desc>.img>div>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cvv-desc>.desc {
    display: block;
}

.cvv-desc>.desc>span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #444;
}

.rsvt-payment-box {
    width: 100%;
    padding: 20px;
    padding-bottom: 0;
    background: #fbfbfb;
    border: solid 1px #00ACEE;
}

.payment-img {
    padding: 10px;
}

.payment-img>img {
    width: 300px;
    max-width: 100vw;
}

.rsv-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
}


.payment-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.payment-tabs>.tab>label {
    display: block;
    padding: 8px 12px;
    padding-left: 30px;
    border: solid 1px #555;
    background: #282828;
    border-radius: 4px;
    margin: 0;
    color: #ddd !important;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

.payment-tabs>.tab {
    position: relative;
    margin: 5px 0;
    margin-right: 10px;
}

.payment-tabs>.tab>input {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.payment-tabs>.tab>label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translate(0, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: solid 1px #ccc;
}

.payment-tabs>.tab>label:after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(12px + 4px);
    transform: translate(0, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FE9506;
    opacity: 0;
}

.payment-tabs>.tab.active>label {
    border-color: #FE9506;
}

.payment-tabs>.tab.active>label:after {
    opacity: 1;
}

.payment-tabs>.tab:hover>label {
    color: #fff !important;
    background: var(--transparent-color);
}

.payment-panes {
    width: 100%;
}

.payment-panes>.pane {
    display: none;
    width: 100%;
}

.payment-panes>.pane.active {
    display: block;
}

.eft-box {
    padding: 10px;
    border: solid 1px #ddd;
}

.eft-desc {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
}


.msg-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 10px;
    background: #282828;
    border: solid 1px #555;
}

.msg-box i {
    min-width: 30px;
    height: 30px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
    line-height: 20px;
    background: #555;
}

.msg-box span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
}


.cbox-group {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

.cbox-group input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cbox-group label {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.cbox-group label>span:first-child {
    min-width: 18px;
    height: 18px;
    border-radius: 2px;
    border: solid 1px #ccc;
    background: #fff;
    margin-right: 10px;
    position: relative;
}

.cbox-group label>span:first-child:after {
    content: "\F012C";
    font-family: "Material Design Icons";
    font-weight: 400;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    line-height: 20px;
    opacity: 0;
}

.cbox-group input:checked~label>span:first-child:after {
    opacity: 1;
}

.cbox-group input:checked~label>span:first-child {
    border-color: #ED7D00;
    background: #ED7D00;
}

.cbox-group label>span:last-child {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.cbox-group label>span:last-child>a {
    color: #ED7D00 !important;
    font-weight: 600;
}

.cbox-group label>span:last-child>a:hover {
    text-decoration: underline !important;
}
.c-box-group {
    position: relative;
    
}
.c-box-group > input {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}
.c-box-group > label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
user-select: none;

}
.c-box-group > label > span:first-child {
    display: block;
    min-width: 24px;
    height: 24px;
    position: relative;
    border-radius: var(--border-radius);
    border-color: #555;
}
.c-box-group > label > span:first-child::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 14px;
    height: 14px;
    background: var(--main-color);
    opacity: 0;

}
.c-box-group > input:checked ~ label > span:first-child::before {
    opacity: 1;

}
.c-box-group > label > span:last-child {
    color: #fff !important;
    font-weight: 600;
}


.side-filter-title {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.side-cbox-txt {
    font-size: 12px;
    line-height: 16px;
    color: #888;
    font-weight: 600;
    user-select: none !important;
}


.login-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.login-flex > .main-btn { 
    margin-bottom: 5px;
}