@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {

    /* Site Properties */
    --background-color: #212121;
    --main-color: #FE9506;
    --alternate-color: #B36902;
    --main-text-color: #000;
    --soft-text-color: #444;
    --column-gap: 10px;
    --main-gap: 20px;
    --section-gap: 40px;
    --main-transition: 0.2s;
    --box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    --border-radius: 5px;
    --small-border-radius: 3px;
    --border-color: rgba(0, 0, 0, 0.1);
    --transparent-color: rgba(0, 0, 0, 0.2);
    --transparent-color-2: rgba(0, 0, 0, 0.1);

    /* Font Properties */
    --font-size: 14px;
    --mobile-font-size: 12px;
    --line-height: 1.4em;
    --letter-spacing: 0.4px;
    --font-family: "Roboto", sans-serif;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;

    /* Form Elements */
    --input-color: #000;
    --input-padding: 0 10px;
    --input-height: 40px;
    --input-border: solid 1px #bbb;
    --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);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

html {
    font-size: var(--font-size);
    font-weight: var(--font-regular);
    color: #000;
}

* {
    text-decoration: none !important;
    outline: none !important;
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

::placeholder {
    color: var(--placeholder-color);
}

.panel-text {
    font-size: 1rem;
    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);
}

/* Inputtel START ------------------------------ */




/* Inputtel START ------------------------------ */


.iti {
    display: block;
    width: 100%;
}

.iti__country-list {
    background: #000 !important;
    border: solid 1px #333 !important;
    border-radius: 5px !important;
    box-shadow: none !important;

    margin: 0 !important;

    overflow-x: hidden;
}

@media (max-width: 575px) {
    .iti__country-list {
        max-width: 80%;
    }
}

.iti__country {
    display: absolute !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex-direction: column !important;
    position: relative !important;
    padding: 5px 10px !important;
    padding-left: 40px !important;
    max-width: 250px !important;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1) !important;
}

.iti__country.iti__highlight {
    background: rgba(255, 255, 255, 0.1) !important;
}

.iti__country-name {
    font-size: 12px !important;
    line-height: 18px !important;
    color: #aaa !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
}

.iti__dial-code {
    font-size: 14px !important;
    line-height: 20px !important;
    color: #fff !important;
}

.iti__flag-box {
    position: absolute !important;
    top: 50% !important;
    transform: translate(0, -50%) !important;
    left: 10px !important;

}

.iti__flag {
    height: 14px !important;
}

.iti__arrow {
    margin-left: 5px !important;
    border-top-color: #fff !important;
}

.iti__arrow--up {
    border-bottom-color: #fff !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #fff !important;
    margin-left: 5px !important;
    font-size: 14px !important;
    line-height: 20px !important;
}

.iti--separate-dial-code .iti__selected-flag {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 0 10px !important;
    height: 42px !important;
}

.iti--separate-dial-code .iti__flag-container:hover .iti__selected-flag {
    background: rgba(255, 255, 255, 0.1) !important;
}

.iti-mobile .iti__country-list {}

/* Inputtel END ------------------------------ */

.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: #fff;
    box-shadow: var(--box-shadow);
    padding: var(--main-gap);
    pointer-events: all;
    overflow-y: auto;
}

.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;
}

.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";
}

.main-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: solid 1px #fff;
    background: #564111;
    padding: var(--button-padding);
    height: var(--button-height);
    border-radius: 5px;
    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: #fff;
    font-weight: var(--font-medium);
    text-transform: uppercase;
}

.main-btn.small>span {
    font-size: 0.8rem;
    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;
}

.nav-top {
    padding: 5px 0;
    background: #1b1b1b;
    border-bottom: solid 1px #333;
}

.nav-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-top .left,
.nav-top .right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nt-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 15px;
}

.nt-contact:last-child {
    margin-right: 0;
}

.nt-contact i {
    font-size: 16px;
    line-height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    margin-right: 5px;
}

.nt-contact a {
    color: #fff !important;
    font-size: 17px;
    line-height: 20px;
    font-weight: 400;
}

.nt-contact a:hover {
    color: #8C8256 !important;
}

.nt-lang {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nt-lang a {
    font-size: 18px;
    margin-right: 10px;
}

.nt-lang a:last-child {
    margin-right: 0;
}

#main-nav {
    background: #000;
    padding: 10px 0;
    z-index: 999;
}

#main-nav.nav-fixed {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 70px;
}

#main-nav .navbar-nav .nav-item {
    /*
    margin-right: 15px;*/
}

#main-nav .navbar-nav .nav-item:last-child {
    margin-right: 0;
}

#main-nav .navbar-nav .nav-item .nav-link {
    padding: 0;
    color: #ccc !important;
    font-size: 18px;
    height: 60px;
    line-height: 48px;
    font-weight: 400;
    padding: 10px 7px;
    border-left: #262626 1px solid;
}

#main-nav .navbar-nav .nav-item .nav-link:hover {
    color: #fff !important;
}

#main-nav .navbar-nav .nav-item.active .nav-link {
    color: #BEB074 !important;
}

#main-nav .navbar-nav .nav-item .dropdown-menu {
    padding: 0;
    margin: 0;
    border: solid 1px #e5e5e5;
    border-radius: 0;
    left: unset;
    right: 0;
}

#main-nav .navbar-nav .nav-item .dropdown-menu>a {
    display: block;
}

.dropdown-toggle::after {
    content: none;
}

#main-nav .navbar-nav .nav-item .dropdown-toggle {
    position: relative;
    padding-right: 20px;
}

#main-nav .navbar-nav .nav-item .dropdown-toggle:before {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    right: 0;
    width: 20px;
    text-align: center;
    top: 50%;
    transform: translate(0, -50%);
}

#main-nav .navbar-nav .nav-item .dropdown-toggle[aria-expanded="true"]:before {
    content: "\f106";
}

.main-slider-container {
    position: relative;
    display: block;
    width: 100%;
}

.main-slider-container>.tns-outer>button {
    display: none;
}

.main-slider-container>.tns-outer>.tns-controls {
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    transform: translate(0, -50%);
}

.main-slider-container>.tns-outer>.tns-controls>button {
    display: block;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    pointer-events: all;
    font-size: 20px;
}

.main-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(500/1000*100%);
}

.main-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}


.ftr-in {
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.2);
    padding-top: 40px;
    padding-bottom: 20px;
    background: #111;
    border-bottom: solid 1px #222;
}

.ftr-logo {
    display: block;
    margin-bottom: 20px;
    text-align: end;
}

.ftr-logo img {
    width: 150px;
}

.trs-logo {
    display: block;
    margin-bottom: 20px;
    text-align: end;
}

.trs-logo img {
    max-width: 210px;
    width: 100% !important;
    border-radius: 5px;
}


.ftr-txt {
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: #ccc;
    margin-bottom: 30px;
}

.ftr-col {
    margin-bottom: 20px;
}

.ftr-title {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #BEB074;
    display: block;
}

.ftr-contact {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 10px;
}

.ftr-contact:last-child {
    margin-bottom: 0;
}

.ftr-contact i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 22px;
    min-width: 20px;
    text-align: center;
    margin-right: 5px;
    padding-right: 5px;
    border-right: solid 1px rgba(255, 255, 255, 0.1);
    color: #BEB074;
}

.ftr-contact span,
.ftr-contact span a {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    display: block;
}

.ftr-contact span a {
    color: #ccc !important;
}

.ftr-contact span a:hover {
    text-decoration: underline !important;
}

.ftr-links {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
}

.ftr-links a {
    font-size: 14px;
    line-height: 22px;
    color: #ccc !important;
    margin-bottom: 5px;
}

.ftr-links a:hover {
    text-decoration: underline !important;
}

.ftr-bottom {
    background: #000;
    padding: 20px 0;
}

.ftr-bottom>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ftr-bottom span {
    font-size: 12px;
    line-height: 20px;
    color: #ccc;
}

.ftr-bottom a img {
    width: 70px;
    filter: grayscale(1);
}

.ftr-bottom a:hover img {
    filter: none;
}

.ftr-social {
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.ftr-social a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.ftr-logo {
    margin-bottom: 20px;
}

.ftr-logo img {
    width: 200px;
}

.space {
    display: flex;
    justify-content: space-between;
}

.slider-form {
    position: relative;
    width: 100%;
    z-index: 12;
}

.slider-form-in {
    background: #070707;
    padding: 20px;
    border-top: solid 2px #ad8a3a;
}

.form-group {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.form-group.f-icon>i {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 14px;
    color: #beb07487;
    width: 20px;
    text-align: center;
}

.form-group span.error-label {
    font-size: 12px;
    line-height: 20px;
    display: flex;
    color: #f00;
    position: absolute;
    top: 45px;
}

.form-group span.error-label2 {
    font-size: 12px;
    line-height: 20px;
    display: flex;
    color: #f00;
    position: absolute;
    top: 45px;
}

.cbox-group span.error-label {
    font-size: 12px;
    line-height: 20px;
    display: flex;
    color: #f00;
    position: absolute;
    top: 45px;
    margin-top: 15px;
}

}

.form-group select>.error-label:last-child {
    font-size: 22px;

}

.counter-txt {
    font-size: 14px;
    line-height: 22px;
    color: #fff
}

.form-group input,
.form-group textarea,
.form-group select,
.form-group .select,
.form-group .select2-container .select2-selection--single,
.form-group .passenger-toggle {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 15px;
    border: solid 1px #4a4848;
    background: #070707;
    border-radius: 0px;
    color: #fff !important;
    resize: none;
}


.form-group input:disabled,
.form-group input:disabled~i {
    opacity: 0.5;
}

/* SELECT2 RESET * START */

.form-group .select2-container {
    width: 100% !important;
}

.form-group .select2-container .select2-selection--single {
    height: unset;
    border-radius: 0;
}

.form-group .select2-container .select2-selection__rendered {
    line-height: unset;
    padding: 0;
    height: unset;
    color: 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-dropdown {
    border-radius: 0;
}

.select2-results__group,
.select2-results__option {
    padding: 5px;
    font-size: 14px;
    line-height: 22px;
    border: 0;
    border-bottom: solid 1px #eee;
}

.select2-results__group {
    background: #eee;
}

.select2-results__option:last-child {
    border-bottom: none;
}

.select2-search__field {
    border: solid 1px #ddd !important;
    padding: 5px 10px !important;
    font-size: 14px;
    line-height: 22px;
}

/* SELECT2 RESET * END */

.form-group.f-icon input,
.form-group.f-icon .select2-container .select2-selection--single,
.form-group.f-icon .passenger-toggle {
    padding-left: 40px;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group .select2-container .select2-selection__placeholder {
    color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #666;
}

.form-dropdown {
    display: block;
    width: 100%;
}

.dropdown>.dropdown-menu {
    min-width: 100%;
    width: 80% !important;
    padding: 0;
    border-radius: 0;
    border: none;
    left: 50%;
    transform: translate(-50%, 0);
    background: #343434;
    border: solid 1px #121212;
    margin-top: -1px;
}

.dropdown>.dropdown-menu a {
    display: block;
    width: 100%;
    white-space: nowrap;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 10px;
    color: #ccc !important;
    font-weight: 500;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    transition: 0.2s ease 0s;
}

.dropdown>.dropdown-menu a:hover {
    color: #EACF68 !important;
}

.dropdown>.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown>.dropdown-menu a i {
    margin-right: 5px;
}

.passenger-menu {
    padding: 15px !important;
}

.inputspin {
    width: 100%;
}

.inputspin>label {
    font-size: 12px;
    line-height: 20px;
    margin: 0;
    display: block;
    color: #fff;
    margin-bottom: 2px;
}

.inputspin .input-group .input-group-prepend,
.input-group .input-group-append {
    margin: 0;
}

.inputspin .input-group {
    align-items: stretch;
}

.inputspin .input-group input {
    height: unset;
    border: solid 1px #202020;
    box-shadow: none !important;
    outline: none !important;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    pointer-events: none;
    border: none !important;
}

.inputspin .input-group button {
    width: unset;
    height: unset;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    transition: 0.2s ease 0s !important;
    background: #BEB074 !important;
    /*border: solid 1px #202020 !important;*/
    border: none !important;
    position: relative;
    border-radius: 0 !important;
}

.inputspin .input-group button:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #222;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.inputspin .input-group button:hover {
    background: #8C8256 !important;
}

.inputspin .input-group button strong {
    display: none;
}

.inputspin .input-group .input-group-prepend button {
    border-radius: 5px 0 0 5px;
}

.inputspin .input-group .input-group-prepend button:before {
    content: "\2d";
}

.inputspin .input-group .input-group-append button {
    border-radius: 0 5px 5px 0;
    margin-right: 10px;
}

.inputspin .input-group .input-group-append button:before {
    content: "\2b";
}

.cbox-group {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.cbox-group>input {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.cbox-group>label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    margin: 0;
    user-select: none !important;
}

.cbox-group>label span:first-child {
    display: block;
    min-width: 20px;
    height: 20px;
    border: solid 1px #202020;
    background: #555;
    margin-right: 5px;
    position: relative;
}

.cbox-group>label span:first-child:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #BEB074;
    width: 10px;
    height: 10px;
    opacity: 0;
}

.cbox-group>label span:last-child {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #ccc;
}

.cbox-group>input:checked~label span:first-child:before {
    opacity: 1;
}

.main-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    font-weight: 500;
    padding-bottom: 5px;
    color: #fff;
    border-bottom: solid 1px #fff;
    width: 100%;
    display: block;
}

.dif-clr {
    color: #ad8a3a;
}

.text-warning {
    color: #e38d13 !important;
    font-weight: bold !important;
    font-size: 20px !important;
    margin: 15px;
    line-height: 26px !important;
}

.vid-main {
    display: table;
    background-size: cover !important;
    min-height: 200px;
    margin-bottom: 10px;
    width: 100%;
}

.ytb-mid {
    display: table-cell;
    vertical-align: middle;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: radial-gradient(rgba(173, 138, 58, 0.8) 60%, rgba(173, 138, 58, 1) 62%);
    border-radius: 50%;
    position: relative;
    display: block;
    margin: 0px auto;
    box-shadow: 0px 0px 25px 3px rgba(173, 138, 58, 0.8);
}

a,
a:focus:not(.btn),
section.dark a {
    color: #ad8a3a;
}

.play-btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(173, 138, 58, .75);
    top: -25%;
    left: -25%;
    background: rgba(198, 16, 0, 0);
}

.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    z-index: 1;
    -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

@-webkit-keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;

    }
}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;

    }
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 3px solid #bb9354;
    border-radius: 0.25rem;
    max-width: 100%;
    height: 100px;
    object-fit: inherit;
}

.dark-box {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    border: solid 3px #ad8a3a;
    border-radius: 3px;
}

.box-title {
    color: ;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.p-0 {
    padding: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.table td,
.table th {
    padding: 10px;
    vertical-align: top;
    width: 32%;
    border-top: 1px solid #dee2e6;
}

.box_main {
    background-color: #373737;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border-top: 2px solid #ad8a3a;
}


.ikon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url("../img/map_icon/01.png") no-repeat -80px 0px;
    margin: 10px 3px 0 0;
}

.ikon:hover {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url("../img/map_icon/01.png") no-repeat 0px 0px;
    margin: 10px 3px 0 0;
}

.koordinant_main {
    text-align: left;
    margin: 5px 0 0 -50px;
    font-size: 17px;
    color: #fff;
    padding-top: 10px;
}

.koordinant_main b {
    font-weight: 700;
    color: #fff;
}

.koordinant_main a {
    text-decoration: none;
    color: #fff;
}

.box_main {
    background-color: #373737;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border-top: 2px solid #ad8a3a;
}

.box_main .main_fiyat {
    padding-top: 5px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.box_main .main_fiyat a,
.box_main .main_fiyat i,
.box_main .main_fiyat b {
    text-decoration: none;
    color: #fff;
}

.box_main:hover {
    background: #fff;
}

.box_main:hover .ikon {
    background: url("../img/map_icon/01.png") no-repeat 0px 0px;
}

.box_main:hover .koordinant_main,
.box_main:hover .koordinant_main b,
.box_main:hover .koordinant_main a,
.box_main:hover .main_fiyat,
.box_main:hover .main_fiyat i,
.box_main:hover .main_fiyat b,
.box_main:hover .main_fiyat a {
    color: #575757;
}


.ftr-in .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#topNav button.btn-mobile {
    display: inline-block;
}

#topNav button.btn-mobile {
    display: block;
    float: right;
    margin-right: 0;
}

#header.dark #topNav button.btn-mobile,
#header.transparent #topNav button.btn-mobile,
#header.theme-color #topNav button.btn-mobile {
    color: #fff;
}

#header #topNav a.logo>img {
    max-height: 60px !important;
}

#header #topNav #topMain>li {
    border-bottom: 1px #262626 solid !important;
}

#header #topNav #topMain>li>a {
    height: 40px !important;
    line-height: 40px !important;
    padding-top: 0;
}

.form-lab {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    display: block;
    color: #fff;
    margin-bottom: 15px;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -130%);
    background-color: #eeeeee;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: solid 3px #ad8a3a;
    z-index: 9999;


}


/* Kapatma ikonu stil */
.close-icon {
    position: absolute;
    top: 12px;
    right: 10px;
    font-size: 17px;
    cursor: pointer;
    color: #ad8a3a;
}

.close-icon:hover {
    color: #555;
}

#phoneNumbers {
    list-style-type: none;
    padding: 0;
}

#phoneNumbers li {
    margin-bottom: 10px;
}

.text-success {
    color: #28a745 !important;
    font-size: 20px;
}

.pop-head {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: normal;
    margin: 0 0 20px 0;
    display: block;

}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/*.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
    max-width: 500px;
    margin: 1.75rem auto;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,-50px);
    -webkit-transform: none;
    transform: none;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

h5 {
    font-size: 14px;
    letter-spacing: normal;
    margin: 0 0 20px 0;
    display: block;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive>.table-bordered {
    border: 0;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

table {
    border-collapse: collapse;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6;
}

.table td, .table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-phone:before {
    content: "\f095";
}*/

.head-menu2 {
    border-radius: 50%;
    background: #bb9354;
    width: 75%;
    height: 3px;
    margin-left: 39px;
    margin-bottom: 17px;
    margin-top: 5px;
    text-align: center;
}

.head-menu3 {
    border-radius: 50%;
    background: #bb9354;
    width: 39%;
    height: 3px;
    margin-left: 339px;
    margin-bottom: 17px;
    margin-top: -10px;
    text-align: center;
}

.head-menu6 {
    border-radius: 50%;
    border: 1px solid #000;
    width: 39%;
    height: 3px;
    margin-left: 339px;
    margin-bottom: 17px;
    margin-top: -10px;
    text-align: center;
}

.label-secondary {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 80% !important;
    /*    box-shadow: 3px 3px 1px #000;*/
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    /*    white-space: nowrap;*/
    vertical-align: baseline;
    border-radius: 0.25em;
}

.text-start {
    box-shadow: 3px 3px 1px #000;
    border: 1px solid #fff;
    padding: 5px;
}

.label-dark {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 80% !important;
    box-shadow: 3px 3px 1px #000;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}

.belgeler {
    display: table;
    margin: 0px auto;
}

.belgeler img {
    display: inline-block;
    height: 80px;
    margin: 20px;
}

section.page-header.page-header-xs {
    padding: 20px 0 20px 0;
    color: #fff;
    background-color: #151515;
}

section.page-header {
    position: relative;
    padding: 50px 0 50px 0;
    border-top: 0;
    margin-top: 0;
    margin-bottom: 0 !important;
    background-color: rgba(0, 0, 0, 0.05);
    border-bottom: rgba(0, 0, 0, 0.05) 1px solid;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

section {
    display: block;
    position: relative;
    padding-top: 0px;
    padding-bottom: 20px;
    border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
    -webkit-transition: all .400s;
    -moz-transition: all .400s;
    -o-transition: all .400s;
    transition: all .400s;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    background-size: cover !important;
    box-sizing: border-box !important;
}

section.page-header .breadcrumb {
    right: 0;
    left: auto;
    position: absolute;
    font-size: 12px;
    top: 50%;
    margin-top: -15px;
    margin-bottom: 0;
    z-index: 10;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background: none;
    border-radius: 0.25rem;
}

.breadcrumb>li {
    display: inline-block;
}

section.dark.page-header .breadcrumb a {
    color: #ccc;
}

.breadcrumb>.active {
    color: #777;
}

.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}

section.page-header h1 {
    margin: 0;
    padding: 0;
    font-size: 26px;
    font-weight: 400;
}

section.dark {
    background-color: #212121;
    border-bottom: rgba(255, 255, 255, 0.1) 1px solid;
}

section.dark .card {
    background-color: #373737;
    border-color: #666;
    box-shadow: 1px 1px 7px #bb9354;
}

.card {
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.card-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
    font-weight: bold;
}

.card-siyah>.card-header {
    color: #fff;
    background-color: #ad8a3a;
    border-color: #ddd;
}

.card-header {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}


.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.d-block {
    display: block !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block;
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
}

.d-block {
    display: block !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.text-white {
    color: #fff !important;
}

.label-success {
    background-color: #5cb85c;
}

.label-success {
    background-color: #5cb85c;
    padding: 5px 10px !important;
}

.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 65%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    /*    white-space: nowrap;*/
    vertical-align: baseline;
    border-radius: 0.25em;
}

.labelp {
    display: inline;
    padding: 10px !important;
    font-size: 65%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    /*    white-space: nowrap;*/
    vertical-align: baseline;
    border-radius: 0.25em;
    /*    border: 1px solid #fff;*/
}


.btn-sari,
.btn-sari:active,
.btn-sari:focus {
    border-color: #ad8a3a;
    background-color: #564111;
}

.btn-sari:hover {
    background-color: #b78b26;
}

.btn-wp {
    border-color: #fff;
    background-color: #099e37;
}

.btn-wp:hover {
    background-color: #075d22;
}

section.dark .card .btn {
    color: #fff !important;
}

section.dark .btn {
    color: #fff;
}

section.dark .card-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}










.car-slider-container {
    position: relative;
    display: block;
    width: 100%;
}

.car-slider-container>.tns-outer>button {
    display: none;
}

.car-slider-container>.tns-outer>.tns-controls {
    position: absolute;
    top: 50%;
    left: 0;
    display: flex !important;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    transform: translate(0, -50%);
}

.car-slider-container>.tns-outer>.tns-controls>button {
    display: block;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    pointer-events: all;
    font-size: 20px;
}

.car-slider-container>.tns-outer>.tns-controls>button>i {
    color: #fff !important;
}

.car-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(2120/2670*100%);
    /*    padding-top: calc(1920/2770*100%);*/

    /*    padding-top: calc(600/700*100%);*/
}

.car-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    /*
    background: rgba(0,0,0,0.4);*/
}

.form-text {
    font-size: 15px;
}

.weight-600 {
    font-weight: 600 !important;
}

.size-16 {
    font-size: 16px !important;
    line-height: 20px !important;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}

section.dark hr {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-image: -moz-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-image: -ms-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-image: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-image: linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d6d6d6', endColorstr='#d6d6d6', GradientType=0);
}

section.dark div.heading-title.heading-border-bottom {
    border-bottom-color: #ad8a3a;
}

div.heading-title {
    position: relative;
    margin-bottom: 40px;
}

div.heading-title.heading-border-bottom {
    border-bottom: #ad8a3a 2px solid;
}

div.heading-title h3 {
    margin: 0;
    padding: 0;
    margin-top: 30px;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-left: 0;
    padding-right: 15px;
}

form .row {
    margin-bottom: 20px;
}

section.dark .form-control {
    border-color: #666;
    background-color: rgba(255, 255, 255, 0.05);
}

section.dark input {
    color: #fff;
}

.control-label {
    color: #fff;
}

.form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    border: #ddd 2px solid;
    box-shadow: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    border-color: #ad8a3a;
}

.stretch-row {
    align-items: stretch;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    counter-reset: step;
    overflow: hidden;
    margin-bottom: 11px;
}

.step-item {
    width: 100%;
    position: relative;
}

.step-item span {
    display: block;
    font-size: 16px;
    line-height: 14px;
    color: #fff;
    position: relative;
}

.step-item:before {
    content: counter(step);
    counter-increment: step;
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto;
    color: #222;
    border: solid 1px #ddd;
    line-height: 45px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 10;
    margin-bottom: 5px;
    background: #fbfbfb;
    border-radius: 50%;
}

.step-item:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -35%;
    width: 70%;
    height: 4px;
    background: #ddd;
    transform: translate(0, -50%);
    margin-top: -12px;
    border-radius: 10px;
    z-index: 2;
}

.step-item:last-child:after {
    content: none;
}

.step-item.active:before {
    color: #fff;
}

.step-item.active:before {
    background: #AD8A3A;
    border-color: #AD8A3A;
}

.container {
    width: 95%;
}

.text-dif {
    color: #d6d6d6 !important;
    /*    padding: 0px 5px;*/
    /*    box-shadow: 3px 3px 1px #000;*/
    /*border: 1px solid #725920;*/
    border-radius: 5px;
}

.text-dif>i {
    font-size: 10px;
}

.step-rez-summary {
    padding: 20px;
    background: #000;
    border: solid 1px #222;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.srs-vehicle-img {
    padding: 15px;
    background: #000;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 10px;
}

.srs-vehicle-img>div {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(10/1280*100%);
}

.srs-vehicle-img>div>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.srs-lines {
    display: block;
}

.srs-lines>div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: solid 1px #ddd;
}

.srs-lines>div:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.srs-lines>div>i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #AD8A3A;
    min-width: 24px;
    height: 24px;
    background: none;
    border-radius: 3px;
    margin-right: 8px;
}

.srs-lines>div>span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
}

.price-lines {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
    padding-bottom: 0;
    background: #444;
    border: solid 1px #222;
    border-radius: 5px;
}

.price-lines>.title {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.price-lines>.item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.price-lines>.item>span:last-child {
    text-align: right;
    color: #6BAB64;
    font-weight: 600;
}

.extra-lines,
.rextra-lines {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column-reverse;
    width: 100%;
}

.extra-lines>.caption,
.rextra-lines>.caption {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.extra-lines>.caption-extra,
.rextra-lines>.caption-extra {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.extra-lines>.item~.caption,
.rextra-lines>.item~.caption {
    display: none;
}

.extra-lines>.item,
.rextra-lines>.item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    color: #444;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.extra-lines>.item>span:last-child,
.rextra-lines>.item>span:last-child {
    text-align: right;
    color: #6BAB64;
    font-weight: 600;
}

.total-price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    background: #444;
    border-radius: 5px;
}

.total-price>span:first-child {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 2px;
}

.total-price>span:last-child {
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #AD8A3A;
    font-weight: 800;
}

.form-box {
    background: none;
    /*
    border: solid 1px #333;*/
    /*    border: solid 3px #ad8a3a;*/
    padding: 20px;
    padding-bottom: 0;
    border-radius: 10px;
}

.form-box .row {
    margin-left: -10px;
    margin-right: -10px;
}

.form-box .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.form-box .title {
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    position: relative;
}


.vouc-title {
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    position: relative;
}


.form-box .title-in {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    padding: 5px 15px;
    margin-bottom: 10px;
    background: #333;
}

.form-box .title~.title-in {
    margin-top: -8px;
}


.summ-box {
    background: none;
    /*
    border: solid 1px #333;*/
    border: solid 3px #ad8a3a;
    /*    padding: 20px;*/
    padding-bottom: 0;
    border-radius: 10px;
}

.summ-box .row {
    margin-left: -10px;
    margin-right: -10px;
}

.summ-box .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.summ-box .title {
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    position: relative;
}


.summ-box .title-in {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    padding: 5px 15px;
    margin-bottom: 10px;
    background: #333;
}

.summ-box .title~.title-in {
    margin-top: -8px;
}

/* SELECT2 RESET * START */

.form-group .select2-container {
    width: 100% !important;
}

.form-group .select2-container .select2-selection--single {
    height: unset;
    border-radius: 0;
}

.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-dropdown {
    border-radius: 0;
    z-index: 3000;
    background: #222;
    border: solid 1px #333;
}

.select2-results__group,
.select2-results__option {
    padding: 5px;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 10px;
    border: 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    color: #fff;
}

.select2-container--default .select2-results__option--selected {
    background: #333;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.select2-results__option:last-child {
    border-bottom: none;
}

.select2-search__field {
    padding: 5px 10px !important;
    height: unset !important;
    font-size: 14px !important;
    line-height: 20px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: solid 1px rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

/* SELECT2 RESET * END */

.live-result {
    position: absolute;
    min-width: 300px;
    width: 100%;
    top: 100%;
    left: 0;
    background: #181818;
    border: solid 1px #333;
    max-height: 300px;
    z-index: 99;
    overflow-y: scroll;
    overflow-x: hidden !important;
    border-radius: 5px;
}

.live-result .item {
    padding: 10px 15px;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    color: #fff;
    border-bottom: solid 1px #333;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.live-result .item i {
    color: #A58C16;
}

.live-result .item:hover {
    background: #222;
}

/* FORM GROUP START */

.form-group {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.form-group>input,
.form-group>.iti>input,
.form-group>textarea,
.form-group>.select2-container .select2-selection--single,
.form-group>.passenger-box {
    display: block;
    width: 100%;
    border: solid 1px #444;
    border-radius: 5px;
    padding: 10px 15px;
    resize: none;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
    color: #fff !important;
}

.form-group>input::placeholder,
.form-group>textarea::placeholder,
.form-group>.iti>input::placeholder {
    opacity: 1;
    color: #aaa;
}

.form-label {
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 2px;
    padding-left: 2px;
    color: #888;
}

.form-label.extra {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    padding: 5px 10px;
    padding-bottom: 8px;
    margin: 0;
    background: #626262;
    border-radius: 5px 5px 0 0;
    margin-bottom: -3px;
}

.form-label.extra>i {
    min-width: 15px;
    text-align: center;
    margin-right: 5px;
}

.form-group input.error-label,
.form-group select.error-label,
.form-group textarea.error-label {
    border-color: firebrick !important;
}

.form-group label.error,
.cbox-group label.error {
    font-size: 12px;
    line-height: 18px;
    color: #aaa;
    padding: 2px !important;
}

.ctxt {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 12px;
    line-height: 18px;
    color: #aaa;
    font-weight: 600;
}

/* FORM GROUP END */

/* Scrollbars START ------------------------------ */

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2);
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border: solid 1px rgba(255, 255, 255, 0.1);
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

*::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Scrollbars END ------------------------------ */

.popup2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background-color: rgb(102 102 102 / 80%);
    z-index: 999;
    overflow-y: scroll;
}

.popup-content2 {
    background-color: #212121;
    width: 50%;
    max-width: 100%;
    margin: 20px auto;
    padding: 25px;
    border-radius: 5px;

    position: relative;
}

.close2 {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}

.button2 {
    padding: 10px 20px;
    background-color: #626262;
    color: #fff;
    box-shadow: 2px 4px 6px #ad8a3a7a;
    border: none;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.button2:hover {
    background-color: #383838;
}

#extrasList2 {
    list-style-type: none;
    padding: 0;
}

#extrasList2 li {
    margin-bottom: 10px;
}

#extrasList2 label {
    margin-left: 5px;
}

.rsv-title {
    padding: 0;
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
    background: none;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/*.rsv-title:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 1px;
    background: #00a3ce;
}*/

.rsv-table {
    width: 100%;
    margin-bottom: 20px;
    border: solid 1px #000;
    background: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.rsv-table td {
    /* border: solid 1px #ccc; */
    padding: 10px;
    vertical-align: top;
}

.rsvt-label {
    display: block;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 2px;
    color: #000;
    font-weight: 500;
}

extra-box {
    width: 100%;
}

.extra-box-img {
    display: block;
    max-width: 80px;
    min-width: 133px;
    margin-right: 20px;
    position: relative;
}

.extra-box-img:after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    border-right: solid 1px #ddd;
    height: 100%;
}

.extra-box-img>div {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(100%);
    border-radius: 4px;
    border: solid 1px #bbb;
}

.extra-box-img>div>a>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.extra-box-flex {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
}

#confirmExtras2 {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

#confirmExtras2:hover {
    background-color: #218838;
}


.popup3 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.popup-content3 {
    background-color: #212121;
    width: 30%;
    max-width: 100%;
    margin: 100px auto;
    padding: 25px;
    border-radius: 5px;
    position: relative;
}

.close3 {
    position: absolute;
    color: #fff;
    top: 10px;
    right: 10px;
    font-size: 25px;
    cursor: pointer;
}

.button3 {
    padding: 10px 20px;
    background-color: #564111;
    border: solid 1px #fff !important;
    color: #fff;
    border: none;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 12px;
}

.button3>i {
    font-size: 1.2rem;
}

/*.button3:hover {
  background-color: #444;
}*/

.rsvt-payment-box {
    width: 100%;
    padding: 20px;
    padding-bottom: 0;
    background: #212121;
    border: solid 1px #212121;
}

.payment-img {
    padding: 10px;
}

.payment-img>img {
    width: 300px;
    max-width: 100vw;
}

.payment-panes {
    width: 100%;
}

.payment-panes>.pane {
    display: none;
    width: 100%;
}

.payment-panes>.pane.active {
    display: block;
}

.tooltip-box {
    display: block;
    position: relative;
}

.tooltip-box>span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #888;
    font-weight: 500;
    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;
}

.head-menu4 {
    border-radius: 50%;
    background: #bb9354;
    width: 78%;
    height: 3px;
    margin-left: 40px;
    margin-bottom: 17px;
    margin-top: -13px;
    text-align: center;
}

.head-menu5 {
    border-radius: 50%;
    background: #bb9354;
    width: 67%;
    height: 3px;
    margin-left: 56px;
    margin-bottom: 14px;
    margin-top: -10px;
    text-align: center;
}


/*/ VOUCHER STYLE /*/

.voucher-box {
    background: #000;
    color: #000;
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.8px;
}

.voucher-box table {
    width: 100%;
}

.voucher-box tr {
    background: #fff;
}

.voucher-box tr.vb-title {
    background: #eee;
    font-weight: 600;
    color: #000;
}

.voucher-box tr.vb-title-in {
    background: #fff;
    font-weight: 600;
    color: #000;
}

.voucher-box tr:not(.vb-title):not(.vb-title-in) td:first-child {
    white-space: nowrap;
    background: #eee;
    font-size: 12px;
    line-height: 18px;
}

.voucher-box tr:not(.vb-title):not(.vb-title-in) td:last-child {
    color: #444;
}

.voucher-box td {
    border: solid 1px #ddd;
    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: #fff !important;
}

.voucher-box .contact>a:hover {
    text-decoration: underline !important;
}

.voucher-box .vb-color {
    color: #fff !important;
}












/*VOUCHER STYLE END*/


/*LAST STYLE */

.gal-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(4/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;
}


.main-about-desc {
    display: block;
    width: 100%;
}

.main-about-desc>p {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.page-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(673/1200*100%);
}

.page-banner>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.box-map {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(5 / 4 * 100%);
    border-radius: 5px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    border: solid 1px #ddd;
}

.side-map>*,
.box-map>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.captcha-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.rez-complete-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 15px;
    /*    margin-bottom: 20px;*/
    background: #151515;
    border: solid 1px #222;
    border-radius: 5px;
}

.rez-complete-box>i {
    display: block;
    font-size: 35px;
    line-height: 56px;
    color: red;
    margin-bottom: 10px;
}

.rez-complete-box>span {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
}

.rez-complete-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.rez-complete-box>.head {
    display: block;
    text-align: center;
}

.rez-complete-box>.head>i {
    display: block;
    font-size: 50px;
    line-height: 56px;
    color: green;
    margin-bottom: 10px;
}

.rez-complete-box>.head>.message {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
}

.rez-number-box {
    display: block;
    text-align: center;
}

.rez-number-box>span:first-child {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    padding: 5px 10px;
    width: 100%;
    background: #666;
}

.rez-number-box>span:last-child {
    display: block;
    padding: 10px 15px;
    background: none;
    border: solid 2px #666;
    color: #ffd700;
    font-weight: 600;
}

.rez-complete-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rez-complete-contact>div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 10px;
}

.rez-complete-contact>div>i {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #222;
    background: #cc3333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    margin-right: 5px;
}

.rez-complete-contact>div>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff !important;
}

.rez-complete-contact>div>a:hover {
    text-decoration: underline !important;
}

.form-note {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #ddd;
}

/*END STYLE*/


/* PAGINATION START */

.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: 2px;
    display: block;
}

.pagination ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 5px;
    background: #bbb;
    border: solid 1px #ddd;
    color: #000 !important;
    border-radius: 3px;
}

.pagination ul li a:hover {
    background: #eee;
}

.pagination ul li.active a {
    background: #BB9354;
    border-color: #BB9354;
    color: #fff !important;
}

/* PAGINATON END */




/* MESSAGE BOX START */

.msg-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background: #000;
    border: solid 1px #ddd;
}

.msg-box i {
    min-width: 30px;
    height: 30px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 16px;
    line-height: 22px;
    background: green;
    border-radius: 3px;
}

.msg-box.danger i {
    background: firebrick;
}

.msg-box span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

/* MESSAGE BOX END */

@keyframes kaydir {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}



#animasyonluMetin {
    animation: kaydir 35s linear infinite;
    display: inline-block;
    white-space: nowrap;
    animation-delay: -8s;
}

.kayanMetinContainer {
    overflow: hidden;
}

#animasyonluMetin:hover {
    animation-play-state: paused;
}


/* ZEBRA DATEPICKER STYLES START */

.datepicker-group {
    position: relative;
}

.Zebra_DatePicker {
    color: #564111 !important;
    box-shadow: none;
    border-radius: 0;
    width: 250px !important;
    background: #ededed !important;
    border: 1px solid #ad8a3a !important;
}

.Zebra_DatePicker .dp_time_separator div:after {
    color: #AD8A3A !important;
}

.Zebra_DatePicker td,
.Zebra_DatePicker th {
    border-radius: 0;
    /*border: solid 1px #eee;*/
}


.Zebra_DatePicker .dp_timepicker .dp_disabled {
    color: #ad8a3a !important;
}

.Zebra_DatePicker .dp_header td,
.Zebra_DatePicker .dp_footer td {
    border: none;
    border-radius: 0;
}

.Zebra_DatePicker .dp_monthpicker td,
.Zebra_DatePicker .dp_timepicker td,
.Zebra_DatePicker .dp_yearpicker td {
    color: #AD8E46 !important;
}

.Zebra_DatePicker .dp_body .dp_selected {
    background: #FCB040 !important;
    color: #fff !important;
    height: auto !important;
}


.Zebra_DatePicker table {
    height: auto !important;
}

/* ZEBRA DATEPICKER STYLES END */




#CDSWIDSSP {
    width: 100% !important;
}


#CDSWIDWRL {
    width: 100% !important;
    max-width: 100% !important;
}



.tns-nav {
    position: absolute;
    bottom: 10px;
    /* Alt boÅŸluk miktarÄ±nÄ± istediÄŸiniz deÄŸere ayarlayabilirsiniz */
    left: 50%;
    transform: translateX(-50%);
}

.tns-nav button {
    background-color: #212121;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    cursor: pointer;
}

.tns-nav button.tns-nav-active {
    background-color: #696969;
    /* Aktif butonun arka plan rengi */
}

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 32px;
    color: #fff !important;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease 0s;
    z-index: 999;
}

.whatsapp-fixed {
    right: unset;
    left: 20px;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    opacity: 0.5;
}

button.Zebra_DatePicker_Icon {
    display: none !important;
}



.sale-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    max-width: 100px !important;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    line-height: 1.2;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

.sale-badge>image {
    max-width: 100% !important;
}


.rsv-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    /* Siyah opak arka plan */
}

/* Modal iÃ§eriÄŸi */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Kapatma dÃ¼ÄŸmesi */
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    position: relative;
    left: 98%;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.firsat_class {
    background-color: #ba8c25 !important;
}

.firsat_class_div {
    box-shadow: 1px 1px 20px #bb9354 !important;
    background-color: #000 !important;
}

.firsat_class_label {
    font-size: 95% !important;
    color: #FFF !important;
}

.firsat_class_text {
    box-shadow: 1px 1px 11px #fff !important;
    background: #BA8C25;
}

.pol_cls:hover {
    color: #543d0b !important;
}

.mouseover {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-left: 300px;
    max-width: 46%;
    background: #212121;
    width: 100%;
    border: solid 2px #BB9354;
    box-shadow: 4px 2px 10px #BB9354;
}

.mousespan {
    font-size: 1rem !important;
    text-shadow: 2px 1px 6px #7e7e7e !important;
}

.fancybox-button {
    margin-top: 145px !important;
}


.Zebra_DatePicker .dp_body {
    color: #ad8a3a !important;
}


.design {
    position: absolute;
    top: 5px;
    right: 5px;
    text-align: end;
    width: 20%;
    box-shadow: 1px 1px 5px #fff;
    border-radius: 100%;
}

.design img {
    width: 100%;
    object-fit: cover;
}

.scroll-prompt {
    position: fixed;
    left: 50%;
    width: 100px;
    height: 100px;
}
.scroll-prompt-arrow-container {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -18px;
    animation-name: bounce;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

.scroll-prompt-arrow {
    animation-name: opacity;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

.scroll-prompt-arrow:last-child {
    animation-direction: reverse;
    margin-top: -6px;
}

.scroll-prompt-arrow>div {
    width: 36px;
    height: 36px;
    border-right: 8px solid #bebebe;
    border-bottom: 8px solid #bebebe;
    transform: rotate(45deg) translateZ(1px);
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    20% {
        opacity: 0.2;
    }

    30% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.5;
    }

    60% {
        opacity: 0.6;
    }

    70% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(3px);
    }

    20% {
        transform: translateY(6px);
    }

    30% {
        transform: translateY(9px);
    }

    40% {
        transform: translateY(12px);
    }

    50% {
        transform: translateY(15px);
    }

    60% {
        transform: translateY(18px);
    }

    70% {
        transform: translateY(21px);
    }

    80% {
        transform: translateY(24px);
    }

    90% {
        transform: translateY(27px);
    }

    100% {
        transform: translateY(30px);
    }
}





.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-5px);
    }
}


.Zebra_DatePicker td.kapali-gun {
    background: #f8d7da !important;
    color: #721c24 !important;
    cursor: not-allowed !important;
    opacity: 0.8;
}

/* Custom Tooltip Styles */