@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
  --primary-font: "Poppins", sans-serif;
  --font13: 13px;
  --font14: 14px;
  --font15: 15px;
  --font16: 16px;
  --font18: 18px;
  --font20: 20px;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-bold: 600;

  --text-primary: #0E1961;
  --text-grey: #787878;
  --text-accent: #0044a0;
  --text-white: #ffff;
  --text-red: #ff0000;
  --bg-white: #ffffff;
  --bg-primary: #0044a0;
  --bg-accent: #f2f4f5;
  --bg-accent-dark: #e8e8e8;
  --border-color: #E6E3F8;
  --bg-primary-hover: #3555ca;
  --text-green: #20bf6b;
  --tab-default-color: #D5DBF4;
  --tab-completed-color: #08164c;
  --tab-active-color: #3555ca;
  --gradient-left: #15a2f7;
  --gradient-right: #0044a0;

  --shadow: 0 25px 50px -12px rgba(64, 47, 146, 0.10);
  --shadowHover: 0 25px 50px -12px rgba(64, 47, 146, 0.15);
  --shadow-sm: 0px 4px 9px -4px rgba(64, 47, 146, 0.10);
  --scroll-bar-color: #f2f4f5;
  --scroll-bar-bg-color: #fff;
}

html {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;

}

h1,
h2,
h3,
h4,
p {
  font-family: var(--primary-font);
}

body {
  border: 0;
  margin: 0;
  padding: 0 !important;
  color: var(--text-primary);
  font-size: 14px;
  position: relative;
  background: url(../images/signup-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;

}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-bar-color) var(--scroll-bar-bg-color);
}

*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: var(--scroll-bar-bg-color);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--scroll-bar-color);
  border-radius: 20px;
  border: 3px solid var(--scroll-bar-bg-color);
}


a {
  color: #4f4f4f;
  outline: none;
  -webkit-transition: all .35s ease 0s;
  -o-transition: all .35s ease 0s;
  transition: all .35s ease 0s;
}

button:link,
button:visited,
button:focus {
  outline: none;
}

a:link,
a:visited {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all .35s ease 0s;
  -o-transition: all .35s ease 0s;
  transition: all .35s ease 0s;
  color: #3c70bc;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

a:focus {
  outline: 0;
}

section {
  position: relative;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

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

.no-padding {
  padding: 0;
}

.no-padding-left {
  padding-left: 0px;
}

.no-padding-right {
  padding-right: 0px;
}

.required {
  color: var(--bg-red);
}

.errorMsg {
  font-size: 14px;
  color: var(--text-red);
  margin-top: 10px;
  display: block;
}

.errorFixed {
  position: absolute;
  right: 0;
  margin-top: 0px;
}

.text-link {
  color: var(--text-accent);
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

p {
  line-height: 1.4
}

body {
  font-family: var(--primary-font) !important;
  font-size: 14px;
  line-height: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font) !important;
}

.relative {
  position: relative;
}

.section {
  width: 100%;
  position: relative;
}

.heroSection {
  background: var(--bg-primary) url(../images/home-banner.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.heroSection video {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.heroSection::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .3);
}

.heroSection .sec_title {
  color: #fff;
}

.heroSection .title-content {
  color: #fff;
}


.bookingSection {
  position: relative;
}

.bookingSection:after {
  content: "";
  position: absolute;
  background: var(--bg-primary);
  background-size: cover;
  background-position: center top;
  -webkit-background-size: cover;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.7;
}

.bookingSection .container {
  position: relative;
  z-index: 2;
}

.bookingSection .sec_title {
  color: #fff;
  text-align: center;
}

.bookingSection .title-content {
  color: #fff;
}

.container {
  max-width: 1400px
}

.col-centered {
  float: none;
  margin: 0 auto;
}

.clear-all {
  clear: both;
  height: 0px;
  width: 100%;
  text-indent: -100000px;
}

.section-md {
  padding: 80px 0px;
}

.section-sm {
  padding: 40px 0px;
}

.scrollup {
  background: #204454;
  color: #4f4f4f;
  display: table;
  float: left;
  height: 40px;
  width: 40px;
  position: fixed;
  right: 15px;
  bottom: 70px;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  z-index: 1000;
  display: none;
}

.scrollup i {
  line-height: 35px;
  font-size: 26px;
  text-align: center;
}

.scrollup:hover,
.scrollup:visited,
.scrollup:focus {
  color: #4f4f4f;
}


.navbar-toggler {
  width: 44px;
  height: 40px;
  background: var(--bg-primary);
  padding: 0px;
  position: absolute;
  top: 22px;
  right: 0px;
  z-index: 1;
  cursor: pointer;
  display: none;
  border: 0px;
  color: #4f4f4f;
  border-radius: 10px;
}

.navbar-light .navbar-toggler-icon {
  background-image: url(../images/menu-bar.svg);
  width: 25px;
}

.navbar-toggler span {
  color: #e42126;
}



.navbar-nav {
  margin: 0px;
  padding: 0px;
  text-align: right;
  padding-left: 100px;
}

.navbar-nav li {
  display: inline-block;
  position: relative;
}

.navbar-light .navbar-nav .nav-link {
  background: transparent;
  color: #6D6D6D !important;
  font-size: 16px;
  font-weight: 400;
  padding: 20px 25px;
  margin: 0px 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 3px solid transparent;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  border-bottom: 3px solid var(--text-accent);
  color: var(--text-accent) !important;
}

.nav-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: relative;
}

.cartCount {
  position: absolute;
  top: 15px;
  font-size: 12px
}

.navbar-nav li.dropdown ul.dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top: 5px solid var(--bg-primary);
  ;
}

.navbar-nav li ul.dropdown-menu {
  left: auto !important;
  right: 0;
  top: 80px !important;
  min-width: 13rem;
  opacity: 0;
}

.navbar-nav li:hover ul.dropdown-menu {
  display: block;
  opacity: 1;
}

.navbar-nav li.dropdown ul.dropdown-menu li {
  margin-left: 0px;
  display: block !important;
  float: none;
  position: relative;
}

.navbar-nav li.dropdown ul.dropdown-menu li a {
  color: #000;
  padding: 5px 10px;
  font-size: 14px;
  display: block;
  font-weight: normal;
}

.navbar-nav li.dropdown ul.dropdown-menu li a i {
  margin-right: 15px
}

.navbar-nav li.dropdown ul.dropdown-menu li.divider {
  height: 1px;
  background: #f1f1f1;
}

.navbar-nav li.dropdown ul.dropdown-menu li a:hover {
  color: var(--bg-primary);
  background: #edf4fb;
}

.navbar-brand {
  padding: 20px 0px;
}

.navbar-brand img {
  height: 60px;
}

.slide-form {
  position: fixed;
  top: 0px;
  right: -150%;
  bottom: 0;
  background: #fff;
  width: 35%;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100000;
  font-style: normal !important;
}

.slide-form.active {
  right: 0px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.popUp-backdrop {
  position: fixed;
  top: 0;
  right: -150%;
  bottom: 0;
  left: 0;
  z-index: 10000;
  background-color: #000;
  display: none;
}

.popUp-backdrop.show {
  display: block;
  opacity: 0.5;
  right: 0%;
}

.slide-form form {
  padding: 100px 20px;
  text-align: center;
  max-width: 450px;
  margin: 0 auto
}

.slide-form input,
.slide-form select,
.form-page input,
.form-page select,
.form-page textarea,
.form-page p.form-control {
  font-size: 15px;
  font-weight: 300;
  color: #3d3f46;
  box-shadow: none;
  border-radius: 0px;
  padding: 5px 20px;
  height: auto;
  border: 1px solid #eaeaea;
  border-radius: 30px;
  background-position: right 1.25rem center;
}

.form-page textarea {
  height: 100px;
}

.form-page input,
.form-page select,
.slide-form input,
.slide-form select,
.form-page p.form-control {
  height: 50px !important;
}

.form-page form {
  text-align: left;
}

.slide-form h1,
.form-page h1 {
  letter-spacing: 6px;
  font-size: 24px;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
}

.slideFormClose {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  z-index: 100;
  background: var(--bg-primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 20px;
}

.form-page .btn-groups {
  margin-top: 30px
}

.homeBanner {
  background: url(../images/home_banner.jpg) no-repeat;
  background-attachment: cover;
  background-size: cover;
  background-position: 50% top;
  -webkit-background-size: 100%;
  min-height: 250px;
  position: relative;
}


/*
.homeBanner:after {
  content: "";
  position: absolute;
  background: url(../images/overlay.png) no-repeat;
  background-size: cover;
  background-position: center top;
  -webkit-background-size: cover;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
*/

.homeBanner .content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  width: 80%;
}

.homeBanner .content h2 {
  font-size: 50px;
  font-weight: 700;
}

.homeBanner .content h3 {
  font-size: 30px;
  font-weight: 400;
  color: #111;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.card {
  border: 0px;
  margin-bottom: 35px;
  padding-top: 12px;
  position: relative;
  border-radius: 12px;
}

.card h5 {
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.card .card-text {
  text-align: center;
  margin: 0px
}

.card .card-text span {
  display: inline-block;
  padding: 20px 0px;
  margin: 0px 15px;
  color: #9c9b9b;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.card .card-text span i {
  display: block;
  font-style: normal;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}

.card .card-text span i.strike {
  text-decoration: line-through;
}

.card-body {
  box-shadow: 0px 8px 30px -24px #4c78a4;
  border-radius: 12px;
}

.card-footer {
  text-align: center;
  padding: 18px 0px 0px 0px;
  background: #fff;
  display: flow-root;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.home-card .card-text {
  min-height: 150px;
  padding: 0px 20px
}

.home-card .card-title {
  padding: 20px 0px;
  color: var(--bg-primary);
  font-size: 20px;
}

.card a {
  position: relative;
}

.card .card-img-top {
  width: 93%;
  margin: 0 auto;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: inherit;
}

.home-card .card-body {
  padding: 0px
}

.home-card .card {
  padding: 0px;
  margin-top: 30px
}

.home-card .card .card-img-top {
  width: 100%;
}

.CardOffer {
  position: absolute;
  top: 20px;
  left: 0px;
  border-radius: 12px;
  background-color: #ffad11;
  color: #fff;
  z-index: 1;
  width: auto;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  padding: 0px 15px;
}

.CardOffer i {
  font-size: 13px;
  font-style: normal;
}

.voucherExpiry {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  color: #4f4f4f;
  z-index: 1;
  display: inline-block;
  text-align: center;
  padding: 10px;
  font-weight: 700;
}

.card-footer .btn {
  padding: 12px 15px;
  margin: 0px 5px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
}

.sec_title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #000;
}

.sec_title span {
  color: var(--bg-primary);
  font-weight: 700;
  display: block;
  font-size: 2.5rem;
}

.title-content {
  font-size: 16px;
  line-height: 1.8;
  color: #2c2c2c;
  text-align: justify;
}

#right-menu {
  position: fixed;
  z-index: 1;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%)
}

#right-menu ul {
  margin: 0;
  padding: 0;
  text-align: center
}

#right-menu ul li {
  position: relative;
  width: 15px;
  height: 15px;
  margin: 20px auto;
  list-style: none
}

#right-menu ul li a {
  display: block;
  width: 10px;
  position: absolute;
  top: -1px;
  height: 10px;
  left: -1px;
  text-decoration: none;
  background-color: rgba(72, 72, 72, 0.5);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 50%;
  -webkit-border-radius: 50%
}

#right-menu ul li a.is-selected,
#right-menu ul li a:hover {
  background-color: rgba(44, 127, 220, 1);
  border: 1px solid rgba(44, 127, 220, 1);
  box-shadow: 0 0 0 6px #fff, 0 0 0 7px var(--bg-primary);
}

.bg-white {
  background: #fff;
}

.inner_head_padding {
  padding-bottom: 40px
}

.btn {
  border-width: 1px;
  padding: 13px 25px;
  line-height: 1.42857143;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.btn:focus {
  box-shadow: none !important;
}

.btn-primary {
  color: #fff !important;
  background-color: var(--bg-primary);
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  border: 0px;
  width: 100%;
  background-image: -moz-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -ms-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -o-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -webkit-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  -webkit-transition: .15s;
  transition: .15s;
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--bg-primary-hover) !important;
  background-image: -moz-linear-gradient(to left, var(--gradient-right), var(--gradient-left));
  background-image: -ms-linear-gradient(to left, var(--gradient-right), var(--gradient-left));
  background-image: -o-linear-gradient(to left, var(--gradient-right), var(--gradient-left));
  background-image: -webkit-linear-gradient(to left, var(--gradient-right), var(--gradient-left));
  background-image: linear-gradient(to left, var(--gradient-right), var(--gradient-left));
  -webkit-transition: .15s;
  transition: .15s;
}

.btn-primary-medium {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-success {
  color: #000;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  border-radius: 10px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.btn-success:hover,
.btn-success:not([disabled]):not(.disabled):active,
.btn-success:focus {
  background-color: #fff;
  border-color: #fff;
  background: #fff;
  color: #000;
}

.btn-secondary {
  color: var(--text-primary) !important;
  background-color: var(--bg-accent-dark);
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  border: 0px;
  -webkit-transition: .15s;
  transition: .15s;
}

.btn-secondary:hover,
.btn-secondary:not([disabled]):not(.disabled):active,
.btn-secondary:focus {
  background-color: var(--bg-primary-hover);
  border-color: var(--bg-primary-hover);
  color: #fff !important;
  background-color: var(--bg-primary-hover) !important;
  background-image: -moz-linear-gradient(to left, var(--gradient-right), var(--gradient-left));
  background-image: -ms-linear-gradient(to left, var(--gradient-right), var(--gradient-left));
  background-image: -o-linear-gradient(to left, var(--gradient-right), var(--gradient-left));
  background-image: -webkit-linear-gradient(to left, var(--gradient-right), var(--gradient-left));
  background-image: linear-gradient(to left, var(--gradient-right), var(--gradient-left));
  -webkit-transition: .15s;
  transition: .15s;
}

.btn-sm {
  padding: 10px 20px !important;
}

.btn-sm-p0 {
  padding: 0px !important;
}

.btn-rounded {
  border-radius: 30px;
}


.btn-deposit {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 16px;
  letter-spacing: 2.5px;
  padding: 15px 0px !important;
}

.btn-deposit:hover,
.btn-deposit:not([disabled]):not(.disabled):active,
.btn-deposit:focus {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}

.form-group {
  margin-bottom: 22px;
}

.btn-border {
  border-radius: 30px;
  background: transparent;
  color: var(--bg-primary);
}

.btn-booking {
  color: #000;
  background-color: #fff;
  border-color: #fff;
  border-width: 1px;
  padding: 15px 35px;
  line-height: 1.42857143;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
}

.btn-booking:hover {
  color: #000;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.link {
  color: #979797;
  font-size: 16px;
  font-weight: 300;
}

.link-blue {
  color: var(--bg-primary);
}

.ulList {
  margin-left: 12px;
  margin-bottom: 20px;
}

.ulList li {
  list-style: disc;
  line-height: 1.82em;
}

.react-customscroll-scrollbar-area {
  opacity: 0;
  right: -4px !important;
}

.col-left:hover .react-customscroll-scrollbar-area {
  opacity: 1
}

.checkWrapper {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 400 !important;
  color: #fff;
  text-align: left;
}

.checkWrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #4f4f4f;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.checkWrapper input~.checkmark {
  background-color: #f1f1f1;
  border: 1px solid #ccc;
}

.checkWrapper:hover input~.checkmark {
  background-color: #ccc;
}

.checkWrapper input:checked~.checkmark {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkWrapper input:checked~.checkmark:after {
  display: block;
}

.checkWrapper .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.vouchercontent {
  margin-bottom: 30px;
}

.vouchercontent h3 {
  margin: 0 0 0.8em;
  color: #222;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transition: .15s;
  transition: .15s;
  font-size: 25px;
  text-transform: uppercase;
}

.vouchercontent h5,
.vouchercontent label {
  margin: 0 0 0.8em;
  color: #222;
  font-weight: 500;
  line-height: 1.4;
  -webkit-transition: .15s;
  transition: .15s;
  font-size: 16px
}

.voucherMap iframe {
  width: 100%;
  height: 300px
}

.vouchercontent h2 {
  margin: 0 0 0.8em;
  color: #222;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transition: .15s;
  transition: .15s;
  margin-bottom: 20px;
  font-size: 25px;
}

.star {
  color: #ff0000;
}

.voucherGallery {
  margin-bottom: 30px;
}

.vouchercontent .price-text {
  display: inline-block;
  font-weight: 500;
  margin-right: 30px
}

.vouchercontent .price-text-base {
  margin: 30px 0px;
}

.vouchercontent .price-text-name {
  display: block;
  font-size: 14px;
  color: #ffad11;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.vouchercontent .price-amount {
  font-size: 25px;
  text-transform: uppercase;
  color: #111;
}

.vouchercontent .price-amount span {
  font-size: 16px;
  margin-right: 0px;
  color: #ffad11;
}

.vouchercontent .price-amount i {
  font-style: normal;
}

.vouchercontent .price-amount i.strike {
  text-decoration: line-through;
}

.breadcrumb {
  background: transparent;
  padding: 20px 0px
}

.breadcrumb li a {
  color: #ccc;
}

.breadcrumb-item.active {
  color: #fff;
}

.carousel .thumbs {
  text-align: center;
}

.carousel .thumb {
  border: 3px solid #f1f1f1 !important;
}

.carousel .thumb.selected,
.carousel .thumb:hover {
  border: 3px solid var(--bg-primary) !important;
}

.carousel .slider-wrapper {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  height: 700px;
}

.carousel .slide img {
  object-fit: cover;
  height: 700px;
}

.carousel .thumb img {
  object-fit: cover;
  height: 40px;
}

.carousel .control-next.control-arrow::before {
  content: "\ec44" !important;
  font-family: 'Linearicons';
  border: 0px !important;
}

.carousel .thumbs-wrapper {
  margin: 0px !important;
}

.carousel .control-prev.control-arrow::before {
  content: "\ec43" !important;
  font-family: 'Linearicons';
  border: 0px !important;
}

.carousel .control-arrow,
.carousel.carousel-slider .control-arrow {
  height: 50px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.carousel.carousel-slider:hover .control-arrow {
  opacity: 1 !important;
  background: rgba(0, 0, 0, 0.2);
}

.carousel .control-arrow {
  background: red;
  height: 40px !important;
  margin-top: -3px !important;
}


.carousel .carousel-status {
  display: none;
}

footer ul li {
  margin: 0px 0px
}

footer ul li a {
  color: #4f4f4f;
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 5
}

.footer-right {
  padding-left: 50px;
}

.home-footer h5 {
  color: #000;
  margin-bottom: 20px;
  font-weight: 600;
}

.locale-flag {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 28px !important;
  top: -2px;
  border: 0px solid #fff;
}

.locale-flag-de-ch {
  background: url(../images/de.svg);
}

.left-sidebar {
  width: 350px;
  display: flex;
  z-index: 11;
  overflow: hidden;
  min-width: 350px;
  position: relative;
  flex: 0 0 220px;
  transition: all .2s;
  position: fixed;
  height: calc(100vh - 91px);
  background: #dcdcdc;
  background-size: contain;
  background-position: center 70%;
}

.dash-logo {
  background: #fff;
}

.vertical-nav-menu {
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
}

.left-sidebar.sidebar-shadow {
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.03);
}

.left-sidebar-heading {
  text-transform: uppercase;
  font-size: .8rem;
  margin: 0;
  font-weight: bold;
  color: var(--bg-primary);
  white-space: nowrap;
  position: relative;
  padding: 15px 0px
}

.vertical-nav-menu li {
  display: block;
  line-height: 2rem;
  padding: 0.5rem 1rem 0.5rem 1rem;
  position: relative;
  color: #000;
  white-space: nowrap;
  transition: all .2s;
  margin: 0;
  font-size: 15px;
  border-bottom: 1px solid #f1f1f1;
}

.vertical-nav-menu li:hover {
  background: #f1f1f1;

}

.vertical-nav-menu li span {
  position: relative;
  top: 1px;
  font-size: 13px;
  line-height: normal;
  margin-left: 5px
}

.vertical-nav-menu i.metismenu-icon {
  text-align: center;
  width: 34px;
  height: 34px;
  line-height: 34px;
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -17px;
  font-size: 1.2rem;
  opacity: .6;
  transition: color 300ms;
}

.vertical-nav-menu li.mm-active {
  background: #696969;
  color: #fff;
}

.vertical-nav-menu li a:hover {
  background: #edf4fb;
  text-decoration: none;
  color: var(--bg-primary);
}

.menuSection {
  padding-top: 5px
}

.menu_header {
  font-size: 20px;
  margin-top: 35px;
}

.menu_header i {
  margin-right: 10px
}

.basket-container {
  display: inline-block;
  background-color: transparent;
  z-index: 16;
  position: fixed;
  right: 3px;
  top: 0px;
  width: 21.5%;
  height: calc(100vh - 92px);
  background: #fff;
}

.mainWrapperBody {
  margin: 20px;
  background: #fff;
  flex: 1;
  /*min-height: calc(100vh - 160px);*/
  padding: 15px;
  position: relative;
}

.page-scroll {
  overflow-y: auto;
}

.mainWrapper {
  z-index: 9;
  padding-left: 400px;
  background: #f7f7fa;
}

.category-content {
  padding: 19px 22px;
  border-radius: 2px 2px 0 0;
  background-color: #edf4fb;
}

.category-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}

.menuContainer {
  border: 1px solid #ebebeb;
  border-radius: 2px;
  margin: 8px 0;
  position: relative;
  background-color: #fff;
}

.menuContainer .media {
  cursor: pointer;
}

.menuContainer .media:hover {
  background: #edf4fb;
}

.menuProductContainer,
.menuProduct {
  padding: 16px 22px;
}

.menuProductContainer img {
  height: 170px;
  width: 170px;
}

.menuProduct h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  color: var(--bg-primary);
  margin: 0 0 4px;
}

.menuDesc {
  font-weight: 400;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.menuNote {
  font-style: italic;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.menuPrice {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -.5px;
  color: #2abf97;
  margin-top: 30px;
}

.meal-add-to-basket-button div {
  font-family: 'Linearicons';
  font-weight: 500;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  border-radius: 0 2px 0 0;
  color: #b5b5b5;
  font-size: 20px;
  text-align: center;
  background: #fff;
}

.menuContainer:hover .meal-add-to-basket-button div,
.meal-add-to-basket-button:hover div {
  background: #2abf97;
  color: #4f4f4f;
}

.menu-category-bar {
  height: 64px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  position: relative;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid #f1f1f1;
  position: relative;
}

.menu-category-bar.active {
  position: sticky;
  z-index: 1000;
}

#navMenu #navMenu-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-left: 35px;
}

#navMenu {
  width: 100%;
  overflow: hidden;
}

#navMenu-items {
  margin: 0px 30px;
  padding: 1px 0;
  list-style: none;
  white-space: nowrap;
  overflow-x: hidden;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

#menuSelector {
  position: relative;
  margin-left: -5px;
  top: -1px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--bg-primary);
}

#navMenu ul li {
  display: inline-block;
  margin: 11px 25px;
}

#navMenu ul li a {
  font-size: 15px;
  position: relative;
  top: 0px;
}

#navMenu ul li.active a {
  color: var(--bg-primary);
}

.navMenu-paddle-left,
.navMenu-paddle-right {
  cursor: pointer;
  border: none;
  position: absolute;
  top: 0px;
  background-color: transparent;
  width: 50px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 0px
}

.slick-prev,
.navMenu-paddle-left {
  left: 35px;
}

.slick-next,
.navMenu-paddle-right {
  right: 0;
}

.navMenu-paddle-left i,
.navMenu-paddle-right i {
  position: relative;
  top: 6px;
}

.menucard-meals-group {
  border-radius: 2px 2px 0 0;
  border: 1px solid #edf4fb;
  margin-bottom: 0px;
  background: #fff;
}

.menucard-meals-group .menucard-category-image-container {
  height: 170px;
  width: 100%;
  background-size: cover !important;
  background-position: 50% 50% !important;
  background-repeat: no-repeat !important;
  margin: 0 auto;
}

.basket-title-container {
  border-bottom: 1px solid #f8f5f2;
  cursor: default;
  height: 63px;
  display: flex;
  align-items: center;
}

.basket-title {
  color: #343a40;
  margin: 0;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}

.basket-products {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 10px;
}

.cart-row {
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: center;
  align-content: center;
  transform: translateZ(0);
  align-items: center;
  width: 100%;
}

.cart-single-meal {
  padding: 10px 0;
  font-size: 12px;
  color: #000;
}

.cart-single-meal .cart-row .cart-meal-amount {
  padding-right: 32px;
  width: 20px;
}

.cart-meal-name {
  width: 100%;
  padding: 4px 0;
  word-break: break-all;
  word-break: break-word;
  flex: 1 1;
  font-size: 13px;
}

.cart-meal-edit-buttons {
  min-width: 70px;
}

.basket-products .btn {
  background: #fff;
  color: var(--bg-primary);
  padding: 2px 6px;
  font-size: 11px;
  border: 0px solid #cecece !important;
}

.basket-products .btn:hover,
.basket-products .btn:focus {
  background: #fff !important;
  box-shadow: none !important;
  color: var(--bg-primary) !important;
}

.basket-products .btn i {
  position: relative;
  left: 1px;
  color: var(--bg-primary) !important;
}

.basket-products .cart-meal-edit-delete:before {
  font-weight: 400;
  line-height: 1;
  padding: 4px 8px;
  margin: 0 3px;
  border: 1px solid #cecece;
  border-radius: 4px;
  cursor: pointer;
  float: left;
  content: "-";
  font-size: 12px
}

.basket-products .cart-meal-edit-add:before {
  font-weight: 400;
  line-height: 1;
  padding: 4px 8px;
  margin: 0 3px;
  border: 1px solid #cecece;
  border-radius: 4px;
  cursor: pointer;
  float: left;
  content: "+";
  font-size: 12px
}

.cart-meal-price {
  text-align: right;
  min-width: 3rem;
  white-space: nowrap;
  font-size: 13px;
  width: 80px;
  padding-right: 10px;
}

.cart-single-meal .cart-row .cart-meal-delete {
  min-width: 1.25rem;
}

.box-shadow-left {
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.03);
}

.basket-container-scroller {
  border-bottom: 1px solid #e9e9e9;
  bottom: 72px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  top: 56px;
  height: calc(100vh - 170px);
}

.chatBase {
  height: 100%;
}

.chat-box-inner {
  border-bottom: 1px solid #e9e9e9;
  height: calc(100vh - 210px);
  padding-bottom: 75px
}

.basket-order-button {
  margin: 0 auto;
  display: block;
  bottom: 0;
  right: 0;
  width: 100%;
  position: absolute;
  z-index: 100;
  background: #fff;
  background: #edf4fb;
}

.cart-sum {
  border-top: 1px solid #d7d7d7;
  padding: 0.8rem;
  font-size: 14px;
}

.cart-sum ul li {
  color: #666;
  margin-bottom: 10px;
}

.cart-sum ul li span {
  float: right;
}

.cart-sum ul li.cart-gesamt {
  color: #000;
  font-weight: 600;
}

.left-sidebar-inner {
  position: relative;
  width: 100%;
}

.left-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 0px;
  background: #edf4fb;
}

.left-footer ul li {
  display: block;
  margin: 10px 10px;
  text-align: center;
}

.left-footer ul li a {
  color: #000;
}

.left-footer ul li img {
  height: 30px;
  margin-right: 10px
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.position-relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.order-list-table thead th {
  border-top: 0px;
  white-space: nowrap;
}

.order-list-table tbody tr td {
  vertical-align: middle;
  border: 0px;
  padding: 20px 10px
}

.order-list-table tbody tr:nth-of-type(2n+1) {
  background-color: #edf4fb;
}

.order-list-table .btn-group div {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0px 5px;
  border: 0px;
  padding: 0px;
  position: relative;
  color: #444;
  font-size: 20px;
  cursor: pointer;
}

.order-list-table .btn-group .checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid var(--bg-primary);
  border-radius: 50%;
}

.order-list-table .btn-group .checkWrapper:hover input~.checkmark {
  background-color: var(--bg-primary);
}

.order-list-table .btn-group .checkWrapper .checkmark::after {
  left: 7px;
  top: 3px;
  width: 5px;
}

.order-list-table .btn-group .delete {
  color: red;
}

.order-list-table .btn-group .deleteRow {
  color: #2d2467;
  font-size: 16.5px;
  position: relative;
  top: 2px;
}

.order-list-table .btn-group .info {
  color: #2d2467;
  border: 1px solid #2d2467;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  position: relative;
  margin: 0px 5px;
}

.order-list-table .btn-group .info i {
  color: #2d2467;
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.order-list-table .btn-group .delete,
.order-list-table .btn-group .info i {
  width: 20px;
  height: 20px;
  font-style: normal;
  display: inline-block;
  border-radius: 50%;
}

.searchBase {
  position: relative;
  height: 40px;
  width: 100%;
  margin-top: 12px;
  margin-left: 0px;
}

.searchBase .btn {
  position: absolute;
  left: 4px;
  top: 2px;
  background: transparent;
  cursor: pointer;
  padding: 9px 17px;
}

.searchBase .btn:focus {
  box-shadow: none !important;
}

.searchBase .btn {
  cursor: pointer;
}

.menu-category-bar input[type="search"] {
  font-weight: 300;
  font-size: 14px;
  height: 40px;
  padding-left: 50px;
  border: 1px solid #f1f1f1;
  border-radius: 30px;
  width: 100%;
}

.orderSort {
  font-weight: 300;
  padding-left: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 30px;
  margin-top: 12px;
  width: 100%;
}

.orderSort label {
  float: left;
  width: 30%;
  padding-top: 8px;
  border-right: 1px solid #f1f1f1;
  height: 39px
}

.orderSort select {
  width: 70%;
  border: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  font-size: 14px;
  height: 40px;
  font-weight: 300;
}

.order-list-table .btn-group {
  opacity: 0.5
}

.order-list-table .btn-group.active {
  opacity: 1;
}

.order-list-table tr:hover .btn-group {
  opacity: 1
}

.rcb-amount h3 {
  color: #4f4f4f;
  font-weight: 700;
  font-size: 2em;
  margin: 0px;
  padding: 0px;
}

.rcb-amount h3 span {
  font-weight: 400;
  font-size: 1rem
}

.rcb-amount {
  position: absolute;
  bottom: 8px;
  right: 12px;
  z-index: 1;
}

.Aufladen {
  padding-top: 20px;
  font-size: 20px;
}

.menu-category-search {
  width: 100%;
  background: #fff;
  position: relative;
}

.menu-category-search .icon-search {
  font-size: 16px;
  cursor: pointer;
  background: #fff;
  padding: 5px;
  position: absolute;
  top: 20px;
  cursor: pointer;
  left: 16px;
  z-index: 1
}

.menu-category-search .icon-search-close {
  cursor: pointer;
  background: #fff;
  position: absolute;
  top: 10px;
  cursor: pointer;
  z-index: 1;
  right: 20px
}

.menu-category-search .icon-search-close img {
  width: 15px;
  height: 15px;
}

.menu-category-search .searchBase input {
  padding-right: 40px;
}

.select-input {
  position: relative;
  width: 100%;
  display: inline-block;
}

.sidedish-content .select-input::after {
  content: "\e874";
  font-family: 'Linearicons';
  font-weight: 400;
  line-height: 1.5;
  position: absolute;
  top: 9px;
  right: 14px;
  pointer-events: none;
  font-size: 14px;
  color: #0a3847;
}

.button-remove-sidedish,
.button-add-sidedish {
  position: relative;
  height: 38px
}

.button-remove-sidedish::after,
.button-add-sidedish::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 13px;
}

.button-remove-sidedish::after {
  content: url('../images/svg/minus.svg');
}

.button-add-sidedish::after {
  content: url('../images/svg/plus.svg');
}

.contactForm {
  background: #fff;
}

.contactForm input.form-control {
  height: 50px;
}

.contactForm .form-control {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.contactForm textarea.form-control {
  min-height: 80px;
  resize: none;
}

.contactForm label {
  font-size: 16px;
}

.chat-box-inner .profile-img img {
  border: 1px solid #ffae00;
}

.chat-box-inner .profile-group h4 {
  font-size: 14.5px;
  font-weight: 500;
  color: #7c3a00;
  margin: 0px;
  position: relative;
  top: 10px;
  left: 10px;
}

.chat-box-inner .messages ul li {
  display: inline-block;
  clear: both;
  width: 100%;
  font-size: 0.9em;
}

.chat-box-inner .messages ul li img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  float: left;
}

.chat-box-inner .messages ul li.replies img {
  float: right;
}

.chat-box-inner .messages ul li.replies p {
  background: #ebebeb;
  float: right;
}

.chat-box-inner .messages ul li.sent p {
  background: var(--bg-primary);
  color: #fff;
}

.chat-box-inner .messages ul li p {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 10px;
  max-width: 250px;
  line-height: 130%;
  font-weight: 300;
}

.chat-box-inner .messages ul li p span {
  font-weight: 500;
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.chat-box-inner .messages ul li.sent p span {
  color: #000;
}

.chat-box-inner .messages ul li.replies p span {
  color: #225A33;
}

.inputbox-position {
  position: relative;
  height: 100%
}

.chat-image.left {
  width: 40px;
  float: left;
  margin: 0px 8px 0 0;
}

.chat-image.right {
  width: 40px;
  float: right;
  margin: 0px 0 0 8px;
}

.chat-time {
  display: block;
  text-align: center;
  font-size: 9px;
  color: #999;
}

.chat-icon ul li {
  display: inline-block;
  font-size: 12px;
  color: #8b8b8b;
}

.chat-icon ul li:last-child {
  float: right;
}

.chat-date {
  text-align: center;
  padding: 5px;
  font-size: 11px;
  color: #4e636d;
  text-transform: uppercase;
  background: #e6e6e6;
  border-radius: 6px;
  max-width: 90px;
  margin: 0 auto 15px auto;
}

.message-input {
  padding: 20px
}

.message-input .form-control {
  border: none;
  background: #fff;
  font-size: 14px;
  color: #000;
  padding: 0px;
  height: 50px;
  box-shadow: none;
  padding: 0px 15px;
  font-weight: 300;
  border-radius: 10px !important;
  border: 1px solid #f1f1f1;
}

.message-input .btn {
  color: #fff;
  height: 49px;
  vertical-align: middle;
  cursor: pointer;
  box-shadow: none;
  border-radius: 10px !important;
  margin: 0px 10px;
  font-size: 20px;
  position: relative;
}

.message-input .btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.message-input .btn.attach {
  background: #ebebeb !important;
  color: #000 !important;
}

.mobileAfterMenu {
  cursor: pointer;
  display: none;
}

.mCSB_scrollTools {
  opacity: 0 !important;
}

.mobileAfterMenu img {
  width: 21px
}

.menuCart {
  background: var(--bg-primary);
  color: #fff;
  display: table;
  float: left;
  height: 50px;
  width: 50px;
  position: fixed;
  right: 15px;
  bottom: 20px;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  z-index: 100;
  line-height: 45px;
  cursor: pointer;
  display: none;
}

.menuCart i {
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.menuCartInner {
  position: relative;
  width: 100%;
  height: 100%
}

.menuCartCount {
  height: 25px;
  position: absolute;
  top: -10px;
  right: -5px;
  z-index: 10;
  line-height: 20px;
  background: #2abf97;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  padding: 3px 10px
}

#close {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--bg-primary);
  font-size: 18px;
  display: none;
}

.innerCartSlide {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.innerCartSlide img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: relative;
}

.innerCartSlide span {
  position: absolute;
  right: 15px;
  top: -8px;
}

.InnerRightCartOpen {
  position: fixed;
  top: 0px;
  right: -150%;
  bottom: 0;
  background: #fff;
  width: 25%;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100000;
  font-style: normal !important;
}

.InnerRightCartOpen.active {
  right: 0px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.page-link {
  color: #2d2467;
  border: 1px solid var(--bg-primary);
}

.page-link:hover {
  background: var(--bg-primary);
  color: #2d2467;
}

.filialeImg {
  overflow: hidden;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  position: relative;
}

.filialeImg .uploadImg {
  background: var(--bg-primary);
  color: #fff !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
}

.addBtn {
  float: right;
  margin-right: 10px;
  padding: 8px 0px
}

.addBtn a {
  font-size: 16px;
}

.addBtn a i {
  margin-right: 6px;
  position: relative;
  top: 1.5px
}

.sub_title {
  padding: 20px 0px;
  margin: 0px;
  font-size: 20px
}

.sub_title i {
  margin-right: 6px;
  position: relative;
  top: 1.5px;
  color: var(--bg-primary);
}

.opening-hours li {
  display: inline-block;
  border: 1px solid var(--bg-primary);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  margin-right: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  width: 23%;
}

.opening-hours li span {
  background: #d1f1f3;
  padding: 10px 20px;
  display: inline-block;
  color: #000;
}

.opening-hours li i {
  padding: 10px 20px;
  font-style: normal;
  display: inline-block;
}

.input-group-append a {
  border: 1px solid var(--bg-primary);
  background: var(--bg-primary);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  color: #fff !important;
}

.input-group-append a i {
  margin-right: 6px;
  position: relative;
  top: -1px;
}

.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border: 0px;
}

.chat-contact-box li {
  padding: 17px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.chat-contact-box li.open-chat {
  background-color: #f0f0f0;
}

figure.avatar {
  display: inline-block;
  margin-bottom: 0;
  height: 2.3rem;
  width: 2.3rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}

figure.avatar.avatar-state-success::before {
  background: #0abb87;
}

figure.avatar.avatar-state-warning::before {
  background: #ffb822;
}

figure.avatar>a>img,
figure.avatar>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

figure.avatar.avatar-state-success::before,
figure.avatar.avatar-state-warning::before {
  content: "";
  position: absolute;
  display: block;
  width: .8rem;
  height: .8rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: -2px;
  right: -2px;
  border: 3px solid #fff;
}

.chat-contact-box li figure {
  margin-right: 1rem;
}

.rounded-circle {
  border-radius: 50% !important;
}

.chat-contact-box li .users-list-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  min-width: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.chat-contact-box li .users-list-body>div:first-child {
  min-width: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.chat-contact-box li .users-list-body .users-list-action {
  padding-left: 15px;
}

.chat-contact-box li .users-list-body h5 {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: .2rem;
}

.chat-contact-box li .users-list-body p {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 0;
  color: #969696;
  font-size: 13px;
}

.chat-contact-box li .new-message-count {
  width: 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 0;
  font-size: 13px;
  height: 23px;
  background-color: var(--bg-primary);
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-left: auto;
}

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

.small,
small {
  font-size: 80%;
  font-weight: 400;
}

.chat-contact-box li .dropdown {
  opacity: 0;
}

.mainWrapperBody .form-page .card {
  border: 1px solid #f1f1f1;
}

.homeList li {
  position: relative;
  padding-left: 25px;
  line-height: 1.8
}

.homeList li:after {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--bg-primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.homeContact .chosen-search {
  display: none;
}

.badge {
  padding: 5px 8px
}

.branch {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.branch-img {
  height: 150px;
  margin-bottom: 0;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

.branch-title .category {
  background: #d0e5ff;
  font-size: 12px;
  padding: 2px 15px;
  margin-bottom: 5px;
  display: inline-block;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}


/*.category.new{ background-color: #16aaff !important; color: #fff !important; }
.category.top{ background-color: #f7b924 !important; color: #fff !important; }
.category.escort{ background-color: #3ac47d !important; color: #fff !important; }*/

.branch-title h3 {
  font-size: 20px;
  color: rgba(13, 27, 62, 0.7);
  margin-bottom: 15px;
}

.branch-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.branch-info ul li {
  color: #999;
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
}

.branch-info ul li:last-child:before {
  content: none;
}

.branch-info ul li:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 12px;
  background: #ddd;
  top: 5px;
  right: 0px;
}

.branch-info ul li span {
  font-weight: 600;
  color: #333;
}

.branch-contact {
  position: relative;
}

.branch-contact ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 1px dashed #ddd;
}

.branch-contact ul li {
  display: inline-block;
  margin-right: 15px;
  padding-left: 20px;
  position: relative;
  color: #333;
}

.branch-contact ul li a {
  color: #333;
}

.branch-contact ul li .ico {
  position: absolute;
  left: 0;
  top: 4px;
  color: #137eff;
}

.stepwizard-row {
  display: table-row;
}

.stepwizard {
  display: table;
  width: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.stepwizard-step button[disabled] {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
  color: #000;
}

.stepwizard-step {
  display: table-cell;
  text-align: center;
  position: relative;
}

.btn-circle {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 14px;
  border-radius: 50px;
  line-height: 50px;
  padding: 0px;
  font-weight: 600;
}

.btn-default,
.btn-default:focus {
  color: #000;
  background-color: #fff;
  /* border-color: #ccc; */
  height: 50px;
  border-radius: 10px;
}

.truncate-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking_inner {
  padding: 20px;
  border-top: 2px dashed rgba(255, 255, 255, .2);
  background-color: rgba(255, 255, 255, .1)
}

.booking_inner p,
.booking_inner h4,
.booking_inner h5 {
  margin: 0px;
  color: #000;
}

.text-white {
  color: #fff !important;
}

.opening-hours {
  margin-top: 50px;
  width: 400px;
}

.opening-hours table {
  width: 100%;
}

.opening-hours h3 {
  margin: 0px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 300;
}

.opening-hours table tr td {
  font-size: 1.3em;
  color: #fff;
  padding: 5px 0px;
}

.booking_inner p {
  line-height: normal;
  margin-bottom: 7px
}

.booking_inner h4 {
  font-size: 1.3em;
  margin-bottom: 5px
}

.booking_txt {
  margin-bottom: 15px
}

.booking_inner h5 {
  font-size: 16px;
}

.time-selector ul li {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 8px;
}


.timeFullDisplayPadding {
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  width: 100%;
}

.timeFullDisplay {
  max-height: 350px;
  overflow-y: scroll;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  scrollbar-color: #ccc #f6eded;
}

.timeFullDisplay::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}

.timeFullDisplay::-webkit-scrollbar-track {
  background-color: #fff;
}

.timeFullDisplay::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0px;
  border: 4px solid #fff;
}

.timeFullDisplay::-moz-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0px;
  border: 2px solid #fff;
}

.time-selector ul li a {
  cursor: pointer;
  border: 1px dashed var(--borderDark);
  border-radius: 6px;
  color: #000;
  width: 107px;
  text-align: center;
  display: block;
  padding: 5px 5px;
}

.time-selector ul li a:hover,
.time-selector ul li a.active {
  background-color: var(--bg-primary);
  border: 1px dashed var(--bg-primary);
  color: #fff !important;
}

.accordion-item {
  border: 1px dashed var(--borderDark);
  border-radius: 6px;
  margin-bottom: 10px;
}

.conentFocus {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
}

.bookingNumer {
  margin-top: 20px;
  text-align: center;
  border: 1px dashed #fff;
  padding: 20px;
  font-size: 1.3em;
  color: #000;
}

.bookingNumer span {
  font-weight: 600;
}

.conentFocus h4 span {
  font-weight: 600;
}

.booking_inner label {
  font-weight: normal;
  color: #fff;
  text-align: left;
}

.booking_inner input ::placeholder,
.booking_inner input ::-moz-placeholder,
.booking_inner input ::-webkit-placeholder {
  color: var(--text-primary);
}

.booking_inner input,
.booking_inner textarea,
.booking_inner select {
  color: var(--text-primary);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #fff;
}

.booking_inner input,
.booking_inner select {
  height: 50px !important;
  font-weight: 400;
}

.booking_inner .chosen-container-single .chosen-single {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, .1);
  height: 42px !important;
  font-weight: normal;
}

.booking_inner .chosen-container-single .chosen-single div b {
  background: url(../images/chosen-sprite.png) 0 10px no-repeat;
}

.booking_inner .chosen-container-single .chosen-single div {
  right: 5px;
}

.booking_inner .chosen-container .chosen-results {
  color: #444;
  font-weight: normal;
}

.sms_success {
  background-color: #49b675;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 10px;
}

.successTick {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.successTick i {
  color: #fff;
}

.sms_success p {
  color: #fff;
  margin: 0px;
}

.bookedHotelInfo {
  width: 100%;
  display: table;
  margin-top: 20px
}

.bookedHotelInfo li {
  display: table-cell;
  font-weight: normal;
  width: 25%;
  color: #000;
}

.bookedHotelInfo li span {
  display: block;
  font-weight: 600;
}

.bookedHotelInfoBtns {
  position: relative;
}

.bookedHotelInfoBtns li {
  background-color: #EFEBEA;
  padding: 0.75em 1em 0.75em 68px !important;
  margin: 8px 0px;
  font-size: 16px;
  font-weight: normal;
  background-repeat: no-repeat;
  background-position: 1.5em center;
  background-size: 26px 26px;

}

.final-calendar {
  background-image: url(../images/icon_calendar.png);
}

.final-mail {
  background-image: url(../images/icon_mail.png);
}

.final-maps {
  background-image: url(../images/icon_map.png);
}

.menu-card {
  text-align: center;
  border: 1px solid #e2e0de;
  background-color: #FFF;
  padding: 15px
}

.txt-upper {
  text-transform: uppercase;
}

.booking_footer .form-control {
  border-radius: 4px;
  height: 54px !important;
  border: 1px solid #e2e0de !important;
}

.calendarPop {
  width: 230px;
  position: absolute;
  padding: 6px 0px 0px 0px;
  color: #000 !important;
  font-weight: 600;
  line-height: 100%;
  background: #fff;
  font-size: 15px;
  text-decoration: none;
  text-align: left;
  margin-left: -1px;
  display: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 10px 26px;
  -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 10px 26px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 10px 26px;
  transform: scale(.98, .98) translateY(5px);
  z-index: 1;
  transition: transform .15s ease;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
}

.addeventatc_dropdown span {
  display: block;
  line-height: 100%;
  background: #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  font-weight: 600;
  padding: 14px 10px 14px 55px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.addeventatc_dropdown span:hover {
  background-color: #f4f4f4;
  color: #000;
  text-decoration: none;
  font-size: 15px;
}

.addeventatc_dropdown .ateappleical {
  background: url(https://www.addevent.com/gfx/icon-apple-t5.svg) 18px 40% no-repeat;
  background-color: rgba(0, 0, 0, 0);
  background-size: auto;
  background-size: 22px 100%;
}

.addeventatc_dropdown .ategoogle {
  background: url(https://www.addevent.com/gfx/icon-google-t5.svg) 18px 50% no-repeat;
  background-size: auto;
  background-size: 22px 100%;
}

.addeventatc_dropdown .ateoutlook {
  background: url(https://www.addevent.com/gfx/icon-outlook-t5.svg) 18px 50% no-repeat;
  background-size: auto;
  background-size: 22px 100%;
}

.addeventatc_dropdown .ateoutlookcom {
  background: url(https://www.addevent.com/gfx/icon-outlookcom-t5.svg) 18px 50% no-repeat;
  background-size: auto;
  background-size: 22px 100%;
}

.addeventatc_dropdown .ateyahoo {
  background: url(https://www.addevent.com/gfx/icon-yahoo-t5.svg) 18px 50% no-repeat;
  background-size: auto;
  background-size: 22px 100%;
}

.addeventatc_dropdown em {
  color: #999 !important;
  font-size: 12px !important;
  font-weight: 400;
}

.setup-welcome {
  background: #f1f1f1;
  width: 1000px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 8px 30px -24px #4c78a4;
}

.setup-welcome h3 {
  font-size: 40px;
  font-weight: 400;
}

.setup-welcome p {
  font-size: 20px;
  margin-bottom: 15px;
  width: 80%;
  margin: 0 auto;
}

.setup_logo {
  position: absolute;
  top: 15px;
  left: 15px;
}

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

.setup_footer {
  margin-top: 40px
}

.setup-welcome .btn {
  min-width: 150px
}

.ui.fluid.steps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.ui.steps .step {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  vertical-align: middle;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 1.14285714em 2em;
  background: #fff;
  color: rgba(0, 0, 0, .87);
  box-shadow: none;
  border-radius: 0;
  border: none;
  border-right: 1px solid rgba(34, 36, 38, .15);
}

.ui.steps .step {
  border-radius: 0;
  border: none;
  color: #111 !important;
  display: inline;
  height: 55px;
  padding: 20px 30px 0 0;
  text-align: center;
  margin-bottom: 50px
}

.ui.steps .step.active,
.ui.steps .step.active:after {
  background-color: #353535;
}

.ui.steps .step .content {
  margin-left: calc(50% - 50px);
  position: absolute;
  text-align: left;
}

.ui.steps .step.active,
.ui.steps .step.active:after {
  background-color: #353535;
}

.ui.steps .step:after {
  height: 0 !important;
  width: 0 !important;
}

.ui.steps .step.active .title {
  color: #fff;
  font-weight: 700;
}

.ui.steps .step .custom-bookmark {
  height: 50%;
  position: absolute;
  right: 0;
  width: 30px;
}

.ui.steps .step .custom-bookmark.bottom {
  background-image: -webkit-linear-gradient(-30deg, #fff 48%, #e5e5e5 50%, #fff 52%);
  bottom: 0;
}

.ui.steps .step.active .custom-bookmark.bottom {
  background-image: -webkit-linear-gradient(-30deg, #353535 47%, #fff 50%);
}

.ui.steps .step.active .custom-bookmark.top {
  background-image: -webkit-linear-gradient(30deg, #353535 47%, #fff 50%);
}

.ui.steps .step .custom-bookmark.top {
  background-image: -webkit-linear-gradient(30deg, #fff 48%, #e5e5e5 50%, #fff 52%);
  top: 0;
}

.chosen-container-single .chosen-single span {
  text-align: left;
  padding: 5px 11px;
}

.room-selector ul {
  padding-top: 20px;
  padding-right: 15px;
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
}

.room-selector ul::-webkit-scrollbar {
  width: 3px;
}

.room-selector ul::-webkit-scrollbar-track {
  background: transparent;
}

.room-selector ul::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 0px;
  border: 3px solid #ccc;
}

.room-selector ul li {
  display: inline-block;
  padding: 0.4em 0.55em;
  margin-left: 4px;
  margin-right: 4px;
  margin-bottom: 8px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  padding: 10px;
  width: 100%;
  text-align: center;
}



.room-selector ul li:hover,
.room-selector ul li.selected {
  background-color: var(--secondary-color);
  color: #000;
}

ul#tabs {
  list-style-type: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 30px;
}

ul#tabs li {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 14px;
  border-radius: 50px;
  line-height: 60px;
  padding: 0px;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  border-color: #fff;
  margin: 0px 40px;
  cursor: pointer;
  font-size: 20px;
}

ul#tabs li:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

ul#tabs li.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

ul#tab {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#content-tab>.Tab {
  margin: 0 auto;
  color: #fff;
}

.lightBlue {
  background-color: rgba(255, 255, 255, 1) !important;
}

.depositRow {
  display: flex;
  justify-content: space-between;
  color: #FFF;
  font-size: 18px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .2);
  padding: 15px 20px;
}

.react-calendar {
  width: 100% !important;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.react-calendar__navigation button {
  font-weight: bold !important;
}

.react-calendar__tile:disabled {
  background-color: transparent !important;
}

.react-calendar__navigation {
  border-bottom: 1px dashed var(--borderDark);
}

.react-calendar__month-view__weekdays__weekday {
  color: #000;
}

abbr[data-original-title],
abbr[title] {
  text-decoration: none !important;
}

.react-calendar__tile {
  height: 40px !important;
  border-radius: 10px !important;
}

.react-calendar__tile--active {
  border-radius: 10px !important;
}

.react-calendar__month-view__weekdays {
  font-size: 14px !important;
}

#datePicker {
  margin-top: 10px;
}

.footerCredit {
  padding-top: 50px;
}

#wrap {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  /* background: rgba(0, 0, 0, .2); */
  position: absolute;
  left: 0;
  right: 0;
  margin: 0px auto;
  bottom: 100px;
  z-index: 10000;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 0px;
}

#wrap button {
  position: absolute;
  border: 0px;
  background: transparent;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  z-index: 100000;
  cursor: pointer;
}

#wrap:hover .arrow {
  border-right: 3px solid var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
}

#wrap:hover .arrow2 {
  border-right: 3px solid var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
}

#wrap:hover .arrow3 {
  border-right: 3px solid var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
}

.arrow {
  display: block;
  height: 20px;
  width: 20px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotateZ(45deg);
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
  -webkit-animation: go 3s infinite;
  -moz-animation: go 3s infinite;
  -ms-animation: go 3s infinite;
  -o-animation: go 3s infinite;
  animation: go 3s infinite;
}

@-webkit-keyframes go {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes go {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-ms-keyframes go {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes go {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-keyframes go {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.arrow2 {
  display: block;
  height: 20px;
  width: 20px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotateZ(45deg);
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
  -webkit-animation: go2 3s infinite;
  -moz-animation: go2 3s infinite;
  -ms-animation: go2 3s infinite;
  -o-animation: go2 3s infinite;
  animation: go2 3s infinite;
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  -ms-animation-delay: .5s;
  -o-animation-delay: .5s;
  animation-delay: .5s;
}

@-webkit-keyframes go2 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes go2 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-ms-keyframes go2 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes go2 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-keyframes go2 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.arrow3 {
  display: block;
  height: 20px;
  width: 20px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotateZ(45deg);
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -10px;
  -webkit-animation: go3 3s infinite;
  -moz-animation: go3 3s infinite;
  -ms-animation: go3 3s infinite;
  -o-animation: go3 3s infinite;
  animation: go3 3s infinite;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes go3 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes go3 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-ms-keyframes go3 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes go3 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-keyframes go3 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


.langDisplay {
  width: 45px;
  height: 45px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  position: relative;
  top: 0px;
  background: rgba(255, 255, 255, .06) !important;
  text-align: center;
  font-size: 15px;
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  /* border: 1px solid #e9e9ed; */
}

.topMenuRight {
  position: absolute;
  right: 0;
  top: 25px;
}

.topMenuRight .landropdown ul {
  width: 100%;
}

.topMenuRight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landropdown {
  position: absolute;
  right: 0px;
  top: 90px;
  width: 180px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 10px;
  overflow: hidden;

}

.landropdown.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;
  z-index: 999;
}

.topMenuRight .landropdown ul {
  width: 100%;
}

.topMenuRight .landropdown ul li {
  border-bottom: 1px dashed var(--borderDark);
  padding: 10px 15px !important;
  cursor: pointer;
  display: block;
  text-align: left;
  font-size: var(--font-normal);
  display: flex;
  align-items: center;
  color: var(--text-primary);
}

.topMenuRight .landropdown ul li:hover {
  color: var(--secondary-color);
}

.topMenuRight .landropdown ul li:last-child {
  position: static;
  padding: 10px 15px;
  border: 0px
}

.langDisplay img {
  width: 20px;
  height: 20px;
}

.mobile-position {
  position: relative;
}

.mobile-position span.number {
  position: absolute;
  left: 15px;
  top: 15px;
  color: var(--text-primary);
  font-weight: 400;
}

.location-list {
  padding: 10px;
  background: var(--bg-white) !important;
  border-radius: 6px;
  transition: height 10s linear;
}

.location-list.active {
  height: auto;
  transition: height 10s linear;
}

.location-list ul li {
  border-radius: 6px;
  height: 40px !important;
  border: 1px dashed var(--borderDark);
  background: transparent !important;
  font-weight: var(--font-normal);
  box-shadow: none;
  color: var(--text-primary);
  width: 100%;
  background: var(--bg-default) !important;
  font-size: 14px;
  cursor: pointer;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  transition: "all .2s",
}

.location-list ul li i {
  font-style: normal;
}

.location-list ul li label {
  margin-bottom: 0px;
}

.location-list ul li span {
  color: var(--borderDark);
  font-size: 18px;
  margin-right: 15px;
}

.location-list ul {
  max-height: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  scrollbar-color: #ddd;
  padding-right: 10px;
}

.location-list ul::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}

.location-list ul::-webkit-scrollbar-track {
  background-color: #ddd;
}

.location-list ul::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 0px;
  border: 4px solid #ddd;
}

.location-list ul::-moz-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 0px;
  border: 2px solid #ddd;
}

.modal-sm {
  max-width: 800px;
}

.bookModal .modal-body {
  padding: 0px;
}

.booKPopTitle {
  background: var(--bg-primary) !important;
  padding: 20px 15px;
  color: #fff;
  font-size: 20px;
}

.slideFormClose {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--bgWhite);
  z-index: 100;
  font-size: 20px;
}

.bookSepLine {
  padding: 15px 15px 5px 15px;
  border-bottom: 1px dashed var(--borderDark) !important;
}


.wavy-loader {
  text-align: center;
  padding: 20px 20px;
}

.wavy-loader span {
  position: relative;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 5px 2px;
  background-color: #394154;
  opacity: 0.5;
  display: inline-block;
}

.wavy-loader span:first-child {
  animation: wavy-loader 2.5s 0.1s ease-out infinite;
}

.wavy-loader span:nth-child(2) {
  animation: wavy-loader 2.5s 0.2s ease-out infinite;
}

.wavy-loader span:nth-child(3) {
  animation: wavy-loader 2.5s 0.3s ease-out infinite;
}

.wavy-loader span:nth-child(4) {
  animation: wavy-loader 2.5s 0.4s ease-out infinite;
}

.wavy-loader span:nth-child(5) {
  animation: wavy-loader 2.5s 0.5s ease-out infinite;
}

@keyframes wavy-loader {
  0% {
    top: 2px;
  }

  1% {
    top: 4px;
  }

  2% {
    top: 6px;
  }

  3% {
    top: 8px;
  }

  4% {
    top: 10px;
  }

  5% {
    top: 12px;
    opacity: 1;
  }

  6% {
    top: -2px;
    opacity: 1;
  }

  7% {
    top: -4px;
    opacity: 1;
  }

  8% {
    top: -6px;
    opacity: 1;
  }

  9% {
    top: -8px;
    opacity: 1;
  }

  10% {
    top: -10px;
    opacity: 1;
  }

  11% {
    top: -12px;
    opacity: 1;
  }

  12% {
    top: 0;
    opacity: 0.5;
  }

  100% {
    top: 0;
    opacity: 0.5;
  }
}

.booking_inner select.btn-default {
  color: #000;
  border-radius: 10px;
  /* background-color: #fff;
  border-color: #ccc; */
  background-color: transparent;
  border-color: transparent;
  font-size: 15px;
  font-weight: bold;
  z-index: 1;
  position: relative;
}

.form-icon-base {
  position: relative;
  height: 50px;
}

.form-icon {
  position: absolute;
  top: 11px;
  right: 20px;
  cursor: pointer;
}

.selectRoom i {
  color: #000;
  font-size: 15px;
}

.popdate-picker {
  margin-top: 0px !important;
}

.modal .modal-footer {
  padding: 20px 20px;
  border-top: 1px dashed var(--borderDark) !important;
  justify-content: flex-start;
  display: flex;
  justify-content: end;
}

.accordion-button {
  font-size: var(--font15);
  width: 100%;
  position: relative;
  border-radius: 6px;
  height: 50px !important;
  border: 0px;
  box-shadow: none;
  color: var(--text-primary);
  width: 100%;
  background-color: rgba(51, 52, 72, .05);
  cursor: pointer;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: var(--font-medium);
}

.accordion-body {
  padding: 15px 10px 10px 10px;
}

.accordion-header {
  margin-bottom: 0px !important;
}


.btn-theme {
  padding: 15px 20px;
  color: var(--text-white) !important;
  background-color: var(--bg-primary);
  text-align: center;
  text-decoration: none;
  border: 0px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 10px;
  font-size: 15px;
}

.btn-theme:hover {
  color: var(--text-white);
  background-color: var(--buttonMouseOverColor);
  text-decoration: none;
}

.select-btn {
  color: #000;
  border-radius: 10px;
  background-color: #fff;
  border: 0px solid #fff;
  font-size: 15px;
  font-weight: bold;
}

.form-row label {
  margin-left: 5px;
}

.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
  padding: inherit !important;
}

.react-calendar__tile--hasActive {
  background: var(--bg-primary) !important;
  color: #fff !important;
}

.right-icon img {
  width: 20px;
  opacity: 0.5;
}

.opening_hrs {
  padding-top: 30px;
  text-align: center;
}

.opening_hrs h3 {
  color: #fff;
  font-size: 25px;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300;
  margin-bottom: 15px;
}

.opening_hrs ul li {
  list-style: none;
  text-align: center;
  display: inline-block;
  margin: 10px;
  color: #fff;
  font-size: 16px;
}

.opening_hrs ul li span {
  display: block;
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: 15px;
}

.note p {
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
}

.note h5 {
  margin-top: 10px;
  color: #fff;
  text-align: center;
  font-size: 18px;
}

.note ul li.closed {
  color: var(--secondary-color);
}

.bold-separator {
  position: relative;
  width: 100%;
  margin: 30px 0;
}

.bold-separator::before {
  left: 30%;
}

.bold-separator::after {
  right: 30%;
}

.bold-separator::before,
.bold-separator::after {
  content: '';
  position: absolute;
  width: 15%;
  height: 1px;
  top: 2px;
  opacity: 0.3;
  background: #fff;
}

.bold-separator span {
  width: 6px;
  height: 6px;
  display: flex;
  background: #fff;
  margin: 0 auto;
  border-radius: 100%;
  justify-content: center;
}

.bg_gray {
  background-color: #F2F3F5 !important;
}

.about_double_img img {
  width: 100%;
}

.about_double_img {
  text-align: center;
}

.contact_info>li {
  margin-bottom: 20px;
}

.contact_info li a {
  font-size: 16px;
  color: #2c2c2c;
}

.contact_info li a:hover {
  color: var(--text-accent);
}

.contact_info li i {
  color: var(--text-accent);
  display: inline-block;
  margin-right: 10px;
  margin-top: 4px;
  font-size: 18px;
  vertical-align: top;
}

.contact_info.contact_info_link li {
  margin-bottom: 15px;
}

.contact_info_light li i {
  border-color: #687188;
  color: #687188;
}

.contact_info i+* {
  overflow: hidden;
  font-size: 16px;
  color: #2c2c2c;
  line-height: 26px;
  margin: 0;
  vertical-align: middle;
  max-width: 78%;
  display: inline-block;
}

.footer-cnt p {
  color: #2c2c2c;
  line-height: 26px;
  font-size: 16px;
}


.footer_logo {
  margin-bottom: 20px;
}

.footer_logo img {
  height: 50px;
}

.home-footer {
  padding: 80px 0 40px;
}


.breadcrumb_section {
  padding: 100px 0px;
  width: 100%;
  position: relative;
  background-color: #d1d8e0;
}

.background_bg {
  background-color: #F9FAFC;
  background-size: cover;
  background: url('../images/banner-bg.png') center center no-repeat;
  background-size: auto;
  background-size: cover;
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-title h1 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: bold;
  line-height: normal;
  color: #26397f;
  padding: 10px 15px;
}

.breadcrumb {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: solid 2px transparent;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  padding: 0 20px;
  height: 55px;
  transition: 0.3s ease-in-out;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "-";
  font-family: "Linearicons";
  vertical-align: middle;
  color: #fff;
}

.Oeffen-left .box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 15px;
}

.Oeffen-left .box span {
  display: block;
}

.Oeffen-left .box span:nth-child(1) {
  font-weight: 600;
  width: 120px;
}

.Oeffen-right h5 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.Oeffen-right {
  margin-bottom: 10px;
}

.Oeffen-right .box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  border: 0px !important;
  padding: 0px;
  box-shadow: none !important;
}

.Oeffen-right .box span {
  margin-bottom: 10px;
}

.Oeffen-right .box span {
  width: 120px;
  display: inline-block;
}

.Oeffen-right .box1 span {
  width: 180px;
  display: inline-block;
}

.Oeffen_cnt p {
  font-size: 16px;
}

.Oeffen_cnt h5 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.Oeffen_cnt p a {
  font-size: 18px;
  color: #ef5023;
}

.contact_style {
  text-align: center;
  margin-bottom: 30px;
  padding: 40px 20px;
  border-radius: 10px;
}

.contact_style .contact_icon {
  background-color: var(--bg-primary);
  margin: 0 0 5px;
  height: 70px;
  width: 70px;
  text-align: center;
  display: inline-block;
  overflow: hidden;
  border-radius: 100%;
  position: relative;
  z-index: 1;
}

.contact_style .contact_icon i {
  line-height: 68px;
  color: #fff;
  font-size: 30px;
  transition: all 0.5s ease-in-out;
}

.contact_text span,
.contact_text h5 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.contact_text p,
.contact_text p a {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 25px;
}


.priese .table thead th {
  background-color: var(--bg-primary);
  color: #fff;
}

.priese,
.priese_cont {
  margin-bottom: 30px;
}

.priese_cont h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-primary);
}

.priese_cont h3 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--bg-primary);
}

.priese_cont p {
  font-size: 16px;
}

.priese_cont p a:hover {
  color: #ef5023;
}

.priese_cont p span {
  font-weight: 600;
}

.priese_cont .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 30px;
}

.priese_cont .box .courseLeft {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.priese_cont .box span:nth-child(1) {
  font-weight: 600;
  width: 120px;
}

.content-tab .tab-list {
  display: flex;
  justify-content: center;
}

.content-tab .tab-content {
  padding-top: 50px;
}

.about-bottom-margin {
  margin-bottom: 50px;
}

.content-tab .tab-list button {
  color: #000;
  background-color: #F1F2F3;
  border: 1px solid #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 25px;
  cursor: pointer;
  position: relative;
}

.content-tab .tab-list button:hover,
.content-tab .tab-list button.active {
  background-color: var(--bg-primary) !important;
  color: #fff;
}

.content-tab .tab-list button.active::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: -19px;
  left: 50%;
  border-width: 10px;
  border-style: solid;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-top-color: var(--bg-primary);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);

}

.tabSec-border {
  padding: 20px;
  border: 1px solid #E6E6E6;
}

.tabSec-border img {
  width: 100%;
}

.flip-wrap {
  aspect-ratio: 16/11;
  margin-bottom: 30px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-wrap:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  overflow: hidden;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flip-back {
  background: #f4f4f4;
  justify-content: center;
  flex-direction: column;
  transform: rotateY(180deg);
  padding: 30px;
  text-align: center !important;
  font-size: 16px;
  color: #000000;
  font-family: Roboto;
  font-weight: 700;
  font-style: normal;
  display: flex;
}

.flip-back h3 {
  font-size: 1.5rem !important;
  margin-bottom: .5rem;
}

.flip-back p {
  font-size: 1rem;
  max-width: 60ch;
}

.cartIcon {
  position: relative;
  margin-right: 10px;
  width: 60px;
  padding: 0px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cartIcon i {
  font-size: 20px;
}

.cartCount {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background-color: var(--bg-primary);
  border-radius: 30px;
  border: 1px solid #b23715;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.authincation .login-aside {
  background: #fff;
  padding-top: 80px;
  max-width: 560px;
  width: 100%;
  z-index: 1;
  position: relative;
}

.orgcodeBg {
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}

.orgcodeContentarea {
  position: absolute;
  overflow: hidden;
  background: #fff;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  padding: 0px;
  background-size: cover;
}

.orgcodeBgCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.orgCodeForm {
  padding: 30px;
  width: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  border-radius: 20px;
  box-shadow: 1px 1px 10px #d6d6e8;
  background: #fff;
}

.authincation-content {
  background: #fff;
  box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.15);
}

.login-logo {
  height: 100px;
}

.show-pass {
  cursor: pointer;
  position: absolute;
  top: 13px;
  right: 15px;
  background-color: #F2F3F5;
  border-radius: 4px;
  width: 26px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.show-pass.active .fa-eye {
  display: inline-block;
}

.position-relative {
  position: relative !important;
}

.menuRightSticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  z-index: 100;
}

.box {
  background: var(--bg-white);
  padding: 15px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color) !important;
}

.orderList {
  border-bottom: 1px dashed var(--border-color);
  padding-top: 10px;
  padding-bottom: 10px;
}

.orderCountSection {
  width: 12%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orderCount {
  width: 33px;
  height: 33px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-light-grey);
  color: var(--text-primary);
  font-size: var(--font13);
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-0%, -50%);
  -webkit-transform: translate(-0%, -50%);
}

.orderItem {
  padding-right: 5px;
  padding-left: 10px;
}

.orderItemDate {
  font-size: var(--font13);
  color: var(--textMediumGrey);
}

.orderItemName {
  font-size: var(--font15);
  font-weight: var(--font-bold);
  line-height: 1.41;
  color: var(--text-primary);
}

.orderPrice {
  font-size: var(--font14);
  color: var(--text-primary);
  font-weight: var(--font-bold);
  display: flex;
  justify-content: center;
}

.orderPrice {
  width: 22%;
}

.orderPrice span {
  width: 60px;
  text-align: right;
}

.flexBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flexEvenSpace {
  justify-content: space-between;
}

.OrderSumm {
  padding: 10px 0px;
  padding-bottom: 10px;
}

.OrderSumm p {
  color: #000;
  font-size: 14px;
  margin: 7px 0px;
}

.OrderSumm h3 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0px 10px 0px;
}

.orderRemove button {
  border-radius: 100px;
  -webkit-border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px;
  background: var(--bg-light-grey);
  cursor: pointer;
  padding: 0px;
  margin: 0px;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 100px;
}

.orderRemove {
  width: 10%;
  justify-content: flex-end;
  display: flex;
}

.orderOverView.contactForm .form-control {
  border: 0px;
  border-radius: 0px;
  border-bottom: 1px solid #cccccc;
  padding-left: 0px;
}

.orderOverView h3 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  margin: 0px 0px 20px 0px;
}


.cartPopup {
  position: fixed;
  top: 0;
  right: -110%;
  z-index: 100000;
  width: 450px;
  background: var(--bg-white);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  height: 100vh;
}

.cartPopup.active {
  transition: all 0.5s;
  opacity: 1;
  right: 0
}

.defaultShow {
  display: inline-block;
}

.cartPopup .scanArea {
  height: calc(100vh - 50px);
  margin-top: 50px;
}

.cartPopup .modalHeader {
  border-bottom: 1px solid var(--border-color);
  z-index: 1;
  width: 100%;
  padding: 10px 15px;
}

.setCartPopupArea {
  padding: 20px;
}

.topMenuRight .dropdownContent {
  position: fixed;
  top: 0;
  right: -150%;
  bottom: 0;
  -webkit-transition: all .35s ease 0s;
  -o-transition: all .35s ease 0s;
  transition: all .35s ease 0s;
  z-index: 100001;
  width: 100%;
}

.topMenuRight .dropdownContent.active {
  right: 0;
  -webkit-transition: all .35s ease 0s;
  -o-transition: all .35s ease 0s;
  transition: all .35s ease 0s;
}

.topMenuRight .dropdown {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 400px;
  height: 100%;
  background: var(--bg-white);
}

.userInfoHeader {
  text-align: left;
  position: relative;
  padding: 10px 15px;
  border-bottom: 1px solid var(--border-color);
  height: 65px;
  background-color: #F2F3F5;
}

.userInfoHeader .profile-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.userInfoHeader .nameText {
  width: 45px;
  height: 45px;
  background: var(--bg-primary);
  border-radius: 100px;
  text-align: center;
  font-size: var(--font13);
  color: var(--text-white);
  float: left;
  border-radius: 100px;
  position: relative;
  line-height: 45px;
  margin-right: 15px;
  font-weight: 600;
}

.userInfoHeader .profile-name {
  font-size: var(--font15);
  color: var(--text-primary);
  margin-bottom: 0px;
}

.profileClose {
  position: absolute;
  right: 15px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  border: 0px;
  cursor: pointer;
  padding: 0px;
  margin: 0px;
  align-items: center;
  background: var(--bg-white);
  width: 35px;
  height: 35px;
  border-radius: 100px;
  display: flex !important;
  color: var(--text-primary);
  font-size: 18px;
}

.topMenuRight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topMenuRight li {
  display: flex;
  text-align: left;
  border-bottom: 1px dotted #999;
}

.topMenuRight li a {
  padding: 20px 20px;
  text-align: left;
  font-size: var(--font14);
}

.topMenuRight ul {
  height: calc(100vh - 150px);
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  scrollbar-color: #ccc #f6eded;
}

.topMenuRight ul::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}

.topMenuRight ul::-webkit-scrollbar-track {
  background-color: #fff;
}

.topMenuRight ul::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0px;
  border: 4px solid #fff;
}

.topMenuRight ul::-moz-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0px;
  border: 2px solid #fff;
}


.modalHeader {
  text-align: left;
  position: relative;
  padding: 10px 15px;
  border-bottom: 1px solid var(--border-color);
  height: 65px;
  background-color: #F5F4FC;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modalHeader h5 {
  font-size: var(--font18);
  color: var(--text-primary);
  margin-bottom: 0px;
}

.modalClose {
  position: absolute;
  right: 15px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  border: 0px;
  cursor: pointer;
  padding: 0px;
  margin: 0px;
  align-items: center;
  background: var(--bg-white);
  width: 35px;
  height: 35px;
  border-radius: 100px;
  display: flex !important;
  color: var(--text-grey);
  font-size: 18px;
}

.paymentTab ul li.active {
  border: 1px solid var(--textMediumGrey);
}

.paymentTab ul li {
  margin-bottom: 20px;
  cursor: pointer;
  padding: 5px;
  border-radius: 8px;
  border: 1px solid var(--bg-light-grey1);
}

.paymentTab ul li img {
  width: 50px;
  height: 50px;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
}

.paymentTab ul li h6 {
  font-size: 18px;
  margin-bottom: 0px;
}

#map iframe {
  height: 450px;
}

.popCloseBtn {
  padding: 20px;
}

.setCartPopupArea {
  height: calc(100vh - 150px);
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  scrollbar-color: #ccc #f6eded;
}

.setCartPopupArea::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}

.setCartPopupArea::-webkit-scrollbar-track {
  background-color: #fff;
}

.setCartPopupArea::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0px;
  border: 4px solid #fff;
}

.setCartPopupArea::-moz-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0px;
  border: 2px solid #fff;
}

.css-m8yh3a-control,
.css-hlgwow:focus-visible {
  border: 0px !important;
  border-radius: 0px !important;
  border-bottom: 1px solid #cccccc !important;
  padding-left: 0px !important;
  height: 50px;
}

.css-hlgwow,
.css-1dyz3mf {
  padding: 0px !important;
  height: 50px;
}

.addMemberBtn {
  font-size: 16px;
  margin-bottom: .5rem;
  color: var(--text-accent);
  cursor: pointer;
}

.newHomeSlider {
  position: absolute;
  top: -50px;
}

.newHomeSlider .swiper-slide {
  display: flex;
  justify-content: center;
}

.swiperContent {
  width: 80%;
  min-height: 180px;
  padding: 70px 70px 70px 70px;
  background-color: white;
  border-radius: 20px;
  border: 5px solid var(--bg-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.swiperContent h5 {
  display: block;
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 0.5em;
  color: var(--textMediumGrey);
}

.swiperContent h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--text-accent);
  font-weight: 900;
}

.swiperContent p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 0px;
}

& .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0)) !important;
}

& .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0)) !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--text-primary) !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 70% !important;
  height: 70% !important;
}

.modal-dialog.AddMember {
  max-width: 600px;
}

.AddMember .modal-body {
  padding: 0px;
}

.addMember-content {
  padding: 15px;
}

.AddMember .modalHeader h5 {
  color: var(--bg-primary);
  text-transform: uppercase;
}

.mobile-login-logo {
  display: none;
}

.KurseToggleBtn {
  height: 50px;
  border-radius: 0px !important;
  font-size: 16px;
  padding: 0px 15px;
  width: 100%;
  color: #fff !important;
  background-color: var(--bg-primary);
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  border: 0px;
}

.KurseToggleBtnInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.KurseToggleBtnInner i {
  font-size: 18px;
}

.KurseToggleBtnInner .openIcon.normal {
  transition: transform 0.5s ease-in-out;
  transform: rotate(0deg);
}

.KurseToggleBtnInner .openIcon.rotate {
  transition: transform 0.5s ease-in-out;
  transform: rotate(180deg);
}

.tab-list.mobile-tab {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.tab-list.mobile-tab.open {
  max-height: 500px;
}
































/**header**/
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  display: inline-block;
  z-index: 1;
  width: 100%;
  height: 100px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo {
  height: 65px;
}

.nav-trigger {
  height: 50px;
  width: 50px;
  z-index: 5;
  overflow: hidden;
  background-color: var(--bg-white);
  border-radius: 100px;
  border: var(--border-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
}

.nav-trigger img {
  height: 18px;
}

.nav-trigger img.userShowImage {
  height: 50px;
}

/**footer**/

.bottom_footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  padding: 20px 0px;
  text-align: center;
}

.bottom_footer p {
  font-size: 14px;
  color: #2c2c2c;
  font-weight: 400;
}

.bottom_footer p a {
  color: var(--text-accent);
}

/**layout**/
.flex-box {
  display: flex;
  flex-direction: row;
  padding: 20px 0px 0px 0px;
}

.row-height {
  min-height: 100vh;
  position: relative;
  height: 100vh;
}

.registration-bg {
  background: url(../images/signup-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.registration-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.content-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 0px;
  background: url(../images/signup-bg1.jpg) center center no-repeat;
  background-size: cover;
}

.content-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0E1961;
  font-weight: 700;
  text-transform: uppercase;
}

.content-left p {
  font-size: 16px;
  color: #0E1961;
  margin-top: 20px;
}

.content-right {
  padding: 40px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  width: 1200px;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 30px;
}

#social {
  position: absolute;
  bottom: 20px;
}

#social ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

#social ul li {
  float: left;
  margin: 0 15px 0 0;
  list-style: none;
}

#social li a {
  height: 40px;
  width: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background-color: #fff;
  border: 1px dashed var(--border-color);
  box-shadow: var(--shadow);
}

#social li a img {
  width: 16px;
  opacity: 0.6;
}

.social_icons li a:hover {
  border: 2px dashed var(--text-accent);
}

/**dropdown**/
.lang-dropdown {
  position: absolute;
  top: 100px;
  right: 15px;
  width: 200px;
  height: auto;
  background: rgba(255, 255, 255, 0.7);
  animation: fadeIn 0.3s ease;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border-top-right-radius: 0;
  box-shadow: var(--shadow);
}

.lang-dropdown::after {
  content: '';
  position: absolute;
  visibility: visible;
  top: -15px;
  right: -10px;
  border: 15px solid transparent;
  border-left: 15px solid #fff;
  clear: both;
}

.lang-dropdown ul {
  position: relative;
  z-index: 2;
}

.lang-dropdown ul li {
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  padding: 10px 0px;
}

.lang-dropdown ul li:hover {
  color: var(--bg-primary-hover);
}



/**modal**/

.ripple-button {
  padding: 12px 24px;
  font-size: 16px;
  background: var(--bg-primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
  z-index: 1;

}

.modal-content {
  position: absolute;
  right: 0;
  background: white;
  padding: 40px;
  border-radius: 0px;
  overflow: hidden;
  height: 100vh;
  width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/signup-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
  border: 0px;

}

.modal-content ul {
  position: relative;
  z-index: 2;
}

.modal-content ul li {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 20px;
  cursor: pointer;
}

.modal-content ul li:hover {
  color: var(--bg-primary-hover);
}

.pop-header {
  position: absolute;
  right: 0;
}

.ripple {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--tab-default-color, 0.9);
  border-radius: 50%;
  transform: scale(0);
  animation: rippleEffect 1s ease-out forwards;
}

@keyframes rippleEffect {
  to {
    transform: scale(20);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/**Elements**/
.me-auto {
  margin-right: auto !important;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.elements-page h5 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 20px;
  padding: 30px 0px;

}

.user-input {
  width: 100%;
  outline: 0;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 10px;
  background-color: white;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  border: 1px solid var(--border-color);
  height: calc(2.65rem + 2px);
  padding: 8px 16px;
  color: var(--text-primary);
}

.user-input-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.user-input:disabled,
.user-input[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.custom-file-upload input[type="file"] {
  display: none;
}

.custom-button {
  background-color: var(--bg-primary);
  color: white;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
}

.custom-button:hover {
  background-color: var(--bg-primary-hover);
}

.file-name {
  margin-left: 10px;
  font-size: 14px;
  color: var(--text-primary);
}

.user-select {
  position: relative;
  width: 100%;
  display: inline-block;
}

.input-group-text {
  border-radius: 10px;
  background-color: #e9ecef;
  border: 1px solid var(--border-color);
  border-right: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.input-group .user-input {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.user-select::after {
  content: "\ec3a";
  font-family: 'Linearicons';
  font-weight: 400;
  line-height: 1.5;
  position: absolute;
  top: 11px;
  right: 14px;
  pointer-events: none;
  font-size: 14px;
  color: var(--text-primary);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: .25rem;
  font-size: 13px;
  color: #dc3545;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.custom-checkbox label {
  margin-bottom: 0px;
  font-size: 14px;
  color: var(--text-primary);
}

.custom-checkbox input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  background-color: #fff;
  transition: all 0.2s ease;
  position: relative;
}

.custom-checkbox input[type="checkbox"]:checked {
  background-color: var(--bg-primary);
  border-color: var(--bg-primary);
}

.custom-checkbox input[type="checkbox"]:checked::after {
  content: '✔';
  position: absolute;
  top: -1px;
  left: 3px;
  font-size: 15px;
  color: white;
}

.custom-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
}

.custom-radio {
  position: relative;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.custom-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-mark {
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  transition: background-color 0.2s ease;
}

.custom-radio input[type="radio"]:checked~.radio-mark {
  background-color: var(--bg-primary);
  border-color: var(--bg-primary);
}

.radio-mark::after {
  content: "";
  position: absolute;
  display: none;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: white;
}

.custom-radio input[type="radio"]:checked~.radio-mark::after {
  display: block;
}

.custom-radio .radio-text {
  padding-left: 10px;
}

.image-upload-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.upload-label {
  background-color: #E6E1FF;
  color: #0E1961;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
  position: relative;
  width: 100%;
  /* background-image: -moz-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -ms-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -o-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -webkit-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: linear-gradient(to left, var(--gradient-left), var(--gradient-right)); */
}

.upload-label:hover {
  background-color: var(--bg-primary-hover);
  color: #fff;
}

.upload-label:hover::after {
  color: #fff;
}

input[type="file"] {
  display: none;
}

.image-preview {
  width: 100%;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--border-color);
}

.upload-mage-label::after {
  content: "\ec0d";
  font-family: 'Linearicons';
  font-weight: 400;
  line-height: 1.5;
  position: absolute;
  top: 8px;
  left: 14px;
  pointer-events: none;
  font-size: 16px;
  color: var(--text-white);
}

.document-upload-container {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 10px;
  align-items: center;
}

.image-preview-card {
  position: relative;
}

.image-preview-container {
  position: relative;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  padding: 5px;

}

.image-preview-container .previewTitle {
  font-size: 15px;
  color: #3f378f;
  text-align: center;
  margin-bottom: 0px;
  padding: 10px 5px;
}

.document-file-name {
  font-size: 14px;
  color: #333;
  margin-bottom: 0px;
}

.upload-label {
  position: relative;
  margin-bottom: 0px;
  text-align: center;
}

.upload-label span {
  text-align: center;
}

.upload-label::after {
  content: "\ec0d";
  font-family: 'Linearicons';
  font-weight: 400;
  line-height: 1.5;
  position: absolute;
  top: 8px;
  left: 15px;
  pointer-events: none;
  font-size: 16px;
  color: #0E1961;
  display: none;
}

.ql-toolbar.ql-snow {
  background-color: var(--bg-accent);
}

.ql-container {
  overflow: scroll;
}

.react-datepicker {
  font-family: "Poppins", sans-serif !important;
}

.react-datepicker__day--weekend {
  color: #000 !important;
}

.react-datepicker__day--selected,
.react-datepicker__day--keyboard-selected {
  background-color: var(--blue-bg-color) !important;
  color: #fff !important;
}

.react-datepicker__day--selected:focus {
  border: 0px !important
}

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

.react-datepicker__current-month {
  color: #fff !important;
  font-weight: 500 !important;
}

.react-datepicker__day-name {
  color: var(--bg-primary) !important;
  font-weight: 500 !important;
}

.react-datepicker__navigation--previous {
  border-right-color: #fff !important;
}

.react-datepicker__navigation--next {
  border-left-color: #fff !important;
}

.react-datepicker {
  border: 1px solid var(--border-color) !important;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle,
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
  border-bottom-color: var(--blue-bg-color) !important;
}

.react-datepicker__day--keyboard-selected {
  color: #fff !important;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before {
  border-top-color: var(--bg-primary) !important;
}

.react-datepicker__navigation-icon::before {
  top: 10px !important;
  border-color: #fff !important;
}

/**signle form**/
.form-submitted-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f6f8;
}

.form-submitted-card {
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wizard-container {
  width: 100%;
}

.wizard-container .form-submitted-card {
  min-height: 400px;
}

.form-submitted-card .custom-checkbox {
  margin-top: 20px;
}

.form-submitted-card .custom-checkbox a {
  color: var(--text-accent);
}

.form-submitted-card h2 {
  color: var(--text-green);
  margin-bottom: 10px;
  font-size: 25px;
}

.form-submitted-card p {
  font-size: 16px;
  margin-bottom: 0px;
  color: var(--text-primary);
}


/**Stepper form**/

.form-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-step p {
  font-size: 16px;
  margin-bottom: 0px;
}

.form-step p span {
  display: inline-block;
  width: 150px;
}

.scroll-box {
  max-height: 50vh;
  overflow-y: scroll;
  overflow-x: hidden;
  /* scrollbar-width: thin;
  -webkit-scrollbar-width: thin; */
  scrollbar-color: var(--tab-default-color) #f9f5f5;
  padding-right: 10px;
  scrollbar-width: 2px;
  /* Firefox: hide scrollbar */
  scrollbar-width: none;
  /* IE 10+ */
  -ms-overflow-style: none;
}

.scroll-box::-webkit-scrollbar {
  width: 0px;
}

/* Show scrollbar on hover */
.scroll-box:hover {
  scrollbar-width: thin;
  /* Firefox: show slim scrollbar */
}

.scroll-box:hover::-webkit-scrollbar {
  width: 1px;
}

.scroll-box:hover::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-box:hover::-webkit-scrollbar-thumb {
  background: var(--bg-primary);
  border-radius: 1px;
}

.wizard-container h3 {
  color: var(--text-primary);
  margin-bottom: 0px;
  font-size: 20px;
  padding: 0px 0px 20px 0px;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  padding: 0 0px 15px 0px;
  border-bottom: 1px dashed var(--border-color);
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--tab-default-color);
  color: var(--text-primary);
  line-height: 30px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.step-label {
  font-size: 14px;
  color: var(--text-accent);
}

.step.completed .step-number {
  background-color: var(--tab-completed-color);
  color: var(--text-white);
  background-image: -moz-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -ms-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -o-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -webkit-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: linear-gradient(to left, var(--gradient-left), var(--gradient-right));
}

.step.active .step-number {
  background-color: var(--tab-active-color);
  color: var(--text-white);
  background-image: -moz-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -ms-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -o-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -webkit-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: linear-gradient(to left, var(--gradient-left), var(--gradient-right));
}

.step::after {
  content: '';
  position: absolute;
  top: 25px;
  right: -50%;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  z-index: -1;
}

.step:last-child::after {
  content: none;
}

.step.completed::after {
  background-color: var(--bg-primary-hover);
}

/**Not found**/

.not-found-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(--bg-accent);
  font-family: 'Segoe UI', sans-serif;
}

.not-found-content {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.not-found-content h1 {
  font-size: 96px;
  margin: 0;
  color: #dc3545;
}

.not-found-content h2 {
  font-size: 28px;
  margin: 10px 0;
}

.not-found-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

/**chat**/

.sidebar {
  width: 220px;
  background-color: #2a2540;
  position: fixed;
  top: 0;
  bottom: 0;
  padding: 20px;
}

.sidebar h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 10px 0;
  cursor: pointer;
}

.upgrade {
  position: absolute;
  bottom: 20px;
  font-size: 14px;
  color: #ccc;
}

.main {
  margin-left: 240px;
  padding: 30px;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 30px;
}

.topbar button {
  background-color: #4c3f91;
  border: none;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.prompt {
  font-size: 28px;
  margin-bottom: 20px;
}

.tools {
  display: flex;
  gap: 20px;
}

.tool-card {
  background-color: #3a3360;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
}

.tool-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.tool-card p {
  font-size: 14px;
  color: #ccc;
}

/**chat**/


.chatPopup {
  position: fixed;
  right: 15px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 400px;
  box-shadow: var(--shadow-sm);
  height: 90vh;
  overflow: hidden;
  z-index: 10;
}

.chatPopup.active {
  bottom: 80px;
  animation: slidePopUp 0.6s ease-out forwards;
  -webkit-transition: all .35s ease 0s;
  -o-transition: all .35s ease 0s;
  transition: all .35s ease 0s;
}

.chatPopup.hide {
  bottom: -120%;
  animation: slidePopdown 0.6s ease-out forwards;
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1 ease 0s;
}

@keyframes slidePopUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 0;
  }

  to {
    transform: translateY(-100%);
    opacity: 1;
  }
}


.chatPopup .userInfo {
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

.chatPopup .userInfo h6 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.chatPopup .userInfo p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0px;
}


.sidebarLogin {
  position: fixed;
  bottom: 10px;
  z-index: 1;
  right: 10px;
}

.userImage {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  margin-right: 10px;
  overflow: hidden;
  background-color: var(--bg-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.userImage .userShowImage {
  height: 60px;
  object-fit: contain;
  object-position: center;
  -webkit-transition: all .35s ease 0s;
  -o-transition: all .35s ease 0s;
  transition: all .35s ease 0s;
  cursor: pointer;
}

.userImage.mobile {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 10px;
  display: none;
}

.userImage.mobile .userShowImage {
  height: 40px;
}

.userImage .closeImage {
  height: 15px;
  width: 15px;
  -webkit-transition: all .35s ease 0s;
  -o-transition: all .35s ease 0s;
  transition: all .35s ease 0s;
  cursor: pointer;
}

.message-bar {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;

}

.message-bar-footer textarea {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text-black);
  font-size: 14px;
  padding: 10px;
  width: 100%;
  resize: none;
  min-height: 50px;
}

.message-bar textarea::placeholder {
  color: #aaa;
}

.message-bar-footer {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  border-top: 1px solid var(--border-color);
  background-color: #fff;
}

.message-text {
  overflow: hidden;
  border: 1px solid var(--border-color);
  min-height: 50px;
  border-radius: 20px;
  max-height: 100px;
}

.message-bar-footer .icon {
  cursor: pointer;
  background-color: rgb(239, 237, 253, 1);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-bar-footer .icon:hover {
  background-color: var(--bg-accent);
}

.message-bar-footer .icon img {
  width: 20px;
  height: 20px;
}

.message-bar-footer .icon .upload-label-icon {
  cursor: pointer;
  margin-bottom: 0px;
}

.message-bar-footer .icon.sendIcon {
  background-color: var(--bg-primary);
  background-image: -moz-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -ms-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -o-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: -webkit-linear-gradient(to left, var(--gradient-left), var(--gradient-right));
  background-image: linear-gradient(to left, var(--gradient-left), var(--gradient-right));
}

.message-bar-footer .icon.sendIcon:hover {
  background-color: var(--bg-primary-hover);
}

.chatScroll {
  height: calc(100vh - 300px);
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-color: var(--tab-default-color) #f9f5f5;
  padding-right: 10px;
  scrollbar-width: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  padding-left: 10px;
  background-image: url(../images/chat-bg.jpg);
  background-repeat: repeat;
  background-size: cover;
  padding-bottom: 100px;
  padding-top: 20px;
}

.chatScroll::-webkit-scrollbar {
  width: 0px;
  display: none;
}

.chatScroll:hover::-webkit-scrollbar {
  width: 1px;
  display: none;
}

.chatScroll:hover::-webkit-scrollbar-track {
  background: transparent;
  display: none;
}

.chatScroll:hover::-webkit-scrollbar-thumb {
  background: var(--bg-primary);
  border-radius: 1px;
  display: none;
}

.chatScroll .message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;

}


.chatScroll .message .chat-send {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  width: 85%;
  margin-left: auto;
  background-color: #f2f7fb;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  margin-right: 15px;
  border-top-right-radius: 0px;
}

.chatScroll .message .chat-send::after {
  content: '';
  position: absolute;
  visibility: visible;
  top: 0px;
  right: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #f2f7fb;
  clear: both;
}

.chatScroll .message .chat-response {
  display: flex;
  justify-content: flex-start;
  width: 85%;
  margin-right: auto;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  position: relative;
  margin-left: 15px;
  border-top-left-radius: 0px;
}

.chatScroll .message .chat-response::after {
  content: '';
  position: absolute;
  visibility: visible;
  top: 0px;
  left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
  clear: both;
}


.chatScroll .text {
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 0px;
  font-weight: 400;
  padding: 15px 15px 0px 15px;
}

.chatScroll .message .chat-send .time {
  font-size: 12px;
  color: var(--text-grey);
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  font-weight: 300;
  margin-bottom: 0px;
  padding-right: 15px;
  padding-bottom: 15px;
}

.chatScroll .message .chat-response .time {
  font-size: 12px;
  color: var(--text-grey);
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  font-weight: 300;
  margin-bottom: 0px;
  padding-left: 15px;
  padding-bottom: 15px;
}

.chatOpen {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
}

.chatOpen span {
  background-color: #fff;
  padding: 5px 8px;
  color: var(--text-primary);
  border-radius: 8px;
  opacity: 0.7;
  font-size: 13px;
  font-weight: 400;
}

.chat-support-tab {
  margin-top: 10px;
}

.chat-support-tab ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.chat-support-tab ul li {
  background-color: #fff;
  padding: 10px 20px;
  color: var(--text-accent);
  text-align: center;
  border: 1px solid var(--border-color);
  font-size: 13px;
  font-weight: 400;
  border-radius: 30px;
}

.chatScroll .message .photo {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.chatScroll .message .photo img {
  height: 40px;
  object-fit: contain;
  object-position: center;
}

.chatCopyright {
  font-size: 11px;
  font-weight: 300;
  padding: 5px;
  color: var(--text-grey);
  width: 100%;
  text-align: center;
  background-color: var(--bg-accent);
}

.chatCopyright span {
  color: var(--text-accent);
  font-weight: 500;

}


/**login**/
.authincationForm {
  background-color: var(--bg-white);
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 33rem;
}

.loginHeader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  display: inline-block;
  z-index: 1;
  width: 100%;
  height: 100px;
  padding: 15px;
  display: flex;
  align-items: center;
  padding: 15px;
}

.login-logo {
  height: 55px;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding-left: 45px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  height: 45px;
}

.formLeftIcon {
  position: absolute;
  left: 15px;
  top: 12px;
  width: 18px;
}

.formRightIcon {
  position: absolute;
  right: 15px;
  top: 12px;
  width: 18px;
}

.login-btn {
  color: var(--text-accent);
  /* background-color: rgba(var(--bg-primary), 0.7); */
  background-color: rgb(239 237 253);
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  border: 0px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1.2px;
}

.login-btn:hover {
  color: #fff;
  background-color: var(--bg-primary-hover) !important;
}

.googleLogin {
  background-color: #ffff;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  letter-spacing: 1.2px;
}

.formCenterIcon {
  width: 18px;
  margin-right: 15px;
}

.googleLoginfont {
  color: var(--text-black);
  font-weight: 600;
  text-transform: uppercase;
}

.login-seprator {
  width: 100%;
  justify-content: center;
  display: flex;
  position: relative;
  padding: 10px 0px;
}

.border-line {
  height: 1px;
  width: 100%;
  background: #e9e9e9;
  position: absolute;
  top: 50%;
}

.sepratorText {
  font-size: .875rem;
  background: #fff;
  padding: 10px;
  position: relative;
  z-index: 1;
}

.chat-file-upload {
  position: absolute;
  right: 0px;
  background: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
}

.chat-file-upload.active {
  bottom: 0px;
  top: 0;
  animation: slidePopUp 0.6s ease-out forwards;
  -webkit-transition: all .35s ease 0s;
  -o-transition: all .35s ease 0s;
  transition: all .35s ease 0s;
}

.chat-file-upload.hide {
  bottom: -120%;
  animation: slidePopdown 0.6s ease-out forwards;
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1 ease 0s;
}

.isMenuActive {
  position: relative;
  height: calc(100vh - 187px);
}

.chat-file-upload-scroll {
  height: calc(100vh - 245px);
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-color: var(--tab-default-color) #f9f5f5;
  padding-right: 10px;
  scrollbar-width: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  padding: 20px;
}

.chat-file-upload-scroll::-webkit-scrollbar {
  width: 0px;
  display: none;
}

.chat-file-upload-scroll:hover::-webkit-scrollbar {
  width: 1px;
  display: none;
}

.chat-file-upload-scroll:hover::-webkit-scrollbar-track {
  background: transparent;
  display: none;
}

.chat-file-upload-scroll:hover::-webkit-scrollbar-thumb {
  background: var(--bg-primary);
  border-radius: 1px;
  display: none;
}

.userImage.chatFileBackIcon {
  width: 40px;
  height: 40px;
}

.imageBtn {
  width: 100%;
  outline: 0;
  font-size: 15px;
  line-height: 1.4;
  border-radius: 10px;
  background-color: white;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  color: var(--text-primary);
  align-items: center;
  font-weight: 600;
}

.imageBtn .userImage {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.imageBtn .userImage img {
  height: 40px;
  object-fit: cover;
}

.imageBtn span {
  font-size: 12px;
  display: block;
  font-weight: 300;
}


/**scan**/
.bg-curve {
  background-color: #fff;
  width: 100%;
  height: 80%;
  position: absolute;
  bottom: 0;
  z-index: -1;
  opacity: 0.5;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.scanImageIcon {
  /* border: 1px solid var(--border-color); */
  border-radius: 20px;
  margin-bottom: 40px;
  /* background-color: #fff; */
}

.scanImageIcon img {
  width: 80%;
  margin: 0 auto;
}

.screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 30px;
  /* background-color: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: var(--shadow); */
}

.screen h2 {
  font-size: 22px;
  color: #0E1961;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.screen p {
  font-size: 20px;
  color: #3f378f;
  text-align: center;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 50px !important;
}

.screen .btn {
  position: absolute;
  bottom: 100px;
  width: 90%;
}

.skipBtn {
  position: absolute;
  right: 50px;
  top: 50px;
  font-size: 16px;
  color: #0E1961;
  text-transform: uppercase;
  z-index: 10;
}

.swiper-pagination-bullet-active {
  background: #0E1961 !important
}

.scanImage {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  margin-bottom: 0px;
  background: #fff;
}

.scanImage img {
  width: 80%;
  margin: 0 auto;
}

.content-left-wrapper {
  text-align: center;
}


.ScanPopup {
  position: fixed;
  top: 110%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  width: 100%;
  background: var(--bg-white);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}

.ScanPopup.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s;
  opacity: 1;
  top: 0
}

.defaultShow {
  display: inline-block;
}

.ScanPopup .scanArea {
  height: calc(100vh - 64px);
  margin-top: 64px;
  position: relative;
}

.scanposition {
  height: calc(100vh - 64px) !important;
}

.scanposition section,
.scanposition section video {
  height: calc(100vh - 64px) !important;
}

.scan-btn {
  width: 85%;
  position: absolute;
  z-index: 1000;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.ScanPopup .modalHeader {
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  left: 0;
  padding: 10px 15px;
}

.modal-content-title {
  font-size: var(--font18);
  line-height: 32px;
  margin-bottom: 0px;
}

.formAreaContainer {
  padding: 40px 20px;
  width: 100%;
}

.formAreaContainer h2 {
  font-size: 20px;
  color: #0E1961;
  text-align: left;
  font-weight: 500;
  margin-bottom: 20px;
}

.formAreaContainer p {
  font-size: 17px;
  color: #3f378f;
  text-align: left;
  margin-bottom: 20px;
}

.buttonRow li {
  margin-bottom: 15px;
}

.buttonRow li:nth-child(2) {
  margin-bottom: 0px;
}

.upload-cancel {
  background-color: rgba(255, 255, 255, .8);
  color: #0E1961;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  position: absolute;
  bottom: -10px;
  width: 90%;
  border: 1px solid var(--border-color);
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-cancel span {
  background: red;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  color: #fff;
  font-size: 15px;
  margin-right: 5px;
  justify-content: center;
  align-items: center;
}

.seperator {
  height: 1px;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  margin: 40px 0px;
}

.upload-cancel:hover {
  background-color: var(--bg-primary-hover);
  color: #fff;
}

.introTopBg {
  position: fixed;
  top: -50px;
  right: 0;
  width: 100%;
}

.introTopBg img {
  width: 85%;
  position: absolute;
  right: 0;
  height: 300px;
}

.waitingSuccess {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: rgba(0, 0, 0, 0.3);
}

.successMessage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1040;
  background-color: var(--bg-white);
  padding: 30px 20px;
  border-radius: 10px;
  background-image: url(../images/signup-bg1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  width: 90%;
  box-shadow: var(--shadow);
}


.successMessageText {
  font-size: 16px;
  text-align: center;
  color: var(--text-green);
  font-weight: 500;
  line-height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.successMessageText1 {
  font-size: 16px;
  text-align: center;
  color: var(--text-red);
  font-weight: 500;
  line-height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.successMessageText span,
.successMessageText1 span {
  display: block;
}

.successMessageText img,
.successMessageText1 img {
  width: 60px;
  margin-bottom: 20px;
}

.successMessage .modalClose {
  top: 10px;
  border: 1px solid #e6e6e6 !important;
}