body {
    margin: 10px;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.body-content.schedule {
    max-width: 100%;
}

.navbar {
    display: none;
}

.btn--margin {
    margin: 12px 0;
}

.btn--spacing-top {
    margin-top:10px;
}

.row-wrapper,
.row {
    display: flex;
    flex-direction: row;
    margin-left: 0;
    margin-right: 0;
}

.row--padding {
    margin-top: 10px;
    bottom: 10px;
}

.checkbox--spacing {
    margin: 5px 3px;
}

a.tab-header {
    background: #666;
    padding: 10px;
    color: white;
    margin: 0;
    border: 1px solid #666;
    cursor: pointer;
}

.loading-overlay {
    width: 100%;
    height: 100%;
    background: black;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0.7;
}

button {
    cursor: pointer;
}

.tab-content {
    width: 100%;
}

span.rc {
    border: 1px solid #ccc;
    padding: 10px;
    flex: 1;
    font-size: 12px;
}

.rc--max {
    max-width: 250px;
    overflow: hidden;
}

.row--spacing {
    margin: 15px 0;
}

.rc--start-central {
    justify-content: flex-start;
    display: flex;
    align-items: center;
}

.modal-container {
    display: none;
}

    .modal-container.active {
        display: block;
    }

.modal-2-content-row {
    width: 100%;
    position: fixed;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.modal-2-content-block {
    width: 50%;
    min-height: 500px;
    background: white;
    border-radius: 10px;
    padding: 20px;
}

.modal-overlay {
    background: black;
    width: 100%;
    height: 100%;
    position: fixed;
    opacity: 0.7;
    top: 0;
    z-index:1;
    left: 0;
}

.modal-container__inner {
    width: 90%;
    min-height: 85vh;
    padding: 20px;
    border-radius: 14px;
}

.modal-2-content {
    width: 100%;
    height: 100%;
    padding: 15px;
    border-radius: 20px;
    max-width: 100%;
}

.modal-toolbar {
    display: flex;
    justify-content: flex-end;
}

.row-y {
    display: flex;
    flex-direction: column;
}

.loading-block {
    position: relative;
    display: none;
    opacity: 0;
    transition: all 1s ease;
}

    .loading-block.active {
        display: block;
        opacity: 0.6;
        transition: all 1s ease;
        z-index:100;
    }

    .loading-block img {
        max-width: 75px;
    }

.rc__header {
    font-size: 14px;
}

.heading-detail {
    display: block;
}

.tab-header-item {
    background: #999;
    padding: 10px;
    cursor: pointer;
    color: white;
    font-size: 14px;
}

.tab-header-item:first-of-type {
    border-radius: 10px 0 0;
}
.tab-header-item:last-of-type {
border-radius: 0 10px 0 0;
}

.tab-header-row {
    display: flex;
    flex-direction: row;
}

.tab-header-item.active {
    color: white;
    background: #666;
}

.hide {
    display:none;
}

.button-wrapper {
    margin: 15px 0;
}

.tab-content:not(.active) {
    display: none;
}

.loading-block__icon {
    width: 100%;
    height: 100vh;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}



footer {
    position: fixed;
    bottom: 0px;
    background: white;
    border-top: 1px solid #666;
    padding-top: 28px;
    width: 100%;
    left: 0px;
    display: flex;
}

.footer_block {
    margin: auto;
}

.footer-spacer {
    height: 60px;
}





.btn {
    color: white;
    background: #666;
    font-size: 12px;
}

button.btn.btn--secondary {
    background: #888;
}

.btn:hover {
    color: white;
    background: #444;
}

button {
    position: relative;
}

    button.active:before {
        content: "";
        background-image: url('/Content/icon-loading.gif');
        width: 50px;
        height: 50px;
        display: block;
        position: absolute;
        background-size: 235%;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 10px;
        left: 100%;
    }

label {
    display: block;
}

select.abs {
    padding: 4px;
    position: absolute;
    max-width: 40px;
}
iframe {
    width: 100%;
    height: 100%;
    position: absolute;
}



.html-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
}