/* monda-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Monda';
  font-style: normal;
  font-weight: 400;
  src: url("fonts/monda-v16-latin-regular.237d8f26b553.woff2") format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* monda-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Monda';
  font-style: normal;
  font-weight: 700;
  src: url("fonts/monda-v16-latin-700.2321513c9faf.woff2") format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Global */
*, ::before, ::after {
  box-sizing: border-box;
}

html{
  color: #051e58;
  font-family: 'Monda', sans-serif;
  font-weight: 300;
}

h1,h2,h3,h4,h5,h6 {
 /* color: #111111; */
  font-weight: 400;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 16px;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 14px;
  line-height: 1.6;
}

a {
  color: rgb(12, 86, 189);
  font-size: 14px; 
  line-height: 1.6;
  text-decoration: none;
}

.content-section {
  padding: 64px 16px;
}

.content-section-single {
  min-height: calc(100vh - 120px);
}

.content-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.content-container-narrow {
  max-width: 600px;
}

.content-title {
  margin-bottom: 24px;
}

/* table */

table {
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  table-layout: fixed;
  width: 100%;
  height: 10px;
  overflow: auto;
}

table, th, td {
  border: 1px solid #ddd;
  padding: 8px;
  overflow: hidden;
}

table tr:nth-child(even){background-color: #f2f2f2;}

table tr:hover {background-color: #ddd;}

.table-bkcolor-con{
  background-color: #FAEBD7;
}

span {
  padding-left: 7px;
  padding-right: 7px;
}

.grid-container {
  display: grid;
  grid-template-columns: 200px 200px 200px;
  gap: 10px;
  padding: 10px;
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}
/* */
.count-date-complete {
  background-color: #9aeba7;

}
.count-date-not-complete {
  background-color: #f85151;

}
/* Site header*/
.site-header {
  background-color: rgb(210, 227, 240);
  border-bottom: 1px solid gray;
  box-shadow: 2px 2px 8px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-start;
  height: 50px;
}

.site-header-item {

  background-color: rgba(0, 0, 0, 0);
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 7px 7px ;
  transition: background-color 300ms;
}

.site-header-item:hover{
  background-color: rgba(0, 0, 0, 0.1);
}

.site-header-brand img {
  display: inline-block;
  height: 40px;
  margin-right: 8px;
}


/* Site footer */
.site-footer {
  background-color: rgb(223, 223, 223);
/*  text-align: center;*/
  padding: 0px 16px;
}
.site-footer-copyright {
  font-size: 12px;
}

.text-link a :not(:hover){
  color:#111111;
}

/* Form */
label {
  display: block;
  margin-bottom: 4px;
  line-height: 1.6;
}

input[type='text'],
input[type='email'],
input[type='password'],
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #333333;
  border: 1px solid #888888;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 300;
  display: block;
  width: auto;
  height: 35px;
  padding: 6px 12px;
  outline: none;
  white-space: pre-line;
}

input, textarea{
  width:350px;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
textarea:focus {
  border-color: #0D79F2;
}

textarea {
  height: auto;
}

.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: white;
  background-color: #111111;
  border: none;
  border-radius: 8px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 8px 12px;
  transition: background-color 0.3s;
  cursor: pointer;
  font-size: 14px;
}

.button-primary {
  background-color: #68aaf5;
}

.button-primary:hover {
  background-color: #085dbd;
}

.button-red {
  background-color: #f85151;
}

.button-red :hover {
  background-color: #f72020;
}

.button-green {
  background-color: #109763;
}

.button-green :hover {
  background-color: #0c5531;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: rgb(93, 224, 174);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}

.grid-container {
  display: grid;
  grid-template-columns: 50px 150px auto auto auto auto auto auto ; 
  gap : 10px;
  padding: 5px;
}

.grid-container > div {
  text-align: left;
  font-size: 14px;
}

.grid-item {
  padding: 1px;
  margin-top: 20px;
}
