body{
	overflow-x:hidden;
	font-size:14px;
	background: #f0edda;
}

label{
	position: relative;
	cursor: pointer;
	color: #666;
	font-size: 14px;
}
a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}

input[type="checkbox"], input[type="radio"]{
	position: absolute;
	right: 9000px;
}

input[type="checkbox"] + .label-text:before{
	content: "\f0c8";
	font-family: 'FontAwesome';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing:antialiased;
	width: 1em;
	display: inline-block;
	margin-right: 5px;
}

input[type="checkbox"]:checked + .label-text:before{
	content: "\f14a";
	font-family: 'FontAwesome';
	color: #333333;
	animation: effect 250ms ease-in;
}

input[type="checkbox"]:disabled + .label-text{
	color: #aaa;
}

input[type="checkbox"]:disabled + .label-text:before{
	content: "\f0c8";
	color: #ccc;
}

/*Radio box*/

input[type="radio"] + .label-text:before{
	content: "\f10c";
	font-family: "FontAwesome";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing:antialiased;
	width: 1em;
	display: inline-block;
	margin-right: 5px;
}

input[type="radio"]:checked + .label-text:before{
	content: "\f192";
	color: #8e44ad;
	animation: effect 250ms ease-in;
}

input[type="radio"]:disabled + .label-text{
	color: #aaa;
}

input[type="radio"]:disabled + .label-text:before{
	content: "\f111";
	color: #ccc;
}

/* Custom */
.form-check{
	padding: 0;
}

.form-control{
	border-radius:0;
}

.form-control:focus {
    box-shadow: inherit;
}


.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #484747;
    border-color: #484747;
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #484747;
    border-color: #484747;
}

/*=========================
1 - Header 
==========================*/
.header {
    background: rgb(64, 96, 157);
    height: 54.5px;
	position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    right: 0;
}

.header-home {
    background: none;
}

.header .navbar {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  width: 100%;
  transition: background 0.6s ease-in;
  z-index: 1000;
}
 
.header .navbar .navbar-brand {
  font-size: 28px;
  font-weight:bold;
}
.header .navbar .navbar-toggler {
  position: relative;
  height: 50px;
  width: 50px;
  border: none;
  cursor: pointer;
  outline: none;
}
.header .navbar .navbar-toggler .menu-icon-bar {
  position: absolute;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  transition: all 0.3s ease-in;
}
.header .navbar .navbar-toggler .menu-icon-bar:first-child {
  opacity: 1;
  -webkit-transform: translateY(-1px) rotate(45deg);
  -ms-sform: translateY(-1px) rotate(45deg);
  transform: translateY(-1px) rotate(45deg);
}
.header .navbar .navbar-toggler .menu-icon-bar:last-child {
  opacity: 1;
  -webkit-transform: translateY(-1px) rotate(135deg);
  -ms-sform: translateY(-1px) rotate(135deg);
  transform: translateY(-1px) rotate(135deg);
}
.header .navbar .navbar-toggler.collapsed .menu-icon-bar {
  opacity: 1;
}
.header .navbar .navbar-toggler.collapsed .menu-icon-bar:first-child {
  -webkit-transform: translateY(-7px) rotate(0);
  -ms-sform: translateY(-7px) rotate(0);
  transform: translateY(-7px) rotate(0);
}
.header .navbar .navbar-toggler.collapsed .menu-icon-bar:last-child {
  -webkit-transform: translateY(5px) rotate(0);
  -ms-sform: translateY(5px) rotate(0);
  transform: translateY(5px) rotate(0);
}
.header .navbar-dark .navbar-nav .nav-link {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.header .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}
.header .navbar .dropdown-menu {
  padding: 0;
  background-color: rgba(0, 0, 0, .9);
  margin: 0;
  border: none;
  border-radius: 0; 
}
.header .navbar .dropdown-menu .dropdown-item {
  position: relative;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: color 0.2s ease-in;
}
.header .navbar .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.header .navbar .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: #ffea00;
}
.header .navbar .dropdown-menu .dropdown-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 5px;
  background-color: #ffea00;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
.header .navbar .dropdown-menu .dropdown-item:hover::before {
  opacity: 1;
}
.header .navbar.fixed-top {
  position: fixed;
  -webkit-animation: navbar-animation 0.6s;
  animation: navbar-animation 0.6s;
  background-color: rgba(64, 96, 157, 0.8);
}
.header .navbar.fixed-top.navbar-dark .navbar-nav .nav-link.active {
  color: #c0ca33;
}
.header .navbar.fixed-top.navbar-dark .navbar-nav .nav-link::after {
  background-color: #c0ca33;
}
.header .content {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .header .navbar-brand {
    margin-left: 15px;
  }
  .header .navbar-nav {
    padding: 0 20px;
    background-color: rgba(0, 0, 0, .9);
  }
  .header .navbar.fixed-top .navbar-nav {
    background: transparent;
  }
}
@media screen and (min-width: 767px) {
  .header .navbar-dark .navbar-nav .nav-link {
    padding: 10px 15px;
  }
  .header .navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 30%;
    right: 30%;
    height: 2px;
    background-color: #fff;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: transform 0.1s ease-in;
  }
  .header .navbar-dark .navbar-nav .nav-link:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
  .header .dropdown-menu {
    min-width: 200px;
    -webkit-animation: dropdown-animation 0.3s;
    animation: dropdown-animation 0.3s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
  }
} 
 
 
/*=========================
2 - Hero 
==========================*/
.hero {
    display: block;
    background: url(../img/hero-airlines3.jpg);
	margin: 0 auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    align-items: center;
    color: #fff;
    text-align: center;
    padding-bottom: 100px;
    padding-top: 15%;
    z-index: 1;
}

.hero .nav-tabs{
	border:0;
}

.hero .nav-tabs > li > a{
	background:#ffea00;
	border-radius: 0;
	border:0;
	font-size:16px;
	color:#333333;
    padding: 10px 15px 10px 15px;
    margin-right: 3px;
    margin-bottom: 0;
	outline:none;
}

.hero .nav-tabs .nav-link i {
	margin-right:7px;
}

.hero .nav-tabs > .active > a, .nav-tabs > .active > a:hover, 
.hero .nav-tabs > .active > a:focus{
	border:none;
	border-top:1px solid #cacaca;
	background:#ffffff;
}

.hero .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border-color: #fff;
	color:#2d2d2d;
}
 
.hero .tab-content{
	background:#ffffff;
	padding:30px;
}
.hero .tab-form-icons{
	position: absolute;
    top: 18px;
    z-index: 1;
    right: 15px;
    font-size: 18px;
    color: #747e8a;
}
.hero .tab-note{
	font-size:13px;
	line-height:18px;
	color:#666666;
	padding-top:30px;
}

.hero .search .form-control{
	text-align:left;
	padding: 13px;
	border: 0;
    outline: 1px solid #dddddd;
	min-height:52px;
}

.hero .form-control:disabled, .form-control[readonly] {
	background-color: #ffffff;
}

.hero .search .btn{
    border: 0;
	border-radius: 0;
    outline: 1px solid rgba(0, 0, 0, .9);
    background: rgba(0, 0, 0, .9);
    min-height: 52px;
}

.hero .search .btn-primary:not(:disabled):not(.disabled).active, .hero .search .btn-primary:not(:disabled):not(.disabled):active, .hero .search .show>.btn-primary.dropdown-toggle {
    outline: 1px solid rgb(72 71 71);
}
 
@media screen and (max-width: 768px) {
	.hero {
		padding-top:480px;
		padding-bottom: 15px;
	}
}

/*==========================
2- Main
==========================*/
.main-area{
	background:url(../img/basic-icons/BGmap.jpg);
	margin-top:55px;
    height: 100%; 
	background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
}

#our-travels{
	position:relative;
	padding-top:30px;
}

.search-result-main{
	background:#fafafa;
	margin-top:0px;
	position:relative;
}
.search-result-main .head{
	font-size:18px;
	line-height:26px;
	font-weight:700;
	color:#000;
	line-height:42px;
	position:relative;
	padding-left:15px;
}

.search-result-main .circle-outer{
	margin-top:-20px;
	margin-left:-80px;
	position:relative;
	background:#ffffff;
	min-height:26px;
	max-height:26px;
	min-width:26px;
	max-width:26px;
	border-radius:50%;
	float:left;
	z-index: 1;
	behavior: url(assets/css/PIE.htc);
}
.search-result-main .inner-1{
	background:#ffffff;
	border:3px solid #333333;
	margin:6px auto;
	min-height:14px;
	max-height:14px;
	min-width:14px;
	max-width:14px;
	border-radius:50%;
	
}

.search-result-main .inner-2{
	background:#ffffff;
	margin:0px auto;
	min-height:8px;
	max-height:8px;
	min-width:8px;
	max-width:8px;
	border-radius:50%;
}


.search-methodes{
	background:#ffffff;
	padding-top:5px;
	padding-left:20px;
	padding-right:20px;
	padding-bottom:20px;
	margin-bottom:20px;
}


.price-options, .lorem-options{
	border-bottom:1px solid #dddddd;
	margin-top:15px;
}

.price-options, .lorem-options:last-child{
	border-bottom:0;
}

.price-options .head, .lorem-options .head{
	color:#666666;
	font-size:16px;
	line-height:26px;
	font-weight:700;
	cursor:pointer;
	margin-bottom:15px;
	position:relative;

}
.price-options .head span, .lorem-options .head span{
	position:absolute;
	color:#666666;
	font-size:16px;
	right:0px;
	top:5px;
}

.sorting-methodes{
	background:#ffffff;
	line-height:40px;
}
.sorting-methodes div{
	display:inline-block;
}
.sorting-methodes ul{
	margin:0 ;
	padding:0;
	line-height:40px;
}

.sortby li{
	display:inline-block;
	position:relative;
}
.sortby li a{
	color:#666666;
	text-decoration:none;
	font-size:14px;
	padding-left:10px;
	padding-right:10px;
	line-height:42px;
	min-height:40px;
	display:block;
}
.sortby li.active a{
	background:#ffea00;
	color:#000000;
	font-weight:700;
	outline:none;
}
.sortby li .arrow{
	display:none;
}
.sortby li.active .arrow{
	display:block;
	position:absolute;
	width:100%;
	height:6px;
	background:url(../img/basic-icons/sort-arrow.png) center center no-repeat;
	bottom:-6px;
	left:0;
	
}
.sorting-methodes .filter-option {
	float:right;
}
.sorting-methodes .filter-option ul{ 
	margin:0;
	padding:0;
	border-left:1px solid #f2f2f2;
	margin-left:30px;
}

.sorting-methodes .filter-option li{
    display: inline-block;
    color: #2c2a35;
    text-decoration: none;
    font-size: 12px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

.sorting-methodes .filter-option li.active{
	color:#17607d;
}

.travels-up{
	margin-top:15px;
	padding: 0px;
	margin: 0px;
	background-color: #FFFFFF;
	margin-bottom: 25px;
	z-index: 555;
}

.travels-up .search-title{
	float: center;
	color: #333333;
	font-size: 16px;
	font-weight: 500;
	padding: 15px 0px 15px 0px;
	margin: auto;
	text-align: center;
}

.travels-up .search-footer{
	font-size: 13px;
	color: #1F1F2E;
	border-top: 1px solid #E8E8E8;
	height: 30px;
	padding-top: 7px;
    padding-bottom: 29px;
}

.travels-up .search-footer .date{
	text-align: center;
	font-weight: bold;
}

.travels-up .search-title .next{
	padding-right: 15px;
	float:right
}

.travels-up .search-title .next a{
	color: #000;
}

.travels-up .search-title .prew{
	padding-left: 15px;
	float:left	
}

.travels-up .search-title .prew a{
	color: #000;
}

.travels-up .search-footer .next{
	padding-right: 25px;
	text-align:right
}

.travels-up .search-footer .next a{
	color: #000;
}

.travels-up .search-footer .prew{
	padding-left: 25px;
	text-align:left	
}

.travels-up .search-footer .prew a{
	color: #000;
}


.tours-wrapper{
	position:relative;
	height:auto;
	
}
#our-travels .tours-wrapper{
	padding-top:0px;
}


.bus-result{
	margin-top: 25px;
}
.bus-result .bus-body {
    padding-bottom:15px;
}

.bus-result .bus-body .company-logo{
	max-width:100%;
	max-height:60px
}


.bus-result .bus-footer {
	font-size:12px;
	padding: 15px 0px;
	border-top: 1px solid #e8e8e8;
}

.bus-result .bus-footer .bus-select {
	float: right;
	margin: -6px 0 -5px -5px;
	padding: 5px 15px 6px 15px;
	background: #4c4c4c;
	color: #fff;
}

.bus-result .bus-footer .bus-select:hover, .bus-result .bus-footer .bus-select:active {
  background: #28a745;
  color: white;
}

@media (min-width:992px) {
    .bus-result.bus-body .col-sm-2 {
        width: 16.666667%;
    }
}
 
.bus-result .bus-body .row:first-child > div {
    border-right: 1px solid #ddd;
    height: 40px;
}

.bus-result .bus-body .row:first-child div:last-child {
    border-right: none;
} 
.bus-result .bus-body .feature{
    text-align: center;
    padding: 0px;
}
 
.bus-result .bus-body .bus-price{
    text-align:right;
}
 
.bus-result .bus-body .bus-price .summary-price{
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
}

.bus-result .bus-body .bus-price .price-title{
    font-size: 13px;
}

 
.bus-result .bus-list{
	background: #fff;
	padding: 15px 15px 0px 15px;
	margin-bottom: 10px;
}

.bus-seat-methodes{
	background:#ffffff;
	padding-top:20px;
	margin-bottom:20px;
}

.seats-list .seat {
    padding-top: 14px;
}

.seats-list .seat {
    padding-top: 14px;
}
 
.seats-list table td {
    padding: 2px;
    line-height: 8px;
}
 
.seat {
    height: 33px;
    width: 33px;
    color: #fff;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
 
.bayan-icon {
    color: #F267CF;
}

.bay-icon {
    color: #5C99FD;
}

.secili span {
    background-color: #fff;
    background-image: url(/img/Resimler/secili.png);
    background-repeat: no-repeat;
    background-position: top;
    color: red;
}

.bayan-renk {
    background-color: #F267CF;
}

.bay-renk {
    background-color: #5C99FD;
}

.dolu-renk {
    background-color: #9B9B9B;
}

.bos-renk {
    background-color: #4EC581;
}
 
 
 
.seat-selected-card {
  color: #646464;
  background: #ffffff;
  overflow: hidden;
}
.seat-selected-card .plan, .seat-selected-card__logo {
  width: 40px;
  height: 40px;
}

.seat-selected-card .pay {
	border-radius: 0;
    width: 100%;
}

.seat-selected-card .pay a {
	color:#fff;
}


.seat-selected-card .plan path, .seat-selected-card__logo path {
  fill: #ccc;
}
.seat-selected-card__add {
  display: table;
  width: 95%;
  margin: 20px auto 20px;
  padding: 10px 0 10px 0;
  border-top: 1px #a2a2a2 dashed;
}
.seat-selected-card-box {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.seat-selected-card-name {
  color: #000;
  font-size: 14px;
  font-weight:bold;
  font-style: normal;
  height: 25px;
  line-height: 25px;
  display: block;
}
 
.seat-selected-card__use {
  padding: 0 10px;
}
.seat-selected-card__use li {
  width: 50%;
 list-style: none;
  text-align: center;
  float: left;
  margin: 0 0 15px 0;
} 

/*==========================
7-Our travels
==========================*/
 
.header-outer{
	padding-top:15px;
}

/* Large desktop */
@media (min-width: 1200px) {
	.container{
		width:1040px !important;
	}

}
 
@media (min-width: 980px) and (max-width: 1199px) {
	.container{
		width:940px !important;
	}
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
	#our-travels {
		padding-top: 5px;
	}	
	  .navbar-nav {
		padding: 0 20px;
		background-color: rgba(0, 0, 0, .9);
	  }
.navbar .navbar-brand {
    font-size: 24px;
    font-weight: bold;
}
	  .header{
		  height:50px!important;
	  }
	.container{
		padding-left:5px;
		padding-right:5px;
	}
}
 
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
	#our-travels {
		padding-top: 15px;
	}	
	  .header{
		  height:50px!important;
	  }
	  
.navbar .navbar-brand {
    font-size: 24px;
    font-weight: bold;
}	  
	.sortby ul{
		margin-bottom:0px;
	}
 
	.sortby li a{
		padding-left:5px;
		padding-right:5px;
	}
 
}

 
/* Landscape phones and down */
@media (max-width: 480px) {
	.bus-result .bus-body .bus-price .summary-price{
		font-weight: bold;
		font-size: 14px;
		white-space: nowrap;
		overflow: hidden;
	}

	.header .hero{
		padding-top: 30px;
		padding-bottom: 0px;
	}
	.tours-wrapper{
		padding-bottom:0;
		margin-bottom:0;
	}
}


 
/* States */
.states-area{
    background: #ffffff;	
	text-align:center;
}

.states-area h1 {
	margin-top:20px;
	font-weight:bold;
}
 
.states-area .text-hero {
    font-size: 1.6em;
    font-weight: 300;
}

.states-area .text-primary {
    color: #ffea00 !important;
}    


.states-area .related-areas{
    position: relative;
    display: block;
    float: left;
    margin-top: 25px;
    padding: 0;
}
.states-area .related-areas li{
	float:left;
	margin-right:10px;
	background:#ffea00;
	line-height:30px;
	margin-bottom:10px;
	padding-left:15px;
	padding-right:15px;
	list-style:none;
	text-align:center;
	font-weight: bold;
}
.states-area .related-areas li a{
	color:#333333;
	text-decoration:none;
}
.states-area .related-areas li a:hover{
	color:#000000;
}

/* Footer */
.footer h5{
    font-size:18px;
}
.footer h5, .footer img.logo {
    margin-bottom: 15px;
}
.footer .box {
    margin-bottom: 15px;
}
.footer .places {
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer .places li {
    float: left;
}
.footer .place {
    position: relative;
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 0 20px 0 23px;
    height: 26px;
    border-radius: 3px 0 0 3px;
    background: #e9ecef;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 26px;
    -webkit-transition: all .4s;
}
.footer .place::after {
    position: absolute;
    top: 0;
    right: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #e9ecef;
    background: #fff;
    content: '';
    -webkit-transition: all .4s;
}
.footer .footerbottom {
    border-top: 1px dashed #dddddd;
    text-align: center;
    padding: 25px 0px;
}

/* Search */
 
 
 
.tours {
    padding: 30px 15px;
}
.tours .rating {
	position: absolute;
    display: flex;
    width: 2.875rem;
    height: 2.875rem;
    margin-top: -2.75rem;
    margin-left: 0.75rem;
    justify-content: center;
    align-items: center;
    border: 0.25rem solid #fff;
    border-radius: 50%;
    color: #fff;
    background-color: rebeccapurple;
}

.tours .image {
    max-width: 100%
}

.tours .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    border-radius: .25rem;
	margin-bottom: 30px;
}

.tours .card-title {
    font-style: normal;
    font-weight: bold;
    color: #653399;
}

.tours .card-text {
    font-style: normal;
    font-weight: 100;
    font-size: 13px
}

.tours .card-price{
	font-size: 18px;
    font-weight: bold;
}

.tours .marker {
    color: red
}

.tours .star-rating {
    color: #f7b944
}

.tours img{
	width: 100%;
}