@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  --font: "DM Sans", sans-serif;
  --primary-color: #B72025;
  --black: #191e3b;
  --white: #fff;
  --text: #191e3b;
  --red: #e61e43;
  --grey: #f5f5f5;
  --bg0: transarent;
  --filter-white: brightness(0) invert(1);
  --filter-black: grayscale(100%);
  --border-radius-box:16px;
  --border-radius-normal:100px;
  --light-background-color:#fff;
  --light-border-color-primary:#d6d6d6;
  --button-outline-bg-hover:#f1f0ee;
}

[data-theme=dark] {
  --primary-color: #B72025;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

img,
picture,
svg,
video {
  max-width: 100%;
}

ol,
ul {
  list-style: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font), sans-serif;
  display: block;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1.5;
}

.wrapper {
  position: relative;
  background-color: #f5f5f5;
  min-height: calc(100vh - 50px);
}

.ov-hidden {
  overflow: hidden;
}

.container {
  max-width: 1360px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0;
  font-weight: 600;
}

a {
  color: var(--text);
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover, a:focus {
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

input,
button {
  outline: none;
  background-color: var(--bg0);
}

hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.form-group {
  margin-bottom: 1.6rem;
}

.input-radio input {
  accent-color: var(--red);
}

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

.dropdown-menu {
  font-size: 1.6rem;
  border-radius: 16px;
  overflow: hidden;
}
.dropdown-item {
  padding: 6px 16px;
}
.dropdown-item:hover {
  background-color: var(--bg0);
}
.account-group .dropdown-menu{
	min-width:100%;
}
.text-base {
  letter-spacing: -0.03rem;
  font-size: 1.6rem;
  line-height: 150%;
  font-weight: 400;
}
.text-base.text-bold {
  font-weight: 700;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--light-border-color-primary);
}

.btn {
  padding: 6px 12px;
  font-size: 1.6rem;
  border-radius: 4px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-default {
  background-color: var(--bg0);
  border-color: var(--bg0);
}

.btn-darkmode {
  color: var(--white);
}
.btn-darkmode:hover {
  color: var(--white);
}

.btn-save {
  background-color: #a6ecab;
  color: #017b0a;
  /* width: 100px; */
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-cancel {
  background-color: #ffc5c5;
  color: #be2828;
  /* width: 100px; */
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px;
  font-size: 13px;
  line-height: 1.5;
  padding-left: 10px;
  border-radius: 0.357rem;
  padding-right: 10px;
  font-weight: 500;
}

.btn-add {
  background: #9df99d !important;
  color: #003c00 !important;
}

.btn-delete {
  background: #d0d0d0;
  color: #f99a9a;
}

.print-file {
  background: #bfbeef !important;
  color: #03009a !important;
}

.btn-excel {
  color: #008c04 !important;
  background: #a2ecb5 !important;
}

.insert-file {
  background: #e1ec86 !important;
  color: #4b5400 !important;
}

.pdf-file {
  background: #efcaca !important;
  color: #bf0000 !important;
}

.trash {
  background: #f7c3c2;
  border: none;
  color: #de0400;
}

.edit {
  color: #f59d39;
  background-color: #fbe2c5;
  border: none;
}

.btn-darkmode #icon-sun {
  display: block;
}
.btn-darkmode #icon-moon {
  display: none;
}
.btn-darkmode.dark #icon-sun {
  display: none;
}
.btn-darkmode.dark #icon-moon {
  display: block;
}

.breadcrumb {
  padding: 0;
  margin-bottom: 0;
  font-size: 1.4rem;
  text-align: left;
  text-transform: capitalize;
  background-color: var(--bg0);
}
.breadcrumb-item {
  font-weight: bold;
}
.breadcrumb-item.active {
  color: #6c757d;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.pagination .page-item .page-link {
  position: relative;
  display: block;
  padding: 0.8rem 1.2rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #001c40;
  background-color: #FFF;
  border: 1px solid #dee2e6;
}
.pagination .page-item .page-link:not(:disabled):not(.disable) {
  cursor: pointer;
}
.pagination .page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
}
.pagination .page-item.disable .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #FFF;
  border-color: #dee2e6;
}
.pagination .page-item.active .page-link {
  z-index: 1;
  color: #FFF;
  background-color: var(--black);
  border-color: var(--black);
}

.info-tong {
  font-size: 1.2rem !important;
  margin-top: 5px !important;
  border-top: 1px dashed #e8e8e8;
  padding-top: 10px !important;
}

.form-control,
.select2-container--default .select2-selection--multiple {
  display: block;
  width: 100%;
  padding: 0.6rem 1.2rem;
  font-size: 1.5rem;
  line-height: 1.5;
  color: black;
  background-color: #f1f1f1;
  background-clip: padding-box;
  height: 45px;
  border: 1px solid #dadada;
  border-radius: 0.6rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.form-control::placeholder,
.select2-container--default .select2-selection--multiple::placeholder {
  color: #6c757d;
  opacity: 1;
}

.select2-container--default .select2-selection--multiple {
  height: auto;
  min-height: 45px;
  padding: 0.357rem 1.2rem;
}

input[type=checkbox].form-control, input[type=radio].form-control {
  display: inline-block;
  border: 0;
  width: auto;
  height: auto;
}

.control-label {
  font-weight: 600;
  color: var(--black);
}

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

.form-control-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-prepend > .input-group-text, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-append > .btn {
  padding: 0.4rem 0.8rem;
  font-size: 1.225rem;
  line-height: 1.5;
  border-radius: 4px;
}

select.form-control:not([size]):not([multiple]) {
  height: 45px;
}

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), .input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), .input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]), .input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), .input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: calc(2.6375rem + 4px);
}

.swal-title {
  color: var(--black);
}

.swal-text {
  color: var(--black);
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem !important;
}

.swal-button {
  background: #bfffb8 !important;
  border-radius: 0.4rem;
  box-shadow: none !important;
  color: #0d8800 !important;
  border: none;
}

.swal-button--cancel {
  color: #d21010 !important;
  border: none;
  background-color: #ffbdbd !important;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-main {
  background-color: var(--black);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-btngroup {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-btngroup .account-group {
  color: var(--white);
}
.header-btngroup .account-group .btn-default {
  color: inherit;
}

.signform {
  background-color: red;
  background-image: linear-gradient(-45deg, var(--primary-color) 0%, var(--black) 100%);
  position: relative;
}
.signform-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}
.signform-inner .logo-form {
  margin-bottom: 1.5rem;
}
.signform-inner .logo-form-img {
  height: 90px;
}
.signform-inner-box {
  background-color: var(--white);
  padding: 20px;
  border-radius: 12px;
  min-width: 350px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.signform-inner-box label {
  display: block;
  font-weight: 600;
}
.signform-inner-box .input-group {
  position: relative;
}
.signform-inner-box .input-group-append {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  z-index: 1;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: var(--light-border-color-primary);
  border-radius: 8px;
  cursor: pointer;
}
.signform-inner-box .input-group-text {
  width: 100%;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 0;
}
.signform-inner-box .input-group input {
  width: 100%;
  height: 40px;
  padding: 4px;
  border: 1px solid var(--light-border-color-primary);
  border-radius: 8px;
}
.signform-inner-box .box-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.signform-inner-box .check-remember {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
.signform-inner-box .check-remember-input {
  accent-color: var(--red);
}
.signform-inner-box .check-remember-label {
  margin-bottom: 0;
  cursor: pointer;
}
.signform-inner-box .forgotpassword {
  text-decoration: underline;
  color: var(--primary-color);
}
.signform-inner-box .change-signform a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}
.signform-inner-box .btn-form {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}

.app-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 280px;
  background-color: var(--black);
  overflow: auto;
  z-index: 10;
}
.app-sidebar::-webkit-scrollbar {
  width: 6px;
}
.app-sidebar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}
.app-sidebar .sidebar-wrap {
  overflow: auto;
}
.app-sidebar .sidebar-wrap .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
}
.app-sidebar .sidebar-wrap .logo img {
  height: 50px;
  margin-top: 10px;
}
.app-sidebar .sidebar-wrap .logo span {
  font-weight: bold;
}
.app-sidebar .sidebar-menu {
  padding: 10px;
}
.app-sidebar .sidebar-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  font-size: 1.6rem;
  border-radius: 8px;
  color: var(--white);
  font-weight: 600;
  border: 1px solid var(--bg0);
  transition: border-left-color 0.3s ease, background-color 0.3s ease;
}
.app-sidebar .sidebar-menu__link.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--white);
}
.app-sidebar .sidebar-menu__link:hover, .app-sidebar .sidebar-menu__link:focus {
  background-color: #c6defd;
  color: var(--black);
  border-color: var(--white);
}
.app-sidebar .sidebar-menu__icon {
  display: inline-flex;
  font-size: 2.6rem;
  width: 26px;
}
.app-sidebar .sidebar-menu__submenu {
  display: block;
  margin-left: 10px;
}
.app-sidebar .sidebar-menu__item {
  position: relative;
  margin-bottom: 10px;
}
.app-sidebar .sidebar-menu__item.haschildren .sidebar-menu__link {
  margin-bottom: 10px;
}
.app-sidebar .sidebar-menu__item.haschildren > .sidebar-menu__link::after {
  content: "\f107";
  font-family: fontawesome;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}

.app-main {
  min-height: calc(100vh - 50px);
  background-color: var(--bg0);
  transition: margin-left 0.3s ease;
}
@media (min-width: 768px) {
  .app-main {
    margin-left: 280px;
  }
}

.app-title {
  display: block;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  background-color: #FFF;
  border-radius: 0.375rem;
  padding: 10px 30px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #FFD43B;
  margin-bottom: 20px;
}

.main-wrap {
  padding: 20px;
}

.widget-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2px;
  color: #FFF;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
}
.widget-small .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 85px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 2px 0 0 2px;
  font-size: 4rem;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
}
.widget-small .info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 20px;
  -ms-flex-item-align: center;
  align-self: center;
}
.widget-small .info h4 {
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 5px;
  font-weight: 600;
  color: #d20000;
  font-size: 1.5rem;
}
.widget-small .info p {
  margin: 0;
  font-size: 1.6rem;
}
.widget-small.coloured-icon {
  background-color: #fff;
  color: var(--black);
  border-radius: 0.6rem;
  padding: 10px;
}
.widget-small.primary.coloured-icon .icon {
  background-color: #b9ffd3;
  color: #22ad56;
  border-radius: 0.6rem;
}
.widget-small.info.coloured-icon .icon {
  background-color: #adcbf3;
  color: #1d5aab;
  border-radius: 0.6rem;
}
.widget-small.warning.coloured-icon .icon {
  background-color: #fde1c3;
  color: #ff8b07;
  border-radius: 0.6rem;
}
.widget-small.danger.coloured-icon .icon {
  background-color: #f9baba;
  color: #de2222;
  border-radius: 0.6rem;
}

.tile {
  position: relative;
  background: var(--white);
  border-radius: 0.375rem;
  padding: 20px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tile-title {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 20px;
  /* text-align: center; */
  border-bottom: 2px solid #FFD43B;
  padding-bottom: 10px;
  /* border-left: 3px solid black; */
  padding-left: 5px;
  color: var(--black);
}

.badge {
  display: inline-block;
  padding: 7px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  color: white;
}

.bg-info {
  background-color: #b6bef5 !important;
  color: #0f2094 !important;
}

.bg-warning {
  background-color: #f2f98a !important;
  color: #8b9400 !important;
}

.bg-success {
  background-color: #bfefc4 !important;
  color: #02790c !important;
}

.bg-danger {
  background-color: #f9c9cd !important;
  color: #a90312 !important;
}

.element-button {
  position: relative;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.element-button__item {
  display: inline;
}
.element-button__item a {
  font-weight: bolder;
}

table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
  outline: none !important;
  background: #eee;
}

table.table-bordered.dataTable th, table.table-bordered.dataTable td {
  border-left-width: 0;
}

div.dataTables_wrapper div.dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  margin-top: 15px;
}
div.dataTables_wrapper div.dataTables_length select {
  width: 75px;
  display: inline-block;
}

div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
}
div.dataTables_wrapper div.dataTables_filter label {
  font-weight: 600;
  white-space: nowrap;
  text-align: left;
  background: white;
  color: black;
  padding: 10px;
  border-radius: 0.357rem;
  border: 1px solid #ddd;
}
div.dataTables_wrapper div.dataTables_filter input {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
  height: 30px;
  font-weight: 600;
}

div.dataTables_wrapper div.dataTables_info {
  padding-top: 0.85em;
  white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 2px 0;
  white-space: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/* input file */
.Choicefile {
  display: block;
  background: #14142B;
  border: 1px solid #fff;
  color: #fff;
  width: 150px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 5px 0px;
  border-radius: 0.6rem;
  font-weight: 500;
  align-items: center;
  justify-content: center;
}

.Choicefile:hover {
  text-decoration: none;
  color: white;
}

#uploadfile,
.removeimg {
  display: none;
}

#thumbbox {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

#thumbimage {
  border-radius: 0.6rem;
  object-fit: contain;
  background: white;
}

.removeimg {
  height: 25px;
  position: absolute;
  background-repeat: no-repeat;
  top: 5px;
  left: 5px;
  background-size: 25px;
  width: 25px;
  /* border: 3px solid red; */
  border-radius: 50%;
}

.removeimg::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  border: 1px solid red;
  background: red;
  text-align: center;
  display: block;
  margin-top: 11px;
  transform: rotate(45deg);
}

.removeimg::after {
  /* color: #FFF; */
  /* background-color: #DC403B; */
  content: "";
  background: red;
  border: 1px solid red;
  text-align: center;
  display: block;
  transform: rotate(-45deg);
  margin-top: -2px;
}

/* css rate availability */
.filter-search .form-group label {
  display: block;
  font-weight: 600;
}

.box-condition .ulcondition li {
  display: inline-block;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  float: left;
  margin: 0 4px 8px 0;
  padding: 4px 8px 4px 4px;
}
.box-condition .ulcondition li span {
  cursor: pointer;
}
.box-condition .ulcondition li .spancondition {
  border: 0;
  border-radius: 50%;
  float: left;
  height: 24px;
  margin-right: 4px;
  width: 24px;
  margin-left: 1px;
}
.box-condition .ulcondition li span:last-of-type {
  padding: 2px 4px 0 4px;
  display: inline-block;
}

.groupbtn-multiroom button.btn:hover, .groupbtn-multiroom button.btn:focus, .groupbtn-multiroom button.btn:active {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.btn-new {
  background: #3abb79;
  color: #fff;
}
.btn-new:hover {
  color: #fff;
}

.gr-typeroom {
  margin-top: 30px;
}
.gr-typeroom-item .box-head {
  margin-bottom: 16px;
}
.gr-typeroom-item .box-content .box-table-right {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}
.gr-typeroom-item .box-content table th {
  vertical-align: middle;
}
.gr-typeroom-item .box-content .sticky-col {
  position: -webkit-sticky;
  position: sticky;
  background-color: white;
  max-width: 200px;
  min-width: 200px;
  left: 0;
  z-index: 1;
  text-align: left;
}
.gr-typeroom-item .box-content .btn-edit {
  padding: 4px;
  font-size: 1.4rem;
  min-width: 60px;
}
.gr-typeroom-item + .gr-typeroom-item {
  margin-top: 40px;
}
.gr-typeroom .input-wrapper {
  position: relative;
  padding-top: 0;
  width: 100%;
  display: block;
}
.gr-typeroom .input-wrapper input {
  font: 400 12px/18px Roboto, sans-serif;
  box-shadow: inset 0 -1px 0 transparent;
  width: 100%;
  display: block;
  font-size: 1.4rem;
}
.gr-typeroom .input-wrapper .input-box {
  border: 1px solid #CCCCCC !important;
  border-radius: 5px !important;
  padding: 5px !important;
  text-align: center;
  background: white !important;
}
.gr-typeroom .input-wrapper .input-bar {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.gr-typeroom .input-wrapper .input-bar::before, .gr-typeroom .input-wrapper .input-bar::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #1976d2;
  -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gr-typeroom .input-wrapper .input-bar::before {
  left: 50%;
}
.gr-typeroom .input-wrapper .input-bar::after {
  right: 50%;
}
.gr-typeroom .input-wrapper input:focus + .input-bar::before, .gr-typeroom .input-wrapper input:focus + .input-bar::after {
  width: 50%;
}
.gr-typeroom span {
  cursor: pointer;
}

.room-startus {
  width: 150px;
  display: grid;
  height: 36.5px !important;
  background: #daeaf6;
  vertical-align: middle;
  line-height: 38px;
}

.table-right th,
.table-right td {
  border: 1px solid #DDDDDD;
  min-width: 60px;
  padding: 5px;
  height: 35px;
}

.table-right th,
.table-right td {
  text-align: center;
}

.tr-item {
  background: #daeaf6;
}

th p {
  margin: 2px;
  font-size: 12px;
}

.tr-item-status span {
  display: block;
  width: 100%;
  border-radius: 5px;
  height: 15px;
}

.Bookable {
  background: #5bb764;
}

.box-day-week {
  margin-top: 8px;
}
.box-day-week label {
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.modal-table {
  width: 100%;
  border-spacing: 0;
}
.modal-table td, .modal-table th {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}
.modal-table td {
  border-bottom-color: #e0e0e0;
  border-right: 1px solid #D4D4D4;
}
.modal-table td:last-of-type {
  border-right: none;
}

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