:root {
	--yellow_light: #fff9c6;
	--red: #f14047;
}


body {
	font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
}

.loader {
  width: 96px;
  height: 96px;
  border: 3px solid #FFF;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid;
  border-color: var(--green) transparent;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

#loading {
	display: flex;
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #00000063;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.login {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 100vh;
	margin-top: -60px;
}

.login img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	z-index: -1;
}

.login .login-box {
	background: #fff;
	box-shadow: var(--drop_large);
	border-radius: 20px;
	padding: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-direction: column;
}

.login .login-box svg {
	width: 240px;
}

.login .login-box svg path {
	fill: var(--grey_1);
}

.login .login-box input {
	border-radius: 20px;
  padding: 16px 24px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--grey_2);
  border: 1px solid var(--grey_2);
  box-shadow: var(--drop_large);
  box-shadow: none;
}


.login .btn {
	margin: 0;
	border-radius: 20px;
	font-size: 14px;
	width: 100%;
	border: none;
	padding: 8px;
}


.navbar {
	padding: 16px;
	z-index: 100;
}
.navbar nav {
	align-items: center;
	justify-content: flex-end;
	gap: 48px;
	color: var(--grey_2);
}

.navbar nav svg path {
	fill: var(--green);
}

.navbar .nav-logo {
	width: auto;
}

.r-total {
	font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: var(--black);
}

.r-devis-no {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}


.nav-date-duration {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
    gap: 5px;
}

.nav-date-duration > div {
	display: flex;
	gap: 8px;
}

.nav-pax {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
  gap: 0px;
}

.nav-pax > div {
	display: flex;
	gap: 8px;
	align-items: center;
}


.nav-name {
	color: var(--black);
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 500;
}

.btn-group {
	margin-right: auto;
	margin-left: 32px;
	display: flex;
}

.navbar.navbar-white .btn-group .btn-devis {
	border: 1px solid var(--grey_3);
	border-radius: 0;
	background: #fff;
	color: var(--grey_2);
	cursor: pointer;
	margin-right: -1px;
	font-weight: 400;
	font-size: 14px;
}

.navbar.navbar-white .btn-group .btn-devis:first-child {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
.navbar.navbar-white .btn-group .btn-devis:last-child {
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

.navbar.navbar-white .btn-group .btn-devis.active {
	background: var(--green);
	color: var(--white);
	border-color: var(--green);
}




.circuit-list {
    margin-top: 24px;
    margin-bottom: 24px;
}


.r-detail-container {
	padding: 0;
	display: flex;
	align-items: flex-start;
	gap: 0;
}

.r-detail-container .r-col-left {
	width: 50%;
	padding: 16px;
	overflow-y: scroll;
	overflow-x: hidden;
	height: calc(100vh - 60px);
}

.r-detail-container .r-col-right {
	width: 50%;
	padding: 16px;
	overflow-y: scroll;
	overflow-x: hidden;
	height: calc(100vh - 60px);
	background: var(--grey_2);
}

.r-trip-map {
	background: var(--blue);
	width: 100%;
	height: calc(100vh - 32px - 60px);
	position: sticky;
	top: 76px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--drop_large);
}

.r-list-trips {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.r-list-trips .r-trip {
	background: var(--grey_3);
	border-radius: 10px;
	box-shadow: var(--drop_large);
	padding: 0;
	display: flex;
	gap: 0;
	flex-direction: column;
	cursor: pointer;
	position: relative;
	padding-right: 10px;
}
.r-list-trips .r-trip.t-selected {
	background: #fff;
}

.r-list-trips .r-trip:hover {
	transform: scale(1.02);
	transition: all .2s;
	z-index: 3;
}

.r-list-trips .r-trip > div {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
}

.r-list-trips .r-trip .r-trip-btn-replace-delete {
	position: absolute;
  right: -8px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 16px;
  gap: 16px;
}
.r-list-trips .r-trip .r-trip-btn-replace {
	width: 24px;
	height: 24px;
	background: var(--green);
	border-radius: 50%;
	z-index: 7;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .1s;
}
.r-list-trips .r-trip .r-trip-btn-replace:hover {
	transform: scale(1.2);
	transition: transform .2s;
}

.r-list-trips .r-trip .r-trip-btn-add {
	position: absolute;
	bottom: -14px;
	right: calc(50% - 12px);
	width: 24px;
	height: 24px;
	background: var(--green);
	border-radius: 50%;
	z-index: 7;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .1s;
}
.r-list-trips .r-trip .r-trip-btn-add:hover {
	transform: scale(1.2);
	transition: transform .2s;
	z-index: 10;
}

.r-list-trips .r-trip .r-trip-btn-delete {
	width: 24px;
	height: 24px;
	background: var(--red);
	border-radius: 50%;
	z-index: 7;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .1s;
}
.r-list-trips .r-trip .r-trip-btn-delete:hover {
	transform: scale(1.2);
	transition: transform .2s;
	z-index: 10;
}


.r-trip-itinerary {
	padding: 16px;
	padding-bottom: 0;
	color: var(--grey-1);
	font-style: italic;
}
.r-trip-itinerary svg {
	height: 24px;
	width: 24px;
}

.r-trip-itinerary svg path {
	fill: var(--green);
}

.r-show-include {
	padding: 16px;
	padding-top: 0;
	color: var(--grey_2);
	font-size: 12px;
	cursor: pointer;
	text-decoration: underline;
}
.r-show-include:hover {
	color: var(--green);
}

.r-choice-trips .r-trip-include,
.r-list-trips .r-trip .r-trip-include {
	display: flex;
	gap: 16px;
	padding: 16px;
	align-items: flex-start;
}

.r-trip-include > div {
	width: calc(50% - 16px);
}

.r-trip-include > div ul li {
	font-size: 12px;
	line-height: 16px;
	color: var(--grey_1);
}

.r-trip-include h3 {
	margin-bottom: 8px;
	text-align: center;
}

.r-trip-include .list-inclus,
.r-trip-include .list-exclus {
	margin-bottom: 0;
}

.r-trip-include .list-inclus ul,
.r-trip-include .list-exclus ul {
	padding-left: 27px;
	margin-bottom: 0;
}

.r-trip-include .list-inclus ul li:after,
.r-trip-include .list-exclus ul li:after {
	width: 16px;
	height: 16px;
}

.r-trip img {
	width: 200px;
	height: 100px;
	border-radius: 10px;
	object-fit: cover;
}

.r-trip-info {
	display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.r-trip-content {
	font-size: 12px;
	line-height: 16px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	color: var(--grey_1);
}

.r-trip-date {
	display: flex;
	gap: 10px;
}
.r-trip-date svg path {
	fill: var(--green);
}

.r-trip-date > b,
.r-trip-date > span {
	flex: 1;
	display: flex;
    gap: 10px;
}

.r-hotel-date {
	width: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}
.r-hotel-date span {
	color: var(--grey_2);
}

.r-hotel-date svg path {
	fill: var(--green);
}

.r-hotel-link {
	display: flex;
	gap: 5px;
	color: var(--brown);
	font-size: 10px;
	width: fit-content;
}


.r-choice-hotels {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	flex-direction: column;
}

.rc-hotel {
	box-shadow: var(--drop_large);
	display: flex;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	transition: all .1s;
	gap: 2px;
}

.rc-hotel:hover {
	/*	transform: translateX(20px);*/
	margin-left: 20px;
	transition: all .2s;
	cursor: pointer;
}

.rc-hotel .rc-content {
	padding-left: 8px;
	display: flex;
	flex-direction: column;
	gap: 0;
	justify-content: center;
	flex: 1;
	overflow: hidden;
}

.rc-hotel img {
	width: 100px;
}

.rc-hotel .rc-price {
	margin-left: auto;
	text-align: right;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding-right: 8px;
}
.rc-hotel .rc-price span {
	color: var(--green);
}

.rc-hotel i {
	color: var(--grey_2);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.rc-hotel .rc-calendar {
	align-items: center;
	display: flex;
	padding-right: 10px;
	color: var(--grey_3);
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--grey_3); 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--grey_2); 
}

.rc-filter {
	background: var(--grey_2);
	position: sticky;
	top: -16px;
	padding: 16px;
	margin-bottom: 10px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: none;
	margin-left: -16px;
  margin-right: -16px;
}

.rc-filter input {
	margin-left: auto;
}

.rc-filter input,
.rc-filter select {
	border-radius: 10px;
  border: 1px solid var(--grey_3);
  padding: 5px 10px;
}

.rc-filter svg path {
	fill: #fff;
}


.rc-content .rc-tname {
	-webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;	
}

.rc-trip-itinerary {
	color: var(--grey_2);
	font-style: italic;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	margin-top: 6px;
}
.rc-trip-itinerary svg {
	height: 16px;
	width: 16px;
}

.rc-trip-itinerary svg path {
	fill: var(--green);
}

.rc-trip-itinerary > div {
	flex: 1;
	-webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.r-trip-info-itinerary em,
.rc-trip-itinerary em {
	font-size: 10px;
}

.rc-hotel .rc-trip-img {
	width: 200px;
	height: 100px;
	object-fit: cover;
	border-radius: 10px;
}


.recap {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 64px;
	position: relative;
}

.recap .recap-top {
	width: calc(100% + 32px);
  margin-left: -16px;
  margin-top: -16px;
  position: relative;
  margin-bottom: 100px;
}
.recap .recap-top .img-top {
	width: 100%;
}
.recap .recap-top svg {
	fill: #fff;
	position: absolute;
	bottom: 0;
	right: -1px;
}

.recap .intro-circuit {
	width: 100%;
	margin: 0;
	justify-content: center;
	position: absolute;
	bottom: -100px;
	z-index: 3;
}


.recap h1.title_big {
	position: absolute;
  top: 48px;
  width: 100%;
  color: #fff;
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.5);
}

.recap .line {
	position: relative;
}
.recap .line:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg width='313' height='17' viewBox='0 0 313 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.42038 12.8507C4.42038 12.8507 135.715 -2.86031 308.04 8.64893' stroke='%23F0E370' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E");
  bottom: -24px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
}


.recap .map-recap {
	border-radius: 20px;
	box-shadow: var(--drop_large);
	overflow: hidden;
}

.recap-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--grey_2);
	gap: 24px;
}

.recap-day > div {
	width: 100%;
}

.recap-day .recap-img-hotel {
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.recap-day .recap-img-hotel > img {
	width: 65%;
	border-radius: 20px;
	box-shadow: var(--drop_large);
}

.recap-day h3 {
	font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
  width: 100%;
}

.recap-h-img {
	display: flex;
  gap: 2px
}

.recap-h-img img:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.recap-h-img img:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.recap-h-content {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 4px;
}

.recap-h-content span {
	color: var(--black);
}

.recap-hotel {
	display: flex;
	flex-direction: column;
	gap: 8px;
	box-shadow: var(--drop_large);
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.recap-hotel .r-hotel-link {
	width: 100%;
	justify-content: center;
}


.list-inclus ul,
.list-exclus ul {
    font-weight: 400;
    margin: 0;
    margin-bottom: 24px;
    line-height: 24px;
    list-style: none;
}


.recap .faq {
	width: 100%;
}

.recap .faq .question {
	margin-top: 0;
}

.recap  .faq.faq-close .question {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.recap .faq.faq-close > div {
  display: none;
}

.recap .faq.faq-close svg {
  rotate: 0deg;
}


.r-it-row {
	display: flex;
	align-items: center;
	gap: 24px;
	padding-top: 10px;
	padding-bottom: 10px;
	justify-content: flex-start;
	position: relative;
}
.r-it-row:after {
	content: '';
	display: block;
	height: 100%;
	width: 1px;
	border-left: 1px dashed var(--green);
	position: absolute;
  top: 50%;
  left: 14px;
}
.r-it-row:last-child:after {
	display: none;
}

.r-it-content {
	flex: 1;
	color: var(--grey_2);
}

.r-jno {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid var(--green);
	color: #fff;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: 'Inter';
	background: var(--green);
	font-size: 12px;
	z-index: 2;
}


.r-choice-hotels.r-choice-trips .rc-hotel {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.r-choice-hotels.r-choice-trips .rc-name {
	display: flex;
	gap: 8px;
}


.r-list-trips .r-trip .r-trip-dayno {
	position: absolute;
	width: 24px;
	height: 24px;
	background: var(--yellow);
	border-radius: 50%;
	color: #000;
	top: 8px;
	left: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}

.r-list-trips .r-trip .r-trip-dateimg {
	position: absolute;
	color: #fff;
	top: 8px;
	left: 151px;
	font-size: 12px;
	font-weight: 700;
	width: auto;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
}

.r-list-trips .r-trip .r-trip-marker {
	position: absolute;
	top: 8px;
	right: 8px;
	width: auto;
	gap: 8px;
}

.r-list-trips .r-trip .r-trip-marker svg  path {
	fill: var(--green);
}

.r-trip-info-itinerary {
	color: var(--grey_1);
	font-style: italic;
	display: flex;
	gap: 8px;
	font-size: 12px;
	align-items: center;
    justify-content: flex-start;
}

.r-trip-info-itinerary svg  path {
	fill: var(--green);
}

.opacity50 {
	opacity: .3;
	transition: opacity .2s;
}

.rc-hotel .btn {
  margin: auto;
  border: none;
  font-size: 12px;
  padding: 0px 24px;
  margin-bottom: 16px;
  border-radius: 10px;
}

.r-map-trip-duration {
	position: absolute;
	z-index: 2;
	background: #fff;
	top: 8px;
	left: 8px;
	border-radius: 10px;
	box-shadow: var(--drop_large);
	padding: 10px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.r-map-trip-duration > div {
	display: flex;
	gap: 10px;
	align-items: center;
}

.r-map-trip-duration > div svg {
	fill: var(--green);
}


.txt-red {
	color: var(--red);
}


.recap-form textarea {
	border-radius: 20px;
	padding: 16px 24px;
	border: none;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	color: var(--grey_2);
	border: 1px solid #f3f3f3;
	box-shadow: var(--drop_large);
	box-shadow: none;
	width: 100%;
}

.recap-form textarea:focus {
  outline: none;
  border: 1px solid var(--green);
}



.gm-ui-hover-effect {
	z-index: 2;
}

.iw-map-trips {
	position: relative;
	z-index: 0;
}

.iw-map-trips > a {
	position: absolute;
  top: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;color: #000;text-decoration: none;outline: none;
}


.chosen-container.chosen-container-multi {
	margin-left: auto;
}

.chosen-container-multi .chosen-choices {
	border-radius: 10px;
}

.chosen-container-multi .chosen-choices li.search-choice {
	background: var(--yellow);
	color: #000;
	box-shadow: none;
	border-radius: 20px;
  border-color: var(--yellow);
}