
  
  /* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: lightgrey; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background:#04274B; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  background: white;
  margin-top: 20px;
  padding: 20px;
  box-shadow: 3px 3px 5px grey;
  gap:10px;
}



.content-two {
  position: relative;
  max-width: 1200px;
  margin: auto;
  background: white;
  margin-top: 20px;
  padding: 20px;
  box-shadow: 3px 3px 5px grey;
}

.nav-tab {
 display: flex;
 flex-direction: row-reverse;
 gap:5px;
 border-bottom: 1px solid darkorange;
 flex-wrap: nowrap;
 overflow-x: auto;
}

.nav-tab-link {
  flex: 0 0 auto;
  padding: 5px 15px;

  font-size: 20px;
  cursor: pointer;
}
.under-line-link {
  border-bottom: 5px solid darkorange;
}

.photo-cont {
  width: 50%;
}
.thumb  {
  opacity: 0.8;
}
.hotel-discription {
 width: 600px;
 text-align: right;
 padding: 0 10px;
 overflow: auto;
}

.hotel-discription p {
  margin: 0;
 
  direction: rtl;
  text-align: justify;
}

.thumb-cont {
  overflow-x: auto;
  display: flex;
  flex-wrap: nowrap;
  gap:5px;
}
.thumb {
  width:100px;
  display: inline-block;
  flex:0 0 auto
}

.owl-carousel {
	margin-bottom: 10px
}

.link-active {
 opacity: 1;
 border-bottom: 5px solid darkorange;
}

@media (max-width: 750px ) {
.content {
  flex-wrap: wrap;
}
.photo-cont {
  width: 100%;
}
.hotel-discription {
  width: 100%;
}

}
.tab-content {
  
  direction: rtl;
  text-align: justify;
  padding: 5px 10px;
}

.collapse-cont {
  max-height: 0;
  transition: max-height 0.5s;
  overflow: hidden;
}
.search-box-tab {
  display: flex;
  flex-direction: row-reverse;
  gap:10px;
  justify-content: center;
  flex-wrap: wrap;
}
.date-detail-input {
  border: none;
  background:#E3E3E3;
  outline: none;
  padding: 5px;
  text-align: center;
}

.date-tap {
  border: 1px solid grey;
}
.search-tap-text {
  text-align: center;
  padding: 0 0 15px 0;
  
  font-size: 18px;
  direction: rtl;
}
.room-content {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
  width: 50%;
}
.reserve-mode {
   width: 100%;
}

.room-photo {
  width: 20%;
  border-radius: 15px;
}

.room-photo-small {
  width: 10%;
  border-radius: 15px;
}


.room-photo img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  vertical-align: middle;
}


.room-photo-small img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  vertical-align: middle;
}


.room-info-tab {
  width:65%; 
  display: grid;
  padding: 0 10px;
  box-sizing: border-box;
  
}
.room-Info-grid-up {
  grid-row: 1; 
  grid-column: 1;
  line-height: 1.2;
}

.room-Info-grid-up .info-name{
  font-size: 12px;
  color:gray;
}
.room-Info-grid-up .info-answer{
  font-size: 15px;
  color:black;
}

.room-Info-grid-up .info-sing{
  font-size: 12px;
  color:black;
}

.room-info-grid-down {
  grid-row: 2; 
  padding-top: 5px;
  grid-column: 1;
  border-top: 1px solid;
 
}

.room-info-grid-down .info-name {
  font-size: 17px;
  color:black;
  float: left;
   color:darkred;
}

.flex {
  display: flex;
  gap:15px;
}

@media (max-width:1000px) {
  .flex {
  display: block;
}
.room-content {
  width: 100%;
}
.room-photo, .room-photo-small {
  width: 15%;
}
.room-info-tab {
  width:75%;  
}
}

@media (max-width:750px) {
.room-photo, .room-photo-small {
  width: 20%;
}
.room-info-tab {
  width:65%;  
}
}

@media (max-width:450px) {
.room-photo, .room-photo-small {
  width: 25%;
}
.room-info-tab {
  width:60%;  
}
}

.reserve-button-cont {
 position: relative;
}

.reserve-butt {
 background-image: linear-gradient(to bottom,#db0e0b , #9c0d0b);
 color:white;
 width: 60px;
 height: 60px;
 box-sizing: border-box;
 border-radius: 35px;
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 cursor: pointer;
}

.reserve-but-text,.checked {
  position: absolute;
  top:15px;
  left:50%;
  transform: translate(-50%);
  color:white;
  
}

.checked{
  font-size: 35px;
  display: none;
  top:13px;
}
.modal-select {
  position: fixed;
  width: 350px;
  height: 150px;
  background:orange;
  top:50%;
  transform: translateY(-50%);
  left: -350px;
  transition: left 0.2s;
  z-index: 20;
}
.modal-select p {
  padding: 15px 0 0 20px;
  width:300px;
  
  direction: rtl;
  font-size: 18px;
}

.progress-modal {
  position: absolute;
  width: 0%;
  border-bottom: 3px solid darkred;
  bottom: 0px;
  transition: width 4.9s linear;
  display: none;
}
.reserv-count {
  background: red;
  padding: 0 6px;
  border-radius: 6px; 
  color:white; 
  font-size: 15px;
}

.display-none {
  display: none;
}

.input-text {
  border: none;
  border-bottom: 1px solid grey;
 
  font-size: 15px;
  width:100%;
  outline: none;
}

.leader-info {
  display: flex;
  margin-bottom: 35px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.leader-info div {
  flex-grow: 1;
  margin: 0px 5px;
}

.leader-info div label {
  font-size: 12px;
  text-align: right;
  opacity: 0;
  transition: opacity 0.2s;
}



.passener-data {
  display: flex;
  margin-bottom: 35px;
  gap:10px;
  flex-wrap: wrap;
}

.passener-data div {
  flex-grow: 1;
}
.passener-data div label {
  font-size: 12px;
  text-align: right;
  opacity: 0;
  transition: opacity 0.2s;
}
.quantity {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}


.quantity a, .quantity i, .quantity div {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.person-qt, .kid-qt {
 
  font-size: 18px;
  margin: 0 5px;
}

.confirm-button-cont {
	margin-top: 15px;
}

.confirm-butt, .cancel-butt {
	position: relative;
	padding: 2px 30px 2px 10px;
	border-radius: 5px;
	border: 1px solid orange;
	color: dimgrey;
	cursor: pointer;
}

.confirm-icon {
	position: absolute;
	right:5px;
	top: 5px;
	font-size: 21px;
}

.confirm-butt:hover {
	color:white;
	background: darkorange;
} 

.cancel-butt:hover {
	color:white;
	background: red;
}
.passenger-info, .passenger-info-kid{
	border: 1px solid grey;
	padding: 0px 20px;
	margin-top: 20px;
	border-radius: 10px;
  position: relative;
}

.data-group-name {
  margin-top: 20px;
}
.passenger-data-lable {
  position: absolute;
  top:-15px;  
  background: white;
  margin: 0 20px;
  padding: 0 10px;
  color:darkred;
  
}
.person_num_count {
  color:darkred;
}
/*----------------------------------------------------*/
	
	.carousel-inner img {
	height: 400px;
	}
	
	.iconsite{
	background-image: url("../img/Logo_SVG_Khorshid_Jahan_L_Light.svg");
	padding-right: 220px;
	padding-top: 80px;
	background-repeat: no-repeat;
	float: right
	}
	.navbar-nav{
	flex-direction: row-reverse;
	}
	
	.navbar-nav a {
	direction: rtl;
	}
	@media (max-width:991px){
		.navbar-nav{
		flex-direction: column;
		margin-right: 20px;
		}
	}
	
	input,button,option,.form-select {
	text-align: right;
	direction: rtl;
	
	}
	.arrow{
	padding: 5px;
	position: absolute;
	top: 5px;
	left: 5px;
	font-size: 20px;
	}
	.citycont{
	width: 280px;
	height: 200px;
	margin: auto; 
	margin-bottom: 10px;
	margin-top: 10px;
	overflow: hidden;
	border-radius: 15px;
	}
	
	.besthotels{
	cursor: pointer;
	}
	
	
	.bst-htlimg-cont img {
	position: relative;
	top:50%;
	transform: translateY(-50%)
	}
	
	
	
	.slider {
  max-width:1200px;
  margin: auto;
}

.item-slider {
	width:270px; 
	height: 380px;
	margin: 0 10px;
	border: 1px solid lightgrey;
}

.slide-photo {
	width: 240px;
	height: 240px;
	background: yellow;
	margin: 20px auto;
}

.item-slider-text {
	text-align: right;
	padding: 0 20px;

}

.item-slider-text p {
	direction: rtl;
}

.newsfdd {
	max-width: 400px;
	display: flex;
	flex-direction:row-reverse; 
	margin: auto;
}
.userinter{
  position: relative;
  top:5px;
  cursor: pointer;
  user-select: none;
}
.enterusermobile {
  text-align: right; 
  position: relative; 
  top:-25px; 
  margin-right: 30px; 
  color: white;
  cursor: pointer;
  user-select: none;
  display: none;
}
.modalon {
  width: 400px;
  position: fixed;
  background: white;
  z-index: 10;
  left:50%;
  transform:translateX(-50%);
  top:-250px;
  padding: 10px 15px;
  display: none;
}
@media (max-width:400px){
  .modalon{
    width: 100%;
  }
}

@media (max-width:991px){
  .enterusermobile{
    display:block;
  }
}
.animate-modal {
  animation: show-modal 0.5s forwards;
}

@keyframes show-modal{
0%{top:-250px;}
100%{top:43px;}
}
.reg-input-cont {
  margin-top: 10px;
  margin-bottom: 20px;
}
.reg-input {
  width: 100%;
  border: none;
  background:#E8E8E8;
  outline: none;
  padding: 5px 10px;
  margin-top: 10px;
  text-align: center;
}
.reg-butt-modal {
  position: relative;
  float: right;
}

.send-cod-modal, .enter-butt-modal {
  position: relative;
  top: 10px;
  width: 100%;
}
.send-cod-modal{
  background:#747474;
}

.reg-butt-cont {
  display: flex;
  gap:10px;
  flex-direction: row-reverse;
}
.email-input {
  display: none;
}
.close-modal {
  font-size: 20px;
  cursor: pointer;
  user-select: none;
}
.reserv-row{
  padding: 0 0 5px 0;
  margin-top: 10px;
  position: relative;
}
.reserv-row a{
  margin: 0 5px 0 10px;
}

.reserv-row button{
 font-size: 13px;
}


.small-butt {
  border: none;
  background: #D97120;
  color:white;
  padding: 5px 10px;
}

.side-left {
  float: left;
}
.cnfirm-input {
  position: absolute; 
  left:5px; 
  top:5px; 
  font-size: 25px;
  cursor: pointer;
  user-select: none;
}
.tikt-cont {
  margin-top: 20px;
  position: relative;
}
.tikt-item {
  margin-top: 20px;
  position: relative;
}
.tikt-itm-detil {
  height: 0;
  overflow: hidden;
}
.tikt-item textarea {
  width: 100%;
  font-size: 14px;
  padding: 10px;
}
.tikt-subjct-cont {
  font-size: 15px;
  width:100%;
  border-bottom: 1px solid;
  padding: 0 0 5px 0;
}

.tikt-subjct-cont i {
  float: left;
  font-size: 20px;
  position: relative;
  top:5px;
  left:7px;
}
.tickt-ques {
  margin-top: 10px;
}
.tkt-stition {
  color:#B93C19;
}

.tickt-ques p {
  font-size: 14px;
}
.tickt-ques i {
  font-size: 22px;
  position: relative;
  top:3px;
  color:#E78C3D;
}
.tickt-answ {
  margin-top: 10px;
  padding: 5px 10px 1px 10px;
  background: #F5D5BD;
}
.confrm-text-tikt{
  font-size: 25px;
  cursor: pointer;
}
.confimTxtTktCont {
  margin-top: 10px;
}

.cancel-text-tikt{
  font-size: 25px;
  cursor: pointer;
}
.wallet-data {
  max-width:350px;
  margin: auto;
  text-align: center;
  margin-top: 20px;
}

.wallet-data .price-balance {
   margin-top: 10px;
   border: 1px solid;
   padding: 10px;
   border-radius: 10px;
   font-size: 20px;
}

.wallet-data .increse-balance {
   margin-top: 10px;
   border: 1px solid;
   padding: 10px;
   border-radius: 10px;
   font-size: 20px;
}

.wallet-data .increse-balance input {
  text-align: center;
  font-size: 20px;
 
}

.wallet-data .increse-balance button {
  text-align: center;
  font-size: 17px;
  margin-top: 10px;
  width: 100%;
}

.tikt-guide {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  color:grey;
}
.user-data-profile {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


.user-data-profile input {
  flex-grow: 1;
  width: 35%;
}

.chng-pass-profile {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chng-pass-profile input {
  flex-grow: 1;
  width: 30%;
}

@media (max-width:550px){
  .user-data-profile input {
   width:100%;
  }
  .chng-pass-profile input {
   width:100%;
  }
}
.trasction-amount {
  float: left;
  color:grey;
}
.trasction-amount span {
  font-size: 20px;
  position: relative;
  top:4px;
}
.prf-usrdta-edit, .prf-usrdta-save {
   color:grey;
   cursor: pointer;
   user-select: none;
   border: 1px solid;
   padding: 3px 10px;
   border-radius: 10px;
}

.prf-usrdta-edit span,  .prf-usrdta-save span{
  font-size: 20px;
  position: relative;
}

.disable {
  display: none;
}
.reserv-row-detail {
  border-top: 1px solid;
  margin-top: 5px;
  font-size: 14px;
  height:0;
  overflow: hidden;
}

.reserv-row-detail div{
  padding: 7px 0 7px 0;
}


.reserv-row-detail .rsrvdtail-part a  {
  line-height: 2; 
}
.room-rserv-detail {
  margin-top: 7px;
  border-top: 1px solid;
  padding: 10px 0;
}

.room-rserv-detail  a {
  line-height: 1.2;
}
.rsrvdtail-part {
  margin: 5px 0 ;
  border-bottom:1px dashed;
  padding: 5px 0 5px 0;
}

.reserv-row-detail .room-rserv-detail {
  display: flex;
  gap:10px;
  flex-wrap: wrap;
}

.reserv-row-detail .rsrv-cncel-butt {
  cursor: pointer;
  user-select: none;
}


.reserv-row-detail .rsrv-cncel-butt i {
  font-size: 24px; 
  position: relative; 
  top:4px;
}

.reserv-item-name {
  color:#ED974C;
}

.reserv-item-name span {
  color:grey;
}
.trans-row {
  border-bottom: 1px solid;
}

.filter-cont-butt {
	direction: rtl; 
	text-align: right; 
	cursor: pointer; 
	user-select: none;
}
.side-modal-cont {
	display: flex;
	flex-direction: row-reverse;
}

.side-modal {
	width: 300px;
	height: 100vh;
  overflow-y: auto;
	background:#EDEDED;
	position: fixed;
	z-index: 15;
  right: -300px;
}

.animated-side-modal {
  animation: sidemodalmove 0.5s forwards;
}

.animated-side-modal-cl {
  animation: sidemodalmoveclose 0.5s forwards;
}


@keyframes sidemodalmove {
  0%{right:-300px;}
  100%{right:0px;}
}

@keyframes sidemodalmoveclose {
  0%{right:0px;}
  100%{right:-300px;}
}

.filters-cont {
	direction: rtl;
	text-align: right;
	padding: 5px 20px 10px 15px;

}

.filter-item-cont {

	margin-top: 10px;
}

.filter-item-cont .str-icn {
	color:grey;
  font-size: 15px;
}

.filter-item-cont .str-icn i {
	position: relative;
	font-size: 15px;
	top:0px;
}
.collapce-filter {
  border-top: 1px solid;
  margin-top: 5px;
  padding: 10px 0 0 0;
  height: 0;
  overflow: hidden;
}
.chk-box {
	color:grey;
	display: inline-block;
	height: 20px;
	width: 20px;
	border: 2px solid;
	position: relative;
	top:5px;
}
.chk-box i {
	font-size: 23px;
	position: absolute;
	top:-5px;
	right: -3px;
}
.filter-range {
  width: 80%;
	margin-right: 20px;
	position: relative;
	top:5px;
}

.filter-sec-arrow {
  float: left;
  position: relative;
  top:5px;
  font-size: 20px;
}
.fltr-colps-title {
  cursor: pointer;
  user-select: none;
}

.filts-butt-close {
  cursor: pointer;
  user-select: none;
}

.room-cncl-list a {
  color:grey;
}
