@charset "UTF-8";
body.admin-body {
  background-color: #f0f4fa;
}
body.login {
  background-color: transparent;
}

b {
  font-weight: bold;
}

h4 {
  color: #1763ff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 40px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  h4 {
    margin-bottom: 20px;
  }
}
h4 .add-file {
  text-decoration: underline;
  text-transform: initial;
  color: #ea3e33;
}

h5 {
  color: #1763ff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

h6 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  margin: 0px;
}

table {
  width: 100%;
}
table thead {
  font-weight: bold;
}
table thead tr td {
  border-bottom: 1px solid #d6d7d9;
}
table thead tr td:hover {
  border-color: #b0c0e1;
}
table tr td {
  padding: 15px 20px;
  font-size: 13px;
}
table tr td.error input {
  border-color: red;
}
table tr td.single {
  text-align: center;
  font-weight: bold;
  background: #f0f4fa;
}
table tr td.due-amount {
  color: #1763ff;
  cursor: pointer;
}
table tr td.info {
  background: #e0eaff;
}
table tr td.active {
  background: #b6ceff;
}
table tr td.danger {
  background: #ffb6b6;
}
table tr td.disabled {
  opacity: 0.5;
}
table tr td img {
  width: 35px;
  vertical-align: middle;
  margin-right: 23px;
}
table tr td input[type=text]:not(.input) {
  height: 22px;
  border: 1px solid #d6d7d9;
  outline: none;
  border-radius: 3px;
  width: 100%;
  padding: 0px 10px;
  min-width: 120px;
}
table tr td i {
  font-size: 22px;
}
table tr td .table-select {
  width: 100%;
  max-width: 170px;
  height: 30px;
}
table tr td.single-td {
  min-width: 120px;
  height: 35px;
  border: 1px solid #000;
}
table tr td.single-td a {
  display: block;
  min-height: 17px;
  height: 17px;
  max-height: 17px;
  width: 130px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
table tr td.single-td.occupied, table tr td.single-td.occupied-now {
  background-color: #c1dfc6;
}
table tr td.single-td.occupied .booking-name, table tr td.single-td.occupied-now .booking-name {
  font-size: 14px;
}
table tr td.single-td.occupied-now {
  background-color: #fde5e5;
}
table tr.group-tr td {
  text-transform: uppercase;
  font-size: 18px;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
}
table tr.stripe td {
  background: rgba(0, 0, 0, 0.1);
}
table tr.disabled td {
  opacity: 0.5;
  background: #ffe4e8;
}
table.compact tr td {
  padding: 5px;
}
table.compact tr td input {
  margin: 0px;
}
table.compact tr td input[type=text]:not(.input) {
  width: 120px;
}
table.compact tr td input[type=checkbox] {
  height: 20px;
  width: 20px;
}

.alert {
  border-radius: 10px;
  padding: 20px 40px;
  margin-bottom: 30px;
  background: white;
}
.alert.alert-danger {
  color: red;
}
.alert.alert-info {
  color: darkblue;
  background: lightblue;
}
.alert.alert-success {
  color: green;
}

.header {
  height: 80px;
  padding: 15px 30px;
  line-height: 50px;
  position: fixed;
  z-index: 1020;
  background-color: white;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header {
    align-items: center;
  }
}
.header .logo-wrapper img {
  margin-right: 17px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header .logo-wrapper img.eva-image {
    display: none;
  }
}
.header .logo-wrapper span {
  font-family: "Poppins", san-serif;
  color: #1763ff;
  font-weight: 300;
  font-size: 20px;
}
.header .logo-wrapper span span {
  font-weight: 500;
}
.header .logo-wrapper b {
  line-height: 50px;
  display: block;
  float: right;
  color: red;
  font-size: 24px;
}
.header .logo-wrapper b.blue {
  color: #313541;
}
@media screen and (max-width: 768px) {
  .header .logo-wrapper b {
    display: none;
  }
}
.header i {
  line-height: 50px;
  font-size: 50px;
  color: #1763ff;
}
.header .profile-image {
  float: right;
}
.header .profile-image img {
  max-width: 50px;
  max-height: 50px;
}
@media screen and (max-width: 768px) {
  .header .profile-image {
    display: none;
  }
}
.header .mobile-menu {
  display: none;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  width: 26px;
  height: 26px;
  position: relative;
  margin-left: auto;
}
.header .mobile-menu:after {
  content: "";
  top: 10px;
  background-color: #000;
  left: 0;
  right: 0;
  height: 2px;
  width: 26px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .header .mobile-menu {
    display: block;
  }
}

.sidebar {
  position: fixed;
  padding-top: 110px;
  z-index: 1010;
  top: 0;
  bottom: 0;
  background: #313541;
  left: 0;
  width: auto;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
  .sidebar.active {
    display: block;
    left: auto;
    right: 0;
    width: 70%;
  }
}
.sidebar:hover span {
  display: inline-block;
}
.sidebar:hover i {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .sidebar:hover i {
    margin-right: 5px;
  }
}
.sidebar ul li a {
  padding: 10px 0px;
  padding-left: 28px;
  display: block;
}
.sidebar ul li a i,
.sidebar ul li a span {
  color: #8f9197;
}
.sidebar ul li a span {
  padding-right: 18px;
  display: none;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .sidebar ul li a span {
    display: inline-block;
  }
}
.sidebar ul li a i {
  margin-right: 22px;
}
.sidebar ul li a b {
  float: right;
  margin: 0px 20px;
  background: #8f9197;
  display: block;
  padding: 0px 5px;
  border-radius: 5px;
  color: #1763ff;
}
.sidebar ul li:hover a, .sidebar ul li.active a {
  background-color: #1763ff;
}
.sidebar ul li:hover a i,
.sidebar ul li:hover a span, .sidebar ul li.active a i,
.sidebar ul li.active a span {
  color: white;
}
.sidebar ul li:hover a b, .sidebar ul li.active a b {
  background: white;
}

.content-inner {
  padding-top: 80px;
  padding-left: 260px;
}
@media screen and (max-width: 768px) {
  .content-inner {
    padding-left: 0px;
  }
}

.content-wrapper {
  padding: 40px 30px;
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    width: 100%;
    padding: 20px 15px;
  }
}

.white-content {
  background-color: white;
  border-radius: 10px;
  padding: 30px 40px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .white-content {
    overflow-x: auto;
    padding: 10px 20px;
    margin: 15px 5px;
  }
}
.white-content .right-arrow-more,
.white-content .left-arrow-more {
  width: 25px;
  height: 25px;
  background: #0ec99b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: fixed;
  top: 50%;
  cursor: pointer;
}
.white-content .right-arrow-more.absolute,
.white-content .left-arrow-more.absolute {
  position: absolute;
}
.white-content .right-arrow-more {
  right: 37px;
}
@media screen and (max-width: 768px) {
  .white-content .right-arrow-more {
    right: 30px;
  }
}
.white-content .right-arrow-more.absolute {
  right: 10px;
}
.white-content .left-arrow-more {
  left: 300px;
}
@media screen and (max-width: 768px) {
  .white-content .left-arrow-more {
    left: 30px;
  }
}
.white-content .left-arrow-more.absolute {
  left: 10px;
}

.form-control {
  margin-bottom: 20px;
}
.form-control label {
  font-size: 12px;
  text-transform: uppercase;
  color: #1763ff;
}
.form-control label.file-upload {
  display: block;
  max-width: 140px;
  margin-top: 10px;
}
.form-control label.file-upload input {
  display: none;
}
.form-control textarea,
.form-control select,
.form-control input {
  display: block;
  width: 100%;
  border-width: 1px;
  border-color: #e3e3e4;
  height: 35px;
  border-style: solid;
  border-radius: 5px;
  margin-top: 10px;
  padding: 0px 15px;
  color: #2f353c;
  outline: none;
}
.form-control textarea[readonly],
.form-control select[readonly],
.form-control input[readonly] {
  background: #eee;
}
.form-control textarea:focus:not([readonly]),
.form-control select:focus:not([readonly]),
.form-control input:focus:not([readonly]) {
  border-color: #1763ff;
  outline: none;
}
.form-control textarea::placeholder,
.form-control select::placeholder,
.form-control input::placeholder {
  color: gray;
}
.form-control textarea {
  height: 150px;
  padding-top: 12px;
}
.form-control .required {
  font-style: normal;
  font-size: 10px;
  color: #f03268;
}
.form-control small {
  display: block;
  color: #505050;
  text-transform: none;
  font-size: 12px;
}
.form-control.checkbox label {
  display: block;
  color: black;
  text-transform: initial;
  font-size: 13px;
  font-family: "Poppins", san-serif;
}
.form-control.checkbox label a {
  font-size: 13px;
  color: #1763ff;
}
.form-control.checkbox label i {
  vertical-align: text-top;
  padding-right: 7px;
  font-size: 18px;
  color: #1763ff;
}
.form-control.checkbox label.active i:before {
  content: "";
}
.form-control.checkbox input {
  display: none;
}

.translateble-container {
  margin-top: 10px;
}
.translateble-container .langs-container .lang-buttons {
  background-color: #fff;
  color: #1d62ff;
  padding: 5px;
  border-radius: 5px;
  margin: 0px 5px;
  display: inline-block;
  border: 1px solid #1d62ff;
  width: 35px;
  height: 33px;
  text-align: center;
}
.translateble-container .langs-container .lang-buttons.active {
  background-color: #1d62ff;
  color: #fff;
}
.translateble-container .translates-container .multi-translate {
  display: none;
}
.translateble-container .translates-container .multi-translate.active {
  display: block;
}

.langs-files-container .content-container {
  display: none;
}
.langs-files-container .content-container.active {
  display: block;
}

.form-info {
  margin-bottom: 10px;
}
.form-info .forgot-info {
  text-align: right;
}
.form-info .forgot-info a {
  font-size: 13px;
  color: #1763ff;
}
.form-info .forgot-info a:hover {
  text-decoration: underline;
}

.text-link {
  font-size: inherit;
  color: #1763ff;
}
.text-link:hover {
  text-decoration: underline;
}

.button {
  display: inline-block;
  padding-right: 30px;
  padding-left: 30px;
  text-align: center;
  font-size: 13px;
  border: 1px solid #949598;
  color: #515253;
  height: 36px;
  line-height: 33px;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.button.button-blue, .button:hover {
  border-color: #1763ff;
  background-color: #1763ff;
  color: white;
  box-shadow: 0px 4px 22px #2196F3;
  transition: all 0.3s ease;
}
.button.button-blue {
  box-shadow: none;
}
.button.button-blue:hover {
  transition: all 0.3s ease;
  box-shadow: 0px 4px 22px #2196F3;
}
.button.button-green {
  border-color: #0ec99b;
  background-color: #0ec99b;
  color: white;
}
.button.button-green:hover {
  box-shadow: 0px 4px 22px #50dfbc;
}
.button.button-purple {
  border-color: #6f0ec9;
  background-color: #6f0ec9;
  color: white;
}
.button.button-purple:hover {
  box-shadow: 0px 4px 22px #6f0ec9;
}
.button.button-block {
  width: 100%;
}

.button-move {
  color: #fff;
  background: #03A9F4;
  border-radius: 15px;
  padding: 5px 10px;
  cursor: grab !important;
  font-size: 13px;
}

.switch-wrapper p {
  display: inline-block;
  font-size: 13px;
  text-transform: initial;
  color: black;
  cursor: pointer;
}

.filters .button {
  margin: 0;
  width: 100%;
}
.filters .form-control {
  margin: 0;
}
.filters .form-control select,
.filters .form-control input {
  margin: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  cursor: pointer;
  vertical-align: bottom;
  margin-right: 5px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d2dceb;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.rounded {
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .rounded {
    max-width: 100%;
  }
}

.image-border-container {
  max-width: 200px;
  display: inline-block;
}
.image-border-container img {
  max-width: 100%;
  border: 3px solid #505050;
  border-radius: 5px;
}

.accordion {
  margin-bottom: 20px;
  background: white;
}
.accordion .title {
  display: block;
  line-height: 45px;
  height: 45px;
  padding: 0px 20px;
  border-radius: 5px;
  cursor: pointer;
}
.accordion .content {
  display: none;
  padding: 10px;
  border-radius: 5px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border: 1px solid #1763ff;
}
.accordion.active .title {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background: #1763ff;
  color: white;
}
.accordion.active .content {
  display: block;
}
.accordion .accordion .content {
  display: none;
}
.accordion .accordion.active .content {
  display: block;
}

.subnav-scroll {
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 30px;
  overflow-x: auto;
  display: flex;
}
.subnav-scroll a {
  line-height: 24px;
  display: inline-block;
  padding: 5px 15px;
  border-right: 1px solid #f0f4fa;
}
.subnav-scroll a:last-child {
  border-right: none;
}
.subnav-scroll a:hover, .subnav-scroll a.selected {
  color: #1763ff;
  text-decoration: underline;
}

.subnav-pages {
  display: none;
}
.subnav-pages.selected {
  display: block;
}

.h-scroller {
  overflow-x: auto;
  position: relative;
}
.h-scroller .scrollbar table {
  width: auto;
  float: left;
}

.login-wrapper {
  background: url("../img/login-background.jpg") 50% no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
}

.login-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 380px;
  background-color: #fdfdfe;
  padding: 55px 40px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .login-form {
    width: calc(100% - 20px);
  }
}
.login-form .alert {
  border-radius: 10px;
  padding: 20px;
  color: white;
}
.login-form .alert.alert-danger {
  background-color: #cce5ff;
}
.login-form .alert.alert-info {
  background-color: #cce5ff;
}
.login-form .alert.alert-success {
  background-color: #d4edda;
}
.login-form .form-control {
  margin-bottom: 30px;
}
.login-form .form-control input {
  border-width: 0px 0px 1px 0px;
  border-radius: 0px;
  height: 30px;
  margin-top: 0px;
}
.login-form .button {
  display: block;
  width: 100%;
}

.google-translate {
  font-size: inherit;
  display: block;
  position: relative;
  cursor: pointer;
}
.google-translate i {
  font-size: 13px;
}
.google-translate:hover {
  background: #d7d4ff;
}
.google-translate:hover:after {
  content: "Click to translate";
  font-size: 10px;
  position: absolute;
  bottom: -16px;
  right: 0px;
}

.multi-translate {
  position: relative;
}
.multi-translate a {
  display: none;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 13px;
  margin-top: 5px;
}
.multi-translate:hover a {
  display: block;
}
.multi-translate:hover a:hover {
  text-decoration: underline;
}

.green-checkbox {
  color: #4CAF50;
}

.rates-wrapper, .booking-wrapper {
  position: relative;
}
.rates-wrapper .rates-scroller, .rates-wrapper .booking-wrapper, .booking-wrapper .rates-scroller, .booking-wrapper .booking-wrapper {
  margin-left: 160px;
  overflow-x: scroll;
  overflow-y: visible;
  padding-bottom: 5px;
  width: 970px;
}
.rates-wrapper .rates-scroller .fixed-side, .rates-wrapper .booking-wrapper .fixed-side, .booking-wrapper .rates-scroller .fixed-side, .booking-wrapper .booking-wrapper .fixed-side {
  left: 0;
  position: absolute;
  top: auto;
  width: 150px !important;
  line-height: 20px;
  padding-top: 9px;
}
.rates-wrapper .rates-scroller .fixed-side.single, .rates-wrapper .booking-wrapper .fixed-side.single, .booking-wrapper .rates-scroller .fixed-side.single, .booking-wrapper .booking-wrapper .fixed-side.single {
  text-align: left;
}
.rates-wrapper .rates-scroller .fixed-side.row-dates, .rates-wrapper .booking-wrapper .fixed-side.row-dates, .booking-wrapper .rates-scroller .fixed-side.row-dates, .booking-wrapper .booking-wrapper .fixed-side.row-dates {
  height: 38px;
  margin-top: 10px;
}
.rates-wrapper .rates-scroller table td, .rates-wrapper .booking-wrapper table td, .booking-wrapper .rates-scroller table td, .booking-wrapper .booking-wrapper table td {
  width: 130px !important;
  height: 32px;
}

.manual-booking .rates-scroller .fixed-side.row-dates {
  margin-top: 0px;
}

.booking-wrapper table td input[type=text]:not(.input) {
  height: 32px;
  border: 1px solid #d6d7d9;
  outline: none;
  border-radius: 3px;
  width: 100%;
  padding: 0px 10px;
}
.booking-wrapper table td.error input[type=text]:not(.input) {
  border-color: red;
}
.booking-wrapper table.compact tr td {
  padding: 2px 5px;
}
.booking-wrapper table.compact tr td input {
  margin: 0px;
}
.booking-wrapper table.compact tr td input.required-field {
  background-color: #e0eaff;
}
.booking-wrapper table.compact tr td select {
  margin: 0px;
}
.booking-wrapper table.compact tr td select.required-field {
  background-color: #e0eaff;
}
.booking-wrapper table.compact tr td .room_number {
  font-size: 13px;
}
.booking-wrapper table.compact tr td .action-button {
  font-size: 13px;
  color: blue;
}
.booking-wrapper table.compact tr td input[type=text]:not(.input) {
  width: 200px;
}
.booking-wrapper table.compact tr td input[type=text]:not(.input).datetimepicker {
  width: 100px;
}
.booking-wrapper table.compact tr td input[type=number] {
  padding: 0px 5px;
  width: 100px;
}
.booking-wrapper table.compact tr td input[type=checkbox] {
  height: 20px;
  width: 20px;
  margin: auto;
}
.booking-wrapper table.compact tr td select {
  padding: 0px;
  min-width: 100px;
}
.booking-wrapper table.compact tr td textarea {
  height: 70px;
  min-width: 300px;
}
.booking-wrapper table .default-price {
  display: none;
  font-size: 12px;
  color: blue;
  text-decoration: underline;
}
.booking-wrapper table .default-price span {
  font-size: 12px;
}

.total-all {
  float: right;
}

.table-fixed-container {
  position: fixed;
  left: 450px;
  right: 70px;
  background: #fff;
  z-index: 10;
  display: none;
  overflow: hidden;
  padding-left: 40px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .table-fixed-container {
    left: 160px;
    right: 40px;
  }
}
.table-fixed-container .table-fixed {
  position: relative;
  overflow-x: scroll;
}
.table-fixed-container .row-dates {
  display: none;
}
.table-fixed-container table td {
  min-width: 130px;
  font-size: 13px;
}

.booking-header .h4 {
  display: inline-block;
}
.booking-header .btn-primary {
  float: right;
}
.booking-header .btn-primary i {
  font-size: 30px;
}

.float-right {
  float: right;
}

@media screen and (max-width: 768px) {
  .bulk-btn-conference, .bulk-btn, .bulk-btn-events {
    margin: 0px !important;
    margin-bottom: 10px !important;
  }
}

.booking-table td {
  padding: 10px;
  font-size: 14px;
}
.booking-table tr.darken td {
  background: #bbbbbb;
}
.booking-table tr.table-heading {
  font-weight: bold;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.booking-table label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
}
.booking-table input[type=checkbox] {
  width: auto;
  height: auto;
  display: inline;
  margin: 0;
}

.only-print {
  display: none;
}

@media print {
  .hide-on-print,
.sidebar,
.header {
    display: none;
  }

  .only-print {
    display: block;
  }

  .content-wrapper,
.content-inner {
    padding: 0;
    background: transparent;
    padding-left: 0 !important;
  }

  .booking-table tr.darken td {
    background: transparent;
  }

  .form-control textarea,
.form-control select,
.form-control input {
    border-radius: 0;
    background: transparent;
    border: none;
    font-weight: bold;
    -webkit-appearance: none;
  }
  .form-control .required {
    display: none;
  }
}
.guests-expander .expandable {
  height: 66px;
  overflow: hidden;
}
.guests-expander .text-link {
  font-size: 0.8em;
  color: #1763ff;
}
.guests-expander .text-link:hover {
  text-decoration: underline;
}
.guests-expander.expanded .expandable {
  height: auto;
  overflow: none;
}

.pagination {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.pagination li {
  display: block;
  padding: 3px 10px;
}
.pagination li:hover, .pagination li.active {
  color: #1763ff;
}
.pagination li.active {
  font-weight: bold;
}

.suggester {
  position: relative;
}
.suggester .suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0px;
  border: 1px solid #e7e7e7;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background: white;
  display: none;
  color: #000;
  max-height: 50vh;
  overflow-y: auto;
  z-index: 10;
}
.suggester .suggestions .list .item {
  border-bottom: 1px solid #e7e7e7;
  padding: 10px;
  font-size: 14px;
  display: block;
}
.suggester .suggestions .list .item.active, .suggester .suggestions .list .item:hover {
  background: #1763ff;
  color: white;
}
.suggester .suggestions .alert {
  margin: 10px;
}