﻿body {
    font-family: "Kanit";
    font-size: 16px;
    /*background: rgba(51, 51, 51, 0.15);*/
    --tw-bg-opacity: 1;
    background-color: rgba(248, 248, 248, var(--tw-bg-opacity));
    /*-moz-filter: grayscale(50%);
    -webkit-filter: grayscale(50%);
    filter: gray; /* IE6-9 */
    /*filter: grayscale(50%);*/
}

/*For Map*/
iframe {
    border-width: 0;
    width: 100%;
    /*550px = 34.38rem*/
    height: 34.38rem;
}

/*---black-ribbon---*/
.black-ribbon {
    position: fixed;
    z-index: 9999;
    width: 70px;
}

@media only all and (min-width: 768px) {
  .black-ribbon {
    width: auto;
  }
}

.stick-left { left: 0; }
.stick-right { right: 0; }
.stick-top { top: 0; }
.stick-bottom { bottom: 0; }

h1 {
    margin-top: 75px;
    text-indent: 50px;
    line-height: 0;
    letter-spacing: 1px;
    color: white;
    font-size: 2vw;
    font-weight: 700;
}

h2{
    float: right;
    padding-top: 10px;
    margin-top: 75px;
    text-indent: 50px;
    line-height: 0;
    letter-spacing: 1px;
    color: white;
}

h3 {
    font-size: 4.4vw;
    float: right;
    padding-top: 20px;
    padding-right: 20px;
    letter-spacing: 0.2px;
    text-indent: 25px;
    line-height: 110%;
    color: white;
    font-weight: lighter;
    opacity: .9;
    margin: 1.46rem 0 0 0;
}

h4 {
    font-size: 3.8vw;
    float: right;
    padding-right: 20px;
    letter-spacing: 0.2px;
    line-height: 110%;
    color: white;
    font-weight: lighter;
    opacity: .6;
    margin: 1.14rem 0 0 0;
}

h6 {
    text-align: right;
    float: right;
    padding-right: 20px;
    font-size: 0.8rem;
    line-height: 110%;
    margin: 0.5rem 0 0.4rem 0;
}

@media only screen and (min-width: 481px) {
  h3 {
    font-size: 4.2vw;
    letter-spacing: 1px;
  }

  h4 {
    font-size: 3.5vw;
    letter-spacing: 1px;
  }
}

/*@media only screen and (min-width: 601px) {
  h3 {
    font-size: 3.5vw;
  }

  h4 {
    font-size: 3vw;
  }
}*/

@media only screen and (min-width: 993px) {
  h3 {
    font-size: 3vw;
    letter-spacing: 1.5px;
  }

  h4 {
    font-size: 2.2vw;
    letter-spacing: 1.5px;
  }

  h6 {
    font-size: 1rem;
  }
}

.txtUserInfo {
    font-weight: bold;
    /*18px = 1.125rem*/
    font-size: 1.125rem;
}

.txtSalary {
    font-weight: bold;
    /*35px = 2.188rem*/
    font-size: 2.188rem;
}

.txtClock {
    font-weight: bold;
    /*60px = 3.75rem*/
    font-size: 3.75rem;
}

    .txtClock.portal {
        /*45px = 2.813rem*/
        font-size: 2.813rem;
    }

header {
    position: absolute; /*fixed*/
    top: 0;
    width: 100%;
    height: 300px;
    background: #E5CA81;
    background: linear-gradient(to bottom right, #E5CA81 0%, #FFD54F 100%);
    border-bottom: 1px solid #E5CA81;
}

    header > div {
        position: fixed; /*absolute*/
        width: 100%;
        height: 32px;
        background-color: #D19D51;
        z-index: 1000;
    }
        
        section {
            position: relative;
            top: 50%;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            width: 55%;
            height: auto;
            background-color: white;
            border-radius: 3px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.26);
            z-index: 0;
        }

/*-------------------- card --------------------*/
@-webkit-keyframes cardEnter {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@keyframes cardEnter {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pop-up {
    -webkit-animation: cardEnter 0.75s ease-in-out 0.5s;
            animation: cardEnter 0.75s ease-in-out 0.5s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}

.mdn-card {
    display: block;
    position: relative;
    right: 10px;
    min-width: 200px;
    max-width: 300px;
    opacity: 0;
}

.mdn-tblLogin {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 2vh;
    background-color: transparent;
}

.mdn-tblQNForm {
    max-width: 850px;
    /*5px = 0.3125rem*/
    padding: 0.3125rem;
    margin: 0 auto;
    background-color: #F5ECCF;
    border-radius: 2vh;
    /*-40px = -2.5rem*/
    /*margin-top: -2.5rem;*/
    margin-top: -2rem;
}

    /*20180129*/
    .mdn-tblQNForm.mdn-MainMenu {
        /*10px = 0.625rem*/
        margin-top: 0.625rem;
        /*margin-top: 4.625rem;*/
    }

    /*20201027*/
    .mdn-tblQNForm.grad.qtn {
        margin-top: 0;
        max-width: none;
    }

    .mdn-txtHeader {
        display: block;
        position: relative;
        padding: 5px 25px;
        font-size: 1.5em;
        color: #ff9800;
    }

.mdn-Logo {
  position: absolute;
  width: 250px;
  height: 250px;
  top: -28px;
  left: -28px;
  z-index: 1000;
}

.mdn-Lang {/*Not in Use*/
  display: inline-block;
  color: #fff;
  position: relative;
  overflow: hidden;
  width: 60px;
  height: 60px;
  top: -15px;
  left: -45%;
  z-index: 1000;
  padding: 0;
  border-radius: 50%;
  transition: .3s;
  cursor: pointer;
}

.mdn-Lang-F1 {
  color: #fff;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  margin: 0 auto;
  transition: .3s;
  cursor: pointer;
}

    .mdn-Lang-F1.modlink {
        /* background-color: #FA4616; */
        background-color: #fa7316;
    }

.mdn-relative2 {
    position: relative;
    width: 60px;
    margin-top: -15%;
    bottom: -30px;
    right: -80%;
    z-index: 1000;
}

.mdn-relative3 {
    position: relative;
    margin: 0 auto;
    /*-180px = -11.25rem*/
    margin-top: -11.25rem;
    /*10px = 0.625rem*/
    margin-left: 0.625rem;
    /*-100px = -6.25rem*/
    bottom: -6.25rem;
    /*bottom: -10.25rem;*/
    /*z-index: 1002;*/
}

.mdn-Button {
    border-radius: 50vh;
    background-color: #CA934D;
}

    .mdn-Button:hover{
        background-color: #F57C00;
    }

    .mdn-Button.alert-info, .mdn-Button.alert-success {
        width: 100%;
        font-size: 1rem;
    }

        .mdn-Button.alert-info:hover {
            background-color: #31708f;
            color: #d9edf7;
        }

        .mdn-Button.alert-success:hover {
            background-color: #009688;
            color: #dff0d8;
        }

@media only screen and (min-width: 601px) {
.mdn-relative2 {
      margin-top: -5%;
    }

    .mdn-tblQNForm {
        /*-18px = -1.125rem*/
        margin-top: -1.125rem;
    }

        .mdn-tblQNForm.mdn-MainMenu {
            /*16px = 1rem*/
            margin-top: 1rem;
        }

    .mdn-relative3 {
        /*-164px = -10.25rem*/
        margin-top: -10.25rem;
    }
}

@media only screen and (min-width: 993px) {
    .mdn-Lang {
        top: -15px;
        right: -45%;
    }

    .mdn-tblQNForm {
        /*-18px = -1.125rem*/
        margin-top: -1.125rem;
    }

        .mdn-tblQNForm.mdn-MainMenu {
            /*16px = 1rem*/
            margin-top: 1rem;
        }

    .mdn-relative3 {
        /*-164px = -10.25rem*/
        margin-top: -10.25rem;
    }
}

.mdn-Lang, .mdn-Lang-F1 i {
  width: inherit;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 60px;
}

/*For Button w/ Img Icon*/
a.btn-large img {
    height: 2.5rem;
    width: 2.5rem;
    margin: 0.7rem 0.938rem;
    float: right;
    border-radius: 0.5rem;
}

.mdn-imgBtn {
    /*6.25rem = 100px;*/
    width: 6.25rem;
    height: 6.25rem;
    /*background-color: #ddd;*/ /*Grey*/
    /*background-color: #FF8F00;*/ /*amber darken-3*/
    /*background-color: #1ca192;*/ /*Bright Teal*/
    /*background-color: rgba(255, 146, 0, 0.46);*/ /*Bright Orange #ff9200 Hex75*/
    /*background-color: rgba(255, 183, 77, 0.46);*/ /*Bright Orange #ffb74d Hex75*/
    /*background-color: #dff0d8;*/ /*Light Green*/
    background: linear-gradient(rgba(255, 160, 0, 0.9) 10%, #FF8F00 75%);
    border-radius: 0 4vh 4vh 4vh;
    cursor: pointer;
    /*border-color: #1D8279;
    border-style: solid;
    border-width: thin;*/
    /*12px = 0.75rem*/
    padding: 0.75rem;
}

.mdn-imgLogo {
    /*7.5rem = 120px;*/
    width: 7.5rem;
    height: 7.5rem;
}

.mdn-txtMenu {
    position: relative;
    transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    color: #1D8279;
    font-weight: bold;
}

.mdn-Button-Light {
    background-color: transparent;
    color: #F57C00;
    border-color: #F57C00;
    border-style: solid;
    border-width: thin;
    border-radius: 50vh;
    text-align: center;
    letter-spacing: .5px;
    transition: .2s ease-out;
    cursor: pointer;
}

    /*.mdn-Button-Light:hover {
        color: #fef1e5;
        background-color: #F57C00;
    }*/

.btn.mdn-Button-Light {
    /*36px = 2.25rem*/
    height: 2.25rem;
    line-height: 2.25rem;
}

.btn-large.mdn-Button-Light {
    /*54px = 3.375rem*/
    height: 3.375rem;
    /*56px = 3.5rem*/
    line-height: 3.5rem;
}

.btn-large-menu.mdn-Button-Light {
    /*100px = 6.25rem*/
    height: 6.25rem;
    line-height: 6.25rem;
    border-radius: 5vh;
}

.mdn-depth-1, .mdn-Lang {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

    .mdn-depth-15, .mdn-Lang:hover, .mdn-Lang-F1, iframe {
        box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    }

.mdn-depth-2, .mdn-tblQNForm, .mdn-tblLogin, .mdn-imgBtn, header > div {
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.mdn-depth-3, .mdn-card, .mdn-imgLogo {
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.mdn-depth-4, .mdn-card:hover {
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.hoverable {
  transition: box-shadow .25s;
  box-shadow: 0;
}

.hoverable:hover {
  transition: box-shadow .25s;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Radio With gap */
[type="radio"].mdn-with-gap:checked + label:before {
  border-radius: 50%;
  border: 2px solid #26a69a;
}

[type="radio"].mdn-with-gap:checked + label:after {
  border-radius: 50%;
  border: 2px solid #26a69a;
  background-color: #26a69a;
  z-index: 0;
  transform: scale(0.5);
  -webkit-transform: scale(0.5);   
}

/*********************
  Panels
**********************/
.panel-default .panel-heading {
  background-color: transparent;
  border-radius: 0px;
}

.panel-group {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.panel-group .panel {
  border-radius: 0px;
}

.panel-group .panel + .panel {
  margin-top: 0px;
  border-top: 0px;
  border-bottom: 1px solid #ddd;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.panel-body:before,
.panel-body:after{
  display: table;
  content: " ";
}

.panel-body:after{
  clear: both;
}

/*********************
  Alerts
**********************/
.alert {
    /*15px = 0.9375rem*/
    padding: 0.9375rem;
    /*20px = 1.25rem*/
    margin-bottom: 1.25rem;
    border: 1px solid transparent;
    border-radius: 2vh;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

    .alert.faq {
        margin-top: 1.25rem;
    }

    .alert.ssize {
        /*7px = 0.4375rem*/
        padding: 0.4375rem;
        border-radius: 2vh;
    }

    .alert i.right {
        float: right;
        margin-left: 0px;
    }

    .alert.txtUserInfo {
        border-radius: 50vh;
        /*5px = 0.3125rem*/
        margin-bottom: 0.3125rem;
    }

    .alert h4 {
        font-size: 1.5rem;
      margin-top: 0;
      color: inherit;
      float: none;
    }
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

    .alert-primary hr {
        border-top-color: #9fcdff;
    }

    .alert-primary .alert-link {
        color: #002752;
    }

.alert-worknormal {
    color: #004085;
    background-color: #b3e5fc;
    border-color: #81d4fa;
}

    .alert-worknormal hr {
        border-top-color: #81d4fa;
    }

    .alert-worknormal .alert-link {
        color: #002752;
    }

.alert-secondary {
    color: #464a4e;
    background-color: #e7e8ea;
    border-color: #dddfe2;
}

    .alert-secondary hr {
        border-top-color: #cfd2d6;
    }

    .alert-secondary .alert-link {
        color: #2e3133;
    }

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

.alert-success {
    /*color: #3c763d;*/
    color: #009688 ; /*Nighty*/
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

    .alert-info .alert-link {
        color: #245269;
    }

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

    .alert-warning hr {
        border-top-color: #ffe8a1;
    }

    .alert-warning .alert-link {
        color: #533f03;
    }

.alert-worklate {
    color: #e65100;
    background-color: #ffb74d;
    border-color: #ff9800;
}

    .alert-worklate hr {
        border-top-color: #ffb74d;
    }

    .alert-worklate .alert-link {
        color: #533f03;
    }

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

    .alert-light hr {
        border-top-color: #ececf6;
    }

    .alert-light .alert-link {
        color: #686868;
    }

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

    .alert-dark hr {
        border-top-color: #b9bbbe;
    }

    .alert-dark .alert-link {
        color: #040505;
    }

.alert-holiday {
    color: #1b1e21;
    background-color: #cfd8dc;
    border-color: #c6c8ca;
}

    .alert-holiday hr {
        border-top-color: #b9bbbe;
    }

    .alert-holiday .alert-link {
        color: #040505;
    }

/*select2*/

.mdn-select2 {
  width: 100%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.mdn-material-select {
    margin: 0;
}

.mdn-material-select2 {
    margin: 0;
}

/*pulse*/

.pulse {
    overflow: initial;
    position: relative;
}

    .pulse::before {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: inherit;
        border-radius: inherit;
        -webkit-transition: opacity .3s, -webkit-transform .3s;
        transition: opacity .3s, -webkit-transform .3s;
        transition: opacity .3s, transform .3s;
        transition: opacity .3s, transform .3s, -webkit-transform .3s;
        -webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
        animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
        /*z-index: -1;*/
    }

@-webkit-keyframes pulse-animation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}