/*Others */

.mymodal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); 
    border-radius: 0;
}

.modal-content {
    background-color: #fefefe;
    border: 1px solid #000;
    max-height: calc(100% - 1rem);   
}

.btn-close {
    color: #aaaaaa;
    float: right;
    font-weight: bold;
}

.btn-close:hover, .btn-close:focus {
  background-color: red;
  text-decoration: none;
  cursor: pointer;
}

.modal-title{
  color: blue;
}

.modal-body {
  overflow: auto;
}

.logout {
  left: 5px;
  bottom: 5px;
  position: fixed;
  z-index: 9999;
  padding: 10px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

@media (max-width: 575px){
  .logout {
    right:5px
  }
}


.mybtn {
  height: 200px;
  font-size: 20px;
  font-weight: bold;
}

.mybtn:hover {
  background-color: cyan;
  color: blue;
}

.subnumber {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.subnumber div:nth-child(1) {
  background-color: #000000;
  border-radius: 20px;
  padding: 7px;
  color: white;
  min-width: 100px;
  font-size: 12px;
}

.subnumber div:nth-child(2) {
  background-color: #FFA500;
  border-radius: 20px;
  padding: 7px;
  color: white;
  min-width: 100px;
  font-size: 12px;
}

.subtitl {
  background-color: #008000;
  border-radius: 20px;
  padding: 2px;
  margin-top: 10px;
  width: 100%;
}

.dashtitle {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px blue black;
  padding: 10px;
  color: green;
  font-family: 'Young Serif';
}

@media (max-width: 768px) {
  .dashtitle {
font-size: 15px;
  }
}

.fa-check-double, .fa-pencil, .fa-users {
  color: cyan;
  font-size: 20px;
  margin-left: 10px;
  margin-top: 5px;
}

.totnumber {
  font-size: 30px;
  font-weight: bold;
  color: green;
  padding: 20px;
}

.nolist ul {
  list-style: none;
}

.btn-ap {
  cursor: pointer;
}

.progress-bar {
  width: 70px;
  height: 70px;
  border-radius: 50%;  
  color: black;
  font-size: 15px;
  font-weight: 500;
  margin: auto;  
}

.nolist ul {
  list-style: none;
  padding: 0;
}
.nolist ul li {
  padding-bottom: 0px;
  margin-left: 20px;
}
.nolist ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}

.left {
animation: mymoveleft 2s;
}

.right {
animation: mymoveright 2s;
}

.top {
animation: mymovetop 2s;
}

.bottom {
animation: mymovebottom 2s;
}

@keyframes mymoveleft {
  from {
transform: translatex(130%);
  }
  to {
transform: translatex(0);
  }
}

@keyframes mymoveright {
  from {
transform: translatex(-130%);
  }
  to {
transform: translatex(0);
  }
}

@keyframes mymovetop {
  from {
transform: translatey(130%);
  }
  to {
transform: translatey(0);
  }
}

@keyframes mymovebottom {
    from {
  transform: translatey(-130%);
    }
    to {
  transform: translatey(0);
    }
}

#myInput, #myInput1 {
  background-image: url(../assets/img/seachicon.png);
  background-position: 10px 10px;
  background-repeat: no-repeat;
  background-color:white;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 50px;
  border: 1px solid black;
  margin-bottom: 12px;
  border-radius: 5px;
  margin-top: 10px;
}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('pageLoader.gif') 50% 50% no-repeat rgb(249,249,249);
  opacity: 0.9;
}

input[type=date], input[type=password], input[type=text], input[type=number] {
  width: 100%;
  padding: .5rem 1rem;
  border-radius: .3rem;
  height: 50px;
  font-family: "Trebuchet MS";
  font-size: 16px;
  font-weight: bold;
  border: 1px solid blue;
  transition: 0.9s;
}

input[type=date]:focus, input[type=password]:focus, input[type=text]:focus, input[type=number]:focus, select:focus {
  border-color: blue;
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}


input[type=submit], input[type=reset], button {
  padding: .5rem 1rem;
  border-radius: .3rem;
  color: white;
  min-height: 50px;
  height: auto;
  font-family: "Trebuchet MS";
  font-size: 16px;
  font-weight:bold;
  text-align:center;
  margin-top: 10px;
  white-space: normal;
  word-wrap: break-word;
  border: 0px;
  background-color: #0000FF;
  transition: 0.9s;
}

input[type=file] {
  width: 100%;
  padding: .5rem 1rem;
  border-radius: .3rem;
  color: white;
  height: 50px;
  height: auto;
  font-family: "Trebuchet MS";
  font-size: 16px;
  font-weight:bold;
  text-align:center;
  margin-top: 10px;
  white-space: normal;
  word-wrap: break-word;
  border-bottom: 4px solid black;
  background-color: #98FB98;
  transition: 0.9s;
}


textarea[name=message], select {
  padding: 12px;
  margin: 2px 0px 10px 0px;
  font-family: "Consolas";
  background: white;
  font-size: 14px;
  border-radius: 5px;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
border-bottom: 2px solid black;
}


input[type=submit]:hover, input[type=reset]:hover, button:hover{
  background-color: #0000CD;
}

select {
  font-family: "Trebuchet MS";
  width: 100%;
  height: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  background-color: white;
  border: thin solid blue;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  transition: 0.9s;
  margin: 0;  
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
  linear-gradient(45deg, transparent 50%, blue 50%),
  linear-gradient(135deg, blue 50%, transparent 50%),
  linear-gradient(to right, skyblue, skyblue);
    background-position:
  calc(100% - 20px) calc(1em + 2px),
  calc(100% - 15px) calc(1em + 2px),
  100% 0;
    background-size:
  6px 7px,
  6px 7px,
  2.5em 3.5em;
  background-repeat: no-repeat;
}

select:focus {
  background-image:
linear-gradient(45deg, white 50%, transparent 50%),
linear-gradient(135deg, transparent 50%, white 50%),
linear-gradient(to right, #FF69B4, #FF69B4);
  background-position:
calc(100% - 15px) 1em,
calc(100% - 20px) 1em,
100% 0;
  background-size:
6px 7px,
6px 7px,
2.5em 3.5em;
  background-repeat: no-repeat;
  border-color: grey;
  outline: 0;
}

select option:hover {
  cursor: pointer;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.mymodal {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4); 
  border-radius: 0;
}

.modal-content {
  background-color: #fefefe;
  border: 1px solid #000;
  max-height: calc(100% - 1rem);   
  animation: mymovebottom 2s;
}

.btn-close {
color: #aaaaaa;
float: right;
font-weight: bold;
}

.btn-close:hover, .btn-close:focus {
background-color: red;
text-decoration: none;
cursor: pointer;
}

.modal-title{
  color: blue;
}

.modal-body {
overflow: auto;
}

.title{
  font-family: "Copperplate Gothic";
  color: white;
  font-weight: bold;
  font-size: 40px;
  text-shadow: 2px 2px 4px #000000;
  text-align: center;
}

.title img {
  width: 70%;
  transition: 0.9s;
  border-radius: 5px;
}

.title img:hover {
  -ms-transform: scale(1.1); 
  -webkit-transform: scale(1.1); 
  transform: scale(1.1); 
}

.box1 {
  background-color: blue;
  padding: 10px;
  text-align: center;
}

.box2 {
  text-align: justify;
  padding: 10px 20px 10px 20px;
  font-size: 25px;
}

.title1 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight:bold;
  color: yellow;
  background-color: grey;
  padding: 12px;
  border: 2px solid black;
  border-radius: 5px;
}


.myimage img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 10px;
  border: 2px solid grey;
}

.myimage {
  margin: 20px 0px 20px 0px;
}

.form2{
  width: 100%;
  text-align: center;
  background-color: #E9967A;
  border: 2px solid white;
  border-radius: 10px;
  margin-bottom: 20px; 
  padding: 10px;
  align-content: center;
  transition: 0.9s;
  padding: 20px;
  
}


.form2:hover {
  background-color: #20B2AA;
  transition: 0.9s;
}

.title21 {
  width: 100%;
  color: white;
  font-family: "Trebuchet MS";
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  border-bottom: 2px solid white;
  margin-bottom: 10px;
}


.title22 {
  color: royalblue;
  font-family: "Trebuchet MS";
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  border-bottom: 2px solid white;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.style13{
  font-size: 20px;
  color: black;
  text-align: justify;
}
.title2{
  font-weight: bold;
  color: green;
}

.style10{
  color: #000000;
  font-weight: bold;
}

.mytable {
  width: auto;
  min-width: 100%;
  font-size: 14px;
}

.mytable .head {
  padding: 6px;
  background-color: grey;
  color: white;
  text-align: center;
  font-weight: bold;
}

.mytable .head1 {
  padding: 6px;
  background-color: grey;
  color: white;
  text-align: left;
  font-weight: bold;
}

.mytable td {
  color: black;
}

.mytable tr:nth-child(odd){
  background: #b8d1f3;
}

.mytable tr:nth-child(even){
  background: #dae5f4;
}

.mytable tr:hover {
  background-color: cyan;
}

.mytable2 {
  width: 100%;
  font-size: 18px;
}

.mytable2 th {
  text-align: center;
  padding: 6px;
  background-color: grey;
  color: white;
  border: 1px solid white;
}

.mytable2 tr {
  border-bottom: 2px solid grey;
  background-color: #FFFFFF;
}

.mytable2 td {
  color: black;
  font-weight: bold;
}

.mytable2 tr:nth-child(odd){
  background: #b8d1f3;
}

.mytable2 tr:nth-child(even){
  background: #dae5f4;
}


.mytable3 {
  width: auto;
  min-width: 100%;
  font-size: 14px;
  background-color: white;
}

.mytable3 .head {
  padding: 6px;
  background-color: grey;
  color: white;
  text-align: center;
  font-weight: bold;
}

.mytable3 .head1 {
  padding: 6px;
  background-color: grey;
  color: white;
  text-align: left;
  font-weight: bold;
}

.mytable3 td {
  color: black;
}

.lastrow {
  background-color: grey;
  color: white;
}

.mytitle{
  width: 100%;
  max-width: 600px;
  color: white;
  font-weight: bold;
  text-align: left;
  background-color: grey;
  border-radius: 5px;
  margin: 10px auto 10px auto;
  padding: 10px;
  text-shadow: 2px 2px 4px #000000;
}

.mytitle2{
  width: 100%;
  color: white;
  font-weight: bold;
  text-align: left;
  background-color: grey;
  border-radius: 5px;
  margin: 10px auto 10px auto;
  padding: 10px;
  text-shadow: 2px 2px 4px #000000;
}

.heading1 {
  width: 100%;
  font-size: 24px;
  color: green;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000000;
  text-align: center;
}

.heading2 {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

#mybody {
  padding: 0px 10px 0px 10px;
}

#mybody2 {
  width: 100%;
  border-radius: 5px;
  border: 1px solid black;
  padding: 20px;
  margin: 10px 0 10px 0;
  text-align: left;
  background-color: #008374;
}

.modal-body {
  padding-top: 2px;
  background-color: #008374;
}

.tablebox {
  width: 100%;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  overflow: auto;
  max-height: 400px;
}

.name {
  color: white;
  margin-top: 12px;
}

.bigtitle {
  width: 100%;
  padding: 20px;
  text-align: left;
  font-weight: bold;
  color: white;
  background: linear-gradient(244deg,#2d6cf5,#e74155,#2111b7,#143113,#cdbc05);
  background-size: 300% 300%;
  animation: gradient-animation 40s ease infinite;
  font-family: "Audiowide", sans-serif;
}

@keyframes gradient-animation {
  0% {
background-position: 0% 50%;
  }
  50% {
background-position: 100% 50%;
  }
  100% {
background-position: 0% 50%;
  }
}

#searchbox1, #searchbox2, #searchbox3 {
  background-color: #FFEFD5;
  width: 100%;
  height: auto;
  border: 1px solid black;
  padding: 3px 5px 3px 5px;
  border-radius: 0;
}

section,
.section {
  padding: 30px 0 !important;
}

.checkbox-wrapper {
  --borderColor: #48c;
  --borderWidth: .125em;
  margin-right: 12px;
}

.checkbox-wrapper label {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.checkbox-wrapper input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  background: #fff;
  font-size: 1.8em;
  border-radius: 0.125em;
  display: inline-block;
  border: var(--borderWidth) solid var(--borderColor);
  width: 0.8em;
  height: 0.8em;
  position: relative;
}
.checkbox-wrapper input[type=checkbox]:before,
.checkbox-wrapper input[type=checkbox]:after {
  content: "";
  position: absolute;
  background: var(--borderColor);
  width: calc(var(--borderWidth) * 3);
  height: var(--borderWidth);
  top: 50%;
  left: 10%;
  transform-origin: left center;
}
.checkbox-wrapper input[type=checkbox]:before {
  transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(0);
  transition: transform 200ms ease-in 200ms;
}
.checkbox-wrapper input[type=checkbox]:after {
  width: calc(var(--borderWidth) * 5);
  transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease-in;
}
.checkbox-wrapper input[type=checkbox]:checked:before {
  transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(1);
  transition: transform 200ms ease-in;
}
.checkbox-wrapper input[type=checkbox]:checked:after {
  width: calc(var(--borderWidth) * 5);
  transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(1);
  transition: transform 200ms ease-out 200ms;
}
.checkbox-wrapper input[type=checkbox]:focus {
  outline: calc(var(--borderWidth) / 2) dotted rgba(0, 0, 0, 0.25);
}

.radio-bigdiv {
  display: flex;
}

.radio-bigdiv .radio-div {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 10px;
}

.radio-bigdiv .radio-div input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-bigdiv .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: gray;
  border-radius: 50%;
}

.radio-bigdiv .radio-div:hover input ~ .checkmark {
  background-color: #ccc;
}

.radio-bigdiv .radio-div input:checked ~ .checkmark {
  background-color: #2196F3;
}

.radio-bigdiv .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-bigdiv .radio-div input:checked ~ .checkmark:after {
  display: block;
}

.radio-bigdiv .radio-div .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.error .modal-header{
  background-color: #F08080;
  color: white;
}

.error .modal-body{
  background-color: #FF0000;
  color: white;
}

.success .modal-header{
  background-color: #3CB371;
  color: white;
}

.success .modal-body{
  background-color: #228B22;
  color: white;
}

.box {
  width: 100%;
  max-height: 400px;
  overflow: auto;
}

.back {
  font-size: 20px;
  color: yellow;
  margin-right: 12px;
  cursor: pointer;
}

.back:hover {
  color: cyan;
}

progress::-webkit-progress-bar {
  background-color: rgb(178, 255, 255);
}
progress::-webkit-progress-value {
  background-color: #04af2f;
}

.fa-file-pdf, .fa-file-excel{
  font-size: 20px;
  color: yellow;
  margin-left: 12px;
  cursor: pointer;
}

.fa-file-pdf:hover, .fa-file-excel:hover {
  color: cyan;
}

.apdiv {
  background-color: green;
  color: white;
  padding: 10px;
  border-radius: 20px;
}

.apdivnot {
  background-color: red;
  color: white;
  padding: 10px;
  border-radius: 20px;
}

.low {
  background-color: red;
  color: white;
  padding: 10px;
  border-radius: 20px;
  text-align: center;
}

.little {
  background-color: yellow;
  color: black;
  padding: 10px;
  border-radius: 20px;
  width: auto;
  text-align: center;
}

.enough {
  background-color: green;
  color: white;
  padding: 10px;
  border-radius: 20px;
  width: auto;
  text-align: center;
}

.number {
  background-color: white;
  color: white;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
  text-align: center;
  height: 100%;
  margin:auto;
  border: 1px solid grey;
}

.attendance-tit {
  color: #2F4F4F;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid black;
  width: 100%;
  padding: 10px;
}

.number3 {
  background-color: #87CEFA;
  color: white;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
  text-align: center;
  height: 100%;
  margin:auto;
}

.number2 {
  background-color: gray;
  color: white;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
  text-align: center;
  height: 100%;
  margin:auto;
}

.special {
  border-radius: 20px;
  background-color: cyan;
  color: green;
}

.fullmodal {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 20px;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  border-radius: 0;
  animation: mymoveleft 2s;
}

.fullmodal h5 {
  color: #FFFFFF;
}

.fullmodal .modal-header{
  background-color: grey;
  padding: 10px 20px 10px 10px;
  border-radius: 0;
}

.fullmodal .modal-body {
  background-color: cyan;
  width: 100%;
  height: 100%;
}