﻿/*!
 * Copyright 2020
 */

@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    src: local('Poppins'),url(../fonts/Poppins-Regular.woff) format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-weight: 300;
    src: local('Poppins'),url(../fonts/Poppins-Light.woff) format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-weight: 500;
    src: local('Poppins'),url(../fonts/Poppins-Medium.woff) format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-weight: 600;
    src: local('Poppins'),url(../fonts/Poppins-SemiBold.woff) format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-weight: 700;
    src: local('Poppins'),url(../fonts/Poppins-Bold.woff) format('woff');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins'
}

h1, h2, h3, h4, h5, h6 {
    color: #111;
}

:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

body {
    font-size: 14px;
    font-family: "Poppins";
    font-weight: normal;
    color: #111;
    background-color: #fff;
    font-weight: 400;
}

a {
    color: #549eff;
    text-decoration: none;
    font-weight: normal;
}

    a:hover, a:focus {
        text-decoration: none;
        color: #1a73e8;
    }

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    line-height:25px;
    font-size: 15px;
    color: #403e3e;
    font-weight: 400;
    font-family: Arial;
}

b, strong {
    font-weight: 600;
    font-family: Arial;
}

.btn {
    padding: 7px 20px;
    font-size: 15px;
    border-radius: 0;
}

.btn-color, .btn-border:hover, .btn-border:focus {
    background-color: #b19f6a;
    border: 1px solid #b19f6a;
    color: #fff;
}

    .btn-border, .btn-color:hover, .btn-color:focus {
        background-color: #fff;
        border: 1px solid #b19f6a;
        color: #b19f6a;
    }

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar, #scroll::-webkit-scrollbar {
    width: 4px;
}

.select2-results__options--nested {
    display: inline;
}

.select2-results__message {
    color: #ff6868;
    position: relative;
    top: -3px;
    display: block !important;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb, #scroll::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 0
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track, #scroll::-webkit-scrollbar-track {
    background: #fff;
}

.scroll-md {
    height: 310px;
    overflow: auto;
    padding: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.bg-light {
    background-color: #f5f8fa;
}

.bg-color {
    background: #b19f6a;
}

.text-white {
    color: #fff !important;
}

.color {
    color: #b19f6a;
}

.navbar {
    height: 70px;
    background-color: #fff;
    border-top: 1px solid #eee;
    margin-bottom: 0;
}

header {
    background: #fff;
    z-index: 999;
    -webkit-box-shadow: 0px 10px 20px -25px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 10px 20px -25px rgba(0,0,0,0.75);
    box-shadow: 0px 10px 20px -25px rgba(0,0,0,0.75);
    position: relative;
}

.top-bar {
    height: 70px;
}

.top-bar-list {
    float: right;
}

    .top-bar-list > ul > li {
        float: left;
        position: relative;
        margin-right: 10px;
        padding: 0px 7px;
    }

        .top-bar-list > ul > li.bg-color {
            padding: 0 15px;
        }

            .top-bar-list > ul > li.bg-color i {
                position: relative;
                top: 1px;
                left: 3px;
            }

    .top-bar-list > ul {
        width: 100%;
        line-height: 40px;
        position: relative;
        top: 10px;
    }

    .top-bar-list ul > li > a {
        color: #424242;
        font-weight: 400;
        font-size: 13px;
    }

    .top-bar-list ul li img {
        width: 16px;
        position: relative;
        top: -1px;
    }

.navbar-nav > li {
    float: left;
    padding: 0 12px;
    line-height: 60px;
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.dropdown-menu > li:hover {
    background-color: #f3f3f3;
}

.navbar-nav > li > a {
    font-family: "Poppins";
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 400;
    color: #424242;
    position: relative;
    display: block;
}

    .navbar-nav > li > a:before {
        content: '';
        display: block;
        background: #b19f6a;
        left: 50%;
        right: 50%;
        bottom: 17px;
        height: 3px;
        position: absolute;
        width: 0;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

.navbar-nav > li:hover > a:before, .navbar-nav > li:focus > a:before, .navbar-nav > li:active > a:before {
    width: 100%;
    left: 0;
    right: 0;
}

.navbar-nav li:hover > a, .navbar-nav li:focus > a, .navbar-nav li:active > a {
    color: #b19f6a;
}

@media(min-width:768px) {
    #navigation ul li:hover + .dropdown-menu,
    #navigation ul li:hover .dropdown-menu, .top-bar-list ul li:hover + .dropdown-menu, .top-bar-list ul li:hover ul.dropdown-menu {
        display: block;
    }
}

.top-bar-list ul li a span {
    background: #fff;
    border: 1px solid #eee;
    margin-right: 5px;
    font-weight: bold;
    width: 40px;
    text-transform: uppercase;
    height: 25px;
    display: block;
    float: left;
    text-align: center;
    line-height: 23px;
    position: relative;
    top: 8px;
}

.top-bar-list ul.dropdown-menu > li > a > span {
    top: -3px !important;
    font-size: 12px;
    font-weight: 400 !important;
}

.dropdown-menu {
    min-width: 210px !important;
    border-radius: 0;
    background: #ffffff;
    border: 0;
    padding: 0;
    border: 3px solid #f8f8f8;
}

    .dropdown-menu > li > a {
        font-size: 13px !important;
        line-height: normal !important;
        display: block;
        text-transform: capitalize !important;
        font-weight: 400 !important;
        color: #424242;
    }



        .dropdown-menu > li > a:before {
            display: none !important;
        }

    .dropdown-menu > li {
        float: none !important;
        padding: 10px 5px !important;
    }

.navbar-nav li.bg-color {
    line-height: 20px !important;
    position: relative;
    top: 10px;
    padding: 0;
    height: 20px;
}

    .navbar-nav li.bg-color > a:before {
        display: none;
    }

    .navbar-nav li.bg-color a {
        background-color: #b19f6a;
        padding: 10px 12px;
        color: #fff;
    }

    .navbar-nav li.bg-color > a > i {
        position: relative;
        top: 1px;
        font-size: 14px;
        right: 0px;
    }

@media(min-width:1024px) {
    .logo a img {
        max-height: 70px;
        width: auto;
        position: absolute;
        top: -70px;
        width: auto;
    }
}

#transfer {
    min-height: 500px;
    position: relative;
}

    #transfer:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        /*background-color: #fff;*/
        position: absolute;
        opacity: .70;
    }

.transfer-img {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 500px;
    width: auto;
    padding: 30px 0;
}

#transfer .transfer-bg {
    background-color: #0a0a0ad4;
    /* -webkit-box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);*/
    box-shadow: 10px 24px 28px 10px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgb(230 220 220 / 49%) !important;
}
.transfer-body label{
    color:#fff !important;
    font-weight:400;
}


#transfer .transfer-body {
    padding: 30px;
    min-height:390px;
}

#transfer .transfer-header {
    /*background-color: #b19f6aa3;*/
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 39px;
}

#transfer .form-group {
    /*margin-bottom: 10px;*/
}

label {
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 500;
    color: #111;
}

.form-control {
    height: 42px;
    display: block;
    color: rgb(119, 119, 119);
    position: relative;
    font-size: 14px;
    border-width: 1px;
    border-style: solid;
    border-color: #9696966b;
    border-image: initial;
    padding: 10px;
    border-radius: 5px;
}
/*.select2-container--default .select2-selection--single {
    border-radius: 5px !important;
}*/

    .form-control::placeholder {
        color: #777 !important;
        font-size: 14px;
    }

    .form-control:focus {
        border: 1px solid #b19f6a !important;
    }



.disabled-hover-info {
    display: none !important;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: #b19f6a;
    width: auto;
    color: #fff !important;
    padding: 3px 5px !important;
    font-size: 12px;
    position: absolute;
    right: 0;
    top: -30px;
    border-radius: .25em;
    -moz-border-radius: .25em;
    -o-border-radius: .25em;
    -webkit-border-radius: .25em;
    -ms-webkit-radius: .25em;
    font-weight: 300 !important;
}

    .disabled-hover-info:before {
        content: '';
        position: absolute;
        left: 7px;
        bottom: -7px;
        border-style: solid;
        border-top-width: 7px;
        border-right-width: 7px;
        border-left-width: 7px;
        border-top-color: #b19f6a;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }

.disabled-input:hover > .disabled-hover-info {
    display: inline !important;
}

.btn-search {
    margin-top: 10px;
    border-radius: 0;
    background: #b19f6a;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 10px -7px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px -7px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px -7px rgba(0,0,0,0.75);
}

    .btn-search:hover, .btn-search:focus, .btn-search:active {
        opacity: 0.9;
        color: #fff;
    }

.chosen-search input {
    height: 34px !important;
    margin-bottom: -5px;
}

.banner-bg {
    text-align: center;
    height: 100%;
    position: relative;
    padding: 0px;
}

.banner-text-bg {
    position: relative;
    top: 19%;
    -moz-transform: translateY(-50%) !important;
    -o-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
}

.banner-text-1 {
    font-size: 42px;
    color: #fff;
    line-height: 55px;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: -1px;
    z-index: 99;
    font-weight: 500;
}


.banner-text-2, .banner-text-3 {
    font-size: 24px;
    color: #fbfb6a;
    font-weight: 500;
    max-height: 35px;
    line-height: 35px;
    margin-bottom: 15px;
}

@media(min-width:1024px) {
    .col-offset-1 {
        margin-left: 8.333333%;
    }

    .title-icons-mobile {
        display: none;
    }
}


.checkbox-style {
    display: initial;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkbox-style input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-webkit-radius: 0;
    background-color: #fff;
    border: 1px solid rgb(241, 241, 241);
}

.checkbox-style:hover input ~ .checkmark {
    border: 1px solid #b19f6a;
}

.checkbox-style input:checked ~ .checkmark {
    background-color: #ffffff;
    border: 1px solid #b19f6a;
}

.checkbox-style .checkmark-text {
    position: relative;
    top: -1px;
    font-size: 13px;
}


.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-style input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-style .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #b19f6a;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.page-title {
    color: #111;
    font-weight: 500;
    font-size: 26px;
}

.page-title-1 {
    font-weight: 500;
    font-size: 18px;
    position: relative;
    display: initial;
}

.page-title-2 {
    font-weight: 500;
    font-size: 18px;
    position: relative;
    display: initial;
    left: 10px;
}

    .page-title-2:before {
        width: 3px;
        height: 100%;
        content: '';
        display: block;
        background-color: #b19f6a;
        position: absolute;
        left: -10px;
    }
/* 
Owl Carousel CSS
 */
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel, .owl-carousel .owl-wrapper {
    display: none;
    position: relative
}

.owl-carousel {
    width: 100%;
    -ms-touch-action: pan-y
}

    .owl-carousel .owl-wrapper-outer {
        overflow: hidden;
        position: relative;
        width: 100%;
        z-index: 4
    }

        .owl-carousel .owl-wrapper-outer.autoHeight {
            -webkit-transition: height .5s ease-in-out;
            -moz-transition: height .5s ease-in-out;
            -ms-transition: height .5s ease-in-out;
            -o-transition: height .5s ease-in-out;
            transition: height .5s ease-in-out
        }

    .owl-carousel .owl-item {
        float: left
    }

.owl-controls .owl-buttons div, .owl-controls .owl-page {
    cursor: pointer
}

.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent
}

.grabbing {
    cursor: url(owl-carousel/grabbing.png) 8 8,move
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0)
}

.owl-origin {
    -webkit-perspective: 1200px;
    -webkit-perspective-origin-x: 50%;
    -webkit-perspective-origin-y: 50%;
    -moz-perspective: 1200px;
    -moz-perspective-origin-x: 50%;
    -moz-perspective-origin-y: 50%;
    perspective: 1200px
}

.owl-fade-out {
    z-index: 10;
    -webkit-animation: fadeOut .7s both ease;
    -moz-animation: fadeOut .7s both ease;
    animation: fadeOut .7s both ease
}

.owl-fade-in {
    -webkit-animation: fadeIn .7s both ease;
    -moz-animation: fadeIn .7s both ease;
    animation: fadeIn .7s both ease
}

.owl-backSlide-out {
    -webkit-animation: backSlideOut 1s both ease;
    -moz-animation: backSlideOut 1s both ease;
    animation: backSlideOut 1s both ease
}

.owl-backSlide-in {
    -webkit-animation: backSlideIn 1s both ease;
    -moz-animation: backSlideIn 1s both ease;
    animation: backSlideIn 1s both ease
}

.owl-goDown-out {
    -webkit-animation: scaleToFade .7s ease both;
    -moz-animation: scaleToFade .7s ease both;
    animation: scaleToFade .7s ease both
}

.owl-goDown-in {
    -webkit-animation: goDown .6s ease both;
    -moz-animation: goDown .6s ease both;
    animation: goDown .6s ease both
}

.owl-fadeUp-in {
    -webkit-animation: scaleUpFrom .5s ease both;
    -moz-animation: scaleUpFrom .5s ease both;
    animation: scaleUpFrom .5s ease both
}

.owl-fadeUp-out {
    -webkit-animation: scaleUpTo .5s ease both;
    -moz-animation: scaleUpTo .5s ease both;
    animation: scaleUpTo .5s ease both
}

@-webkit-keyframes empty {
    0% {
        opacity: 1
    }
}

@-moz-keyframes empty {
    0% {
        opacity: 1
    }
}

@keyframes empty {
    0% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes backSlideOut {
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px)
    }

    100%,75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%)
    }
}

@-moz-keyframes backSlideOut {
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px)
    }

    100%,75% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%)
    }
}

@keyframes backSlideOut {
    25% {
        opacity: .5;
        transform: translateZ(-500px)
    }

    100%,75% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%)
    }
}

@-webkit-keyframes backSlideIn {
    0%,25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(200%)
    }

    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0) translateX(0)
    }
}

@-moz-keyframes backSlideIn {
    0%,25% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(200%)
    }

    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px)
    }

    100% {
        opacity: 1;
        -moz-transform: translateZ(0) translateX(0)
    }
}

@keyframes backSlideIn {
    0%,25% {
        opacity: .5;
        transform: translateZ(-500px) translateX(200%)
    }

    75% {
        opacity: .5;
        transform: translateZ(-500px)
    }

    100% {
        opacity: 1;
        transform: translateZ(0) translateX(0)
    }
}

@-webkit-keyframes scaleToFade {
    to {
        opacity: 0;
        -webkit-transform: scale(.8)
    }
}

@-moz-keyframes scaleToFade {
    to {
        opacity: 0;
        -moz-transform: scale(.8)
    }
}

@keyframes scaleToFade {
    to {
        opacity: 0;
        transform: scale(.8)
    }
}

@-webkit-keyframes goDown {
    from {
        -webkit-transform: translateY(-100%)
    }
}

@-moz-keyframes goDown {
    from {
        -moz-transform: translateY(-100%)
    }
}

@keyframes goDown {
    from {
        transform: translateY(-100%)
    }
}

@-webkit-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -webkit-transform: scale(1.5)
    }
}

@-moz-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -moz-transform: scale(1.5)
    }
}

@keyframes scaleUpFrom {
    from {
        opacity: 0;
        transform: scale(1.5)
    }
}

@-webkit-keyframes scaleUpTo {
    to {
        opacity: 0;
        -webkit-transform: scale(1.5)
    }
}

@-moz-keyframes scaleUpTo {
    to {
        opacity: 0;
        -moz-transform: scale(1.5)
    }
}

@keyframes scaleUpTo {
    to {
        opacity: 0;
        transform: scale(1.5)
    }
}

.owl-1 .owl-bg {
    padding: 0px 15px
}

.owl-1 a {
    position: relative;
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.owl-1 .owl-title {
    position: absolute;
    bottom: 0px;
    z-index: 9999;
    left: 0;
    right: 0;
    background: #b19f6a;
    width: 100%;
    padding: 8px 15px;
    color: #fff;
}

.owl-1 .owl-title-bottom {
    background: #b19f6a;
    width: 100%;
    padding: 8px 15px;
    color: #fff;
}

.owl-details {
    background: #f8f8f863;
    padding: 15px;
    border: 1px solid #eee;
    border-top: 0;
}
    .owl-details ul {
        width: 100%;
    }

    .owl-details ul li .icon {
        color: #b19f6a;
        font-size: 18px;
        position: relative;
        top: 1px;
    }

.owl-prev, .owl-next {
    float: left;
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    line-height: 40px;
    margin: 0 5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .owl-prev:hover, .owl-next:hover {
        background-color: #b19f6a;
        border: 1px solid #b19f6a;
    }

        .owl-prev:hover i, .owl-next:hover i {
            color: #fff;
        }

.owl-buttons {
    display: inline-block;
    margin-top: 15px;
}

.owl-controls {
    text-align: center;
}

.owl-img {
    border-bottom: 0;
}

.flickity-enabled {
    position: relative;
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    text-align: center;
}

.flickity-prev-next-button.previous, .flickity-prev-next-button.next {
    display: none;
}

.flickity-slider {
    width: 100%;
    height: auto !important;
}

.gallery-cell {
    text-align: center;
    width: 100%;
    height: auto;
}

.gallery-thumbs {
    position: absolute !important;
    top: auto;
    width: auto !important;
    bottom: 0;
}

    .gallery-thumbs .flickity-viewport {
        overflow: inherit !important;
        width: auto !important;
    }

    .gallery-thumbs .gallery-cell {
        width: 80px;
        height: 80px !important;
        background: #fff;
        line-height: 85px;
        left: auto !important;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -webkit-border-radius: 50%;
        -ms-webkit-radius: 50%;
        -webkit-box-shadow: 0px 0px 10px -7px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 10px -7px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 10px -7px rgba(0,0,0,0.75);
        font-size: 28px;
        color: #b19f6a;
        margin: 0 13px 0;
        position: relative !important;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        float: left;
    }

        .gallery-thumbs .gallery-cell:hover, .gallery-thumbs .gallery-cell.is-nav-selected {
            background-color: #b19f6a;
            color: #fff;
        }

    .gallery-thumbs .flickity-slider {
        transform: none !important;
        display: inline-block;
        width: 90vh !important;
        position: absolute !important;
        left: auto !important;
    }

.footer {
    padding: 50px 0;
    background-color: #4e4e4e;
    color: #fff;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.footer-list li {
    padding: 5px 0;
}

    .footer-list li a {
        color: #fff;
        font-weight: 400;
        font-size: 13px;
    }

.bottom-footer {
    background: #4a4a4a;
    padding: 15px 0;
    color: #fff;
    font-size: 13px;
}

.owl-row .col-md-12 {
    padding: 0
}

.flex-icon-wrapper .col-md-6 {
    margin-bottom: 30px;
}

.icon-wrapper .home-icon {
    width: 80px;
    height: 80px;
    display: block;
    border: 2px solid #b19f6a;
    text-align: center;
    float: left;
    margin-right: 30px;
}

    .icon-wrapper .home-icon i {
        font-size: 42px;
        line-height: 78px;
        color: #b19f6a;
    }

.icon-wrapper-bg {
    float: left;
    width: 75%;
}

    .icon-wrapper-bg .dropdown-trigger {
        display: none;
    }

    .icon-wrapper-bg .wrapper-title {
        font-weight: 600;
        color: #b19f6a;
        font-size: 17px;
    }

    .icon-wrapper-bg p {
        font-size: 13px;
    }

.parallax {
    background-image: url(upload/images/image10.jpg);
    margin-bottom: 30px;
    padding: 90px 0 160px;
    color: #fff;
    text-align: center;
}

    .parallax h4 {
        font-size: 22px;
        color: #fff;
    }



@media(min-width:1024px) {
    .mobile {
        display: none;
    }
    .owl-useful-min {
        min-height: 200px;
        max-height: 200px;
        overflow:auto;
    }
    .navbar-expand-lg .navbar-collapse {
        display: block;
        text-align: center;
    }

    .navbar-nav > li:last-child {
        float: right;
    }

    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: initial;
        text-align: left;
        width: 100%;
        float: left;
        display: inline-block;
    }

    .footer-col-bg .dropdown-trigger {
        display: none;
    }
}

.dropdown-menu.min {
    top: 90%;
}

@media(max-width:768px) {
    .book-sekme {
        padding: 9px 36px 11px 7px !important;
    }

    #transfer, .transfer-img {
        min-height: auto;
        height: auto;
    }

    .transfer-img {
        background: #fff !important;
        padding: 0;
    }

    .flex-transfer .column-transfer-details {
        display: none;
    }

    .column-transfer, .owl-1, .scroll-md {
        padding: 0;
    }

    .logo a img {
        max-height: 60px;
        top: -8px;
        left: -10px;
        position: relative;
        z-index: 99;
        width: auto;
    }


    .top-bar {
        display: none;
    }

    #transfer .transfer-header {
        text-align: left;
        padding-left: 15px;
        font-size: 16px;
        line-height:42px;
    }

    .page-title {
        font-size: 18px;
    }

    #transfer .transfer-bg {
        border-bottom: 1px solid #eee;
        box-shadow: none !important;
    }

    #transfer:before {
        background-color: #ffffff;
    }

    header {
        box-shadow: none !important;
        padding-bottom: 70px;
    }

    .navbar-icon {
        border-top: 2px solid #b19f6a;
        height: 20px;
        width: 32px;
        box-sizing: border-box;
        position: absolute;
        z-index: 60;
        top: 13px;
        right: 0;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -khtml-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

        .navbar-icon:before {
            content: "";
            display: block;
            position: absolute;
            height: 2px;
            width: 32px;
            left: 0;
            background: #b19f6a;
            top: 7px;
            -webkit-transition: all 0.3s ease-in;
            -moz-transition: all 0.3s ease-in;
            -khtml-transition: all 0.3s ease-in;
            -o-transition: all 0.3s ease-in;
            transition: all 0.3s ease-in;
        }

        .navbar-icon:after {
            content: "";
            display: block;
            position: absolute;
            height: 2px;
            width: 32px;
            left: 0;
            background: #b19f6a;
            bottom: 0;
            -webkit-transition: all 0.3s ease-in;
            -moz-transition: all 0.3s ease-in;
            -khtml-transition: all 0.3s ease-in;
            -o-transition: all 0.3s ease-in;
            transition: all 0.3s ease-in;
        }

    .mobile-phone {
        display: block !important;
        position: absolute;
        top: 8px;
        right: 50px;
        font-size: 23px;
    }

        .mobile-phone a {
            color: #b19f6a;
        }

    .navbar-toggler:not(.collapsed) .navbar-icon {
        border-color: transparent;
    }

        .navbar-toggler:not(.collapsed) .navbar-icon:before {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -khtml-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            width: 32px;
            left: -1px;
            top: 8px;
        }

        .navbar-toggler:not(.collapsed) .navbar-icon:after {
            -webkit-transform: rotate(135deg);
            -moz-transform: rotate(135deg);
            -khtml-transform: rotate(135deg);
            -o-transform: rotate(135deg);
            transform: rotate(135deg);
            bottom: 8px;
            width: 32px;
            left: -2px;
        }

    .navbar-nav {
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .navbar-collapse {
        background: #ffffff;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        position: fixed;
    }

    .navbar {
        position: fixed;
        width: 100%;
    }

    .navbar-nav {
        height: 100vh;
    }

        .navbar-nav li a:before {
            display: none;
        }

        .navbar-nav li {
            line-height: normal;
            padding: 10px 15px !important;
        }

            .navbar-nav li.bg-color {
                display: none;
            }

    .menu-rezervasyon a {
        padding: 8px;
        display: block;
        border: 1px solid #b19f6a;
        background-color: #b19f6a;
        color: #fff;
        font-weight: 600;
        margin-top: 3px;
    }

    .menu-rezervasyon i {
        font-size: 18px;
        position: relative;
        top: 2px;
        left: 5px;
    }

    #navigation .mobile {
        display: block;
        padding: 15px 15px 5px;
        padding-top: 60px;
    }

    #navigation .close-button {
        position: absolute;
        top: 15px;
        right: 15px;
    }

        #navigation .close-button .navbar-toggler {
            font-size: 20px;
            background: #b19f6a;
            color: #fff;
            display: block;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            -moz-border-radius: 50%;
            -o-border-radius: 50%;
            -webkit-border-radius: 50%;
            -ms-webkit-radius: 50%;
        }

    .mobile-top-bar ul {
        width: 100%;
    }

    .mobile-top-bar > ul > li img {
        width: 16px;
        position: relative;
        top: -1px;
    }

    .mobile-top-bar > ul > li {
        float: left;
        width: 50%;
        margin-top: 10px;
        background: #f3f3f3;
        padding: 5px 8px;
    }

        .mobile-top-bar > ul > li > a {
            color: #424242;
            line-height: 30px;
        }

    .mobile-top-bar ul li a span {
        background: #fff;
        border: 1px solid #eee;
        margin-right: 5px;
        width: 45px;
        text-transform: uppercase;
        height: 30px;
        display: block;
        float: left;
        text-align: center;
        line-height: 30px;
        position: relative;
        top: 0;
    }

    .dropdown-trigger {
        display: block;
        position: absolute;
        right: 15px;
        top: 0;
        width: 100%;
        text-align: right;
        font-size: 18px;
        height: 40px;
        line-height: 40px;
    }

    .dropdown-menu > li > a > span {
        top: -5px !important;
    }

    .money-ul > li > a > span {
        width: 100% !important;
        margin-bottom: 0px;
        left: 0;
        top: 0 !important;
        float: none !important;
    }

    .money-ul > li {
        padding: 5px !important;
    }

    .parallax {
        padding: 80px 0;
        margin: 0;
        margin-top: 30px;
    }

    .icon-wrapper .home-icon {
        display: none;
    }

    .icon-wrapper-bg p {
        display: none;
    }

    .flex-icon-wrapper .col-md-6 {
        margin-bottom: 5px;
    }

    .icon-wrapper-bg {
        float: none;
        background: white;
        width: 100%;
        position: relative;
        padding: 10px;
        margin-bottom: 0;
        border: 1px solid #eee;
    }

        .icon-wrapper-bg .wrapper-title {
            font-weight: 500;
            font-size: 15px;
            width: 100%;
        }

        .icon-wrapper-bg .dropdown-trigger {
            top: 3px;
            color: #B19F68;
            display: block !important;
        }

            .icon-wrapper-bg .dropdown-trigger.active + p {
                display: block;
                padding-top: 10px;
                color: grey;
            }

    .footer-list {
        display: none;
    }

    .footer {
        padding: 30px 0;
    }

        .footer .col-md-3 {
            padding: 0;
        }

        .footer .footer-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 0;
            text-transform: uppercase;
            padding: 10px 15px;
        }

    .footer-col-bg .dropdown-trigger.active + .footer-list {
        display: block;
        padding-top: 0;
        color: grey;
        padding-left: 15px;
    }

    .bottom-footer {
        border-top: 0;
        text-align: center;
    }
}

.dropdown {
    display: block;
}

.dropdown-trigger.active:before {
    content: "\f106";
}

#navigation .dropdown-trigger.active + .dropdown-menu {
    display: block;
    left: 0;
    position: absolute;
    min-width: 100% !important;
}

.mega-menu {
    right: 0;
    left: auto;
    width: 650px;
    padding: 15px 15px 0;
    -webkit-box-shadow: 0px 5px 12px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 5px 12px -8px rgba(0,0,0,0.75);
    box-shadow: 0px 5px 12px -8px rgba(97, 97, 97, 0.75);
    top: 95%;
    border: 0;
    border-top: 3px solid #b19f6a;
}

    .mega-menu .col-md-3 {
        padding: 0;
    }

.nav-tabs {
    margin-top: 10px;
    width: 100%;
    border: 0;
}

    .nav-tabs .tranigo-menu-item {
        float: left;
        width: 19%;
        text-align: center;
        margin-right: 1%;
        line-height: normal;
    }

        .nav-tabs .tranigo-menu-item > a {
            color: #fff;
            font-size: 13px;
            font-weight: 500;
            display: block;
            padding: 8px 0;
            background-color: #b19f6a;
            border: 1px solid #b19f6a;
            border-radius: 0;
        }

            .nav-tabs .tranigo-menu-item:hover > a, .nav-tabs .tranigo-menu-item > a.active {
                color: #b19f6a;
                background-color: transparent;
            }

.tabContent-list {
    -moz-columns: 3 194px;
    -webkit-columns: 3 194px;
    columns: 3 194px;
    column-break-inside: avoid;
    overflow: hidden;
    margin-top: 10px;
}

    .tabContent-list li {
        display: block;
    }

        .tabContent-list li:hover {
            background-color: #b19f6a;
        }

        .tabContent-list li a {
            line-height: normal;
            color: #000;
            font-weight: 400;
            font-size: 13px;
            display: block;
            padding: 7px 5px;
        }

        .tabContent-list li:hover > a {
            color: #fff;
        }

        .tabContent-list li img {
            width: 18px;
            position: relative;
            top: -1px;
        }

.page-header {
    background: url("../upload/images/page-title.jpg") no-repeat center #f0f0f0;
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
    height: 150px;
}

    .page-header.large, .page-header.large .container {
        height: 310px;
    }

@media(min-width:768px) {
    .page-header select.form-control, .page-header .select2-container--default .select2-selection--single {
        border: 0 !important;
    }

    .desktop-none {
        display: none;
    }
}

.flex-tarih, .flex-tarih .col-md-6 {
    padding: 0;
    margin: 0;
}

/*    .flex-tarih .col-md-6:first-child {
        border-right: 1px solid #ccc !important;
    }
*/
select.form-control:focus {
    border: 1px solid #b19f6a !important;
}
.page-title .container {
    height: 150px;
    position: relative;
}

.title-holder {
    height: 150px !important;
    position: relative;
    display: table;
    width: 100%;
}

.page-header.large .title-holder {
    height: 200px !important;
}

.page-header.large .title-text {
    background-color: #0000009e;
    position: relative;
    top: 20px;
    text-align: left !important;
    padding: 15px 30px;
}

.column-page-head {
    width: 20%;
    padding: 0 5px;
    float:left;
}

    .column-page-head .checkmark-text {
        font-size: 14px;
        font-weight: 400;
    }

.title-text label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 6px !important;
    min-height: 24px;
    display: block;
}

.title-text .btn-rezervasyon {
    height: 42px !important;
    line-height: 42px !important;
    padding: 0 !important;
    display: block;
    background-color: #b19f6a;
    color: #fff !important;
    width:100%;
}

.title-text {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 100%;
    text-align: center;
}

    .title-text h1 {
        font-size: 34px;
        font-weight: 600;
        position: relative;
        letter-spacing: -0.5px;
        margin-bottom: 0;
    }

.bread-list {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: #b19f6a1a;
    padding: 10px;
}

    .bread-list li {
        float: left;
        padding: 0px 10px;
        position: relative;
    }

        .bread-list li:first-child:after {
            content: "\f105";
            font-family: "Font Awesome 5 Pro";
            font-weight: 400;
            color: #424242;
            font-size: 13px;
            position: absolute;
            top: 2px;
            right: -3px;
        }

        .bread-list li a {
            color: #676767;
            font-weight: 400;
            font-size: 15px;
        }



@media(min-width:768px) {
    .desktop-400-w {
        width: 400px;
    }

    .dropdown-trigger {
        display: none;
    }

    .mobile-row {
        display: block;
        overflow: hidden;
        background-attachment: fixed;
        background-size: cover;
    }

    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .mobile-phone {
        display: none;
    }
}

#details-icerik {
    background-color: #f8f8f8;
}

.sidebar-title {
    font-size: 16px;
    background: #b19f6a;
    color: #fff;
    padding: 10px;
}

.sidebar-list {
    width: 100%;
    background: #fff !important;
    padding: 0;
    margin: 0 !important;
    border: 1px solid #efefef;
    border-bottom:0;
}

.section-md, .section-content-md {
    padding: 20px 0;
}


.title-text h1 {
    font-size: 28px;
}

.sidebar-list li {
    border-bottom: 1px solid #efefef;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .sidebar-list li.active, .sidebar-list li:hover {
        background-color: #737373;
    }



    .sidebar-list li i {
        color: #000;
        font-size: 17px;
        position: relative;
        top: 2px;
    }


    .sidebar-list li .sidebar-text {
        font-weight: 400;
        font-size: 13px;
        color: #000;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        display: block;
        padding: 10px;
    }

    .sidebar-list li .sidebar-text-icerik {
        display: block;
        font-size: 13px;
        color: #000000;
        background: #eee;
        padding: 10px;
        border-radius: 10px;
        margin: 5px;
        font-weight: 300;
    }

    .sidebar-list li.active .sidebar-text, .sidebar-list li:hover .sidebar-text {
        color: #fff;
    }

.galeri-row {
    margin: 0 -7.5px;
}

.galeri-col {
    padding: 0 7.5px 15px;
}

.review-wrapper {
    padding: 41px;
    border: 1px solid #eee;
    max-height: 240px;
    min-height: 240px;
}

    .review-wrapper .author {
        font-weight: 500;
    }


blockquote {
    quotes: "“" "”" "‘" "’";
    font-size: 32px;
    position: relative;
    font-family: monospace;
    color: #b19f6a;
}

    blockquote:before {
        content: open-quote;
        position: absolute;
        left: -20px;
        top: -20px;
    }

    blockquote:after {
        content: close-quote;
        position: absolute;
        right: -20px;
        bottom: -20px;
    }

.owl-pagination {
    display: inline-block;
}

#home-reviews .owl-pagination {
    position: relative;
    top: -25px;
}

.owl-page {
    border: #b19f6a 2px solid;
    background-color: #b19f6a;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    float: left;
    margin: 0px 2px;
}

    .owl-page.active {
        border: #b19f6a 2px solid;
        background-color: transparent;
    }

@media(max-width:768px) {
    .navbar .container {
        position: relative;
    }
    .oda-tipi span{
        font-size:14px;
    }
    .satis-tipi{
        font-size:13px;
    }
    .oda-extra{
        font-size:9px;
    }
    .bg-ayirici{
        border-top:0px !important;
        border-bottom:0px !important;
    }

    .section-content-md {
        background-color: #f3f3f3;
    }

    .section-md {
        padding: 30px 0 0;
    }
   
    .sidebar-title {
        font-size: 14px;
        padding: 8px;
    }

    .sidebar {
        padding: 0;
        background-color: #fff;
        position: relative;
        margin-top: 5px !important;
    }

    #details-icerik {
        padding: 10px 0;
    }

    .main-content {
        padding: 6px;
        background-color: #fff;
        position: relative;
    }

    .sidebar .dropdown-trigger {
        top: 0;
        font-size: 16px;
        color: #fff;
    }

    .sidebar-col {
        margin-bottom: 15px;
    }

    .sidebar .dropdown-trigger.active + .sidebar-list {
        display: block !important;
    }

    .sidebar-list {
        display: none;
    }

    .contact-item {
        padding: 0 15px !important;
    }

    .mobil-none {
        display: none;
    }

    .m-mt20 {
        margin-top: 20px;
    }
}

.contact-item {
    margin-top: 15px;
    display: block;
}

    .contact-item .contact-icon {
        width: 34px;
        float: left;
        font-size: 26px;
        position: relative;
        height: 34px;
    }

    .contact-item .info {
        display: block;
        font-size: 13px;
        font-weight: 400;
        color: #999;
    }

.contact-text a, .contact-text address {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.contact {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

    .contact:last-child {
        border-bottom: 0;
    }

    .contact address {
        display: inline;
    }

    .contact span {
        font-weight: 500;
        font-size: 17px;
        min-height: 30px;
        display: block;
        float: left;
        margin-right: 10px;
    }

    .contact a {
        color: #111;
        font-weight: 400;
        font-size: 15px;
    }

    .contact ul li {
        float: left;
        margin: 0 20px 0 0px;
        position: relative;
        top: 2px;
    }

        .contact ul li i {
            font-size: 18px;
            font-weight: normal !important;
            color: #b19f6a !important;
        }

textarea.form-control {
    height: 90px;
}

.mt-15 {
    margin-top: 15px;
}

.fixed {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    background-color: #05d06c;
    border: 3px solid #fff;
    text-align: center;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);
    z-index: 99999;
}

    .fixed a {
        color: #fff;
        font-size: 26px;
        line-height: 49px;
    }


@media(min-width:992px) {
    .booking-step {
        margin-left: -50px;
    }
}

.booking-step {
    /*width: 100%;*/
    display: block;
    margin-bottom: 30px;
    height: 100px;
}

    .booking-step li {
        width: 25%;
        float: left;
        font-size: 15px;
        font-weight: 300;
        margin-bottom: 20px;
        text-align: center;
    }

        .booking-step li span {
            display: block;
            width: 60px;
            height: 60px;
            background-color: #969696;
            border-radius: 50%;
            color: #fff;
            line-height: 60px;
            font-size: 18px;
            margin-bottom: 10px;
            text-align: center;
            position: relative;
            margin: auto;
            top:-5px;
        }

        .booking-step li.active {
            color: #b19f6a;
            font-weight: 500;
        }

        .booking-step li span:after {
            content: '';
            display: block;
            position: absolute;
            width: 135px;
            height: 1px;
            background: #969696;
            top: 30px;
            left: 65px;
        }

        .booking-step li:last-child span:after {
            display: none;
        }

        .booking-step li.active span {
            background-color: #b19f6a;
        }

.transfer-details-bg .head {
    font-weight: 600;
    font-size: 17px;
    background-color: #b19f6a;
    padding: 10px 0;
    text-align: center;
    color: #fff;
}

.transfer-details-bg {
    color: #b19f6a;
    margin-top: 15px;
    -webkit-box-shadow: 0px 0px 10px -5px rgba(181, 181, 181, 0.75);
    -moz-box-shadow: 0px 0px 10px -5px rgba(181, 181, 181, 0.75);
    box-shadow: 0px 0px 10px -5px rgba(181, 181, 181, 0.75);
    border: 1px solid #969696;
    background-color: #fff;
    position: relative;
}

.booking-step-return .dropdown-trigger {
    color: #fff;
    top: 2px;
}

.transfer-details-bg ul li {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 20px;
    padding: 0 0px 0 7px;
}

    .transfer-details-bg ul li .details-icon {
        float: left;
        width: 40px;
        height: 40px;
    }

    .transfer-details-bg ul li .right-text {
        width: 83%;
        float: left;
    }


    .transfer-details-bg ul li .details-icon i {
        line-height: 40px;
        font-size: 24px;
    }

    .transfer-details-bg ul li span {
        display: block;
    }

        .transfer-details-bg ul li span.details-top {
            color: black;
            font-weight: 500;
        }

.vehicle-section {
    position: relative;
    display: block;
    padding: 10px 15px 15px 10px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #eee;
    margin-top: 15px;
}

    .vehicle-section:hover {
        border-color: #b19f6a;
    }

.vehicle-body {
    position: relative;
    display: block;
    width: 100%;
    min-height: 220px;
}

.vehicle-title {
    font-size: 20px;
    color: #b19f6a;
    margin-bottom: 10px;
}

.list-left {
    width: 230px;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    height: 100%;
    background: #fff;
}

.img-information {
    position: relative;
}

    .img-information > span {
        font-weight: 600;
        display: block;
        position: relative;
    }

    .img-information .dropdown-trigger {
        top: -12px;
    }

.list-right {
    width: 100%;
    padding-left: 240px;
}

.list-left ul {
    width: 100%;
}

    .list-left ul li {
        width: 100%;
        display: block;
        clear: both;
        padding: 2.5px 0 0;
    }

        .list-left ul li span {
            font-weight: 400 !important;
            font-size: 13px;
        }

            .list-left ul li span strong {
                font-family: Poppins !important;
            }

        .list-left ul li i {
            float: left;
            width: 20px;
            font-size: 15px;
            color: #b19f6a;
            text-align: center;
            margin-right: 7px;
            position: relative;
            top: 3px;
            height: 22px;
        }

.star {
    font-size: 15px;
    display: inline-block;
    color: #808080;
}

    .star.on {
        color: #ffd700;
    }

    .star:before {
        content: '★';
    }

    .star.half:after {
        content: '★';
        color: #ffd700;
        position: absolute;
        margin-left: -15px;
        width: 8px;
        overflow: hidden;
    }

.starlist {
    height: 16px;
    line-height: 19px;
}

.vehicle-item {
    padding: 5px 10px;
    border: 1px solid #eee;
    margin-top: 10px;
    min-height: 82px;
}

    .vehicle-item .provider-name {
        font-weight: 500;
        font-size: 15px;
        height: 18px;
        line-height: 18px;
    }

    .vehicle-item ins {
        font-size: 22px;
        font-weight: 700;
        text-decoration: none;
        line-height: 26px;
        margin-top: 15.5px;
        display: block;
    }

    .vehicle-item .price-type {
        color: #05d06c;
        font-size: 13px;
    }

    .vehicle-item .provider-review-total a {
        font-size: 13px;
        display: block;
        line-height: 15px;
        height: 15px;
        color: #b19f6a;
    }

    .vehicle-item .btn-rezervasyon {
        position: relative;
        top: 14.5px;
        border-radius: 30px;
        display: block;
        padding: 10px;
        font-size: 13px;
        font-weight: 600;
        width:100%;
    }

.title-block-15 {
    display: block;
    margin-top: 15px;
}


@media (min-width: 1200px) {

    .icerik-content {
        padding: 15px;
        background-color: #fff;
        border: 1px solid #eee;
    }

    /*.sidebar-col {
        padding: 0 40px;
    }*/
}

@media(max-width:768px) {
    #booking {
        padding: 0;
    }

        #booking .col-md-3, #booking .col-md-9 {
            padding: 0;
        }

        #booking .main-content {
            padding-top: 0;
        }

    .transfer-details-bg {
        margin: 0;
        border: 0;
        clear: both;
    }

    .booking-step li {
        width: 25%;
        float: left;
        font-size: 14px;
        font-weight: 300;
    }

    .transfer-details-bg ul li {
        padding: 0 0px 0 15px;
    }

    .booking-step li span {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
        text-align: center;
    }

        .booking-step li span:after {
            display: none;
        }

    .list-left {
        width: 100%;
        position: relative;
    }

    .list-right {
        width: 100%;
        padding-left: 0;
        margin-top: 15px;
    }

    .vehicle-item .col-12 {
        min-height: 47px;
    }

    .vehicle-item .btn-rezervasyon {
        top: 5px;
    }

    .booking-step {
        margin-bottom: 0;
    }

    .vehicle-item {
        min-height: auto;
    }

        .vehicle-item ins {
            font-size: 16px;
            margin-top: 0;
            line-height: 19px;
        }

        .vehicle-item .price-type {
            display: none;
        }

    .list-left ul {
        display: none;
    }

    .list-left .img-information .dropdown-trigger.active + ul {
        display: block;
    }
}

.owl-details.p-0 {
    padding: 0;
}

.owl-vehicle {
    width: 100%;
}

    .owl-vehicle li {
        border-bottom: 1px solid #e4e4e4;
        padding: 6px 15px 0;
        background-color: #fff;
    }

        .owl-vehicle li:first-child {
            border-top: 1px solid #e4e4e4;
        }

        .owl-vehicle li:last-child {
            border-bottom: 0;
        }

        .owl-vehicle li .item-block {
            display: block;
            width: 100%;
            position: relative;
            margin-bottom: 6px;
            font-size: 13.5px;
        }

            .owl-vehicle li .item-block .right {
                position: absolute;
                right: 0;
                top: -5px;
            }

                .owl-vehicle li .item-block .right ins {
                    font-size: 18px;
                    text-decoration: none;
                    font-weight: 400;
                }

                .owl-vehicle li .item-block .right a {
                    padding: 3px 5px;
                    font-size: 12px;
                }

            .owl-vehicle li .item-block i {
                color: #b19f6a;
            }

.menu-title {
    line-height: normal;
    font-weight: 500;
    color: #000;
}

.mega-menu-list > li {
    line-height: normal;
}

    .mega-menu-list > li > a {
        line-height: normal;
        color: #000;
        font-weight: 400;
        font-size: 13px;
        display: block;
        padding: 7px 0;
    }



@media(max-width:768px) {
    .column-page-head {
        width: 100%;
    }

    .page-header.large, .page-header.large .container {
        height: auto !important;
        background: #fbfbfb;
        left: 0;
        right: 0;
        border-bottom: 1px solid #ccc;
    }

        .page-header.large .title-text {
            background-color: transparent;
            top: 0;
            padding: 15px;
        }

    .title-text label, .column-page-head .checkmark-text {
        color: #000;
        font-size: 13px;
        min-height: 19px;
        font-weight: 500;
        top: 1px;
    }

    .flex-tarih .col-md-6 {
        margin-bottom: 1rem;
        width: 50%;
    }

    .iframe iframe {
        height: 200px !important;
    }
}

/*lightbox*/
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1250;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8;
    filter: alpha(opacity=80)
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1251;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

    .mfp-container:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle
    }

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

    .mfp-preloader a {
        color: #CCC
    }

        .mfp-preloader a:hover {
            color: #FFF
        }

.mfp-s-ready .mfp-preloader {
    display: none
}

.mfp-s-error .mfp-content {
    display: none
}

button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial,Baskerville,monospace
}

    .mfp-close:hover, .mfp-close:focus {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    .mfp-close:active {
        top: 1px
    }

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent
}

    .mfp-arrow:active {
        margin-top: -54px
    }

    .mfp-arrow:hover, .mfp-arrow:focus {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 35px;
        margin-left: 35px;
        border: medium inset transparent
    }

    .mfp-arrow:after, .mfp-arrow .mfp-a {
        border-top-width: 13px;
        border-bottom-width: 13px;
        top: 8px
    }

    .mfp-arrow:before, .mfp-arrow .mfp-b {
        border-top-width: 21px;
        border-bottom-width: 21px;
        opacity: .7
    }

.mfp-arrow-left {
    left: 0
}

    .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
        border-right: 17px solid #FFF;
        margin-left: 31px
    }

    .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
        margin-left: 25px;
        border-right: 27px solid #3F3F3F
    }

.mfp-arrow-right {
    right: 0
}

    .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
        border-left: 17px solid #FFF;
        margin-left: 39px
    }

    .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
        border-left: 27px solid #3F3F3F
    }

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

    .mfp-iframe-holder .mfp-content {
        line-height: 0;
        width: 100%;
        max-width: 900px
    }

    .mfp-iframe-holder .mfp-close {
        top: -40px
    }

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

    .mfp-iframe-scaler iframe {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 8px rgba(0,0,0,.6);
        background: #000
    }

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto
}

.mfp-figure {
    line-height: 0
}

    .mfp-figure:after {
        content: '';
        position: absolute;
        left: 0;
        top: 40px;
        bottom: 40px;
        display: block;
        right: 0;
        width: auto;
        height: auto;
        z-index: -1;
        box-shadow: 0 0 8px rgba(0,0,0,.6);
        background: #444
    }

    .mfp-figure small {
        color: #BDBDBD;
        display: block;
        font-size: 12px;
        line-height: 14px
    }

    .mfp-figure figure {
        margin: 0
    }

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0,0,0,.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }

        .mfp-img-mobile .mfp-bottom-bar:empty {
            padding: 0
        }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0,0,0,.6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media all and (max-width:900px) {
    .mfp-arrow {
        -webkit-transform: scale(.75);
        transform: scale(.75)
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

.mfp-ie7 .mfp-img {
    padding: 0
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px
}

.mfp-ie7 .mfp-container {
    padding: 0
}

.mfp-ie7 .mfp-content {
    padding-top: 44px
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0
}

.city-item {
    width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 20px -15px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px -15px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px -15px rgba(0,0,0,0.75);
    padding: 5px;
    border: 1px solid #b19f6a;
}

.city-list .col-md-4 {
    padding: 7.5px;
}

.city-list {
    padding: 7.5px;
}

.city-item .overflow-city {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.overflow-city:hover .city-image {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.city-item .city-image {
    background-image: url(upload/images/istanbul-bg.jpg);
    height: 150px;
    width: 100%;
    background-size: cover;
    background-position: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.city-item .city-name {
    position: absolute;
    bottom: 15px;
    background: #b19f6a;
    padding: 4px 20px;
    color: #ffff;
}

.booking-form .form-control:focus {
    border: 1px solid #b19f6a !important;
}

.booking-form form .page-title-2 {
    font-size: 18px !important;
    margin-bottom: 15px;
}

.flex-booking-form {
    /* padding: 15px 0;
    margin: 0;
    border: 1px solid #e4e4e4;
    background-color: #f9f9f94a;*/   
}

.alert-message strong {
    font-size: 24px;
    display: block;
    font-family: Poppins;
    line-height:26px;
}

.breakdown-col-2 .form-group {
    height: 100%;
    text-align: center;
}
    .breakdown-col-2 .form-group input {
        position: absolute;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }
.radio-text > span {
    display: block;
    position: relative;
}
    .radio-text > span.rt-text {
        margin: 10px 0;
    }

.breakdown span.rt-title {
    font-size: 16px;
    font-weight: 600;
}
.breakdown{
    padding:0;
}
    .breakdown.active {
        background: #f5f5f5;
    }
.breakdown .breakdown-col-2{
    border-right:1px solid #ccc;
}
.breakdown-col-2, .breakdown-col-10{
    padding:15px 15px 5px 15px;
}

.breakdown span.rt-text ins {
    font-size: 18px;
    position: absolute;
    top: -4px;
    text-decoration: none;
    font-weight: 500;
    color: #757575;
    right: 15px;
}
.read-term{
    display:block;
}
.credit-card{
    margin-top:20px;
    width:300px;
}
.odeme-list {
    width: 100%;
    display: block;
    margin-top: 30px;
}
.odeme-list img{
    width:32px;
}
.odeme-list li{
    margin:10px 0;
}
    .odeme-list li span {
        font-weight: 400;
        font-family: Arial;
    }
@media(min-width:768px) {
    .transfer-row .col-md-3 {
        padding: 0;
    }

    .transfer-row .main-content {
        padding: 0 15px;
    }
}

@media(max-width:768px) {
    .return-list {
        display: none;
    }

    .booking-step-return .dropdown-trigger.active + ul.return-list {
        display: block;
    }

    .transfer-row .col-md-3, .transfer-row .col-md-9 {
        background-color: #fff;
    }

    .transfer-row .clear {
        margin-top: 15px;
    }

    .booking-step-return .head {
        border-bottom: 1px solid #fff;
    }
    .breakdown span.rt-text ins {
        font-size: 16px;
        right: -32%;
        top: -1px;
    }
    .radio-text > span.rt-text {
        width: 78%;
    }
    #finish-btn{
        width:100%;
        display:block;
        margin-top:15px;
    }
    .review-puan {
        line-height: 52px !important;
        font-size: 21px !important;
    }
}


/*datepicker*/
.datepicker {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    direction: ltr;
    min-width: auto !important;
}
.transfer-body .form-control {
    border: 0px !important;
}
.transfer-body .form-control:focus{
    border:0px !important;
}

.datepicker-inline {
    width: 220px
}

.datepicker-rtl {
    direction: rtl
}

    .datepicker-rtl.dropdown-menu {
        left: auto
    }

    .datepicker-rtl table tr td span {
        float: right
    }

.datepicker-dropdown {
    top: 0;
    left: 0
}

    .datepicker-dropdown:before {
        content: '';
        display: inline-block;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #999;
        border-top: 0;
        border-bottom-color: rgba(0,0,0,.2);
        position: absolute
    }

    .datepicker-dropdown:after {
        content: '';
        display: inline-block;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #b19f6a;
        border-top: 0;
        position: absolute;
        display:none !important
    }



    .datepicker-dropdown.datepicker-orient-top:before {
        bottom: -7px;
        border-bottom: 0;
        border-top: 7px solid #999;
        display:none;
    }

    .datepicker-dropdown.datepicker-orient-top:after {
        bottom: -6px;
        border-bottom: 0;
        border-top: 6px solid #fff;
        display: none;
    }

.datepicker table {
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.datepicker td, .datepicker th {
    text-align: center;
    width: 40px;
    height: 35px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
    border: none;
    color: #fff;
    font-weight: 300;
    font-size: 13px;
    border: 1px solid #2d2d2d;
}
.datepicker-dropdown {
    background-color: #1c1c1c;
    -webkit-box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);
    padding: 0 !important;
    border: 1px solid #1c1c1c;
    margin-top: 0;
}

.table-striped .datepicker table tr td, .table-striped .datepicker table tr th {
    background-color: transparent
}

.datepicker table tr td.day.focused, .datepicker table tr td.day:hover {
    background: #b19f6a;
    cursor: pointer
}

.datepicker table tr td.new, .datepicker table tr td.old {
    color: #3b3b3b;
    text-decoration: line-through;
    cursor: not-allowed !important;
}
    .datepicker table tr td.new, .datepicker table tr td.old:hover{
        background-color:transparent !important;
                           
                        
    }

    .datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
        background: 0 0;
        color: #999;
        cursor: default
    }

.datepicker table tr td.highlighted {
    background: #d9edf7;
    border-radius: 0
}

.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover {
    background-color: #fde19a;
    background-image: -moz-linear-gradient(to bottom,#fdd49a,#fdf59a);
    background-image: -ms-linear-gradient(to bottom,#fdd49a,#fdf59a);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#fdd49a),to(#fdf59a));
    background-image: -webkit-linear-gradient(to bottom,#fdd49a,#fdf59a);
    background-image: -o-linear-gradient(to bottom,#fdd49a,#fdf59a);
    background-image: linear-gradient(to bottom,#fdd49a,#fdf59a);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
    border-color: #fdf59a #fdf59a #fbed50;
    border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #000
}

    .datepicker table tr td.today.active, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled.disabled, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today.disabled:hover.active, .datepicker table tr td.today.disabled:hover.disabled, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today.disabled:hover:hover, .datepicker table tr td.today.disabled:hover[disabled], .datepicker table tr td.today.disabled[disabled], .datepicker table tr td.today:active, .datepicker table tr td.today:hover, .datepicker table tr td.today:hover.active, .datepicker table tr td.today:hover.disabled, .datepicker table tr td.today:hover:active, .datepicker table tr td.today:hover:hover, .datepicker table tr td.today:hover[disabled], .datepicker table tr td.today[disabled] {
        background-color: #fdf59a
    }

        .datepicker table tr td.today.active, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover.active, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today:active, .datepicker table tr td.today:hover.active, .datepicker table tr td.today:hover:active {
            background-color: #fbf069\9
        }

        .datepicker table tr td.today:hover:hover {
            color: #000
        }

        .datepicker table tr td.today.active:hover {
            color: #fff
        }

.datepicker table tr td.range, .datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:hover, .datepicker table tr td.range:hover {
    background: #eee;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

    .datepicker table tr td.range.today, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today:hover {
        background-color: #f3d17a;
        background-image: -moz-linear-gradient(to bottom,#f3c17a,#f3e97a);
        background-image: -ms-linear-gradient(to bottom,#f3c17a,#f3e97a);
        background-image: -webkit-gradient(linear,0 0,0 100%,from(#f3c17a),to(#f3e97a));
        background-image: -webkit-linear-gradient(to bottom,#f3c17a,#f3e97a);
        background-image: -o-linear-gradient(to bottom,#f3c17a,#f3e97a);
        background-image: linear-gradient(to bottom,#f3c17a,#f3e97a);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
        border-color: #f3e97a #f3e97a #edde34;
        border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0
    }

        .datepicker table tr td.range.today.active, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled.active, .datepicker table tr td.range.today.disabled.disabled, .datepicker table tr td.range.today.disabled:active, .datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today.disabled:hover.active, .datepicker table tr td.range.today.disabled:hover.disabled, .datepicker table tr td.range.today.disabled:hover:active, .datepicker table tr td.range.today.disabled:hover:hover, .datepicker table tr td.range.today.disabled:hover[disabled], .datepicker table tr td.range.today.disabled[disabled], .datepicker table tr td.range.today:active, .datepicker table tr td.range.today:hover, .datepicker table tr td.range.today:hover.active, .datepicker table tr td.range.today:hover.disabled, .datepicker table tr td.range.today:hover:active, .datepicker table tr td.range.today:hover:hover, .datepicker table tr td.range.today:hover[disabled], .datepicker table tr td.range.today[disabled] {
            background-color: #f3e97a
        }

            .datepicker table tr td.range.today.active, .datepicker table tr td.range.today.disabled.active, .datepicker table tr td.range.today.disabled:active, .datepicker table tr td.range.today.disabled:hover.active, .datepicker table tr td.range.today.disabled:hover:active, .datepicker table tr td.range.today:active, .datepicker table tr td.range.today:hover.active, .datepicker table tr td.range.today:hover:active {
                background-color: #efe24b\9
            }

.datepicker table tr td.selected, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected:hover {
    background-color: #9e9e9e;
    background-image: -moz-linear-gradient(to bottom,#b3b3b3,grey);
    background-image: -ms-linear-gradient(to bottom,#b3b3b3,grey);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#b3b3b3),to(grey));
    background-image: -webkit-linear-gradient(to bottom,#b3b3b3,grey);
    background-image: -o-linear-gradient(to bottom,#b3b3b3,grey);
    background-image: linear-gradient(to bottom,#b3b3b3,grey);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
    border-color: grey grey #595959;
    border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.25)
}

    .datepicker table tr td.selected.active, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled.active, .datepicker table tr td.selected.disabled.disabled, .datepicker table tr td.selected.disabled:active, .datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected.disabled:hover.active, .datepicker table tr td.selected.disabled:hover.disabled, .datepicker table tr td.selected.disabled:hover:active, .datepicker table tr td.selected.disabled:hover:hover, .datepicker table tr td.selected.disabled:hover[disabled], .datepicker table tr td.selected.disabled[disabled], .datepicker table tr td.selected:active, .datepicker table tr td.selected:hover, .datepicker table tr td.selected:hover.active, .datepicker table tr td.selected:hover.disabled, .datepicker table tr td.selected:hover:active, .datepicker table tr td.selected:hover:hover, .datepicker table tr td.selected:hover[disabled], .datepicker table tr td.selected[disabled] {
        background-color: grey
    }

        .datepicker table tr td.selected.active, .datepicker table tr td.selected.disabled.active, .datepicker table tr td.selected.disabled:active, .datepicker table tr td.selected.disabled:hover.active, .datepicker table tr td.selected.disabled:hover:active, .datepicker table tr td.selected:active, .datepicker table tr td.selected:hover.active, .datepicker table tr td.selected:hover:active {
            background-color: #666\9
        }

.datepicker table tr td.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover {
    background-color: #b19f6a;
    background-image: -moz-linear-gradient(to bottom,#b19f6a,#b19f6a);
    background-image: -ms-linear-gradient(to bottom,#b19f6a,#b19f6a);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#b19f6a),to(#b19f6a));
    background-image: -webkit-linear-gradient(to bottom,#b19f6a,#b19f6a);
    background-image: -o-linear-gradient(to bottom,#b19f6a,#b19f6a);
    background-image: linear-gradient(to bottom,#b19f6a,#b19f6a);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b19f6a', endColorstr='#0044cc', GradientType=0);
    border-color: #b19f6a #b19f6a #002a80;
    border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.25)
}

    .datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled] {
        background-color: #b19f6a
    }

        .datepicker table tr td.active.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active:active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover:active {
            background-color: #039\9
        }

.datepicker table tr td span {
    display: block;
    width: 23%;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

    .datepicker table tr td span.focused, .datepicker table tr td span:hover {
        background: #eee
    }

    .datepicker table tr td span.disabled, .datepicker table tr td span.disabled:hover {
        background: 0 0;
        color: #999;
        cursor: default
    }

    .datepicker table tr td span.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active:hover {
        background-color: #b19f6a;
        background-image: -moz-linear-gradient(to bottom,#b19f6a,#b19f6a);
        background-image: -ms-linear-gradient(to bottom,#b19f6a,#b19f6a);
        background-image: -webkit-gradient(linear,0 0,0 100%,from(#b19f6a),to(#b19f6a));
        background-image: -webkit-linear-gradient(to bottom,#b19f6a,#b19f6a);
        background-image: -o-linear-gradient(to bottom,#b19f6a,#b19f6a);
        background-image: linear-gradient(to bottom,#b19f6a,#b19f6a);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b19f6a', endColorstr='#0044cc', GradientType=0);
        border-color: #b19f6a #b19f6a #002a80;
        border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        color: #fff;
        text-shadow: 0 -1px 0 rgba(0,0,0,.25)
    }

        .datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled.disabled, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover.disabled, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active.disabled:hover[disabled], .datepicker table tr td span.active.disabled[disabled], .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover.disabled, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active:hover[disabled], .datepicker table tr td span.active[disabled] {
            background-color: #b19f6a
        }

            .datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover:active {
                background-color: #039\9
            }

    .datepicker table tr td span.new, .datepicker table tr td span.old {
        color: #999
    }

.datepicker .datepicker-switch {
    width: 145px
}

.datepicker .datepicker-switch, .datepicker .next, .datepicker .prev, .datepicker tfoot tr th {
    cursor: pointer;
    font-weight:500;
}

    .datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
        background: #b19f6a;
    }

    .datepicker .next.disabled, .datepicker .prev.disabled {
        visibility: hidden
    }

.datepicker .cw {
    font-size: 10px;
    width: 12px;
    padding: 0 2px 0 5px;
    vertical-align: middle
}

.input-append.date .add-on, .input-prepend.date .add-on {
    cursor: pointer
}

    .input-append.date .add-on i, .input-prepend.date .add-on i {
        margin-top: 3px
    }

.input-daterange input {
    text-align: center
}

    .input-daterange input:first-child {
        -webkit-border-radius: 3px 0 0 3px;
        -moz-border-radius: 3px 0 0 3px;
        border-radius: 3px 0 0 3px
    }

    .input-daterange input:last-child {
        -webkit-border-radius: 0 3px 3px 0;
        -moz-border-radius: 0 3px 3px 0;
        border-radius: 0 3px 3px 0
    }

.input-daterange .add-on {
    display: inline-block;
    width: auto;
    min-width: 16px;
    height: 18px;
    padding: 4px 5px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    vertical-align: middle;
    background-color: #eee;
    border: 1px solid #ccc;
    margin-left: -5px;
    margin-right: -5px
}

.review-item {
    margin: 20px 30px 0;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.review-alt {
    margin: 20px 0 0 30px;
}

.review-reply {
    background-color: #b19f6a;
    border-radius: 30px;
    padding: 4px 20px;
    color: #fff;
}
.review{
    float:left;
    width:83%;
}
.review-user {
    width: 17%;
}

.review-puan {
    margin-left: 1.3rem !important;
}

.ru-bg {
    display: block;
    float: left;
    width: 60px;
    height: 60px;
    background: #7a7a7a;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
}
.admin-bg {
    background: #fff !important;
}
.ru-bg i{
    line-height:60px;
    font-size:18px;
    color:#fff;
}
.review .review-text {
    font-size: 14px;
    border-radius: 8px;
    background-color: #eee;
    padding: 10px 15px;
    margin-bottom: 15px;
    font-weight: normal;
    font-family: Arial;
}
.review span.review-name {
    font-size: 16px;
    display: block;
}
.review span.review-name strong{
    display:block;
    font-family:Poppins;
}
.review .review-tarih {
    font-size: 13px;
    position: relative;
    top: -5px;
}

@media(max-width:768px) {
    .review-user {
        width: 25% !important;
        float: left;
    }


    .review_text {
        margin-left: 6px !important;
    }

    .review {
        float: left;
        width: 75%;
    }

    .review-item {
        margin: 0;
        padding: 5px 0;
        margin-top: 10px;
    }

    .ru-bg{
        width:50px;
        height:50px;
    }
    .review .review-text {
        font-size: 14px;
        border-radius: 0;
        padding: 3px;
        border-radius: 5px;
        background: #eeeeee59;
        margin-bottom: 5px;
    }
}

.returnTransfer {
    display: none;

}


@media(min-width:768px){
    .booking-step li{
        padding:0 45px;
    }
}

.link-col {
    background: #494949;
    padding: 0;
    text-align: center;
    position: relative;
    height: 100px;
}
.link-col a{
    color:#fff;
    line-height:100px;
}
    .link-col .link-arrow {
        display: block;
        position: absolute;
        right: 0;
        height: 100%;
        background: #b19f6a;
        top: 0;
        width: 50px;
        text-align: center;
        line-height: 100px;
    }


.review-div {
    padding: 30px;
    border-bottom: 1px solid #eee;
}
    .review-div .author {
        font-weight: 600;
    }


.content ol {
    padding-left: 30px;
}
    .content ol li {
        margin-bottom: 10px;
        font-family: Arial;
        font-weight: 500;
    }

.destinations ul {
    display: block;
}
    .destinations ul li {
        width: 100%;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    .destinations ul li:last-child{
        border:0px;
    }

    .destinations ul li .btn-color {
        padding: 5px 10px;
        font-size: 12px;
        position: relative;
        top: -4px;
    }
.destinations-btn{
    float:right;
}
.destinations ul li .float-right {
    margin-right: 25px;
    font-weight: 600;
}
.destinations ul li > a {
    color: #111;
    font-weight: 500;
}
.destinations ul li:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    color: #b19f6a;
    font-weight: 900;
}

.vehicle-table thead {
    background: #b19f6a;
}
.vehicle-table thead tr th {
    color:#fff;
}

.new-block {
    border-bottom: 1px solid #eee;
    margin-top: 15px !important;
    padding-bottom: 15px;
}

#NoReply {
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 18px;
    color: #b19f6a;
    font-weight: 500;
}

.pagedlist {
    margin-top: 15px;
    text-align: right;
}
.pagedlist li {
    background: #ffffff;
    border: 1px solid #b19f6a;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    color: #b19f6a;
    float:left;
    margin-right:3px;
}
    .pagedlist li.active {
        background: #b19f6a;
        border: 1px solid #b19f6a;
        color: #fff;
    }


.pagedlist ul{
    display:inline-block;
}

@media(max-width:768px){
    .enasagiya-sabit {
        position: absolute;
        bottom: -25px;
        display:block!important;
    }
    .page-header.large .form-group, .page-header.large .flex-tarih .col-md-6 {
        margin-bottom: 10px;
    }
   .page-header.large .container{
       border:0;
       padding-bottom:25px;
   }

    .city-booking {
        background-color: #333333 !important;       
        padding-bottom: 45px !important;
    }
        .city-booking label, label span {
            color: white !important;
        }

    .mobil-city-name {
        background-color: #b19f6a;
        padding: 10px 0;
        text-align: left;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        padding-left:20px;
    }
}


.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover{
    text-decoration:line-through;
}

.banner-yazi p {
    color: #eff1e9;
}

.btn-tranigo {
    background-color: #b19f6a;
    border-color: #b19f6a;
    margin-right: 8px;
    color: #eee;
    height:44px;
    line-height:30px;
}

    .btn-tranigo:hover {
        background-color: #fff;
        color: #b19f6a;
    }

.country-name {
    border: 1px solid #eee;
    padding: 10px;
}
    .country-name:hover {
        background-color: #b19f6a;
        color:#eee;
    }

.select2-container--default .select2-results > .select2-results__options{
    max-height:280px;
}
.step2alert{
    font-size:11px;
    text-align:right;
}

.city-page p{
    text-align:justify;
}

.sidebar-list .active {
    background-color: #b19f6ab5;
}

.main-content p{
    text-align:justify;
}

.not {
    font-size: 84px;
    color: #eef;
}
.provider-widget {
    background-color: #494949;
    text-align:center;
}
.provider-name-2{
    color:#eef;
    font-size:36px;
}
.review-puan{
    line-height:60px;
    font-size:28px;
    color:#fff;
}
.provider-review-detail p{
    font-size:11px;
    text-align:right;
}

.social i {
    font-size: 30px;
    color: #b2a06a;
}
.social i:hover{
    opacity:0.6;
}

.cc-window {
    opacity: 1;
    transition: opacity 1s ease
}

    .cc-window.cc-invisible {
        opacity: 0
    }

.cc-animate.cc-revoke {
    transition: transform 1s ease
}

    .cc-animate.cc-revoke.cc-top {
        transform: translateY(-2em)
    }

    .cc-animate.cc-revoke.cc-bottom {
        transform: translateY(2em)
    }

    .cc-animate.cc-revoke.cc-active.cc-bottom, .cc-animate.cc-revoke.cc-active.cc-top, .cc-revoke:hover {
        transform: translateY(0)
    }

.cc-grower {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s
}

.cc-link, .cc-revoke:hover {
    text-decoration: underline
}

.cc-revoke, .cc-window {
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    font-family: Helvetica,Calibri,Arial,sans-serif;
    font-size: 12px;
    line-height: 1.5em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    z-index: 9999
}

    .cc-window.cc-static {
        position: static
    }

    .cc-window.cc-floating {
        padding: 2em;
        max-width: 24em;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cc-window.cc-banner {
        padding: 0.3em 1em;
        width: 100%;
        -ms-flex-direction: row;
        flex-direction: row
    }

.cc-revoke {
    padding: .5em
}

.cc-header {
    font-size: 18px;
    font-weight: 700
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
    cursor: pointer
}

.cc-link {
    opacity: .8;
    display: inline-block;
    padding: .2em
}

    .cc-link:hover {
        opacity: 1
    }

    .cc-link:active, .cc-link:visited {
        color: initial
    }

.cc-btn {
    display: block;
    padding: .4em .8em;
    font-size: .9em;
    font-weight: 700;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    white-space: nowrap
}

.cc-banner .cc-btn:last-child {
    min-width: 140px
}

.cc-highlight .cc-btn:first-child {
    background-color: transparent;
    border-color: transparent
}

    .cc-highlight .cc-btn:first-child:focus, .cc-highlight .cc-btn:first-child:hover {
        background-color: transparent;
        text-decoration: underline
    }

.cc-close {
    display: block;
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: 1.6em;
    opacity: .9;
    line-height: .75
}

    .cc-close:focus, .cc-close:hover {
        opacity: 1
    }

.cc-revoke.cc-top {
    top: 0;
    left: 3em;
    border-bottom-left-radius: .5em;
    border-bottom-right-radius: .5em
}

.cc-revoke.cc-bottom {
    bottom: 0;
    left: 3em;
    border-top-left-radius: .5em;
    border-top-right-radius: .5em
}

.cc-revoke.cc-left {
    left: 3em;
    right: unset
}

.cc-revoke.cc-right {
    right: 3em;
    left: unset
}

.cc-top {
    top: 1em
}

.cc-left {
    left: 1em
}

.cc-right {
    right: 1em
}

.cc-bottom {
    bottom: 1em
}

.cc-floating > .cc-link {
    margin-bottom: 1em
}

.cc-floating .cc-message {
    display: block;
    margin-bottom: 1em
}

.cc-window.cc-floating .cc-compliance {
    -ms-flex: 1;
    flex: 1
}

.cc-window.cc-banner {
    -ms-flex-align: center;
    align-items: center
}

.cc-banner.cc-top {
    left: 0;
    right: 0;
    top: 0
}

.cc-banner.cc-bottom {
    left: 0;
    right: 0;
    bottom: 0;
    padding:10px;
    width:700px;
}

.cc-banner .cc-message {
    -ms-flex: 1;
    flex: 1
}

.cc-compliance {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: justify;
    align-content: space-between
}

    .cc-compliance > .cc-btn {
        -ms-flex: 1;
        flex: 1
    }

.cc-btn + .cc-btn {
    margin-left: .5em
}

@media print {
    .cc-revoke, .cc-window {
        display: none
    }
}

@media screen and (max-width:900px) {
    .cc-btn {
        white-space: normal
    }
}

@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape) {
    .cc-window.cc-top {
        top: 0
    }

    .cc-window.cc-bottom {
        bottom: 0
    }

    .cc-window.cc-banner, .cc-window.cc-left, .cc-window.cc-right {
        left: 0;
        right: 0
    }

    .cc-window.cc-banner {
        -ms-flex-direction: column;
        flex-direction: column
    }

        .cc-window.cc-banner .cc-compliance {
            -ms-flex: 1;
            flex: 1
        }

    .cc-window.cc-floating {
        max-width: none
    }

    .cc-window .cc-message {
        margin-bottom: 1em
    }

    .cc-window.cc-banner {
        -ms-flex-align: unset;
        align-items: unset
    }
}

.cc-floating.cc-theme-classic {
    padding: 1.2em;
    border-radius: 5px
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
    text-align: center;
    display: inline;
    -ms-flex: none;
    flex: none
}

.cc-theme-classic .cc-btn {
    border-radius: 5px
}

    .cc-theme-classic .cc-btn:last-child {
        min-width: 140px
    }

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
    display: inline-block
}

.cc-theme-edgeless.cc-window {
    padding: 0
}

.cc-floating.cc-theme-edgeless .cc-message {
    margin: 2em 2em 1.5em
}

.cc-banner.cc-theme-edgeless .cc-btn {
    margin: 0;
    padding: .8em 1.8em;
    height: 100%
}

.cc-banner.cc-theme-edgeless .cc-message {
    margin-left: 1em
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
    margin-left: 0
}


/**
    Slider Section
*/


.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
        display: block;
        width: 100%;
        object-fit: cover;
}


.swiper-slide-img img {
    height: 450px;
}

.gallery_thumb {
    height: 50px !important;
}

.swiper-container {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.noSelect {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

    .mySwiper .swiper-slide {
        height: 50px;
        width: 70px !important;
        opacity: 0.4;
    }

    .mySwiper .swiper-slide-thumb-active {
        opacity: 1;
    }

.swiper-slide img {
    display: block;
    width: 100%;
}

.detay-header {
    padding: 10px 15px;
    border-bottom: 1px solid rgb(241, 241, 241);
    background: #919191;
    border-radius: 4px 4px 0 0;
    color: #fff;
}

@media (min-width: 1024px) {
    .detay-bg {
        -webkit-box-shadow: 0px 0px 10px -8px rgb(0 0 0 / 75%);
        -moz-box-shadow: 0px 0px 10px -8px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 10px -8px rgb(0 0 0 / 75%);
    }
}
.detay-bg {
    border: 1px solid rgb(241, 241, 241);
    border-radius: 4px;
    background-color: #fff;
}

.detay-bg .title-db {
        font-weight: 400;
        font-size: 16px;
        margin-bottom: 0;
}

.detay-desc {
    padding: 10px 15px;
}

.TourGenelBilgi {
    padding-right: 0px !important;
    padding-left: 0px !important;
    margin-bottom:15px;
}

.accordionDetay {
    background-color: unset !important;
}

.title-db {
    color: white !important;
}

.accordionButton {
    color: black !important;
}

.accordionButton:hover {
    color: #0056b3;
    text-decoration: none !important;
}

.accordionButton:focus {
    text-decoration: none !important;
    box-shadow: none;
}

.read_more_button {
    border-color: #b19f6a !important;
    background-color: #b19f6a !important;
    margin-top: 10px !important;
}

.show-read-more .more-text {
    display: none;
}

.star::before {
    content: "★";
}

.star.on {
    color: #ffc150 !important;
}

.star {
    font-size: large;
    display: inline-block;
    color: #808080;
}

.review_counter {
    color: #55575b !important;
}

/*
    PRICE SELECTOR
*/

.box {
    --primary: #275efe;
    --headline: #3f4656;
    --text: #99a3ba;
    width: 100%;
    max-width: 312px;
    padding: 50px 22px 25px 22px;
    background: #fff;
    border-radius: 0px !important;
    box-shadow: 0 1px 4px rgba(18, 22, 33, .12);
}

    .box h3 {
        font-family: inherit;
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 20px 0;
        color: var(--headline);
    }

        .box h3 span {
            font-weight: 500;
        }

    .box .values div, .box small div {
        display: inline-block;
        vertical-align: top;
    }

    .box .values {
        margin: 0;
        font-weight: 500;
        color: var(--primary);
    }

        .box .values > div:first-child {
            margin-right: 2px;
        }

        .box .values > div:last-child {
            margin-left: 2px;
        }

    .box small {
        color: var(--text);
        display: block;
        margin-top: 8px;
        font-size: 14px;
    }

    .box .sliderBar {
        margin-top: 40px;
    }

.sliderBar {
    --primary: #b19f6a;
    --handle: #fff;
    --handle-active: #becfff;
    --handle-hover: #e9efff;
    --handle-border: 2px solid var(--primary);
    --line: #cdd9ed;
    --line-active: var(--primary);
    height: 0px;
    width: 100%;
    position: relative;
    pointer-events: none;
}

    .sliderBar .ui-slider-handle {
        --y: 0;
        --background: var(--handle);
        cursor: grab;
        -webkit-tap-highlight-color: transparent;
        top: 0;
        width: 23px;
        height: 23px;
        transform: translateX(-50%);
        position: absolute;
        outline: none;
        display: block;
        pointer-events: auto;
    }

        .sliderBar .ui-slider-handle div {
            width: 23px;
            height: 23px;
            border-radius: 50%;
            transition: background 0.4s ease;
            transform: translateY(calc(var(--y) * 1px));
            border: var(--handle-border);
            background: var(--background);
        }

        .sliderBar .ui-slider-handle:hover {
            --background: var(--handle-hover);
        }

        .sliderBar .ui-slider-handle:active {
            --background: var(--handle-active);
            cursor: grabbing;
        }

    .sliderBar svg {
        --stroke: var(--line);
        display: block;
        height: 83px;
    }

        .sliderBar svg path {
            fill: none;
            stroke: var(--stroke);
            stroke-width: 1;
        }

    .sliderBar .active, .sliderBar > svg {
        position: absolute;
        top: -30px;
        height: 83px;
    }

    .sliderBar > svg {
        left: 0;
        width: 100%;
    }

    .sliderBar .active {
        position: absolute;
        overflow: hidden;
        left: calc(var(--l) * 1px);
        right: calc(var(--r) * 1px);
    }

        .sliderBar .active svg {
            --stroke: var(--line-active);
            position: relative;
            left: calc(var(--l) * -1px);
            right: calc(var(--r) * -1px);
        }

.slider .active svg path {
    stroke-width: 2;
}



.box .sliderBar-mobile {
    margin-top: 40px;
}

.sliderBar-mobile {
    --primary: #b19f6a;
    --handle: #fff;
    --handle-active: #becfff;
    --handle-hover: #e9efff;
    --handle-border: 2px solid var(--primary);
    --line: #cdd9ed;
    --line-active: var(--primary);
    height: 23px;
    width: 100%;
    position: relative;
    pointer-events: none;
}

.sliderBar-mobile .ui-slider-handle {
    --y: 0;
    --background: var(--handle);
    cursor: grab;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    width: 23px;
    height: 23px;
    transform: translateX(-50%);
    position: absolute;
    outline: none;
    display: block;
    pointer-events: auto;
}

.sliderBar-mobile .ui-slider-handle div {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    transition: background 0.4s ease;
    transform: translateY(calc(var(--y) * 1px));
    border: var(--handle-border);
    background: var(--background);
}

.sliderBar-mobile .ui-slider-handle:hover {
    --background: var(--handle-hover);
}

.sliderBar-mobile .ui-slider-handle:active {
    --background: var(--handle-active);
    cursor: grabbing;
}

.sliderBar-mobile svg {
    --stroke: var(--line);
    display: block;
    height: 83px;
}

.sliderBar-mobile svg path {
    fill: none;
    stroke: var(--stroke);
    stroke-width: 1;
}

    .sliderBar-mobile .active, .sliderBar > svg {
        position: absolute;
        top: -30px;
        height: 83px;
    }

.sliderBar-mobile > svg {
    left: 0;
    width: 100%;
}

.sliderBar-mobile .active {
    position: absolute;
    overflow: hidden;
    left: calc(var(--l) * 1px);
    right: calc(var(--r) * 1px);
}

.sliderBar-mobile .active svg {
            --stroke: var(--line-active);
            position: relative;
            left: calc(var(--l) * -1px);
            right: calc(var(--r) * -1px);
}

.sliderBar-mobile .active svg path {
    stroke-width: 2;
}

.ui-widget-header {
    border: 1px solid #ddd;
    background: none !important;
    color: #333;
    font-weight: bold;
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: inherit;
}

.ui-widget-content {
    border: unset !important;
    background: #fff;
    color: #333;
}

.ui-widget.ui-widget-content {
    border: unset !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: unset !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    background: unset !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:hover {
    background: unset !important;
}


@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    .tur_detay_mobile_view {
        height: 220px !important;
    }
}

.tour_detay_book_section {

}

.book_now {
    border-color: unset !important;
    width: 80% !important;
    /** padding: 20px !important; */
    margin-bottom: 20px;
}

.book_now:hover {
    border-color: unset !important;
}

.book_now:active {
        border-color: unset !important;
}

.book_now:visited {
        border-color: unset !important;
    }

.tour_book_now_form {
    text-align:center;
}

.tur_detay_form {
  
}

.book_section {
    text-align: center;
}

.childeren_age_dropdown {
    padding-right: 0px !important;
}

.answer_button {
    border-color: unset !important;
}

answer_button:hover {
    border-color: unset !important;
}

.answer_button:active {
    border-color: unset !important;
}

.answer_button:visited {
    border-color: unset !important;
}


.btn-rezervasyon {
    position: relative;
    border-radius: 30px;
    display: block;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
}

.tour_list_card_meta_fix {
    padding-left: 0px !important;
}


.tour_list_card_button {
    width: 65%;
    float: right;
}

.tour-filter .form-check-inline{
    width:100%;
    padding: 4px 0px;
}

.filter-top-list{
    width:100%;
}

.short-list {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #efeeee;
    border-radius: .25em;
    -moz-border-radius: .25em;
    -o-border-radius: .25em;
    -webkit-border-radius: .25em;
    -ms-webkit-radius: .25em;
    color: #36362b;
}

    .short-list > li {
        float: left;
        width: 20%;
        text-align: center;
    }

        .short-list > li > a {
            font-weight: 700;
            font-size: 13px;
            color: #36362b;
            display: block;
            padding: 7px 0;
            transition: 0.2s;
        }

            .short-list > li > a:hover, .short-list > li > a:focus {
                background-color: #929292;
                color: #fff;
            }

.shorting.active {
    background-color: #05c46b;
    color: #fff;
}


.swiper-button-next, .swiper-button-prev {
    /** top: 25% !important;*/
    width: calc(var(--swiper-navigation-size)/ 20 * 27) !important;
}

/**
    Related Tours Slider
*/

.swiper {
    width: 100%;
    /**height: 100%; **/
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        object-fit: cover;
    }

.swiper-related-tour-button-next, .swiper-related-tour-button-prev {
    top: 50% !important;
    width: calc(var(--swiper-navigation-size)/ 20 * 27) !important;
}

.related_tours_area {
    height: 350px !important;
}

.tour-navigation {
    top: 50% !important;
    width: calc(var(--swiper-navigation-size)/ 20 * 27) !important;
}

.tourrelated-title {
    text-align: left !important;
}

.tour_realted_card_text {
    color: rgb(0, 0, 0) !important;
    font-family: "Open Sans", Arial, sans-serif !important;
    font-size: 13px !important;
    overflow: hidden;
    overflow-wrap: break-word !important;
}

.related-nav-right {
    position: absolute;
    z-index: 9999999;
    right: -60px;
}

.related-nav-left {
    position: absolute;
    z-index: 9999999;
    left: -60px;
}

.tour-languages{
    font-size:13px;
}

.book-sekme.active {
    /* background-color: #b19f6a;*/
    background: linear-gradient( 250deg, transparent, transparent 30px, #0a0a0ad4 calc(30px + 1px), #0a0a0ad4 100%);
    z-index: 1;
}

.book-sekme {
    position: relative;
    padding: 9px 43px 9px 9px;
    font-size:15px;
    width: 150px;
    background: linear-gradient( 250deg, transparent, transparent 30px, #b19f6aa3 calc(30px + 1px), #b19f6aa3 100%);
    z-index: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 75px;
}
.transfer-body .select2-container{
    width: 100% !important;
}

.mb-list {
    display: block;
    width: 100%;
    margin-bottom:4px;
}

    .mb-list li {
        float: left;
        width: 32.4%;
        border-radius: 5px;
        background-color: #644646;
        text-align: center;
        padding: 10px 0px;
        background-color: #4a4a4a;
        margin-right: 2px;
    }

        .mb-list li a {
            display: block;
            color: #fff;
        }

.mobile-siralama-list {
    width: 100%;
}
        .mobile-siralama-list li.active {
            background-color: #05c46b;
        }

        .mobile-siralama-list li a {
            display: block;
            color: #36362b;
            padding: 10px 20px;
            border-bottom: 1px solid #ccc;
        }

            .mobile-siralama-list li a i {
                top: 28px;
                left: 24px;
                color: #fff;
                font-size: 15px;
            }

        .mobile-siralama-list li.active a {
            color: #fff;
        }

.main_search_footer_text {
    margin-top: 10px;
    color: white;
}


.search-horizantal {
    height: 35px !important;
    font-size: 18px !important;
}

.sekme-horizantal {
    padding: 7px 36px 13px 7px !important;
}

.title-text-horizantal {
    background-color: #0000009e;
    position: relative;
    top: 11px !important;
    width: 100vw !important;
}

.tour-button-horizantal {
    margin-left: -20px !important;
}

.column-page-head-horizantal {
    width: 30% !important;
    padding: 0 5px;
    float: left;
}

.bg-tranigo {
    background-color: #b19f6a;
}
.tourdetay-nav a{
    color:white;
}
.tourdetay-nav .nav-link.active {
    background-color: #919191 !important;
    border-radius: 0px;
}

.myaccordion {
    box-shadow: 0 0 1px rgba(0,0,0,0.1);
}

    .myaccordion .card,
    .myaccordion .card:last-child .card-header {
        border: none;
    }

    .myaccordion .card-header {
        border-bottom-color: #EDEFF0;
        background: transparent;
    }

    .myaccordion .fa-stack {
        font-size: 18px;
    }

    .myaccordion .btn {
        width: 100%;
        color: #4e4e4e;
        font-weight: bold;
        padding: 0;
    }

    .myaccordion .btn-link:hover,
    .myaccordion .btn-link:focus {
        text-decoration: none;
        color: #b19f6a;
    }

    .myaccordion li + li {
        margin-top: 10px;
    }



.related_tours_cover_image {
    height: 60vw !important;
    width: 100% !important;
    object-fit: cover !important;
}

.tourdetay-nav .nav-item {
    border-right: 1px solid white;
}
.table-tour-price th,td{
    padding:3px;
}
.tour-price-tab ul:not(.list-group) {
    list-style-type: square;
    margin-left: 25px;
}
    .tour-price-tab ul li:not(.list-group-item) {
        margin: 10px 0px;
    }

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

.rezervation_form {
    z-index: 9999 !important;
}

.dropdown-menu.radio .dropdown-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.dropdown-menu.radio input {
    visibility: hidden;
    position: absolute;
    left: -30px;
}

.dropdown-menu.radio i {
    font-weight: normal;
    font-style: normal;
    display: block;
}

.dropdown-item.active {
    background-color: #555;
    color: #fff;
}

.dropdown-menu.radio a {
    font-style: normal !important;
    font-weight: 500 !important;
    width: 100%;
    display: block;
    left: 0px;
    padding: 10px 0px;
    padding-top: 8px;
    top: 0px;
    color: black;
}


.calender_button {
    color: #819365 !important;
    border-color: #819365;
}

.calender_button:hover {
        color: #fff !important;
        background-color: #819365;
        border-color: #819365;
}

.tourdetay-nav .nav-item{
    width:100px;
    text-align:center;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    .tourdetay-nav .nav-item {
        width: 20%;
        text-align: left;
        font-size:12px;
    }
    .tourdetay-nav .nav-link{
        padding-left:4px;
    }
    .tour-price-buton a {
        font-size: 12px;
        padding-left: 10px;
    }
    .customDropdownButton {
        font-size:12px;
    }
    .search-horizantal {
        height: 35px !important;
        font-size: 15px !important;
    }
}

.transferdate {
    border-radius: 5px !important;
    border: none !important;
}

.owl-img img {
    min-height: 120px !important;
    object-fit: cover !important;
    width: 100%;
    height: 100%;
    object-position: 0px 61% !important;
}

.city-tour-list {
    height: 65px;
    overflow: hidden;
}
.city-tour-list .item-block{
    font-size:12.5px !important;
}
.city-tour-list .item-block .right ins{
    font-size:17px !important;
}

::-webkit-calendar-picker-indicator {
    margin-left: -5px;
}
.page-title-1 h2{
    font-size:18px;
}
.page-title-2 h1{
    font-size:20px;
}
.page-title-2 h2 {
    font-size: 16px;
}
.tour_cover_img {
    width: 100%;
    border-radius: 0.5rem;
    min-height: 120px !important;
    height: 138px !important;
    object-fit: cover !important;
}

.main-content h3 {
    font-size: 19px;
    width: 100%;
}

.hotel-puan-bilgisi {
}

    .hotel-puan-bilgisi:hover + #hotel-puan-detail {
        display: block;
    }

.hotel-puani {
    background: white;
    color: #549eff;
    border-radius: 50px;
    padding: 10px;
    font-size: 30px;
    font-weight: bold;
}

#hotel-puan-detail {
    display: none;
    position: absolute;
    width: 260px;
    height: auto;
    top: 58px;
    z-index: 99;
    opacity: 0.7;
    right: 18px;
    padding: 10px;
    background-color: black;
    opacity: 0.6;
}

    #hotel-puan-detail row {
        height: 20px;
    }

.hotel-alt-yazi {
    font-size: 12px;
    color: white;
    text-align: left;
    padding: 0px;
    margin: 0px;
}

#hotel-puan-detail .progress {
    height: 6px !important;
}

.detay-bg .progress {
    height: 6px !important;
}

.hotel-alt-puan {
    padding-top: 5px;
    font-size: 18px;
    color: white;
    text-align: center;
    color: #fec761;
}

#hotel-puan-detail .puan-yazi {
    margin-bottom: 10px;
}


element.style {
    width: 50%;
}

.progress-bar {
    margin: 0px;
    padding: 0px;
}

.progress-bar {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
    border-radius: 30px;
    -o-border-radius: 30px;
    -webkit-border-radius: 30px;
    -ms-webkit-radius: 30px;
    -moz-border-radius: 30px;
}

.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width .6s ease;
}

.hotel-detail-policies .title, .label {
    font-size: 13px;
    margin-bottom: 10px;
}
.hotel-detail-policies i{
    font-size:15px;
    width:18px;
    color:green;
}
.hotel-list-page-list-info {
    font-size: 13px !important;
    line-height: 22px;
    border: 1px solid #eee;
    border-radius: 0.5rem;
}