@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.blink-text {
  animation: blink 1s infinite;
}

/*---------------------------------------------- ADD SELECT ------------------------------------------------------*/
select {
  color: #1B4F72; 
  font-size: 15px; 
  text-align: left; 
  background-color:#A6EAF8;
  }

/*---------------------------------------------- ADD INPUTS ------------------------------------------------------*/
input {
  color: #1B4F72; 
  font-size: 15px; 
  text-align: left; 
  background-color:#A6EAF8;
  }
/*---------------------------------------------- ADD LABELS ------------------------------------------------------*/
label {
  color: #1B4F72; 
  font-size: 15px; 
  text-align: left; 
  }
/*------------------------------------------------- TITLE ------------------------------------------------------*/
h1 {
  color: #154360; 
  font-size: 30px; 
  text-align: center; 
  }
/*------------------------------------------------ TABLE ---------------------------------------------------------*/
.table-bordered {
  border-collapse: collapse; 
  width: 100%; 
}
/*------------------------------------------------ TABLE BORDER COLOR --------------------------------------------*/
.table-bordered, th, td {
  border: 1px solid #B03A2E; 
}
/*------------------------------------------ TABLE HEADER & BODY --------------------------------------------------*/
th, td {
  padding: 10px; 
  text-align: center;
}
/*-------------------------------------------- TABLE HEADER -------------------------------------------------------*/
th {
  background-color: #2980B9;
  color:#000000; 
}
/*--------------------------------------------- TABLE BODY --------------------------------------------------------*/
.table-bordered tbody td {
  background-color: #AED6F1; 
}

/*--------------------------------------------- TABLE EVEN ROWS ---------------------------------------------------*/
.table-bordered tbody tr:nth-child(even) td {
  background-color: #85C1E9; 
}
/*------------------------------------------------ BUTTON SUB -----------------------------------------------------*/
.button_sub {
  background-color: #2980B9; 
  color: #fff; 
  padding: 2px 2px; 
  text-decoration: none; 
  border-radius: 3px; 
  display: inline-block;
  border: 1px solid #B03A2E;
  font-size: 30px;
  text-align: center;
}
.main_btn:hover {
  background-color: #154360; 
  color: #fff;
}
/*------------------------------------------------ BUTTON 1 -----------------------------------------------------*/
.button_1 {
  background-color: #2980B9; 
  color: #fff; 
  padding: 2px 2px; 
  text-decoration: none; 
  border-radius: 3px; 
  display: inline-block;
  border: 1px solid #B03A2E;
  font-size: 18px;
  text-align: center;
}
.main_btn:hover {
  background-color: #154360; 
  color: #fff;
}
/*------------------------------------------------ BUTTON MAIN -----------------------------------------------------*/
.main_btn {
  background-color: #2980B9; 
  color: #fff; 
  padding: 12px 12px; 
  text-decoration: none; 
  border-radius: 3px; 
  display: inline-block;
  border: 1px solid #B03A2E;
  font-size: 40px;
  text-align: center;
}
.main_btn:hover {
  background-color: #154360; 
  color: #fff;
}
/*------------------------------------------------ BUTTON ADD -----------------------------------------------------*/
.btn-sm {
  background-color: #2980B9; 
  color: #fff; 
  padding: 12px 12px; 
  text-decoration: none; 
  border-radius: 3px; 
  display: inline-block;
  border: 1px solid #B03A2E;
}
.btn-sm:hover {
  background-color: #154360; 
  color: #fff;
}
/*------------------------------------------------ BUTTON EDIT ----------------------------------------------------*/
.btn-primary {
  background-color: #2980B9; 
  color: #fff; 
  padding: 5px 10px; 
  text-decoration: none; 
  border-radius: 3px; 
  display: inline-block;
}
.btn-primary:hover {
  background-color: #154360; 
  color: #fff;
}
/*------------------------------------------------ BUTTON VIEW ----------------------------------------------------*/
.btn-primary2 {
  background-color: #2980B9; 
  color: #fff; 
  padding: 5px 10px; 
  text-decoration: none; 
  border-radius: 3px; 
  display: inline-block;
}
.btn-primary2:hover {
  background-color: #154360; 
  color: #fff;
}

/*------------------------------------------------ BUTTON DELETE --------------------------------------------------*/
.btn-danger {
  background-color: #2980B9; 
  color: #fff; 
  padding: 5px 10px; 
  text-decoration: none; 
  border-radius: 3px; 
  display: inline-block;
}
.btn-danger:hover {
  background-color: #154360; 
  color: #ffa;
}
/*------------------------------------------------- BODY -----------------------------------------------------------*/ 
body {
  padding: 50px;
  font: 20px "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
  color: #00B7FF;
}
/*------------------------------------------------- INPUT ----------------------------------------------------------*/
 input{
   
    margin: auto;    
    font-size: 20px;
    text-align: center;
 }
::placeholder {
  color: red;
  opacity: 0.1;
}
/*--------------------------------------------------- BODY ----------------------------------------------------------*/
body{        
        margin: 0px;
        padding-top: 100px;
        padding-bottom: 20px;
        background: #3498DB ;
    }
/*--------------------------------------------------- HEADER --------------------------------------------------------*/
.header {
   position: fixed; 
   width: 100%;
   top: 0;
  padding: 0px;
  text-align: center;
  background: #1B4F72;
  color: #F7DC6F;
  font-size: 15px;
  z-index: 1000;
}
/*----------------------------------------------------- 

/*--------------------------------------------------- HEADER IMAGE ---------------------------------------------------*/
.header-image {
  width: 100px; 
  height: auto; 
  max-width: 100%;
  display: block; 
  float: left;
  padding: 20px;
}
/*-------------------------------------------------- FULL PAGE ------------------------------------------------------*/
html, body {
  margin: 0;
  padding: 5px;
}
/*-------------------------------------------------------------------------------------------------------------------*/
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: #3498DB;
  margin: 15% auto;
  padding: 80px;
  border: 1px solid #888;
  width: 300px;
  font-size: 30px;
  text-align: center;
}
#confirmButton {
  background-color: #2980B9; 
  color: #fff; 
  padding: 5px 5px; 
  text-decoration: none; 
  border-radius: 3px; 
  display: inline-block;
  border: 1px solid #B03A2E;
  font-size: 25px;
  text-align: center;
}
#cancelButton {
  background-color: #2980B9; 
  color: #fff; 
  padding: 5px 5px; 
  text-decoration: none; 
  border-radius: 3px; 
  display: inline-block;
  border: 1px solid #B03A2E;
  font-size: 25px;
  text-align: center;
}

/*---------------- Footer----------------------------*/
#footer {
font-size: 12px;
color: #F7DC6F!important;
padding: 0px;
bottom: 0;
width: 100%;
font-size: 12px;
text-align: center;
background-color: #1B4F72; 
position: fixed;
background-color: #1B4F72;
height: 15px;
}
/*--------------------------------------------------*/









