/* Minification failed. Returning unminified contents.
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(15,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(16,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(21,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(24,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(25,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(26,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(27,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(28,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(29,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(30,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(31,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(32,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(34,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(35,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(38,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(39,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(40,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(41,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(42,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(43,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(45,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(46,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(52,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(53,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(54,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(55,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(56,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(57,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(58,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(59,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(82,21): run-time error CSS1039: Token not allowed after unary operator: '-normal-font-size'
(158,21): run-time error CSS1039: Token not allowed after unary operator: '-normal-font-size'
(826,25): run-time error CSS1039: Token not allowed after unary operator: '-h2-font-size'
(861,25): run-time error CSS1039: Token not allowed after unary operator: '-h2-font-size'
 */
/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai+Looped&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem; /*56px*/
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --hue: 152;
    --first-color: #28287e;
    --first-color-alt: #35aef3;
    --first-color-light: hsl(var(--hue), 24%, 66%);
    --first-color-lighten: hsl(var(--hue), 24%, 92%);
    --title-color: hsl(var(--hue), 4%, 15%);
    --text-color: hsl(var(--hue), 4%, 35%);
    --text-color-light: hsl(var(--hue), 4%, 55%);
    --body-color: hsl(var(--hue), 0%, 100%);
    --container-color: #FFF;
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Noto Sans Thai', sans-serif;
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: 1.5rem; /* 24px = 1.5rem, 18px = 1.125rem */
    --small-font-size: 0.875rem; /* 14px */
    --smaller-font-size: .75rem; /* 12px */
    --form-control-font-size: 1rem; /* 14px */
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margenes Bottom ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
    :root {
        --big-font-size: 3.5rem; /* 56px */
        --h1-font-size: 2.25rem; /* 36px */
        --h2-font-size: 1.5rem; /* 24px */
        --h3-font-size: 1.25rem; /* 20px */
        --normal-font-size: 1.5rem; /* 24px */
        --small-font-size: 1rem; /* 16px */
        --smaller-font-size: .875rem; /* 14px */
        --form-control-font-size: 1.375rem; /* 22px */
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url(../Resources/Sky-Clouds-Background-50V1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #464646;
    background-color: #ffffff;
    font-size: var(--normal-font-size);
    /*font-family: var(--body-font);*/
}

a, a:hover, a:focus {
    color: rgba(0,149,84,1);
}

/*select option:disabled {
    color: #000;
    font-weight: bold;
}*/

.input-bordered {
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 10px;
}

#header {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#body {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#footer {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.container-fluid {
    padding-top: 15px !important;
}

.editor-field-non-required > label:after {
    content: ":";
    padding-left: 5px;
}

.editor-field-required > label:after {
    content: ":";
    padding-left: 10px;
}

.editor-field-required > label > span:after {
    content: "*";
    vertical-align: top;
    margin-right: -4px;
    font-size: medium;
    color: #b94a48;
}

.exactCenter {
    margin-top: 10%;
}

.form-control {
  height: 28px;
  padding: 2px 8px;
}

.form-control, .k-input {
    background-color: rgba(176, 216, 241, 0.44);
    font-size: var(--normal-font-size);
    height: 35px;
}

.k-input, input.k-textbox, textarea.k-textbox, input.k-textbox:hover, textarea.k-textbox:hover, .k-textbox > input, .k-multiselect-wrap {
    color: #595555 !important; 
}

.k-widget.k-autocomplete, .k-widget.k-combobox, .k-widget.k-dropdown, .k-widget.k-datepicker, .k-widget.k-datetimepicker, .k-widget.k-timepicker, .k-widget.k-numerictextbox, .k-widget.k-multiselect, .k-widget.k-menu, .k-widget.k-progressbar, .k-progressbar > .k-state-selected {
    width: 100% !important;
}

.form-horizontal .control-label {
    font-weight: bold;
}

.form-horizontal .control-label-left {
    font-weight: bold;
    text-align: left;
}

/* div class for change label to have small text and gray text color.  */
.label-status > div > label {
    font-size: small;
    color: gray;
}

.label {
    cursor: pointer;
    margin-left: 5px;
    font-size: small;
    padding-top: 3.9px;
}
/*Login page*/
/*.form-login {
    height: 34px;
    font-size: large;
}*/
/*Action control button*/
.btn-form-action {
    margin-top: 10px;
    margin-bottom: 15px;
}

.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
    padding-top: 4px;
}

/*This class will be referenced by JavaScript, do not edit the name of this class! */
    .required > span {
    color: #b94a48;
}

/*Change checkbox label font-weight from normal to */
.radio label,
.checkbox label {
  /*font-weight:  600;*/
}

input[type="radio"], input[type="checkbox"] {
    margin: 2px 0 0;
    width: 16px;
    height: 16px;
}

/*.form-group-sm .form-control {
    font-size: 16px;
    height: 35px;
}*/
/* Set tab space ( paddign from 15px to 8px*/
.nav > li > a {
    padding: 10px 8px;
}


/* Fore No paading-right on Error Ref Dev Issue#432 */
.has-feedback .form-control {
   padding-right: 0px; 
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    color: #b94a48 !important;
}

.form-group-grid {
    margin-bottom: 0px;
}

.site-panelwrapper {
    padding: 8px;
    margin: 0 auto;
    margin-top: 5px;
    background: rgba(0,0,0,.2);
    border-radius: 10px;
}

.site-border {
    border: 3px solid #fff;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 1);
    margin: 0 auto;
    margin-top: 0;
    padding: 25px 20px;
    padding-bottom: 20px;
}

.site-border-popup {   
    background-color: rgba(255, 255, 255, 1);
    padding: 25px 20px;
    padding-bottom: 20px;
}

.col-xs-33 {
    width: 28.7%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

th {
    text-align:center;
    color: black;
}

.form-area .form-control {
	height: auto;
	overflow: auto;
	padding: 5px 10px;
	line-height: 1.3333333;
	border-radius: 6px;
	resize: vertical;
	white-space: normal;
}

.tab-bordered {
    padding-top: 10px;
    border: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
}

.headerHR {
    font-weight: bold;
}

.flex-row-reverse {
    display: flex !important;
    /*-webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important;*/

    justify-content: flex-end !important;
}

.labelFooter {
    color: #777;
}

.fixed-between {
    display: flex;
    justify-content: space-between;
}

.flex-row-end {
    display: flex !important;
    justify-content: flex-end !important;
}

.main-nav {
    font-size: 16px;
    font-weight: bold;
}

.text-nowrap {
    text-wrap: nowrap;
}

.isDisabled {
    cursor: not-allowed !important;
    opacity: 0.5;
    text-decoration: none;
}

.grayFooterPanel  {
    background-color: #f5f5f5;
}

.grayFooterTab {
    background-color: #f5f5f5;
    border: 1px solid #e7e7e7;
    border-width: 1px 0 4px 0 !important;
}

.btnGroupFooterTab {
    margin-bottom: 15px;
    text-align: right;
}

.help-block {
    color: #b94a48 !important;
}

.middle-label {
    display: flex;
    vertical-align: middle;
}
.flex-container {
    display: flex;
    align-items: center;
}
/*=============== Label ===============*/
    .label-red {
    color: #ff4136;
    font-weight: bold;
}

.label-badges {
    display: grid;
    padding-bottom: 5px;
    cursor: unset;
}


/*=============== Blink Button Error ===============*/
.blinking-button {   
    animation: blink 1s linear infinite; /* ใช้แอนิเมชัน */
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/*=============== Button ===============*/
.btn {
    /*padding: 3px 12px;
    color: #FFF;*/
    font-size: unset;
    text-transform: unset;
}

.btn-circle {
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 6px 0;
    line-height: 1.428571429;
    border-radius: 15px;
}

    .btn-circle.btn-lg {
        line-height: 1.33;
        border-radius: 25px;
    }

.btn:focus, .btn:active:focus, .btnDeletePhoto {
    color: #FFF;
    outline: none;
}

.btn-sm, .btn-group-sm > .btn {
    border-radius: 4px;
}

.btn-xs, .btn-group-xs > .btn {
    border-radius: 4px;
}

.btn-del {
    margin-top: 2px;
}

/*.btn {
    border-top-color: #1992da;
    border-left-color: #0c75bb;
    border-right-color: #0c75bb;
    border-bottom-color: #00589c;
    background-attachment: scroll;
    background-clip: border-box;
    background-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(rgb(55, 170, 234) 0px, rgb(17, 126, 210) 100%);
    background-origin: padding-box;
    background-size: auto;
    border-bottom-color: rgb(0, 88, 156);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-image-outset: 0px;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    border-left-color: rgb(12, 117, 187);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-color: rgb(12, 117, 187);
    border-right-style: solid;
    border-right-width: 1px;
    border-top-color: rgb(25, 146, 218);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-top-style: solid;
    border-top-width: 1px;
    box-shadow: rgb(111, 197, 245) 0px 1px 1px 0px inset;
    color: rgb(255, 255, 255);
    font-size: 16px;
}

btn-primary {
    box-shadow: rgb(111, 197, 245) 0px 1px 1px 0px inset;
    border-top-color: rgb(25, 146, 218);
    border-right-color: rgb(12, 117, 187);
    border-left-color: rgb(12, 117, 187);
    border-bottom-color: rgb(0, 88, 156);
    background-image: linear-gradient(rgb(55, 170, 234) 0px, rgb(17, 126, 210) 100%);
    background-color: rgba(0, 0, 0, 0)
}

.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    background: -webkit-gradient(linear,left top,left bottom,from(#2488d4),to(#1c5bad));
    box-shadow: inset 0 1px 1px 0 #64bef1;
    color: #FFF;
    border-top-color: #1992da;
    border-left-color: #0c75bb;
    border-right-color: #0c75bb;
    border-bottom-color: #00589c;
}

.btndeleimg, .btnDelFile, btnDeleteFactoryPhoto1 {
    padding-bottom: 0px;
    padding-right: 12px;
    padding-top: 0PX;
}*/
/*=============== Panel ===============*/
.panel {
    border-width: 1px 1px 4px 1px !important;
}

.panel-title {
    /*font-size: 18px;*/
    font-weight: bold;
}

.panel-default > .panel-heading {
    font-weight: bold;
}

.panel-collapse {
    margin-top: 20px !important;
}

.panel-bottom {
    margin-bottom: 20px !important;
}

/*=============== Table ===============*/
.table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
    border-bottom-width: 2px;
    text-align: center;
    font-weight: bold;
    vertical-align: text-top;
}

.table-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    box-shadow: inset 0 1px 0 #dddddd, inset 0 -2px 0 #dddddd;
}

.table-margin {
    margin-bottom: 0;
}

th {
    background-color: #9CC8EA;
    color: black;
}

table > thead > tr > th, .table > thead > tr > th, table > tbody > tr > th, .table > tbody > tr > th, table > tfoot > tr > th, .table > tfoot > tr > th, table > thead > tr > td, .table > thead > tr > td, table > tbody > tr > td, .table > tbody > tr > td, table > tfoot > tr > td, .table > tfoot > tr > td {
    border-color: unset;
    border: 1px solid #dddddd;
}

.table-middle {
    text-align: center; 
    vertical-align: middle !important;
}
tr.fixedHeader {
    position: sticky;
    top: 0;
}

tr > th.fixedFirst:first-child, tr > td.fixedFirst:first-child {
    position: sticky;
    left: 0;
    background-color: #fff;
}

td > .help-block {
    color: #b94a48 !important;
    font-size: 12px;
}

/*=============== NAV ===============*/
.nav > li > a {
    padding: 10px 6px;
}

.nav {
    border-bottom: 1px solid #dddddd;
}

.nav-pills > li > a {
    border-radius: 3px;
    text-decoration: none;
    background-color: #eeeeee;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    background-color: #d9534f;
    background-image: linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);
    border-radius: 4px 4px 0 0;
}

.nav-pills > li > a, .nav-pills > li > a:focus, .nav-pills > li > a:hover {
    background-color: #ebebeb;
    background-image: linear-gradient(to bottom,#eee 0,#ddd 100%);
    border-radius: 4px 4px 0 0;
}

/*=============== PAGINATION ===============*/
/*.pagination > li > a,
.pagination > li > span {
    color: #aea79f;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #D5D3D3;
}*/

/*=============== Glyphicon ===============*/
.glyphiconG {
    color: #28b62c;
}

.glyphiconW {
    color: #ff851b;
}

.glyphiconD {
    color: #a94442;
}

.position-relative {
    position: relative;
}

.icon-sanction {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.pd-sanction {
    padding-right: 30px;
}

/*=============== a Link ===============*/
.inputBtnP { /* Primary */
    color: #fff;
    font-weight: bold;
    background-color: #158cba;
    border-color: #127ba3;
    cursor: pointer;
}

    .inputBtnP:hover {
        color: #fff;
        background-color: #158cba;
        border-color: #127ba3;
        cursor: pointer;
    }

    .inputBtnP > a, a:hover, a:focus {
        text-decoration: none;
    }

.inputBtnW { /* Warning */
    color: #fff;
    font-weight: bold;
    background-color: #ff851b;
    border-color: #ff7701;
    cursor: pointer;
}

    .inputBtnW:hover {
        color: #fff;
        background-color: #ff851b;
        border-color: #ff7701;
        cursor: pointer;
    }

    .inputBtnW > a, a:hover, a:focus {
        text-decoration: none;
    }

.inputBtnD { /* Danger */
    color: #fff;
    font-weight: bold;
    background-color: #ff4136;
    border-color: #ff291c;
    cursor: pointer;
}

    .inputBtnD:hover {
        color: #fff;
        background-color: #ff4136;
        border-color: #ff291c;
        cursor: pointer;
    }

    .inputBtnD > a, a:hover, a:focus {
        text-decoration: none;
    }

.inputBtnG { /* Gray */
    color: #fff;
    font-weight: bold;
    background-color: #eeeeee;
    border-color: #e2e2e2;
    cursor: pointer;
}

    .inputBtnG:hover {
        color: #fff;
        background-color: #eeeeee;
        border-color: #e2e2e2;
        cursor: pointer;
    }

    .inputBtnG > a, a:hover, a:focus {
        text-decoration: none;
    }

.tooltip-inner {
    text-align: left;
}

/*=============== Modal ===============*/
.modal {
    overflow: auto;
}

.modal-header {
    background-color: #e5e5e5;
    border-radius: 5px 5px 0 0;
}

.modal-footer {
    padding: 10px;
}

.modal-backdrop {
    z-index: unset;
}

.modal-backdrop.in {
    height: 100% !important;
}

/*=============== Grid Width ===============*/
.group-name-5 {
    width: 5% !important;
}

.group-name-10 {
    width: 10% !important;
}

.group-name-15 {
    width: 15% !important;
}

.group-name-20 {
    width: 20% !important;
}

.group-name-25 {
    width: 25% !important;
}

.group-name-30 {
    width: 30% !important;
}

.group-name-35 {
    width: 35% !important;
}

.group-name-40 {
    width: 40% !important;
}

.group-name-45 {
    width: 45% !important;
}

.group-name-50 {
    width: 50% !important;
}

.group-name-55 {
    width: 55% !important;
}

.group-name-60 {
    width: 60% !important;
}

.group-name-65 {
    width: 65% !important;
}

.group-name-70 {
    width: 80% !important;
}

.group-name-75 {
    width: 75% !important;
}

.group-name-80 {
    width: 80% !important;
}

/*=============== BREAKPOINTS ===============*/

/* Styles for devices with a resolution greater than or equal to 1200 pixels wide */
@media screen and (min-width: 1200px) {
    .headProject {
        display: inline-block;
        color: white;
        font-size: calc(1rem + 1vw);
    }

    header img {
        vertical-align: text-bottom;
        width: calc(10% + 1vw);
    }

    #content {
        margin-top: 5%;
    }

    .labelBrand {
        font-size: var(--h2-font-size);
    }

    .mainPage {
        margin-top: 5%;
    }

    .form-horizontal .form-group {
        margin-left: unset !important;
        margin-right: unset !important;
    }

    .resp {
        font-size: 1.2rem;
    }
}

/* Styles for devices with a resolution between 768 and 1199 pixels wide */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .headProject {
        display: inline-block;
        color: white;
        font-size: calc(0.8rem + 1vw);
    }

    header img {
        vertical-align: text-bottom;
        width: calc(10% + 1vw);
    }

    #content {
        margin-top: 5%;
    }

    .labelBrand {
        font-size: var(--h2-font-size);
    }

    .mainPage {
        margin-top: 4%;
    }

    .table-responsive > .table > thead > tr > th {
        white-space: nowrap;
    }

    .form-horizontal .form-group {
        margin-left: unset !important;
        margin-right: unset !important;
    }

    .resp {
        font-size: 1rem;
    }
}

/* Styles for devices with a resolution less than 768 pixels wide */
@media screen and (max-width: 767px) {
    .headProject {
        display: inline-block;
        color: white;
        font-size: calc(0.6rem + 1vw);
    }

    header img {
        vertical-align: text-bottom;
        width: calc(15% + 1vw);
    }

    .form-horizontal .form-group {
        margin-left: unset !important;
        margin-right: unset !important;
        font-size: 1.125rem; /*var(--small-font-size);*/
    }

    .form-control, .k-input {
        font-size: 1.125rem; /*var(--small-font-size);*/
    }

    .form-horizontal .control-label {
        padding-top: 4px;
    }

    .form-horizontal .control-label-left {
        padding-top: 4px;
    }

    .table-responsive > .table > thead > tr > th {
        white-space: nowrap;
    }

    .resp {
        font-size: 0.6rem;
    }
}
