html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    background: #fff;
}

#root {
    width: 100%;
    margin: 0;
    padding: 0;
    top: 0px;

}

@media print {
    #content {
        width: 100%;
        padding: 40px 40px 40px 40px;
        min-height: 90vh;
        transition: all 0.3s;
        background-color: #fff;
    }
}

@media screen {
    #content {
        width: 100%;
        padding: 30px 40px 40px 40px;
        min-height: 90vh;
        transition: all 0.3s;
        background-color: #fff;
    }
}

a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

    a:hover,
    a:focus {
        color: #369;
    }

h1 {
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 3rem;
}

h3 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
}

h4 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

h5 {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.6rem;
}

.form-control-inline {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control-inline {
        transition: none;
    }
}

.form-control-inline[type=file] {
    overflow: hidden;
}

    .form-control-inline[type=file]:not(:disabled):not([readonly]) {
        cursor: pointer;
    }

.form-control-inline:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control-inline::-webkit-date-and-time-value {
    height: 1.5em;
}

.form-control-inline::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control-inline::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control-inline:disabled, .form-control-inline[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.form-control-inline::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control-inline::file-selector-button {
        transition: none;
    }
}

.form-control-inline:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}

.form-control-inline::-webkit-file-upload-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control-inline::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none;
    }
}

.form-control-inline:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

.select-container {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    display: inline-block;
}

.select-container-item {
    padding: 0.25rem 0.25rem;
    line-height: 1.2;
    background-color: #dfe5f5;
    border: 1px solid #b1bdde;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
    margin-right: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
}

.select-container-button {
    display: inline-block;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    top: 2px;
    background-color: #ccc;
}

.page-header {
    border-bottom: 1px solid #bdbdbd;
}

.breadcrumb {
    margin-bottom: 5px;
}

.preloader {
    position: fixed;
    color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.spin {
    height: 50px;
    width: 50px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.75) rgba(255, 255, 255, 0.75) rgba(255, 255, 255, 0.25) rgba(255, 255, 255, 0.25);
    border-radius: 100%;
    -webkit-animation: clockwise 1s linear infinite;
    animation: clockwise 1s linear infinite;
}

.spin-text {
    color: #fff;
    overflow-wrap: normal;
    padding-left: 10px;
}

.loader {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.spin-sm {
    height: 20px;
    width: 20px;
    border-width: 3px;
    border-style: solid;
    border-color: rgba(114, 140, 176, 0.75) rgba(114, 140, 176, 0.75) rgba(114, 140, 176, 0.25) rgba(114, 140, 176, 0.25);
    border-radius: 100%;
    -webkit-animation: clockwise 1s linear infinite;
    animation: clockwise 1s linear infinite;
}

@-webkit-keyframes clockwise {
    to {
        transform: rotate(360deg) translatez(0);
    }
}

@keyframes clockwise {
    to {
        transform: rotate(360deg) translatez(0);
    }
}

.action-menu {
    width: 50px;
    height: 60px;
    background-color: #fff;
    background-clip: border-box;
    padding: 5px;
    align-items: center;
    justify-content: center;
    border: 0px solid #ccc;
    border-radius: 5%;
    cursor: pointer;
}

.action-menu-left {
    margin-left: 2px;
    margin-bottom: 2px;
}

.action-menu-right {
    margin-left: 2px;
    margin-bottom: 2px;
}

.action-menu:hover {
    border: 1px dotted #fff;
    background: #f0f0f0;
}

.action-menu-label {
    position: relative;
    white-space: wrap;
    text-wrap: wrap;
    font-size: 0.6rem;
    line-height: 0.7rem;
}

.action-menu-icon {
    font-size: 20px;
    color: #336699;
    padding-bottom: 6px;
    /*
	border:1px solid #990000;
	border-radius: 10%;
	padding: 5px;
	background-color: #990000;
	*/
}

.card-file-upload {
    min-height: 120px;
    font-size: 0.8em;
}

.icon-file-upload {
    font-size: 4em;
}

.card-file-uplad-header {
    margin-top: -8px;
    margin-bottom: 8px;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    padding: 0.75rem;
}

.card-body {
    flex: 1 1 auto;
    padding: 0rem;
}

.card-shadow {
    box-shadow: rgba(100, 100, 111, 0.5) 5px 7px 29px 5px;
}

.card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
}

.card-icon {
    font-size: 84px;
    position: absolute;
    right: 32px;
    opacity: 0.25;
}

.table-xs {
    font-size: .8em;
    line-height: 1.2em;
}

.table-dashboard {
    font-size: .8em;
    line-height: 1.2em;
}

    .table-dashboard td {
        padding-top: 5px;
        padding-bottom: 3px;
    }


.toast {
    top: 50%;
    left: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

#modal-message {
    z-index: 9998;
}

.text-sm {
    font-size: 0.9rem;
    line-height: 1.1rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 0.85rem;
}

.text-xf {
    font-size: 0.6rem;
    line-height: 0.9rem;
}

.label-required {
    color: #993333;
    font-weight: 500;
}

    .label-required:after {
        content: "*";
    }

.btn-plain {
    border: 0px solid #000;
    background: transparent;
}

.modal-depth-1 {
    background: rgba(0,0,0,0.25);
}

.modal-depth-2 {
    background: rgba(0,0,0,0.25);
}

.modal-iframe {
    height: 75vh;
    width: 100%;
}

/* Fontawesome Extension */
.fa-file-archive {
    color: #ebc934;
}

.fa-file-excel {
    color: #23913d;
}

.fa-file-csv {
    color: #2f754d;
}

.fa-file-alt {
    color: #2f754d;
}

.fa-file-pdf {
    color: #c91616;
}

.fa-file-word {
    color: #1e53c7;
}

.fa-file {
    color: #526964;
}

.fa-file-spreadsheet {
    color: #526964;
}

.fa-folder {
    color: #fcba03;
}

.fa-hourglass-half {
    color: #4e5091;
}

.fa-user-lock {
    color: #fc3408;
}

.fa-file-code {
    color: #295ac4;
}

.ths-fa-disabled {
    color: #999;
}

.ths-fa-table-xs {
    font-size: 1.2em;
}

a.ths-fa-action {
    color: #136346;
}

    a.ths-fa-action:hover {
        color: #16a648;
    }

a.ths-fa-position {
    color: #9e6218;
}

    a.ths-fa-position:hover {
        color: #d19111;
    }

.tooltip {
    font-family: Sora, sans-serif;
    font-weight: 100;
    line-height: 1.4;
    font-size: 0.8rem;
}

.tooltip-inner {
    padding: 10px;
    text-align: left;
}

.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    border-top-color: #46729d;
}

.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    border-right-color: #46729d;
}

.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    border-bottom-color: #46729d;
}

.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    border-left-color: #46729d;
}

.tooltip-inner {
    color: #fff;
    background-color: #46729d;
}

.ths-cs {
    display: inline-block;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    padding: 0.1rem;
    text-align: center;
    font-size: 0.5rem;
    color: #fff;
}

.ths-cs-0 {
    background: #0c0;
    background: linear-gradient(90deg, rgba(0,150,0,1) 0%, rgba(9,180,0,1) 35%, rgba(0,240,0,1) 100%);
    border: 1px solid #0a0;
}

.ths-cs-1 {
    background: #00c;
    background: linear-gradient(90deg, rgba(0,0,150,1) 0%, rgba(20,20,200,1) 50%, rgba(120,120,255,1) 100%);
    border: 1px solid #00a;
}

.ths-cs-2 {
    background: #ccc;
    background: linear-gradient(90deg, rgba(60,60,60,1) 0%, rgba(110,110,110,1) 50%, rgba(140,140,140,1) 100%);
    border: 1px solid #aaa;
}

.ths-cs-3 {
    background: #cc0;
    background: linear-gradient(90deg, rgba(180,180,0,1) 0%, rgba(210,210,0,1) 50%, rgba(240,240,0,1) 100%);
    border: 1px solid #aa0;
}

.ths-cs-4 {
    background: #c00;
    background: linear-gradient(90deg, rgba(180,0,0,1) 0%, rgba(210,0,0,1) 50%, rgba(240,0,0,1) 100%);
    border: 1px solid #a00;
}

.ths-cs-x1 {
    background: #c0c;
    background: linear-gradient(90deg, rgba(180,0,180,1) 0%, rgba(210,0,210,1) 50%, rgba(240,0,240,1) 100%);
    border: 1px solid #a0a;
}

.ths-cs-x2 {
    background: #fff;
    background: linear-gradient(90deg, rgba(220,220,220,1) 0%, rgba(240,240,240,1) 50%, rgba(255,255,255,1) 100%);
    border: 1px solid #ccc;
}

.ths-cs-x3 {
    background: #8a6032;
    background: linear-gradient(90deg, rgba(89,55,20,1) 0%, rgba(110,72,32,1) 20%, rgba(138,96,50,1) 100%);
    border: 1px solid #6e4820;
}

.ths-cs-x4 {
    background: #d3e1e6;
    background: linear-gradient(90deg, rgba(100,132,143,1) 0%, rgba(169,197,207,1) 20%, rgba(211,225,230,1) 100%);
    border: 1px solid #a9c5cf;
}

.ths-cs-x5 {
    background: #9dc297;
    background: linear-gradient(90deg, rgba(99,145,92,1) 0%, rgba(128,171,121,1) 20%, rgba(157,194,151,1) 100%);
    border: 1px solid #80ab79;
}

.ths-cs-q::after {
    position: absolute;
    content: "\2666";
    -webkit-text-stroke: 0.5px #fff;
    color: #c00;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.1rem;
    margin-top: -0.6rem;
}

.ths-bg-highlight {
    background-color: #ffc;
}

.ths-gradient-1 {
    background-image: linear-gradient(230deg, #cf8f91, #a32629);
    color: #fff !important;
}

.ths-gradient-2 {
    background-image: linear-gradient(230deg, #6f7050, #dadbb6);
    color: #fff !important;
}

.ths-gradient-3 {
    background-image: linear-gradient(230deg, #50706c, #adbab9);
    color: #fff !important;
}

.ths-gradient-4 {
    background-image: linear-gradient(230deg, #354d38, #b3c9b6);
    color: #fff !important;
}

.ths-dashboard-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding-bottom: 5px;
}

.ths-dashboard-mh {
    height: 160px;
    max-height: 160px;
}

.ths-dashboard-wt {
    border-radius: 5px;
    color: #fff;
    border: 1px solid #483e61;
    font-size: 75%;
    padding: 2px;
    position: relative;
}

.ths-header {
    z-index: 99;
}

.top-header {
    max-height: 50px;
    background: #fff;
}

.ths-navbar {
    padding-top: 2px;
    padding-bottom: 2px;
}

.ths-navbar-menu {
    font-size: 0.8rem;
    line-height: 1rem;
    font-weight: 500;
    border: 1px solid #fff;
    padding: 2px 6px 2px 6px;
    margin-right: 4px;
}

    .ths-navbar-menu:hover {
        border: 1px solid #eee;
        background-color: #eee;
        color: #333;
    }

    .ths-navbar-menu.ths-selected {
        border: 1px solid #ccc;
        background-color: #eee;
    }

.ths-dropdown-menu {
    width: 240px;
    padding: 5px 2px 5px 2px;
    font-size: 0.72rem;
    color: #666;
}

    .ths-dropdown-menu a {
        padding: 5px 10px 5px 10px;
        display: block;
        line-height: 1rem;
        color: #666;
    }

        .ths-dropdown-menu a:hover {
            background-color: #eee;
        }


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.ths-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.ths-sidebar {
    font-size: 0.8rem;
    width: 240px;
    min-width: 240px;
    background: #fff;
    color: #666;
    transition: all 0.3s;
    z-index: 90;
    height: calc(100% - 50px);
    border-right: 1px solid #ccc;
    padding: 10px;
    resize: horizontal;
    height: calc(100vh - 50px);
}

.ths-sidebar li {
    line-height: 1.5rem
}

    .ths-sidebar li a {
        display:block;
        width: 100%;
        height: 100%;
        padding: 2px 4px 2px 6px;
        font-weight: 600;
    }

        .ths-sidebar li a.active {
            background: #ddd;
        }

@media screen {
    .ths-container-body {
        width: 100%;
        padding: 20px 20px 20px 20px;
        transition: all 0.3s;
        background-color: #fff;
    }

    .ths-sidebar + .ths-container-body {
    }
}

@media print {
    .ths-container-body {
        width: 100%;
        padding: 20px 20px 20px 20px;
        transition: all 0.3s;
        background-color: #fff;
    }
}

.ths-static-menu-container {
    margin-top: -10px;
    background: #fff;
    /* background: linear-gradient(220deg, rgba(200,200,200,1) 0%, rgba(230,230,230,1) 35%, rgba(255,255,255,1) 100%); */
    display: flex;
    flex-direction: row;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    /* border: 1px solid rgba(190, 190, 190, 0.25); */
    border-radius: 0.25rem;
    padding: 2px 10px 2px 10px;
    box-shadow: 0px 0px 8px #999;
    z-index: 900;
}

#user-menu {
    z-index: 901;
}

.ths-static-menu-1 {
    font-size: 1.5rem;
    margin: auto;
    display: block;
    margin-right: 10px;
    margin-left: 10px;
}

.ths-static-menu-label-1 {
    margin: auto;
    margin-top: -5px;
    margin-bottom: 10px;
    padding: 0px;
    display: none;
    font-size: .6rem;
    color: #666;
}

.ths-static-menu {
    background-clip: border-box;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50px;
}

    .ths-static-menu a {
        color: #484e85;
    }

        .ths-static-menu a:hover {
            color: #141b5e;
        }

.ths-static-menu-label {
    position: relative;
    margin-top: -5px;
    white-space: nowrap;
    color: #666;
    font-size: 9px;
    line-height: 12px;
    align-items: center;
    text-align: center;
}

.ths-row-input {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

    .ths-row-input:hover {
        border-top: 1px dotted #ccc;
        border-bottom: 1px dotted #ccc;
    }

.ths-row-input-disabled {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #eee;
}

.ths-fa-stack-2x {
    margin-top: 4px;
}

.ths-fa-stack-sup {
    position: absolute;
    margin-top: -6px;
    margin-left: -4px;
    font-size: .5rem;
    vertical-align: top;
    text-align: center;
    padding: 0px 2px 0px 2px;
    border-radius: 50%;
    height: .9rem;
    min-width: .9rem;
}

.ths-fa-stack-sub {
    position: absolute;
    margin-top: 10px;
    margin-left: -6px;
    font-size: 14px;
    vertical-align: bottom;
    text-align: center;
    padding: 2px 2px 2px 2px;
    border-radius: 50%;
    height: 15px;
    min-width: .9rem;
    color: #369;
    background: #fff;
}

.ths-bg-green {
    background-color: #6b6;
    border: 1px solid #393;
    color: #fff;
}

.ths-grid-list {
    border-top: 1px solid #ccc;
    background: #fff;
}

    .ths-grid-list:hover {
        background: #eee;
    }

    .ths-grid-list:last-child {
        border-bottom: 1px solid #ccc;
    }

.ths-bg-system {
    background: #e3c2b6
}

.ths-bg-disabled {
    background: #d5dce3
}

.ths-nav-tab {
    font-size: 0.8rem;
    line-height: 0.9rem;
}

    .ths-nav-tab a {
        color: #999;
    }

        .ths-nav-tab a:hover {
            color: #333;
        }



/* section */
.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 575px) {
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section-sm {
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-title {
    margin-bottom: 40px;
}

.section-title-border {
    position: relative;
    height: 5px;
    width: 30px;
    background: #a82828;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
}

    .section-title-border::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 50%;
        background: #a82828;
        border-radius: 10px;
        right: -60%;
        top: 0;
    }

    .section-title-border::after {
        position: absolute;
        content: "";
        height: 100%;
        width: 25%;
        background: #a82828;
        border-radius: 10px;
        right: -100%;
        top: 0;
    }

    .section-title-border.border-center {
        margin-left: calc(50% - 27px);
    }

    .section-title-border.border-white {
        background: #fff;
    }

        .section-title-border.border-white::before {
            background: #fff;
        }

        .section-title-border.border-white::after {
            background: #fff;
        }

    .section-title-border.border-inline {
        display: inline-block;
        margin-bottom: 5px;
    }

.subtitle {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: #818385;
}

.section-bottom-lg {
    padding-bottom: 240px;
}

/* /section */
/* background image */
.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-contain {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-fixed {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

/* hero slider */
.hero-section {
    padding: 60px 0 170px;
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 170px;
    }
}

.hero-slider {
    overflow-x: hidden;
}

    .hero-slider .prevArrow {
        left: -100px;
    }

    .hero-slider .nextArrow {
        right: -100px;
    }

    .hero-slider:hover .prevArrow {
        left: 35px;
    }

    .hero-slider:hover .nextArrow {
        right: 35px;
    }

/* /hero slider */
/* banner feature */
.banner-feature-wrapper {
    transform: translateY(-100px);
}

/* overlay */
.overlay-primary {
    position: relative;
}

    .overlay-primary::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background: #102750;
        opacity: 0.6;
    }

.overlay-secondary {
    position: relative;
}

    .overlay-secondary::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background: #4d080c;
        opacity: 0.85;
    }

/* /overlay */
/* common class */
.outline-0 {
    outline: 0 !important;
}

.box-shadow {
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
}

.list-styled {
    padding-left: 0;
    list-style-type: none;
}

    .list-styled li {
        position: relative;
        padding-left: 8px;
    }

.ths-sw-icon {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #728cb0;
    text-align: center;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
    left: 5px;
    margin-bottom: 5px;
}

.ths-bg-dark {
    background: #131D45;
}

.ths-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.ths-error-icon-wrapper {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    padding-top: 1.1rem;
    text-align: center;
}

.ths-error-icon {
    font-size: 4rem;
}

.cursor-pointer {
    cursor:pointer;
}

.modal {
    top: 80px;
}

.ths-color-on {
    color: #13d634;
}

.ths-color-off {
    color: #2d4030;
}

.nav-tabs .nav-link {
    color: #666;
}

.ths-bordered-white {
    border: 10px solid #fff;
}

.ths-bordered-primary {
    border: 5px solid #c4d9f5;
}

.ths-bordered-secondary {
    border: 7px solid #bcc3cf;
}

.ths-ol {
    margin-top: -40px;
    z-index: 99;
}

.ths-logdata-label {
    font-size: .7rem;
    line-height: .9rem;
    font-style: italic;
}

.ths-logdata {
    font-size: .7rem;
    line-height: .9rem;
    border: 0px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: transparent;
    width: 100%;
}

.ths-logdata-new {
    background-color: #c3bd77;
}

.ths-logdata-changed {
    background-color: #dd9898;
}

.modal-full {
    min-width: calc(100% - 100px);
}

.ths-modal-full {
    top: 5px;
    margin: 0px;
    padding: 0px;
}