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

section#sign-in-content {
    position: relative;
    display: grid;
    place-items: center;
    padding: 10vh;
    min-height: 100vh;
}

div#signin-inner {
    display: flex;
    padding: 30px 0;
    align-items: center;
    position: relative;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    min-width: 500px;
}

img#signin-logo-sec {
    width: 300px;
    margin-bottom: 1rem;
}

.tot-input {
    width: 100%;
    background: rgb(255, 255, 255);
    color: rgb(163, 163, 163);
    font-size: 13px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 10px 0px;
    border: 2px solid #14a9e3;
    padding: 15px 10px;
}

.input-sec {
    margin-bottom: 30px;
}

div#signin-outerlayer {
    position: relative;
    /* padding: 0 0 0 35px; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

div#signin-outerlayer::before {
    content: "";
    width: 5px;
    height: 100%;
    /* background: rgb(102, 102, 102); */
    position: absolute;
    left: 0px;
    top: 0px;
}

div#signin-outerlayer::after {
    content: "";
    width: 5px;
    height: 100%;
    /* background: rgb(51, 50, 50); */
    position: absolute;
    left: 5px;
    top: 0px;
}

div#logo-sec {
    position: relative;
    padding: 0px 30px;
}

div#signin-inner::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 100%;
    top: 0px;
    left: 0px;
    /* background: rgb(51, 50, 50); */
}

div#signin-inner::after {
    content: "";
    position: absolute;
    height: 10px;
    width: 100%;
    bottom: 0px;
    left: 0px;
    /* background: rgb(51, 50, 50); */
}

#signin-outerlayer h3 {
    margin-bottom: 30px;
    font-size: 1.7rem;
    font-weight: 500;
}

.input-sec label {
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-flex;
    font-size: 13px;
    color: #181818;
    font-weight: 600;
}

p.notification {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    color: rgb(102, 102, 102);
}

section#dashboard-layout {
    position: relative;
    display: grid;
    grid-template-columns: 250px calc(100vw - 250px);
    height: 100vh;
}

section#dashboard-menu-bar {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* grid-area: 1 / 1 / 3 / 2; */
    background: linear-gradient(180deg, rgba(20,169,227,1) 36%, rgba(243,2,135,1) 100%);
}

section#dashboard-title-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: rgb(255, 255, 255);
    height: 100px;
}

div#dashboard-logo-area {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    color: rgb(255, 255, 255);
    /* background: rgb(0, 0, 0); */
    text-align: center;
    height: 30%;
    justify-content: center;
}

img#dashboard-logo {
    width: 200px;
    margin-bottom: 10px;
    margin-bottom: 2rem;
    filter: invert(1) contrast(1);
}

div#sign-out {
    position: relative;
    padding: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    border: 2px solid rgb(0, 0, 0);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    z-index: 2;
    width: 65%;
}

div#dashboard-menu-area {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.menu-item {
    padding: 10px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    position: relative;
    justify-content: flex-start;
    transition: all 0.3s cubic-bezier(0.68, 0.38, 0.37, 0.72) 0s;
    margin-bottom: .5rem;
    border-radius: 1rem;
}

span.menu-icon {
    margin-right: 10px;
    width: 40px;
}

span.menu-value {
    /* text-transform: uppercase; */
    font-weight: 600;
    line-height: 1;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.menu-item:hover, .menu-item.active {
    background: #fff;
    color: #181818;
    border-radius: 1rem;
}

div#sign-out:hover {
    color: rgb(255, 255, 255);
    background: rgb(17, 17, 17);
}

div#sign-out span {
    margin-right: 5px;
    font-size: 13px;
}

#title-bar::before {
    content: "";
    position: absolute;
    bottom: 0px;
    height: 100%;
    left: 0px;
    background: transparent;
    width: 100%;
    border-bottom: 3px solid #888888;
    border-top: 3px solid #888888;
}

#title-bar::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0px;
    height: calc(100% - 6px);
    width: 100%;
    background: transparent;
    border-bottom: 3px solid #444444;
    border-top: 3px solid #444444;
}

div#signout-notification {
    position: absolute;
    top: 0px;
    padding: 10px;
    background: rgb(0, 0, 0);
    right: 0px;
    width: 15vw;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    transition: all 0.5s ease 0s;
    z-index: -1;
}

.signout-buttons {
    border: 2px solid rgb(255, 255, 255);
    width: 60px;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 5px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.signout-buttons:hover {
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
}

div#signout-notification.active {
    top: 100%;
    z-index: 12;
}

div#title-bar {
    position: relative;
    display: flex;
    width: 100%;
    padding: 20px;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    z-index: 13;
    background: rgb(255, 255, 255);
}

span.notify-title {
    width: 100%;
    text-align: center;
    color: rgb(250, 250, 250);
    font-size: 13px;
    margin-bottom: 10px;
}

section#dashboard-body {
    /* grid-area: 2 / 2 / 3 / 3; */
    position: relative;
    padding: 30px 25px 40px 40px;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
}

body.dashboard {
    overflow: hidden;
}

div#container-inner-body {
    position: relative;
    width: 100%;
    max-height: 100%;
    overflow: hidden scroll;
    padding-right: 25px;
    min-height: 100%;
}

.hotel-display {
    position: relative;
    display: flex;
    width: 100%;
    padding: 20px;
    border-bottom: 2px solid;
}

.logo-area {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgb(68, 68, 68);
    margin-right: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: center;
}

.description-area {
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

span.hotel-name {
    font-size: 17px;
    font-weight: 800;
}

span.hotel-address {
    font-size: 14px;
    font-weight: 700;
}

span.hotel-cityname {
    font-size: 14px;
    font-weight: 700;
    color: rgb(68, 68, 68);
    margin-bottom: 5px;
}

span.hotel-phone, span.hotel-contact {
    font-size: 13px;
    font-weight: 700;
    color: rgb(102, 102, 102);
}

.action-center {
    position: absolute;
    right: 0px;
    display: flex;
    flex-direction: column;
    height: 100%;
    top: 0px;
    justify-content: space-evenly;
    padding: 5px;
    align-items: center;
    color: rgb(17, 17, 17);
}

.action-center span {
    cursor: pointer;
    z-index: 2;
}

section#dashboard-drawer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    top: 0px;
    padding: 30px;
    left: 100%;
    transition: all 0.5s cubic-bezier(0.46, 0.21, 0.33, 0.56) 0s;
    z-index: 10;
}

section#dashboard-drawer.active {
    left: 0px;
}

div#drawer-back {
    position: absolute;
    top: 15px;
    left: 20px;
    cursor: pointer;
    font-size: 1.5em;
    color: rgb(0, 0, 0);
    width: 30px;
    display: flex;
    height: 30px;
    align-items: center;
    justify-content: center;
    display: block;
}

div#drawer-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0px 25px;
    overflow-y: scroll;
    height: 100%;
}

span#dh-hotel-name {
    font-size: 2em;
    font-weight: 600;
}

span#dh-id {
    line-height: 1;
    font-weight: 900;
    font-size: 16px;
    padding-left: 4px;
}

span#dh-prefix {
    font-size: 17px;
    margin-left: 20px;
    font-weight: 900;
}

.hotel-inf {
    font-size: 14px;
    font-weight: 700;
    color: rgb(17, 17, 17);
}

div#upper-hotel-div {
    position: relative;
    display: flex;
}

div#drawer-hotel-logo-area {
    width: 200px;
    height: 200px;
    margin-right: 30px;
    border: 4px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
}

div#basic-hotel-details {
    display: flex;
    flex-direction: column;
    width: calc(100% - 200px);
}

.box-inner {
    width: 45%;
    margin-right: 2%;
}

.wide-data-box {
    position: relative;
    display: flex;
    margin: 10px 0px;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

span.title-name {
    font-size: 13px;
    font-weight: 800;
    margin-right: 10px;
    position: relative;
}

.title-body {
    font-size: 13px;
    font-weight: 600;
}

span.title-name::after {
    content: ":";
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -8px;
    top: 0px;
}

h3.wide-title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 900;
    margin-top: 20px;
}

.ind-value-span {
    width: 23%;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
    color: rgb(17, 17, 17);
}

div#drawer-hotel-logo-area img {
    max-height: 100%;
    max-width: 100%;
}

span.title-room-name {
    font-size: 13px;
    font-weight: 800;
    position: relative;
    margin-right: 10px;
}

span.title-room-name::after {
    content: "|";
    position: absolute;
    top: 0px;
    right: -9px;
}

span#dh-branch {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: rgb(17, 17, 17);
    margin-left: 10px;
}

div#color-code-window {
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    flex-direction: column;
    padding: 5px 10px 10px;
    border: 2px solid;
    justify-content: center;
    align-items: center;
}

div#color-sircle {
    width: 45px;
    height: 45px;
    background: red;
    border-radius: 50%;
    margin: 5px 0px -5px;
    border: 4px solid;
}

div#color-code-window span {
    font-size: 12px;
    font-weight: 900;
}

span#color-code {
    padding: 5px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-size: 14px !important;
}

.detail-box {
    display: flex;
    position: relative;
    margin: 10px 0px;
    padding: 15px;
    align-items: center;
}

.detail-box h3 {
    position: relative;
    display: flex;
    text-align: center;
    width: 150px;
    font-size: 1.1em;
    flex-direction: column;
    margin: 0px 50px 0px 0px;
}

div#bank-details-sec h3::after {
    content: "\f19c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2.4em;
    margin-top: 5px;
}

div#occupancy-details-sec h3::after {
    content: "\f0c0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2.4em;
    margin-top: 5px;
}

div#mealplans-details-sec h3::after {
    content: "\f2e7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2.4em;
    margin-top: 5px;
}

div#rooms-details-sec h3::after {
    content: "\f236";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2.4em;
    margin-top: 5px;
}

.detail-box .wide-data-box {
    padding: 15px 30px;
}

.detail-box .wide-data-box::after {
    content: "";
    position: absolute;
    background: rgb(102, 102, 102);
    left: -10px;
    top: 0px;
    width: 3px;
    height: 100%;
}

.detail-box .wide-data-box::before {
    content: "";
    position: absolute;
    background: rgb(34, 34, 34);
    left: -7px;
    top: 0px;
    width: 3px;
    height: 100%;
}

.delete-hotel-area {
    position: absolute;
    background: rgb(0, 0, 0);
    right: -240px;
    display: flex;
    padding: 10px;
    width: 15vw;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: 13px;
    bottom: 20px;
    justify-content: space-between;
    border-radius: 10px 0px 0px 10px;
    height: fit-content;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.37, 0.65) 0s;
    z-index: 2;
}

.delete-button-sec {
}

.delete-button-sec span {
    margin-left: 10px;
}

.delete-button {
    overflow: hidden;
}

.delete-button.active {
    overflow: visible;
}

.action-center.active .delete-hotel-area {
    right: calc(100% + 5px);
}

.visibility-check {
    position: relative;
    /* right: 50px; */
    /* top: 20px; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-area img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    min-width: 100%;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0px;
    height: 0px;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgb(204, 204, 204);
    transition: all 0.4s ease 0s;
}

.slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: all 0.4s ease 0s;
}

input:checked + .slider {
    background-color: rgb(20 169 227);
}

input:focus + .slider {
    box-shadow: rgb(33, 150, 243) 0px 0px 1px;
}

input:checked + .slider::before {
    transform: translateX(33px);
}

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

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

span.v-title {
    font-size: 11px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #181818;
}

.picker {
    display: flex;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 6px -4px;
    cursor: pointer;
}

.picker:focus-within {
    outline: -webkit-focus-ring-color auto 5px;
}

.picker input {
    height: 40px;
    border: none;
    outline: 0px;
}

.picker input[type="text"] {
    text-align: center;
    text-transform: uppercase;
    background: rgb(241, 241, 241);
    cursor: pointer;
}

.picker input[type="color"] {
    width: 40px;
    appearance: none;
}

.picker input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0px;
}

.picker input[type="color"]::-webkit-color-swatch {
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-image: initial;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.input {
    position: relative;
    z-index: 1;
    display: flex;
    margin: 1em;
    width: calc(100% - 2em);
    vertical-align: top;
}

.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    font-family: 'Quicksands';
    width: 60%;
    border: none;
    border-radius: 0px;
    height: 36px;
    background: rgb(240, 240, 240);
    color: rgb(170, 170, 170);
    appearance: none;
}

.input__field:focus {
    outline: none;
}

.input__label {
    display: inline-block;
    float: right;
    padding: 0px 1em;
    width: 40%;
    color: rgb(105, 105, 105);
    font-weight: bold;
    font-size: 70.25%;
    -webkit-font-smoothing: antialiased;
    user-select: none;
}

.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0px;
    width: 100%;
}

.input--manami {
    overflow: hidden;
}

.input__field--manami {
    width: 100%;
    background: transparent;
    padding: 0.5em;
    margin-bottom: 2em;
    color: rgb(249, 247, 246);
    z-index: 100;
    opacity: 0;
}

.input__label--manami {
    width: 100%;
    position: absolute;
    text-align: left;
    padding: 0.5em 0px;
    pointer-events: none;
    font-size: 14px;
}

.input__label--manami::before, .input__label--manami::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0px;
}

.input__label--manami::before {
    height: 100%;
    background: rgb(33, 33, 33);
    top: 0px;
    transform: translate3d(0px, -100%, 0px);
    transition: transform 0.2s ease 0s;
}

.input__label--manami::after {
    height: 2px;
    background: rgb(168, 168, 168);
    top: 100%;
    transition: opacity 0.2s ease 0s;
}

.input__label-content--manami {
    padding: 0px;
    transform-origin: 0px 0px;
    transition: transform 0.2s ease 0s, color 0.2s ease 0s;
}

.input__field--manami:focus, .input--filled .input__field--manami {
    opacity: 1;
    transition: opacity 0s ease 0.2s;
}

.input__label--manami::before, .input__label--manami::after, .input__label-content--manami, .input__field--manami:focus, .input--filled .input__field--manami {
    transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}

.input__field--manami:focus + .input__label--manami::before, .input--filled .input__label--manami::before {
    transform: translate3d(0px, 0px, 0px);
}

.input__field--manami:focus + .input__label--manami::after, .input--filled .input__label--manami::after {
    opacity: 0;
}

.input__field--manami:focus + .input__label--manami .input__label-content--manami, .input--filled .input__label--manami .input__label-content--manami {
    color: rgb(72, 72, 72);
    transform: translate3d(0px, 2.1em, 0px) scale3d(0.65, 0.65, 1);
}

div#ce-hotel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.hotel-input-sec-2 {
    grid-column: 1 / 3;
}

.hotel-input-sec-3 {
    grid-column: 1 / 3;
}

div#branding-sec {
    grid-area: 1 / 4 / 4 / 5;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.block-display-container {
    grid-column: 1 / 5;
    position: relative;
    padding: 20px 0px;
}

#occupancy-display-container, #meal-display-container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    display: grid;
}

h4.inner-subtitle {
    grid-column: 1 / 7;
    margin-bottom: 10px;
    font-size: 1.8em;
    color: rgb(68, 68, 68);
}

.hotel-input-check label {
    color: rgb(105, 105, 105);
    font-weight: bold;
}

input#htl-cc {
    font-family: Quicksands;
    font-size: 16px;
    color: rgb(114, 110, 105);
    font-weight: 700;
}

.box {
    display: block;
    width: 250px;
    height: 300px;
    margin: 0px 10px 20px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    overflow: hidden;
}

.upload-options {
    position: relative;
    height: 40px;
    background-color: rgb(68, 68, 68);
    cursor: pointer;
    display: flex;
    overflow: hidden;
    text-align: center;
    transition: background-color 150ms ease-in-out 0s;
    align-items: center;
    justify-content: center;
}

.upload-options:hover {
    background-color: rgb(2, 2, 2);
}

.upload-options input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload-options label {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.upload-options label::after {
    content: "add";
    position: relative;
    font-size: 16px;
    color: rgb(230, 230, 230);
    top: 0px;
    z-index: 0;
}

.upload-options label span {
    display: inline-block;
    width: 50%;
    height: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
}

.upload-options label span:hover i.material-icons {
    color: lightgray;
}

.js--image-preview {
    height: 260px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url("");
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.js--image-preview::after {
    content: "photo_size_select_actual";
    font-family: "Material Icons";
    position: relative;
    font-size: 4.5em;
    color: rgb(230, 230, 230);
    top: calc(50% - 3rem);
    left: calc(50% - 2.25rem);
    z-index: 0;
}

.js--image-preview.js--no-default::after {
    display: none;
}

.js--image-preview:nth-child(2) {
    background-image: url("http://bastianandre.at/giphy.gif");
}

i.material-icons {
    transition: color 100ms ease-in-out 0s;
    font-size: 2.25em;
    line-height: 55px;
    color: white;
    display: block;
}

.drop {
    display: block;
    position: absolute;
    background: rgba(95, 158, 160, 0.2);
    border-radius: 100%;
    transform: scale(0);
}

.animate {
    animation: 0.4s linear 0s 1 normal none running ripple;
}

@-webkit-keyframes ripple {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

@keyframes ripple {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

h5 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

div#room-count-section {
    padding: 0px 30px;
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: center;
}

span.room-n-title {
    font-size: 20px;
    font-weight: 700;
    color: rgb(68, 68, 68);
}

span#room-count {
    font-size: 5em;
}

.room-display {
    display: grid;
    grid-template-columns: 7fr 3fr 2fr;
    position: relative;
    padding: 5px;
    font-size: 14px;
    font-weight: 800;
    color: rgb(85, 85, 85);
}

.room-display::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: rgb(197, 197, 197);
}

span.room-nums {
    text-align: center;
}

.add-new {
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 600;
    background: rgb(31, 31, 31);
    color: rgb(250, 250, 250);
    cursor: pointer;
    margin-top: 20px;
    width: 40%;
}

.add-new span i {
    margin-right: 10px;
    font-size: 18px;
}

.add-new span {
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

div#hotel-bank-accounts {
    width: 90%;
    position: relative;
}

.bank-acc {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr 1fr;
    padding: 5px;
}

.bank-acc span {
    font-size: 14px;
    font-weight: 700;
    color: rgb(68, 68, 68);
}

.bank-acc::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: rgb(197, 197, 197);
}

div#rooms-display-container {
    grid-template-columns: 6fr 4fr;
    display: grid;
}

span.edit-room {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.none::after {
    background: transparent;
}

button#new-hotel {
    border: 0px;
    background: rgb(0, 0, 0);
    padding: 10px 30px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: Quicksands;
}

.input-button-sec {
    grid-column: 1/5;
    margin: 10px 0 30px;
}

.input-button-sec button {
    margin-right: 15px;
}


span.ta-name {
    font-weight: 800;
    font-size: 16px;
}

span.ta-email {
    font-weight: 700;
    color: #585858;
    font-size: 14px;
}

span.ta-contact {
    font-size: 14px;
    font-weight: 700;
    color: #666;
}

.ta-details {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-left: 50px;
}

span.ta-type {
    padding: 5px 20px;
    background: #000;
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

span.ta-commission {
    font-size: 23px;
    font-weight: 800;
}

.inner-button i {
    margin-right: 10px;
}

.upper-content-db {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

input#ta-search {
    padding: 8px 30px 8px 10px;
    border-radius: 20px;
    border: 2px solid #444;
    outline: 0px;
    background: #e6e6e6;
    width: 100%;
    font-family: 'Quicksands';
    font-weight: 800;
}

span#search-bar {
    position: relative;
    width: 240px;
    display: flex;
    align-items: center;
}

span#search-bar i {
    position: absolute;
    right: 15px;
}

.travel-agent-type {
    grid-column: 3/5;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-content: center;
    justify-items: center;
    justify-content: center;
}

section#booking-sec-01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
}

.hotel-input-sec .select {
    width: 93.5%;
    border: 0px !important;
    border-bottom: 2px solid #a8a8a8 !important;
    margin: 18px 14px;
    box-shadow: none;
}

.hotel-input-sec .placeholder {
    padding: 0.5em 0px;
    width: 100%;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
}

.hotel-input-sec {
    position: relative;
}

h1.main-db-title {
    margin-bottom: 30px;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 900;
}

section#booking-sec-02-01 {
    display: grid;
    grid-template-columns: 4fr 4fr 3fr;
}

section#booking-sec-02-02 {
    display: grid;
    grid-template-columns: 4fr 2fr 2fr 2fr;
}

section#booking-sec-02-03 {
    display: grid;
    grid-template-columns: 4fr 4fr 2fr;
}

.tabs {
    position: relative;
    margin: 0 auto;
    width: 100%;
    font-weight: 300;
    font-size: 1em;
}

/* Nav */
.tabs nav {
    text-align: center;
}

.tabs nav ul {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
    list-style: none;
    -ms-box-orient: horizontal;
    -ms-box-pack: center;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

.tabs nav ul li {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    text-align: center;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.tabs nav a {
    position: relative;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 2.5;
}

.tabs nav a span {
    vertical-align: middle;
    font-size: 0.75em;
}

.tabs nav li.tab-current a {
    color: #74777b;
}

.tabs nav a:focus {
    outline: none;
}

/* Content */
.content-wrap {
    position: relative;
    display: block;
}

.content-wrap section {
    display: none;
    margin: 0 auto;
    padding: 3em 1em;
    max-width: 1200px;
    text-align: center;
    grid-template-columns: 3fr 3fr 2fr;
}

.content-wrap section.content-current {
    display: grid;
}

.content-wrap section p {
    margin: 0;
    padding: 0.75em 0;
    color: rgba(40,44,42,0.05);
    font-weight: 900;
    font-size: 4em;
    line-height: 1;
}

/* Fallback */
.no-js .content-wrap section {
    display: block;
    padding-bottom: 2em;
    border-bottom: 1px solid rgba(255,255,255,0.6);
}

.no-flexbox nav ul {
    display: block;
}

.no-flexbox nav ul li {
    min-width: 15%;
    display: inline-block;
}

@media screen and (max-width: 58em) {
    .tabs nav a.icon span {
        display: none;
    }
    .tabs nav a:before {
        margin-right: 0;
    }
}

.tabs-style-topline {
    max-width: 1200px;
    width: 100%;
}

.tabs-style-topline nav li {
    border: 1px solid rgba(40,44,42,0.1);
}

.tabs-style-topline nav li:not(:last-child) {
    border-right: none;
}

.tabs-style-topline nav li.tab-current {
    border-top-color: #383838;
    border-bottom: none;
}

.tabs-style-topline nav a {
    padding: 0.65em 0 0.5em;
    background: rgba(40,44,42,0.05);
    color: #74777b;
    line-height: 1;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.tabs-style-topline nav a:hover,
.tabs-style-topline nav a:focus {
    color: #000000;
}

.tabs-style-topline nav li.tab-current a {
    background: none;
    box-shadow: inset 0 3px 0 #000000;
    color: #000000;
}

.tabs-style-topline .icon::before {
    display: block;
    margin: 0;
}

.tabs-style-topline nav a span {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    font-size: 15px;
}

section#booking-sec-03 {
    margin: 20px 0;
    position: relative;
    z-index: 500;
}

section#booking-sec-05 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

section#booking-sec-04 {display: grid;grid-template-columns: 1fr 1fr 1fr 1fr 2fr;}

.ab-center {
    display: grid;
    place-items: center;
}

div#test-div {
    height: 300vh;
    width: 100%;
    position: relative;
}

.hotel-input-sec-4 {
    grid-column: 3/5;
}

div#value-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-row: 1/3;
    grid-column: 5/6;
}

.s-grid {
    grid-template-columns: 1fr 1fr !important;
}

span#cur {
    font-size: 25px;
    margin-top: 10px;
    font-weight: 600;
    line-height: 1;
    color: #444;
}

span#value-booking {
    font-size: 47px;
    line-height: 1;
    font-weight: 900;
}

div#custom-value-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

div#custom-value-container h5 {
    margin: 0;
}

span#custom-val {
    font-size: 25px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
}

div#ra-turf {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 7fr 3fr;
}

div#hotel-ra-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-right: 40px;
}

.ra-inner {
    display: flex;
    position: relative;
    margin: 0 calc(10% / 4) 30px;
    width: 15%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

img.h-ra-logo {
    position: relative;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-bottom: 10px;
}

h4.hotel-name {
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}

.ra-inner label {
    color: #8c8b8b;
    font-weight: 900;
    font-size: 18px;
}

div#remarks-ra-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

textarea#day-remark {
    width: 80%;
    height: 200px;
    border: 2px solid #d0d0d0;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: 900;
    color: #666;
    font-family: 'Quicksands';
}

div#booking-header-area {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

span#b-calendar-remark {
    font-size: 26px;
    font-weight: 800;
    color: #444;
    margin-bottom: 5px;
}

div#action-area {
    position: relative;
    display: flex;
}

.action-b-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    cursor: pointer;
}

span.icon-outer {
    font-size: 14px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-bottom: 5px;
    border-radius: 50%;
    border: 2px solid #444;
}

.action-b-btn span {
    font-size: 13px;
    font-weight: 800;
}

.detail-area {
    display: flex;
    flex-direction: column;
}

span.b-info {
    font-size: 13px;
    font-weight: 700;
    color: #666;
}

.booking-display-sec {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.outer-sec-booking-d {
    display: grid;
    grid-template-columns: 6fr 4fr;
}

div#breakdown-sec table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 20px;
}

div#breakdown-sec table, div#breakdown-sec table th, div#breakdown-sec table td {
    border: 2px solid #444;
    padding: 4px;
    white-space: normal;
}
.b-d-table{
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}

h4.d-sec-title {
    grid-column: 1/4;
    font-weight: 900;
    color: #1f1f1f;
    font-size: 18px;
    margin-bottom: 0px;
}

.b-display-info {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 10px 0;
}

span.b-title {
    font-size: 13px;
    color: #444;
    font-weight: 900;
}

span.b-d-info {
    font-weight: 700;
    font-size: 15px;
    color: #888;
}

div#breakdown-sec .b-display-info {
    flex-direction: row;
}

div#breakdown-sec span.b-title {
    margin-right: 20px;
    position: relative;
}

div#breakdown-sec span.b-title:after {content: ':';right: 10px;}

div#payment-st-container {
    display: flex;
    flex-direction: column;
}

div#st-inner {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.st-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 25%;
}

.st-cont label {
    font-size: 13px;
    color: #444;
    text-align: center;
    margin-top: 5px;
    font-weight: 900;
}

div#p-text-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.b-display-info.full-w {
    grid-column: 2/4;
}

.uppercase {
    text-transform: uppercase;
}

div#display-b-container {
    position: relative;
    padding-right: 5px;
}

#title-bar .statistics {
    width: 85%;
    margin: 0;
    padding: 0;
}

#title-bar span.number {
    font-size: 32px;
    font-weight: 700;
    color: #444;
}

#title-bar .statistics:after, #title-bar .statistics:before {
    display: none;
}

#title-bar span.number-title {
    font-size: 13px;
}

#title-bar .number-sec {
    width: auto;
    margin: 0 25px;
}

div#amendments-container {
    margin: 0 10px;
    cursor: pointer;
    display: grid;
    align-content: center;
    background: #ddd;
    grid-template-rows: 2fr 3fr;
    align-items: center;
    justify-items: center;
}

div#amendments-container label {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    padding: 3px 6px;
    background: #000;
    color: #fafafa;
}

#amendments-container span {
    display: block;
    font-weight: 900;
    font-size: 24px;
}

div#password-enter-section {
    position: absolute;
    width: 100%;
    top: -100%;
    height: 100%;
    background: rgba(255,255,255,.8);
    display: grid;
    place-items: center;
    z-index: 60;
    left: 0;
    transition: all .5s ease;
}

.inner-pw {
    width: 30%;
    background: #fff;
    border: 3px solid #444;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inner-pw h3 {
    font-size: 18px;
    font-weight: 900;
    color: #444;
}

.inner-pw .hotel-input-sec-2 {
    width: 100%;
}

div#password-enter-section.active {
    top: 0;
}

div#table-area-db {
    display: flex;
    position: relative;
    padding: 0;
    width: 100%;
    flex-direction: column;
}

.table-section {
    padding: 0 30px 0 0;
    position: relative;
    width: 100%;
}

.table-section h3 {
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 28px;
    color: #1f1f1f;
}
.table-section-w{
    margin:30px 0;
}
.table-section-w h3 {
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 28px;
    color: #1f1f1f;
}

.table-section table,table {
    border-collapse: collapse;
    border: 0px;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}

.table-section table thead, table thead {
    border-bottom: 2px solid #555;
    font-size: 13px;
    font-weight: 900;
}

.table-section table td, table td {
    padding: 10px;
    /* white-space: nowrap; */
    text-align: center;
}

.table-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow-y: hidden;
    padding: 0px 20px 20px 0;
    overflow-x: hidden;
}

.table-section tbody, tbody {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.table-inner-container {
    padding: 0;
    overflow: auto;
    position: relative;
    min-height: 300px;
    justify-content: stretch;
}

div#bar-chart-container {
    position: relative;
    width: 100%;
    margin: 50px 0;
}

div#bar-chart-container h3 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    color: #1f1f1f;
}

td.center {
    text-align: center;
    cursor: pointer;
    font-size: 14px;
}

div#hotel-legend {
    position: absolute;
    left: -270px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 270px;
    background: #fff;
    border: 4px solid #444;
    z-index: 9;
    transition: all .5s ease;
}

div#action-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #1f1f1f;
    top: calc(50% - 20px);
    right: -40px;
    place-items: center;
    display: grid;
    border-top-right-radius: 110px;  /* 100px of height + 10px of border */
    border-bottom-right-radius: 110px;
    cursor: pointer;
}

div#hotels-inner-details {
    width: 100%;
    margin-top: 10px;
}

.hotel-row {
    display: flex;
    position: relative;
    margin: 5px 0;
}

span.h-name-l {
    font-size: 12px;
    font-weight: 900;
    color: #666;
}

.color-box {
    width: 18px;
    height: 18px;
    background: red;
    margin-right: 10px;
    border-radius: 50%;
}

div#hotel-legend h3 {
    color: #444;
    font-size: 20px;
    font-weight: 900;
}

div#hotel-legend.active {
    left: 0;
}

div#action-icon i {
    transform: rotate(0deg);
    transition: all .5s ease;
}

div#hotel-legend.active div#action-icon i {
    transform: rotate(0deg);
}

.table-inner-container.noshow {
    display: flex;
    align-items: center;
    justify-content: center;
}
div#pagination-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.with_pagination {
    min-height: 80% !important;
}

.no-bookings {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    padding: 30px;
    border: 3px dashed #888;
    border-radius: 20px;
}

.no-bookings i {
    font-size: 5em;
    margin-bottom: 10px;
}

.txt-area {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    width: 100%;
    grid-column: 1/4;
    padding: 0 20px;
    color: #888;
}

.txt-area textarea {
    width: 100%;
    border: 2px solid #a8a8a8;
    height: 100px;
    padding: 10px;
    font-family: 'Quicksands';
    color: #444;
    font-weight: 600;
}

.radio-input input[type=radio]{
    position: absolute;
    visibility: hidden;
}

.radio-input label{
    display: block;
    position: relative;
    font-weight: 900;
    font-size: 14px;
    color: #444;
    margin-left: 22px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
}

.radio-input:hover label{
    color: #000000;
}

.radio-input .check{
    display: block;
    position: absolute;
    border: 2px solid #666;
    border-radius: 100%;
    height: 16px;
    width: 16px;
    top: 0;
    left: 0;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

.radio-input:hover .check {
    border: 2px solid #000000;
}

.radio-input .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 8px;
    width: 8px;
    top: 2px;
    left: 2px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

.radio-input input[type=radio]:checked ~ .check {
    border: 2px solid #000000;
}

.radio-input input[type=radio]:checked ~ .check::before{
    background: #000000;
}

.radio-input input[type=radio]:checked ~ label{
    color: #000000;
}

.radio-input {
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    align-content: center;
}

.txt-area label {
    font-size: 14px;
    font-weight: 800;
    color: #74747c;
    margin-bottom: 10px;
}

.container-checkbox {
    display: flex;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    line-height: 1;
    align-items: center;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    justify-content: flex-start;
    user-select: none;
    font-weight: 500;
    color: #444;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.container-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: rgb(225 228 235);
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
    background-color: #14a9e3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.container-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.icon-trash {
    display: flex !important;
    flex-direction: column;
}

.icon-trash i {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.trash-inner {
    display: flex;
    flex-wrap: wrap;
}

.trash-ind {
    padding: 10px 10px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 5px 9px;
    border: 3px solid #111;
    width: 18%;
}

.action-tr {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.action-tr span {
    padding: 3px;
    color: #fafafa;
    background: #111;
    cursor: pointer;
}

span.restore-tr {
    background: #00b894;
}

span.delete-tr {
    background: #d63031;
}

span.b-tr-code {
    font-size: 14px;
    color: #111;
    font-weight: 900;
    text-align: left;
}

span.b-tr-ref {
    font-size: 13px;
    color: #666;
    font-weight: 800;
    text-align: left;
}

div#b-t-pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

div#dashboard-notification {
    position: absolute;
    right: 50px;
    bottom: -100px;
    background: #000;
    padding: 15px 20px;
    z-index: 100;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    min-width: 250px;
    transition: all .5s ease;
}

div#dashboard-notification.active {
    bottom: 0;
}

#dashboard-notification span {
    color: #f1f1f1;
}

.notify-btn {
    background: transparent;
    color: #d6d6d6;
    border: 0px;
    margin-left: 15px;
    text-transform: uppercase;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Quicksands';
    transition: all .3s ease;
}

.btn-notify-container {
    position: relative;
    margin-left: 80px;
}

.notify-btn:hover, .notify-btn:focus, .notify-btn.active {
    color: #fff;
}

div#report-search-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

div#report-search-section h2 {
    grid-column: 1/4;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 900;
}

div#hotel-display-section-r {
    grid-column: 1/3;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.input-button-sec-r {
    margin: 20px 0;
    grid-row: 4/5;
}

div#report-search-section h4 {
    grid-column: 1/3;
    text-align: center;
    margin: 15px 0;
    font-size: 20px;
    color: #444;
    text-transform: uppercase;
    font-weight: 900;
}

.hotel-sec-r {
    width: 10%;
    position: relative;
    cursor: pointer;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all .3s ease;
}

.hotel-sec-r img {
    max-width: 80%;
}

.hotel-sec-r h5 {
    font-size: 13px;
    font-weight: 800;
    color: #444;
    text-align: center;
}

.hotel-sec-r.active {
    border: 2px solid #666;
}

.htl-logo-sec {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-logo-sec {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upper-content-db.tabs-layer {
    justify-content: flex-start;
}

.tab-name {
    padding: 20px;
    border: 1px solid #666;
}

section#my-profile {
    text-align: left;
    grid-template-columns: 1fr 1fr 1fr;
}

.user-content-details {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

span.content-title {
    font-size: 13px;
    color: #1f1f1f;
    font-weight: 900;
}

span.content-detail {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    position: relative;
    width: 100%;
}

span.content-detail i {
    position: absolute;
    right: 0;
    cursor: pointer;
    font-size: 14px;
    opacity: 0;
    transition: all .3s ease;
}

.user-content-details:hover span.content-detail i {
    opacity: 1;
}

.editing-container {
    position: relative;
    display: flex;
    align-items: center;
}

.editing-container .input--manami {
    margin: 0 20px 0;
}

.actions {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.actions i {
    padding: 5px;
    color: #444;
}

span#notify-pwd {
    text-align: center;
    margin: 20px 0;
    font-size: 12px;
    font-weight: 900;
    color: #777;
}

.input-button-mpd {
    display: flex;
    align-items: center;
}

span#forget_password {
    width: 100%;
    text-align: center;
    margin: 15px 0;
    font-size: 12px;
    font-weight: 800;
    color: #555;
    cursor: pointer;
}

.inner-btn-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-around;
}

.loading-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animation */
@-webkit-keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
/* Variables */
/* Loading Icon */
.loading {
    width: 100px;
    height: 100px;
}
.loading__ring {
    position: absolute;
    width: 100px;
    height: 100px;
}
.loading__ring:first-child {
    transform: skew(30deg, 20deg);
}
.loading__ring:last-child {
    transform: skew(-30deg, -20deg) scale(-1, 1);
}
.loading__ring:last-child svg {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.loading__ring svg {
    -webkit-animation: rotate 1s linear infinite;
    animation: rotate 1s linear infinite;
    fill: rgba(0, 0, 0, 0.2);
}

div#cal-loader {
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: none;
}

div#cal-loader.active {
    display: block;
}

div#abd-table-view {
    position: relative;
    display: block;
    width: 100%;
}

div#abd-table-view table {
    width: 100%;
    border-collapse: collapse;
}

table thead {
    background: #14a9e3;
    color: #fafafa;
    font-size: 14px;
    position: sticky;
    top: 0;
}

table thead tr td {
    padding: 10px;
    /* border: 2px solid #1f1f1f; */
}

.btn-pay {
    border: 2px solid #444;
    padding: 5px;
    font-size: 13px;
    font-weight: 900;
    transition: all .3s ease;
    color: #444;
}

.btn-pay:hover {
    background: #444;
    color: #fafafa;
}

.btn-pay i {
    margin: 0 5px 0 0;
}

div#payment-input-sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* margin-top: 30px; */
}

div#pay-records {
    font-size: 13px;
    margin-bottom: 30px;
}

div#pay-records thead {
    background: #fff;
    color: #444;
    font-weight: 900;
    font-size: 12px;
}

div#pay-records table {border-collapse: collapse;width: 80%;}

div#pay-records tbody td {
    padding: 4px;
    border: 2px solid #666;
    font-weight: 700;
    font-size: 12px;
    color: #666;
}

div#pay-records table thead tr td {
    font-weight: 900;
    color: #1f1f1f;
}

div#pay-records table thead tr td:nth-child(2) {
    border-left: 2px solid #444;
    border-right: 2px solid #444;
}
#checkin-body td,#dp-body td{
    padding: 10px 10px;
    font-size: 12px;
    font-weight:700;
    color:#444;
}
#checkin-body tr td:nth-last-child(1) {
  text-align:center;
}

#drawer-inner h3 {
    font-size: 26px;
    font-weight: 800;
    color: #444;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

span.amendment_action {
    cursor: pointer;
}

.table-inner-container thead td {
    font-size: 13px;
    font-weight: 400;
}
table.report-table, .db-table{border-collapse: collapse;}
table.report-table thead td {

white-space: nowrap;

padding: 8px 15px;

background: #1f1f1f;

position: sticky;

top: 0;
}

tbody#report-body td {
    font-size: 13px;
    font-weight: 700;
    padding: 8px 10px;
    white-space: nowrap;
}

button#report_download, .download_xls {width: max-content;margin-bottom: 10px;padding: 10px;border: 2px solid #444;font-size: 13px;font-weight: 800;}

div#reports_view {
    display: flex;
    z-index: 15;
}

.report-select {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 10px;
    padding: 10px;
    cursor: pointer;
    border: 3px solid #666;
    transition: all .3s ease;
}

.report-select i {
    font-size: 2em;
    color: #444;
}

.report-select span {
    font-size: 13px;
    font-weight: 800;
    color: #444;
    margin-left: 5px;
}

.report-select.active, .report-select:hover, .report-select.active span, .report-select.active i, .report-select:hover span, .report-select:hover i {
    color: #fff;
    background: #444;
}

div#hotel-legend.extend {
    width: 320px;
    left: -320px;
}

div#hotel-legend.extend.active {
    left: 0;
}

buttton#search {position: fixed;background: #444;z-index: 10;bottom: 30px;right: 30px;width: 80px;height: 80px;border-radius: 50%;display: grid;place-items: center;cursor: pointer;color: #fff;white-space: pre-wrap;box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);}

span.b-d-info.caps {
    text-transform: uppercase;
}

td.extra_ref {
    text-align: left;
    padding: 0 10px !important;
}

div#bank-details {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 5px dashed #444;
    justify-content: center;
    align-items: center;
}

div#bank-details span.b-title {
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    margin-right: 0;
    font-weight: 900;
    color: #1f1f1f;
}

div#bank-details span.b-title:after {
    content: '';
}

span.acc-info {
    font-size: 12px;
    font-weight: 900;
    color: #666;
}

.table-section-w .table-inner-container {
    width: 100%;
    max-height: 400px;
}

.table-section-w table {
    width: 100%;
}

.hotel-search-sec {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

input#booking_search {
    width: 100%;
    border: 2px solid #666;
    padding: 10px;
    border-radius: 30px;
    font-family: 'Quicksands';
    font-size: 14px;
    font-weight: 800;
    color: #444;
}

span#b-search-text {
    font-size: 12px;
    font-weight: 900;
    color: #666;
    padding: 5px 0 0 10px;
}

input:focus {
    outline: 0px;
}

.travel-agent-type .radio-input label {
    margin-left: 0;
}

span.title_lable {
    background: #bf2424;
    font-size: 12px;
    color: #fff;
    padding: 3px 5px;
    margin-left: 10px;
}

input#cal-ip {
    visibility: hidden;
    position: absolute;
    width: 0;
    left: 0;
}

#cal-jump i {
    margin: 0;
}

button#cal-jump {
    padding: 10px 15px;
}

.remark {
    /* position: absolute !important; */
    top: 0;
}

div#post-harness {
    position: relative;
    display: flex;
    width: 100%;
}

div#post-content {
    width: 60%;
    position: relative;
    padding: 30px;
}

div#post-content table {
    border: 2px solid #444;
}

div#artwork {
    position: relative;
    width: 300px;
    height: 300px;
    background: red;
}

div#post-aw {
    width: 40%;
    position: relative;
    display: flex;
    justify-content: center;
}

.highlight {
    position: relative;
    display: grid;
    width: 30px;
    color: #ff9f1a;
    height: 30px;
    border: 2px solid;
    place-items: center;
    border-radius: 50%;
}

.h-rep-upper {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.h-r-left {
    position: relative;
    display: flex;
    flex-direction: column;
}

span.after-exc {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #888;
}
.img-thumb {
    position: relative;
    padding: 10px;
    width: 19%;
    margin-right: 1%;
    border: 1px solid hsl(218, 4%, 85%);
    border-radius: 2px;
    overflow: hidden;
}

.media-thumb-img {
    position: relative;
    width: 100%;
}

.media-delete, .it-m-delete {
    position: relative;
    width: 30px;
    height: 30px;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(73 76 80 / 0%);
    opacity: 1;
    cursor: pointer;
    transition: all .4s ease;
    color: #fff;
    border: 1px solid var(--clr-4);
    border-radius: 50%;
}

.img-thumb:hover .media-h-cover, .it-medi-outer:hover .media-h-cover {
    opacity: 1;
    background: rgb(73 76 80 / 0.8);
}

.media-h-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-primary-text);
    opacity: 0;
    transition: all .4s ease;
    color: #fff;
}

span.media-delete:hover {
    background: var(--clr-4);
    color: var(--clr-primary-text);
}
