.fs-12{font-size: 12pt;}
.fs-14{font-size: 14pt;}
.fs-16{font-size: 16pt;}
.fs-18{font-size: 18pt;}
.fs-20{font-size: 20pt;}
img{max-width: 100%;}
.mybtn{
  cursor: pointer;
}
.mybtn:active{
  transform: scale(0.9);
}
#mytoast {
  visibility: hidden;
  min-width: 200px;
  max-width: 300px;
  margin-left: -125px;
  text-align: center;
  border-radius: 4px;
  padding: 8px;
  position: fixed;
  z-index: 10000;
  right: 50px;
  top: 30px;
  font-size: 14px;
}
#mytoast.success {
  background-color:#007E33;
  color: #fff;
}
#mytoast.info {
  background-color:#0099CC;
  color: #fff;
}
#mytoast.error {
  background-color:#ff4444;
  color: #fff;
}
#mytoast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 4s;
  animation: fadein 0.5s, fadeout 0.5s 4s;
}
@-webkit-keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 30px; opacity: 1;}
}
@keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
  from {top: 30px; opacity: 1;}
  to {top: 0; opacity: 0;}
}
@keyframes fadeout {
  from {top: 30px; opacity: 1;}
  to {top: 0; opacity: 0;}
}
.overlay {
   position: fixed;
   width: 100%;
   height: 100%;
   z-index: 1000;
   left: 0px;
   top: 0px;
   background-color: grey;
   opacity: 0.3;
   filter: alpha(opacity=30);
}
.center{text-align: center !important;}
.left{text-align: left !important;}
.right{text-align: right !important;}
.middle{vertical-align: middle !important;}
.bold{font-weight: bold !important;}
.scroll {
    max-height: 400px;
    overflow-y: auto;
}
.show{
  display: inline !important;
}
.hide{
  display: none !important;
}
.bg-yellow{
  background-color: yellow !important;
}
.text-red{
  color:red !important;
}
.shade_gray{
  background-color: #CECDCD;
}
.modal-dialog-bottom {
  position: fixed;
  bottom: 0;
  margin: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog-bottom {
  transform: translateY(0);
}