/* Stylesheet for Custom CSS */
.select-lang {
	cursor: pointer;
	position: relative;
	width: 100px;
	color: #fff;
	position: relative;
	font-size: 20px;
	text-transform: uppercase;
}
.select-lang:hover .options-lang {
	display: block;
}

.options-lang {
	position: absolute;
	width: 100%;
	z-index: 9;
	top: 0;
	left: 0;
	padding-top: 44px;
	background-color: rgba(0,0,0,0.8);
	box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
	display: none;
}

.options-lang ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.options-lang ul li {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.option-lang {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100px;
	padding: 10px 15px;
	padding-right: 30px;
}
.option-lang:hover {
	background-color: #346b91;  
	color: white;
}
.current-lang .option-lang:after {
	content: "\f0d8";
	font-family: "Fontawesome";
	position: absolute;
	right: 10px;   
	transform: rotate(180deg);
}
.current-lang:hover .option-lang:after {
	transform: rotate(0);
}

.current-lang {
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 10;
	position: relative;
}

.flag {
	zoom: .2;
}


.select-currency {
	cursor: pointer;
	position: relative;
	width: 100px;
	color: #fff;
	position: relative;
	font-size: 20px;
	text-transform: uppercase;
}
.select-currency:hover .options-currency {
	display: block;
}

.options-currency {
	position: absolute;
	width: 100%;
	z-index: 9;
	top: 0;
	left: 0;
	padding-top: 44px;
	background-color: rgba(0,0,0,0.8);
	box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
	display: none;
}

.options-currency ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.options-currency ul li {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.option-currency {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100px;
	padding: 10px 15px;
	padding-right: 30px;
}
.option-currency:hover {
	background-color: #346b91;  
	color: white;
}
.current-currency .option-currency:after {
	content: "\f0d8";
	font-family: "Fontawesome";
	position: absolute;
	right: 10px;   
	transform: rotate(180deg);
}
.current-currency:hover .option-currency:after {
	transform: rotate(0);
}

.current-currency {
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 10;
	position: relative;
}


.footer-bottom a {
  color: #fff;
}

.footer-bottom a:hover {
  color: #fdb531;
}

.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 13.33333px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 40px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  /*z-index: 1000;*/
}
.option-input:hover {
  background: #9faab7;
}
.option-input:checked {
  background: #40e0d0;
}
.option-input:checked::before {
  width: 40px;
  height: 40px;
  display:flex;
  content: '\f00c';
  font-size: 25px;
  font-weight:bold;
  position: absolute;
  align-items:center;
  justify-content:center;
  font-family:'Font Awesome 5 Free';
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #40e0d0;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
.option-input.radio {
  border-radius: 50%;
}
.option-input.radio::after {
  border-radius: 50%;
}

@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}



.gallery-slider {
  position: relative;
  overflow: hidden;
  background-color: #e6e6e6;
  margin-top: 10px;
}
.gallery-slider__images {
  margin: 0;
  position: relative;
}
.gallery-slider__images .item {
  padding: 0;
}
.gallery-slider__images .item .img-fill {
  text-align: center;
  padding: 10px;
  height: 200px;
}
@media screen and (min-width: 576px) {
  .gallery-slider__images .item .img-fill {
    height: 300px;
  }
}
@media screen and (min-width: 720px) {
  .gallery-slider__images .item .img-fill {
    height: 450px;
  }
}
.gallery-slider__images .item .img-fill img {
  display: inline-block;
  position: relative;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-slider__images .next-arrow, .gallery-slider__images .prev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 0 none;
  text-align: center;
  color: #FFF;
  z-index: 5;
  opacity: 0;
  transition: all 0.5s;
  outline: 0;
}
.gallery-slider__images .next-arrow svg, .gallery-slider__images .prev-arrow svg {
  top: 4px;
}
.gallery-slider__images .next-arrow {
  right: 25px;
}
.gallery-slider__images .prev-arrow {
  left: 25px;
}
.gallery-slider__images:hover .next-arrow, .gallery-slider__images:hover .prev-arrow {
  opacity: 1;
}
.gallery-slider__images .caption {
  width: 100%;
  position: relative;
  text-align: center;
  display: block;
  opacity: 1;
  transition: opacity 0.15s;
}
.gallery-slider__images .caption.hide {
  opacity: 0;
}
.gallery-slider__thumbnails {
  position: relative;
  top: auto;
  left: 0px;
  width: 100%;
  z-index: 4;
  transition: all 0.8s;
  margin: 0;
  padding: 13px 0;
}
.gallery-slider__thumbnails:before, .gallery-slider__thumbnails:after {
  content: "";
  display: block;
  width: 100px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  pointer-events: none;
}
.gallery-slider__thumbnails:before {
  left: 0;
  background: linear-gradient(to right, #e6e6e6 0%, rgba(230, 230, 230, 0) 100%);
}
.gallery-slider__thumbnails:after {
  right: 0;
  background: linear-gradient(to right, rgba(230, 230, 230, 0) 0%, #e6e6e6 100%);
}
.gallery-slider__thumbnails .item .img-fill {
  height: 70px;
  background: white;
  cursor: pointer;
  border: 5px solid white;
  text-align: center;
}
.gallery-slider__thumbnails .item .img-fill img {
  opacity: 0.5;
  transition: all 0.5s;
  display: inline-block;
  position: relative;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-slider__thumbnails .item:hover .img-fill img {
  opacity: 1;
}
.gallery-slider__thumbnails .item.slick-center img {
  opacity: 1;
}
.gallery-slider__thumbnails .next-arrow, .gallery-slider__thumbnails .prev-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #FFF;
  border: 0 none;
  z-index: 15;
}
.gallery-slider__thumbnails .next-arrow svg, .gallery-slider__thumbnails .prev-arrow svg {
  top: 2px;
}
.gallery-slider__thumbnails .next-arrow {
  right: 0px;
}
.gallery-slider__thumbnails .prev-arrow {
  left: 0px;
}
.gallery-slider .next-arrow, .gallery-slider .prev-arrow {
  cursor: pointer;
}
.gallery-slider .next-arrow svg, .gallery-slider .prev-arrow svg {
  width: 18px;
  height: 18px;
  position: relative;
}
.gallery-slider .img-fill {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.gallery-slider .slick-slider {
  margin: 0 -7.5px;
  padding: 0 !important;
}
.gallery-slider .slick-slide {
  float: left;
  padding: 0 7.5px;
  outline: none;
}

