* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none !important;
}

:root {
  --primaryColor: #FBB83C;
  --SecondaryColor: #EA317E;
  --ThirdColor: #4DB7B3;
  --BgColor: #FBFBFD;
  --successColor: #3E8E41;
  --linear-gradient: linear-gradient(to right, #093f5366, #00000066);
  --mainColor1: rgba(102, 102, 102, 1);
  --mainColor2: rgb(0, 0, 0);
  --mainColor3: #31ba44;
  --mainColor4: #ffffff;
  --mainColor5: #f2e7d8;
  --mainColor6: #1F1F1F;
  --mainColor7: #646464;
  --mainColor8: #666666;
  --mainColor9: #B3B3B3;
  --mainColor10: #4D4D4D;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.loading-screen {
  z-index: 11111111111111110000;
  display: flex;
}

.bg-ThirdColor {
  background-color: var(--ThirdColor);
}

.slider-home {
  height: 60vh;
}

.header-div {
  background-color: rgba(0, 0, 0, 0.39);
}

.text-secondary {
  color: var(--mainColor1) !important;
}

.light-gray {
  color: rgb(153, 153, 153);
}

.third-color {
  color: var(--ThirdColor);
}

.bg-third-color {
  background-color: var(--ThirdColor);
}

.mainColor1 {
  color: var(--mainColor1);
}

body {
  font-size: 1rem;
  color: rgb(27, 27, 27);
  position: relative;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.bg-primary-color {
  background-color: var(--primaryColor) !important;
}

.primary-color {
  color: var(--primaryColor) !important;
}

.bg-Secondary-color {
  background-color: var(--SecondaryColor) !important;
}

.Secondary-color {
  color: var(--SecondaryColor) !important;
}

.search {
  top: 96%;
}

.search .checkin:first-child::after {
  display: none;
}

.choose-city::after {
  display: none;
}

.checkin {
  position: relative;
}

.checkin::after {}

.rate {
  background-color: var(--ThirdColor);
  background-image: url("../imgs/home/ICLOUD.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: 120px;
  text-align: center;
  color: var(--mainColor4);
}

.rate h4 {
  font-weight: bold;
  font-size: 54px;
}

.rate h4::after {
  content: "+";
  font-weight: 600;
  padding-inline: 3px;
}

.rate h5 {
  font-size: 24px;
  font-weight: 500;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

.card:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
}

.card:hover .img-card {
  border-radius: inherit;
}

footer {
  background-color: var(--mainColor2) !important;
}

footer form div {
  color: var(--mainColor4);
}

footer form div:hover {
  cursor: pointer;
}

footer .nav-link {
  font-size: smaller;
  color: var(--mainColor4);
}

footer .nav-link:hover {
  cursor: pointer;
  border-radius: 3%;
  color: var(--mainColor4);
  background-color: var(--mainColor4);
  color: var(--mainColor2);
}

footer .social li a {
  width: 50px;
  height: 50px;
  background-color: var(--primaryColor);
  font-size: 25px;
}

.floatwhatsapp,
.back-to-top {
  cursor: pointer;
  font-size: 25px;
  border-radius: 50%;
  box-shadow: 1px 1px 2px #686868;
  text-align: center;
  color: var(--mainColor4);
  position: fixed;
  right: 4%;
  width: 45px;
  height: 45px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  z-index: 100;
  border-radius: 50%;
}

.floatwhatsapp {
  background-color: var(--mainColor3);
  bottom: 10px;
  display: flex;
  transition: transform 0.2s ease-in-out;
}

.floatwhatsapp:hover {
  transform: translateY(-3px);
}

.back-to-top {
  background-color: transparent;
  border: 2px solid var(--primaryColor);
  display: flex;
  bottom: 100px;
  color: var(--primaryColor);
  z-index: 111;
  transition: transform 0.2s ease-in-out;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.social li {
  list-style: none;
}

.social li a {
  opacity: 100% !important;
  width: 30px;
  height: 30px;
  background-color: var(--mainColor2);
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  margin: 0 7px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mainColor4);
}

.social li a::before {
  content: "";
  position: absolute;
  top: 101%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}

.social li a .icon {
  position: relative;
  transition: 0.5s;
  z-index: 3;
  color: var(--mainColor4);
  opacity: 1;
}

.social li a:hover .icon {
  color: var(--primaryColor);
  transform: rotateY(360deg);
}

.social li a:hover::before {
  top: 0;
}

.social li a:before {
  background: var(--mainColor4);
}

.cardsimg img,
.cardsimg video {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  cursor: pointer;
}

.card {
  cursor: pointer;
}

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

.form-control:focus {
  border: 1px solid #000000 !important;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.form-control[disabled] {
  background: var(--ThirdColor);
}

.regular .img-card {
  overflow: hidden;
}

.regular .img-card img {
  transition: all 0.8s ease;
}

.regular .img-card img:hover {
  transform-origin: 50% 50%;
  cursor: pointer;
  margin-top: 0%;
}

.img-card {
  overflow: hidden;
}

.img-card img {
  transition: all 0.8s ease;
}

.img-card img:hover {
  transform: scale(1.05);
  transform-origin: 50% 50%;
  cursor: pointer;
}

marquee img {
  max-width: 300px;
}

footer {
  font-size: 15px;
}

footer .list-footer {
  display: flex;
  flex-wrap: wrap;
}

footer .list-footer li {
  width: 50%;
}

footer span {
  color: var(--mainColor4);
  font-weight: 500;
}

footer a {
  color: var(--mainColor4);
  opacity: 90%;
  font-size: 15px;
}

footer a:hover {
  color: var(--mainColor4);
  opacity: 100%;
}

footer h4 {
  color: var(--mainColor4);
}

#navBar .nav-link.active {
  opacity: 100%;
}

h6,
.h6 {
  font-size: 20px !important;
  font-weight: 300;
}

.border-black {
  border-color: var(--mainColor2) !important;
}

a:hover {
  cursor: pointer;
}

.emcan {
  font-size: 14px;
  text-align: end;
}

.emcan span {
  font-size: inherit !important;
}

.main-navbar .nav-link span {
  position: relative;
}

.main-navbar .nav-link span::after {
  content: "";
  position: absolute;
  width: 99%;
  transform: scaleX(0);
  height: 3px;
  bottom: -5px;
  border-radius: 12px !important;
  left: 0;
  background-color: var(--mainColor4);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.main-navbar .nav-link.active span {
  font-weight: 700;
}

.main-navbar .nav-link:hover span:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

a.login,
button.login {
  background-color: rgb(35, 115, 169);
  transition: 0.7s;
  font-weight: 400;
  border-radius: 8px;
  font-size: 16px;
}

a.login:hover,
button.login:hover {
  background-color: #e7eff1;
  color: rgb(35, 115, 169);
}

p {
  font-size: 16px !important;
  font-weight: 400;
}

label {
  font-size: 14px;
}

button,
a.btn {
  transition: 0.7s !important;
  border-radius: 8px;
}

/* Support */
footer li,
.dropdown-menu li:has(.dropdown-item) {
  transition: transform 0.3s ease-in-out !important;
}

footer li:hover,
.dropdown-menu li:has(.dropdown-item):hover {
  cursor: pointer;
  transform: translateX(5px) !important;
}

.form-check .form-check-input {
  margin-left: 0em;
  margin-inline: 3px;
}

.img-card-container {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img-card-container img {
  max-height: 90%;
}

.img-card {
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.w-img-popup {
  width: 20%;
}

.gray-div {
  transition: all 0.8s ease;
}

.gray-div:hover {
  transform: scale(1.04);
  transform-origin: 50% 50%;
  cursor: pointer;
  box-shadow: rgba(136, 184, 81, 0.596) 2px 5px 5px -5px, rgba(0, 0, 0, 0.3) 0px 3px 1px -8px;
}

.regular .card {
  transition: all 0.9s ease;
}

.img-card-container {
  overflow: hidden;
}

.img-card-container img {
  transition: all 0.8s ease;
}

.img-card-container img:hover {
  transform: scale(1.1);
  transform-origin: 50% 50%;
  cursor: pointer;
  margin-top: 0%;
}

.navbar-brand img {
  width: 150px;
  transition: all 0.8s ease;
}

.navbar-brand img:hover {
  transform: scale(1.2);
  transform-origin: 50% 50%;
}

h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 35px;
}

h4 span {
  color: var(--SecondaryColor);
}

.rating .rounded-card {
  transition: all 1s ease !important;
  border-radius: 28px;
  box-shadow: hsla(0, 0%, 0%, 0.24) 4px 7px 7px -7px, rgba(0, 0, 0, 0.3) 0px 4px 3px -8px;
}

.rating .rounded-card:hover {
  transform: scale(1.05) !important;
  transform-origin: 50% 50%;
  box-shadow: hsla(0, 0%, 0%, 0.24) 4px 5px 5px -5px, rgba(0, 0, 0, 0.3) 0px 3px 1px -8px;
  cursor: pointer;
}

.container-home {
  z-index: 1;
  background-color: var(--primaryColor);
  color: var(--mainColor4);
}

.arrow {
  transition: transform 0.3s ease-in-out !important;
}

.arrow:hover {
  transform: translateX(5px);
}

h2,
.h2 {
  font-weight: 700;
  font-size: 44px;
  color: var(--mainColor4);
  line-height: 70px;
}

h2 span,
.h2 span {
  background-color: var(--SecondaryColor);
  color: var(--mainColor2);
  padding-inline: 0.5rem !important;
  margin-inline: 0.3rem !important;
}

h3,
.h3 {
  font-weight: 500;
  font-size: 25px !important;
  line-height: 35px;
  margin-bottom: 0px;

}

h3 span:first-child,
.h3 span:first-child {
  padding-inline: 13px !important;

  height: 35px;
  display: flex;
  vertical-align: middle;

  justify-content: center;
  align-items: center;
  margin: 0px;
}


h3:has(.span-bg) {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

h3 span.span-bg,
.h3 span.span-bg {
  color: var(--mainColor4) !important;
  background-color: var(--SecondaryColor);
}

a.h2 {
  font-weight: 500;
}

a.h2 span:hover::after {
  transform: scaleX(0);
  transform-origin: bottom right;
}

.rating.bg-img {
  background-image: url("../imgs/home/e43f3adbbdb167c86d3140f7ab5d80f0.png");
}

.marquee .slick-slide {
  height: 190px;
  max-width: 150px;
  display: flex;
  align-items: center;
}

.marquee .slick-slide div {
  height: 100%;
  overflow: hidden;
}

.marquee .slick-slide div img {
  max-height: 100%;
  max-width: 90%;
}

span.arrow::after {
  display: none;
}

.bg-img.about {
  background-image: url("../imgs/home/Wireframe - 1.png");
  background-size: cover;
  background-position: top;
}

.vision-mission {
  margin-bottom: 300px;
}

.info-container .about-img-css {
  background-attachment: local;
}

.info-container .vision-container {
  background-image: url("../imgs/about/vision.svg");
}

.info-container .row:nth-child(odd) {
  flex-direction: row-reverse;
}

.info-container .row:nth-child(odd) .vision-mission .row {
  justify-content: start;
}

.info-container .row:nth-child(odd) .vision-mission .row .vision-mission-description {
  margin-inline-start: 150px;
  margin-inline-end: 0px;
}

.vision-mission-description .container-home {
  top: 100px;
}

.vision-mission-description.squre-after::after {
  z-index: auto;
  top: 200px;
  bottom: auto;
}

.container-service .ul-before {
  position: relative;
}

.container-service .ul-before::before {
  position: absolute;
  content: "";
  height: 30px;
  background-color: #30B7E9;
  width: 30px;
}

.container-service .ul-before::after {
  position: absolute;
  content: "";
  height: 50px;
  background-color: #30B7E9;
  width: 50px;
  left: 100%;
  bottom: 50%;
}

.container-service ul {
  display: flex;
  flex-wrap: wrap;
}

.container-service ul li {
  width: 50%;
}

.container-service .row .label-page {
  color: rgb(22, 157, 207);
}

.container-service .row .squre-after-service {
  position: relative;
}

.container-service .row .squre-after-service::after {
  position: absolute;
  content: "";
  height: 250px;
  width: 300px;
  border: 3px solid #30B7E9;
  border-radius: 1px;
  bottom: -30px;
}

.container-service .row:nth-child(even) .squre-after-service::after {
  right: -30px;
  z-index: -1;
}

.container-service .row:nth-child(even) .about-img-css {
  background-image: url("../imgs/home/Wireframe - 1.png");
}

.container-service .row:nth-child(odd) .squre-after-service::after {
  bottom: -30px;
  left: -30px;
}

.first {
  font-size: 14px !important;
  font-weight: 400;
}

.img-card-protofilo {
  max-height: 350px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img-card-protofilo .sale span {
  min-width: 250px;
}

.ul-number {
  counter-reset: count 0;
}

.ul-number li {
  position: relative;
  counter-increment: count 1;
}

.ul-number li::before {
  position: absolute;
  left: -15px;
  counter-increment: section;
  content: counter(count, decimal) ".";
}

.gallary .slick-arrow {
  position: absolute;
  background-color: var(--primaryColor);
}

.gallary .slick-arrow.slick-disabled {
  background-color: rgb(196, 196, 196);
}

.gallary button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  position: absolute;
  z-index: 111;
  right: 0;
  top: 100%;
}

.gallary .prev-button {
  right: 45px;
}

.img-team-cards .first {
  width: -moz-fit-content;
  width: fit-content;
}

.img-team-cards .img-card {
  transition: transform 0.2s ease-in-out;
  height: 150px;
  overflow: hidden;
  width: 150px;
  border-radius: 50% !important;
}

.img-team-cards .img-card img {
  max-height: 160%;
}

.img-team-cards .img-card img:hover {
  transform: scale(1.2);
}

.gallary-container .img-card {
  position: relative;
  height: 250px;
}

.product-hover {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  border-radius: 100%;
  transform: scale(0);
  transition: all 0.3s ease;
}

.grid-item:hover .product-hover {
  opacity: 1;
  border-radius: 0%;
  transform: scale(1);
  transition: all 0.3s ease;
}

.grid-item-descr:hover .product-hover {
  opacity: 1;
  border-radius: 0%;
  transform: scale(1);
  transition: all 0.3s ease;
}

.product-hover-last {
  background-color: rgba(30, 30, 30, 0.5019607843);
}

.img-box {
  box-sizing: content-box;
  margin: 10px;
  max-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  background-color: white;
}

.img-box img {
  height: auto;
  width: 100%;
  transform: scale(1);
  transition: transform 0.4s ease;
  border-radius: inherit;
}

.small-img-sevice img {
  transition: transform 0.2s ease-in-out;
}

.small-img-sevice img:hover {
  cursor: pointer;
  transform: scale(1.07);
}

.caption {
  position: absolute;
  bottom: 5px;
  left: 20px;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
  bottom: 0px;
  right: 0;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
}

.img-box:hover img {
  transform: scale(1.1);
}

.img-box:hover .transparent-box {
  background-color: rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
  transform: translateY(-20px);
  opacity: 1;
}

.img-box:hover {
  cursor: pointer;
}

.caption>p:nth-child(2) {
  font-size: 0.8em;
}

.opacity-low {
  opacity: 0.5;
}

.nav-pills .nav-link {
  background-color: rgb(247, 247, 247);
  color: var(--mainColor2);
}

.nav-pills .nav-link.active,
.nav-pills .nav-pills .show>.nav-link {
  border-radius: 0px;
}

.img-thumbnail {
  border: none !important;
}

.LanguageMenu .lan {
  font-weight: 600;
  font-size: 16px;
}

.LanguageMenu svg {
  transition: transform 0.2s ease-in-out;
}

.LanguageMenu svg:hover {
  transform: rotateY(180deg);
}

footer img {
  width: 170px;
}

.bg-img.service {
  background-image: url("../imgs/background/Wireframe - 2.svg");
  background-position: center center;
  background-attachment: local;
  background-size: cover;
}

.bg-img.gallary {
  background-image: url("../imgs/background/gallary.svg");
  background-position: center center;
  background-attachment: local;
  background-size: cover;
}

.bg-img.contactus {
  background-image: url("../imgs/background/Wireframe - 3.svg");
  background-position: center center;
  background-attachment: local;
  background-size: cover;
}

.bg-img.team {
  background-image: url("../imgs/background/Wireframe - 6.svg");
  background-position: center center;
  background-attachment: local;
  background-size: cover;
}

.bg-img.portfolio {
  background-image: url("../imgs/background/Wireframe - 5.svg");
  background-position: center center;
  background-attachment: local;
  background-size: cover;
}

.bg-img.bg-policy {
  background-image: url("../imgs/home/e43f3adbbdb167c86d3140f7ab5d80f0.png");
  background-position: center center;
  background-attachment: local;
  background-size: cover;
}

.fw-medium {
  font-weight: 500 !important;
}

.border-thirdcolor {
  border-color: var(--ThirdColor) !important;
  color: var(--ThirdColor);
}

.border-thirdcolor:hover {
  background-color: var(--ThirdColor);
}

.primary-color-opecity {
  background-color: rgb(253, 219, 155);
}

.btn {
  transition: transform 0.3s ease-in-out !important;
}

.btn:hover {
  cursor: pointer;
  transform: translateY(-2px) !important;
  color: var(--mainColor2) !important;
}

.breadcrumb-item.active {
  color: var(--primaryColor);
  font-size: 16px;
}

.choose-city span::after {
  content: "...";
}

.Discover {
  font-size: 36px;
  line-height: 61px;
}

.input-group.position-relative:has(.choose-city:focus, #checkOut:focus, #checkIn:focus) {
  position: relative;
}

.input-group.position-relative:has(.choose-city:focus, #checkOut:focus, #checkIn:focus)::after {
  content: "";
  position: absolute;
  width: 20%;
  transform-origin: right bottom;
  height: 4px;
  transform: scaleX(0);
  transform: scaleX(1);
  transform-origin: bottom left;
  bottom: -5px;
  border-radius: 12px !important;
  background-color: var(--primaryColor);
  left: 0;
  transition: transform 0.25s ease-out;
  z-index: 11;
  transform-origin: bottom left;
}

.liked-icon {
  transition: 0.7s !important;
  z-index: 1;
}

.arabicVersion .liked-icon {
  left: 10px;
  right: auto;
}

.arabicVersion .form-select {

  background-position: left 0.75rem center;

}

.liked-icon path:hover,
.liked-icon svg:hover {
  fill: rgb(163, 1, 1) !important;
}

.heart-icon svg {
  fill: rgb(163, 1, 1) !important;
}

.prev-button,
.next-button {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-color: inherit;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 100%;
  position: absolute;
}

.prev-button:hover,
.next-button:hover {
  background-color: var(--SecondaryColor);
  color: var(--mainColor4);
}

.prev-button {
  left: 46%;
}

.next-button {
  right: 46%;
}

input[type=range]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #17a2b8;
  pointer-events: auto;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.choose-city span::after {
  content: "...";
}

h5,
.h5 {
  font-size: 18px !important;
}

ul {
  list-style: none;
  list-style-position: inside;
}

.card-inf {
  font-size: 14px;
}

.rate-icon,
.liked-icon {
  z-index: 1;
}

a.bg-primary-color {
  color: var(--mainColor4);
}

.bg-third-color {
  background-color: var(--ThirdColor);
}

.slider {
  width: 100%;
  margin: auto;
}

.slider .slide {
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
}

.slider .slide img {
  border-radius: 50%;
}

.slider3 .slick-track {
  display: flex;
  align-items: center;
}

.container-icon {
  width: 90px;
  height: 90px;
  background-color: rgb(254, 237, 205);
}

.login {
  background-color: rgb(35, 115, 169);
}

::-moz-selection {
  color: #fff;
  background: #17a2b8;
}

::selection {
  color: #fff;
  background: #17a2b8;
}

header h2 {
  font-size: 24px;
  font-weight: 600;
}

.price-input {
  width: 100%;
  display: flex;
  margin: 30px 0 35px;
}

.price-input .field {
  display: flex;
  width: 10%;
  height: 45px;
  align-items: center;
}

.field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 19px;
  border: none;
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}

.slider .progress {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background: #17a2b8;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=range]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #17a2b8;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type=range]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #17a2b8;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* Support */
.support-box {
  top: 2rem;
  position: relative;
  bottom: 0;
  text-align: center;
  display: block;
}

.b-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.b-btn.paypal i {
  color: blue;
}

.b-btn:hover {
  text-decoration: none;
  font-weight: bold;
}

.b-btn i {
  font-size: 20px;
  color: yellow;
  margin-top: 2rem;
}

.gray-icon {
  fill: none;
}

.gray-icon.fill {
  fill: rgb(249, 160, 0);
}

.gray-icon:hover:not(.fill) {
  fill: rgb(249, 160, 0);
  cursor: pointer;
}

.rates label svg {
  transition: all 0.3s ease;
}

.rates:hover~.rates label svg,
.rates label:hover svg {
  fill: rgb(249, 160, 0);
}

.grid-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px 24px;
  grid-template-areas: "img1 img1" "img2 img3";
}

.grid-imgs div {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.grid-imgs .img1 {
  grid-area: img1;
}

.grid-imgs .img2 {
  grid-area: img2;
}

.grid-imgs .img3 {
  grid-area: img3;
}

.grid-imgs div:nth-child(-n+3) {
  position: relative;
  cursor: pointer;
}

.product-hover-last span {
  font-size: 36px;
  font-weight: 600;
}

.progress-bar {
  background-color: var(--primaryColor);
}

.progress {
  height: 12px;
}

div .border-bottom:last-child {
  border: none !important;
}

.search-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 204, 51, 0.34);
  border-radius: 50%
}

.header-img {
  height: 200px;
}

.tab {
  display: none;
}

.step .numder {
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 25px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  opacity: 0.5;
}

.step .numder span:nth-child(2) {
  display: none;
}

.step.active .numder {
  opacity: 1;
  background-color: var(--primaryColor);
  color: var(--mainColor4);
}

/* Mark the steps that are finished and valid: */
.step.finish .numder {
  background-color: #04AA6D !important;
  opacity: 1;
  color: var(--BgColor);
}

.step.finish .numder span:nth-child(1) {
  display: none;
}

.step.finish .numder span:nth-child(2) {
  display: block;
}

.profile-picture {
  opacity: 1;
  height: 150px;
  width: 150px;
  position: relative;
  overflow: hidden;
  background: url("../imgs/AddCourses/ant-design_cloud-upload-outlined.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50% 50%;
}

.file-uploader:hover {
  cursor: pointer !important;
}

.file-uploader-upload {
  background-color: var(--mainColor4);
  border-color: var(--SecondaryColor);
  border-radius: 5px;
  border: 1px solid var(--SecondaryColor);
  margin-inline: 10px;
  color: var(--SecondaryColor) !important;
  padding-block: 5px;
  transition: 0.7s !important;
  cursor: pointer;
}

.file-uploader-upload:hover {
  background-color: var(--SecondaryColor);
  color: var(--mainColor4) !important;
}

.prevBtn {
  background-color: var(--mainColor4);
  border: 1px solid rgb(51, 148, 213);
  color: rgb(51, 148, 213) !important;
}

.prevBtn:hover {
  background-color: rgb(51, 148, 213);
  border: 1px solid rgb(51, 148, 213);
  color: rgb(255, 255, 255) !important;
}

.nextBtn {
  background-color: rgb(51, 148, 213);
  border: 1px solid rgb(51, 148, 213);
  color: rgb(255, 255, 255) !important;
}

.nextBtn:hover {
  background-color: rgb(51, 148, 213);
  border: 1px solid rgb(51, 148, 213);
  color: rgb(255, 255, 255) !important;
}

.backBtn {
  background-color: var(--mainColor4);
  border: 1px solid rgb(51, 148, 213);
  color: rgb(51, 148, 213) !important;
}

.backBtn:hover {
  background-color: rgb(51, 148, 213);
  border: 1px solid rgb(51, 148, 213);
  color: rgb(255, 255, 255) !important;
}

.color-calendar.basic .calendar__arrow-inner::before {
  color: var(--primaryColor);
}

.color-calendar {
  width: 100%;
}

.color-calendar .calendar__days {
  grid-template-columns: repeat(7, minmax(35px, 95px)) !important;
}

.color-calendar.basic .calendar__weekdays {
  grid-template-columns: repeat(7, minmax(20px, 105px)) !important;
}

.color-calendar .calendar__header {
  grid-template-columns: repeat(7, minmax(20px, 101px)) !important;
}

.color-calendar.basic .calendar__days .calendar__day-selected .calendar__day-box {
  background-color: var(--ThirdColor);
  box-shadow: 0 3px 15px -5px var(--ThirdColor);
  color: var(--mainColor4);
}

.calendar__day-active {
  color: var(--mainColor2);
}

.color-calendar.basic .calendar__days .calendar__day-today .calendar__day-box {
  box-shadow: 0 0px 0px 0px var(--primaryColor);
  background-color: transparent;
}

.calendar__day.calendar__day-active.calendar__day-today {
  color: var(--mainColor2) !important;
}

.color-calendar.basic .calendar__days .calendar__day-selected {
  color: var(--mainColor4);
  font-weight: 700;
}

.day.active label {
  background-color: var(--primaryColor);
  color: white;
}

.day.active label:hover {
  cursor: pointer;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: transparent;
  box-shadow: 0px !important;
}

input.invalid {
  background-color: #f8d7da;
}

.charts div {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 12px;
  padding-inline: 2px;
  gap: 5px;
}

.charts div::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 7.5px;
  background-color: #69b6d5;
}

.charts .Views::before {
  background-color: rgba(255, 99, 132, 1);
}

.charts .Booking::before {
  background-color: rgba(54, 162, 235, 1);
}

.charts .Revenue::before {
  background-color: rgba(75, 192, 192, 1);
}

.card-dashbored div:first-child .card {
  background-color: var(--primaryColor);
}

.card-dashbored div:nth-child(2) .card {
  background-color: var(--SecondaryColor);
}

.card-dashbored div:last-child .card {
  background-color: rgb(51, 148, 213);
}

.cards-clients .card:nth-child(odd) {
  background-color: var(--ThirdColor);
}

.cards-clients .card:nth-child(even) {
  background-color: var(--SecondaryColor);
}

.upgrade-slider {
  background-color: rgb(51, 148, 213);
}

.slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
}

.slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  margin-inline: 3px;
  border: none;
  border-radius: 100%;
  background-color: #b1b1b1;
  text-indent: -9999px;
}

.slick-active button {
  background-color: var(--primaryColor);
}

.upgrade-slider .slick-list {
  position: relative;
}

.upgrade-slider .slick-list::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0%;
  height: 50px;
  left: 0%;
  right: 0%;
  background-color: #ffffff;
}

.robot {
  @import url(https://fonts.googleapis.com/css?family=Roboto);
}

.robot .input-container {
  background-color: rgb(249, 249, 249);
  border: 1px solid #d3d3d3;
  height: 74px;
  width: 300px;
  font-family: Roboto, sans-serif;
  display: inline-block;
}

.robot .input-container input {
  margin-inline: 10px;
  height: 25px;
  width: 25px;
}

.robot img {
  width: 32px;
  display: inline;
  margin-left: -60px;
}

.robot span,
.robot a {
  color: rgb(155, 155, 155);
}

.robot .recaptcha {
  font-size: 12px;
  margin-left: -55px;
  position: relative;
  bottom: -10px;
}

.robot a,
.robot .dash {
  font-size: 8px;
  text-decoration: none;
  display: inline;
  position: relative;
  top: -22px;
  right: -232px;
}

.robot a:hover {
  text-decoration: underline;
}

.robot .triangle {
  width: 0px;
  height: 0px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgb(204, 204, 204);
  border-top: 7px solid transparent;
  position: relative;
  left: 10px;
  top: -55px;
}

.robot .not-human {
  width: 340px;
  height: 200px;
  background-color: white;
  border: 1px solid rgb(204, 204, 204);
  padding: 15px;
  position: relative;
  top: -55px;
  left: 3px;
}

.robot .not-human .captcha-code {
  padding: 15px 0;
  border: none;
  border-bottom: 1px solid rgb(204, 204, 204);
  font-size: 18px;
  width: 90%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.robot .not-human .captcha-code:focus {
  outline: none;
  border-bottom: 1px solid rgb(74, 144, 226);
}

.robot .not-human img {
  display: inline-block;
  position: relative;
  left: 75px;
  top: -80px;
  width: 300px;
  height: 57px;
}

.robot .not-human .line {
  width: 370px;
  height: 1px;
  background-color: rgb(204, 204, 204);
  margin-top: 90px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.robot .not-human .img {
  width: 24px;
  height: 24px;
  position: relative;
  top: -36px;
  margin: 0 4px 75px 4px;
  display: inline-block;
  cursor: pointer;
  background-size: 24px 24px;
  opacity: 0.55;
}

.robot .not-human .img.replay {
  background: url(https://www.gstatic.com/recaptcha/api2/refresh.png);
}

.robot .not-human .img.audio {
  background: url(https://www.gstatic.com/recaptcha/api2/audio.png);
}

.robot .not-human .img.info {
  background: url(https://www.gstatic.com/recaptcha/api2/info.png);
}

.robot .not-human .img:hover {
  opacity: 1;
}

.robot .not-human .verify {
  float: right;
  position: relative;
  top: -42px;
  margin-right: 5px;
  background-color: rgb(74, 144, 226);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
}

.robot .disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.nav-link:has(span.icons-nav) {
  transition: transform 0.4s;
}

.nav-link:has(span.icons-nav):hover {
  transform: translateX(3px);
}

.dashbord-button {
  display: none;
}

.arabicVersion .text-start {
  text-align: start !important;
}

.arabicVersion .accordion-button::after {
  margin-right: auto;
  margin-left: 0px;
}

.arabicVersion .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.slider1 img {
  min-height: 100%;
  max-width: 120%;
}

.dropdown-toggle::after {
  display: none;
}

.code .active {
  background-color: var(--ThirdColor);
  color: var(--mainColor2);
}

.copono-code {
  width: 450px;
}

.arabicVersion .flag-container {
  direction: ltr;
}

.message-error {
  color: red;
  font-size: 12px;
}

/*# sourceMappingURL=style.css.map */

.absolute-sm {
  position: absolute;
}

/* .arabicVersion .search .form-select {
  background-position: right 0.75rem center; 
} */

.arabicVersion .checkin::after {}

.arabicVersion .selected-flag:has(.eg) .selected-dial-code {
  padding-right: 22px !important;
}

.arabicVersion .selected-flag:has(.eg) .intl-tel-input.separate-dial-code .selected-dial-code {
  padding-right: 22px !important;
}

.arabicVersion .selected-flag:has(.eg) .eg {
  right: 56px !important;
}


.range-input {
  direction: ltr !important;
}

.arabicVersion .price-input {
  flex-direction: row-reverse;
}


.edit-icon {
  z-index: 1;
}

.arrow-up {
  transition: all 0.5s ease;
}

.change-arrow {
  transform: rotate(180deg);
}

.message-danger {
  color: red;
}

.search {
  transform: translateY(-50%);

}


.swal2-cancel {
  background-color: #3085d6 !important;
  color: white !important;
}

.swal2-confirm {
  background-color: #d33 !important;
  color: white !important;
}