* {
box-sizing: border-box;
}
@font-face {
    font-family: 'THSarabunNewRegular';
    src: url('../fonts/THSarabun.ttf') format('truetype');
}
@font-face {
    font-family: 'PromptRegular';
    src: url('../fonts/Prompt-Regular.ttf') format('truetype');
}

*:focus {
	outline: none;
}

/* body {
    font-family: 'PromptRegular', sans-serif;
    font-size: 11pt;
    background-image: url("../img/dol-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
} */

.content-screen{
  position: fixed;
  top: 100px;
  width: 100%;
  height: 100%;
  padding-top: 20px; 
}

.header-screen{
  position: fixed;
  top:5px;
  width: 100%;
  height: 100px;
}
.htitle{
    margin-left:120px;
    top:5px;
    position:absolute;
}
.hline1 {
    font-family: 'PromptRegular', sans-serif;
    font-size: 28pt;
    font-weight: bold;
    color: darkgreen;
}
.hline2 {
    color: darkgreen;
    font-family: 'PromptRegular', sans-serif;
    font-size: 16pt;
    font-weight: bold;
    position: absolute;
    top: 45px;
    width: 600px;
}
    .login-screen {
        background-color: #FFF;
        background-image: url("../img/fondo-poligonal-verde-y-blanco_1035-6041.jpg");
        padding: 20px;
        border-radius: 5px;
        width: 300px;
    }

.app-title {
  text-align: center;
  color: #777;
}

.login-form {
  text-align: center;
}

.control-group {
  margin-bottom: 10px;
}


.inputLogin{
  text-align: center;
  background-color: #ECF0F1;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
  width: 250px;
  transition: border .5s;
}

.inputPassword{
  text-align: center;
  background-color: #ECF0F1;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
  width: 250px;
  transition: border .5s;
}

input:focus {
  border: 2px solid #316013;
  box-shadow: none;
}

.btn {
  border: 2px solid transparent;
  background: rgb(74, 141, 20);
  color: #ffffff;
  font-size: 16px;
  font-weight:400;
  line-height: 25px;
  padding: 0px 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 250px;
  margin: 0 auto;
}

.btn:hover {
  background-color: rgba(21, 156, 16, 0.836);
}

.login-link {
    padding-top:3px;
  font-size: 20px;
  color: #444;
  display: block;
	
}

.panel-default > .panel-heading-custom {
  background: #1fa32a; 
  color: #fff; 
}

.panel-body-custom{
  height: calc(100vh - 320px);
  overflow-y: auto; 
}
  

.btnExit{
    position: fixed;  
    right: 0;
    top: 0px;
    background-color: red;
    color: white;
    font-size:11pt;
    font-weight:600;
    
    border-radius:5px;
  }

.btnExit:hover{
    background-color: darkolivegreen;
    color: white;
  }

.btnExit>i{   
    font-size: 12pt;
    font-weight: bold;
}
.textWelcome{
    text-align: center;
    left:0px;
    position: fixed;
    bottom: 85px;
    font-size: 14pt;
    font-weight:500;
    height: 40px;
    width: 100%;   
    background-color:  rgba(5, 122, 30, 0.3);
    
  }
.textNoti{
    position: fixed;
    bottom: 55px;
    font-size: 14pt;
    font-weight:500;
  }
#hlogo{
    height:100px;
    margin-left:10px;
}

.effect1 {
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777;
}

.effect8 {
    position: relative;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

    .effect8:before, .effect8:after {
        content: "";
        position: absolute;
        z-index: -1;
        -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.8);
        -moz-box-shadow: 0 0 20px rgba(0,0,0,0.8);
        box-shadow: 0 0 20px rgba(0,0,0,0.8);
        top: 10px;
        bottom: 10px;
        left: 0;
        right: 0;
        -moz-border-radius: 100px / 10px;
        border-radius: 100px / 10px;
    }

    .effect8:after {
        right: 10px;
        left: auto;
        -webkit-transform: skew(8deg) rotate(3deg);
        -moz-transform: skew(8deg) rotate(3deg);
        -ms-transform: skew(8deg) rotate(3deg);
        -o-transform: skew(8deg) rotate(3deg);
        transform: skew(8deg) rotate(3deg);
    }