html {
    height: 100%;
}

body {
    height: 100%;
}

/**********
Loader
*/
#loader {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: none
}

/**********
Login page
*/
.login-wrapper {
    min-height: 100%;
}

.login-wrapper .card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
}

/**********
Navigation
*/
.navbar-nav-right {
    order: 1;
}
.nav-item{
    position: relative;
}
.dropdown.show {
    font-weight: bold;
}
.dropdown-toggle::after {
    vertical-align: 0.12rem;
}

.navbar-nav-right .dropdown-toggle::after {
    display: none;
}

.dropdown-level-3 .dropdown-toggle::after {
    border-top: 0.3em solid transparent;
    border-right: 0 transparent;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 10px;
}

.dropdown:hover>.dropdown-item {
    background-color: #f8f9fa;
}

.dropdown-menu .dropdown-menu {
    left: 100%;
    margin-left: -1px;
    top: 0;
}

.nav-icon-link,
.nav-icon-link .material-icons {
    display: block;
}

.navbar-nav .nav-link {
    padding: 18px 1rem;
}

.navbar-nav .active>.nav-link {
    font-weight: 600;
}

.navbar-nav .active>.nav-item:before,
.navbar-nav .nav-item:hover:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: #eee;
}

.navbar-nav .nav-item:hover:before {
    border-bottom-color: rgba(243, 244, 246, 0.75);
}

/**********
Main Content
*/
.ms-content {
    padding:2rem;
}

.page-content {
    width: 700px;
}

.page-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header h5,
.page-header h4 {
    margin: 0;
}

.page-content-nav {
    width: 280px;
    margin-right: 30px;
    margin-top: 50px;
}

.date-picker {
    position: relative;
    display: inline-block;
}

.date-picker .control-icon {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    color: rgba(0, 0, 0, 0.5);
}

.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select+.custom-select {
    margin-left: 10px;
}

.form-control+.custom-select {
    margin-left: 10px;
}

.custom-select+.form-control {
    margin-left: 10px;
}

.form-control+.form-control {
    margin-left: 10px;
}

.col-form-label {
    text-align: left;
}

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

.show-details {
    font-size: 1rem;
}

.hall-layout {
    border: 1px dashed #ddd;
    padding: 5px 10px;
    display: flex;
    flex-flow: column wrap;
    max-width: 100%;
}

.hall-row {
    background: #fff;
    display: flex;
    justify-content: space-around;
    flex-flow: row;
}

.hall-col {
    background: #8c9098;
    border-radius: 3px;
    display: flex;
    min-height: 25px;
    width: 50%;
    margin: 10px;
    flex-flow: row;
    justify-content: space-around;
}

.hall-seat {
    flex: 1 1 auto;
    text-align: center;
}

.seat-icon {
    display: block;
    position: relative;
    width: 20px;
    height: 12px;
    background: #eee;
    border: 1px solid #61656f;
    margin: 6px auto;
    border-radius: 15px 15px 7px 7px;
}

.seat-icon:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #eee;
    border: 1px solid #61656f;
    position: absolute;
    border-radius: 10px;
    top: -10px;
    left: 3px;
}

.hall-seat.on .seat-icon,
.hall-seat.on .seat-icon:after {
    background-color: #2aefb4;
}

.seat-meta {
    display: none;
    font-size: 11px;
    color: #fff;
}

.seat-meta strong {
    display: block;
}

.detailed-view .seat-meta {
    display: block;
}

.hall-staff-row {
    flex: 1 1 100%;
    margin: 1rem 0;
}

.hall-staff {
    width: 50px;
    height: 25px;
    background-color: #eee;
    position: relative;
    margin: 0 auto;
    display: block;
    text-align: center;
    border-radius: 2px;
}

.hall-staff .seat-icon {
    margin: 7px auto;
    display: inline-block;
    background-color: #fff;
}

.hall-staff .seat-icon:after {
    background-color: #fff;
}
.card-toggle {
    cursor: pointer;
    padding: 0;
    background-color: transparent;
    border: 0;
    appearance: none;
}

.red {
    color: #E74C3C; }
/**********
Footer
*/
.ms-footer {}



@media screen and (min-width:768px) {
    .col-form-label {
        text-align: right;
    }
}