#topbtn {
  position: fixed;
  display: none;
  bottom: 20px;
  right: 30px;
  z-index: 99999;
  height: 50px;
  width: 50px;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
}

#topbtn:hover {
  background-color: #555;
}

.dropdown-content {
  display: none;
  position: absolute;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  background-color: cyan;
}

.dropdown-content li{
  width: 100%;
}

.dropdown-content li a{
  color: black !important;
  font-weight: 300 !important;
}

.dropdown-content li a:hover {
  color: white !important;
}

.dropdown-content li:hover {
  border-bottom: 2px solid blue !important;
}


.dropdown-content ul {
  display: block;
}

.dropdown-content li {
  list-style-type: none;
  left: 5px;
}

.dropdown-content li a{
  font-weight: 700;
}

.show {
  display: block;
}


.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.popup .popuptext {
    visibility: hidden;
    color: #FFFFFF;
    width: 160px;
    background-color: #555;
    text-align: left;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 100;
    top: 100%;
    border: 1px solid white;
    padding:5px;
    right:0;
}

.pop {
    padding: 3px;
    text-align: center;
}

.pop button {
    width: 100%;
    padding: 3px;
    margin: 2px;
}

.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

@media (max-width: 992px) {
    .popup .popuptext {
        left:0;
    }
}

.corner {
  background-color: cyan;
}

.mybtn:hover {
  cursor: pointer;
}

.myimg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #000000;
  cursor: pointer;
  margin-left: 20px;
}

.mybox, .mybox2 {
  padding: 20px;
}

.form5 {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid red;
  color: green
}

input[type=date], input[type=datetime-local], input[type=password], input[type=text], input[type=email], input[type=number] {
    width: 100%;
    padding: .5rem 1rem;
    border-radius: .3rem;
    height: 50px;
    border: 1px solid blue;
    transition: 0.9s;
    border-bottom: 2px solid black;
}

input[type=date]:focus, input[type=password]:focus, input[type=text]:focus, input[type=number]:focus, input[type=email]:focus, textarea: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=file] {
    width: 100%;
    padding: .5rem 1rem;
    border-radius: .3rem;
    color: white;
    height: 50px;
    height: auto;
    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, select {
    padding: 12px;
    margin: 2px 0px 10px 0px;
    font-family: "Consolas";
    background: white;
    border-radius: 5px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 2px solid black;
}

select {
  width: 100%;
  height: 50px;
  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;
}

label {
  width: 100%;
  text-align: left;
  color: #000000;
  color: #ffffff;
}

button {
    padding: .5rem 1rem;
    border-radius: .3rem;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    border: 0;
    height: auto;
    font-size: 16px;
    text-align:center;
    margin: 10px;
    white-space: normal;
    word-wrap: break-word;
    transition: 0.9s;
    border-radius: 5px;
    cursor: pointer;
}

@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);
  }
}

.left {
    animation: mymoveleft 2s;
}

.right {
    animation: mymoveright 2s;
}

.top {
    animation: mymovetop 2s;
}

.bottom {
    animation: mymovebottom 2s;
}

/*--------------------------------------------------------------
# Modal css
--------------------------------------------------------------*/
.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;
}

.mymodal .mymodalmsg {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    display: none;
    overflow: auto;
    outline: 0;
    border-radius: 0;
}

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

.mymodal .modal-body {
    overflow: auto;
}

.mymodal .btn-close{
  box-sizing:content-box;
  width:1em;
  height:1em;
  padding:.25em .25em;
  color:#000;
  background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:0px;opacity:.5}

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

.mymodal .modal-header {
  margin: 0;
} 

.mymodal .modal-content {
  background-color: #40E0D0;
  color: blue;
}

.mymodal .modal-title ul {
  list-style: none;
  padding: 0;
}

.mymodal .modal-title ul li {
  margin-left: 20px;
}

.mymodal .modal-title ul i {
  padding-right: 4px;
  color: red;
}

.newmodal {
  display: block;
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.autoclosemodal {
    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;
    border-radius: 0;
}

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

.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;
}

.numberid {
  color: #556B2F;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}

.stnumber {
  color: #483D8B;
  font-weight: bold;
  font-size: 60px;
  text-align: center;
}

.fa-male, .fa-female {
  color: blue;
}

.menu {
  width: 100%;
  background-color: grey;
  padding: 10px;
  text-align: left;
}

.style18 {
  font-size: 18px; 
  font-weight:bold; 
  color:red;
  text-align: center;
}

.style14 { 
  font-weight: bold; 
  font-size: 18px; 
  color: #FF9933;
  text-align: center;
  color: green;
}


.forallbox {
    width: 100%;
    max-width: 600px;
    background-color: #FFFFE0;
    border-radius: 5px;
    border: 2px solid white;
    padding: 15px;
    margin: auto;
    text-align: left;
    box-shadow: 2px 2px 4px #000000;
}

.TFtable{
    border-collapse: collapse;
    width: auto;
    min-width: 100%;
    table-layout: fixed;
}

.TFtable tr{
    background: #b8d1f3;
}

.TFtable .myhead{
    background-color: grey;
    color: #FFFFFF;
    padding: 3px 5px;
    word-wrap:break-word;
}

.TFtable td{
    padding: 3px 5px;
    word-wrap:break-word;
}

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

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

.TFtable tr:hover{
    background: #66CDAA;
}

#mywidth{
    width: 100%;
    height: auto;
    max-height: 400px;
    overflow: auto;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    padding: 10px;
    background-color: cyan;
    border-radius: 5px;
}

.download {
    display: block;
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 90000;
}

.down {
   display: none;
}

.btnd {
    background-color:grey;
    border: 1px solid green;
    color: white;
    padding:10px;
    cursor:pointer;
    font-size:18px;
    font-weight:bold;
    border-radius: 5px;
}

.photo1 {
    border-radius: 50px;
    border-width: 1px;
    border-style: solid;
    width: 70px;
    height: 70px;
}

.photo1 img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

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

.name {
    color: #ffffff;
    font-weight: bold;
}

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

.question1 {
    font-weight: bold;
    text-align: center;
    font-size: 60px;
    color: #FF0000;
}


.question2 {
    font-weight: bold;
    text-align: left;
    font-size: 20px;
    color: #ffffff;
}

.confirm-area {
    background-color: #F08080;
    font-weight: bold;
    text-align: center;
}

.buttoncomfirm {
    width: 100%;
    text-align: center;
}

.buttoncomfirm .cancel {
    width: 100%;
    max-width: 120px;
    background-color: #483D8B;
}

.buttoncomfirm .cancel:hover {
    background-color: #4B0082;
}

.buttoncomfirm .ok {
    width: 100%;
    max-width: 120px;
    background-color: #B22222;
}

.buttoncomfirm .ok:hover {
    background-color: #DC143C;
}

.buttoncomfirm .okk {
    width: 100%;
    max-width: 120px;
    background-color: #483D8B;
}

.buttoncomfirm .okk:hover {
   background-color: #4B0082;
}

.mytitle {
  color: white;
  font-weight: bold;
  text-align: center;
  margin: 10px 0px 10px 0px;
  background-color: grey;
  border-radius: 5px;
  padding: 10px;
  text-shadow: 2px 2px 4px #000000;
  font-size: 20px;
}

.aboutbox {
  padding: 15px;
  border-radius: 5px;
  background-color: #F0FFFF;
}

.all-box {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  background-color: #F0FFFF;
  height: auto;
}

.all-box-size {
  max-height: 300px;
  overflow: auto;
}

.about-title {
  font-size: 20px;
  border-bottom: 2px solid green;
  padding-bottom: 12px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #483D8B
}

.tablefile {
  background-color: #F3F3F3;
  border-collapse: collapse;
  width: 100%;
  margin: 15px 0;
  height: auto;
  max-height: 300px;
}

.tablefile .header td{
  background-color: #FE4902;
  color: #FFF;
  cursor: pointer;
  padding: 5px 10px;
}

.tablefile th small {
  font-size: 9px;
}

.tablefile th {
  text-align: left;
}

.tablefile td {
  padding: 5px;
}

.tablefile td a {
  text-decoration: none;
  color: green;
}

.tablefile td a {
  color: #663300;
  display: block;
  padding: 5px 10px;
}

.tablefile th a {
  padding-left: 0
}

.tablefile th:first-of-type {
  padding-left: 35px;
}

.tablefile tr:nth-of-type(odd) {
  background-color: #E6E6E6;
}

.tablefile td a:hover {
  text-decoration: underline;
  color: red;
}

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


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

#croppie-demo {
    zoom: 55%;
}

@media (max-width: 768px) {
    #croppie-demo {
        zoom: 40%;
    }
}

.service-item {
    background-color: #FFDEAD;
    transition: .5s;
    border-radius: 5px;
    margin-bottom: 15px;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item:hover input{
    background: black;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

.newbox {
  background-color: #FFDEAD;
  transition: .5s;
  border-radius: 5px;
  margin-bottom: 15px;
}

.newbox:hover {
  margin-top: -10px;
  background: var(--primary);
}

.newbox * {
  transition: .5s;
}

.modal-dialog{
  position:relative;
  width:auto;
  margin:auto;
  pointer-events:none
}

.modal-dialog-centered{
  display:flex;
  align-items:center;
  min-height:calc(100% - 1rem)
}

.modal-dialog-scrollable{
  height:calc(100% - 3.5rem)
}

.modal-fullscreen{
  width:100vw;
  max-width:none;
  height:100%;
  margin:0;
}

.modal-fullscreen .modal-content{
  height:100%;
  border:0;
  border-radius:0;
}

.modal-fullscreen .modal-header{
  border-radius:0;
}

.modal-fullscreen .modal-body{
  overflow-y:auto;
}

.partnerbox {
  width: 100%;
  text-align: center;
  background-color: #ffffff;
}

.partner-head {
  font-weight: normal;
  color: #fff;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 500;
}

.partner {
  object-fit: fill;
}

.partner img {
  max-width: 100%;
  height: 70px;
  border-radius: 5px;
  cursor: pointer;
}

.motto {
  width: 100%;
  padding: 2px;
  text-align:center;
  background:linear-gradient(141deg, #ccc 25%, #eee 40%, #ddd 55%);
  color:blue;
  overflow:hidden;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -webkit-transform: translate3d(0,0,0);
  padding: 0;
}

@media (max-width: 767.98px){
  .motto {
    font-size: 12px;
  }
}