body {
  font-family: sans-serif;
  background-color: #fff;
  
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.alert-message {line-height:20px; font-size:15px;padding-bottom: 12px;}

/*h1{color:#ffffff !important !important; font-size:18px; margin-left:20px; margin-bottom:20px;font-weight:700; text-transform: uppercase;}*/

body a, body #test {
  color: #fff;
}

.unstyled {
  margin: 0;
  list-style: none;
}
.unstyled a, .unstyled #test {
  width: 120px;
  text-decoration: none;
  padding: .5em 1em;
  background-color: #213347;
  border-radius: 4px;
  display: block;
  margin-bottom: .5em;
  font-size:15px;
  font-weight:300;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.unstyled a:hover, .unstyled #test:hover {
  background-color: #f25c5d;
}

.cf, .alert {
  *zoom: 1;
}
.cf:before, .alert:before, .cf:after, .alert:after {
  display: table; 
  content: "";
  line-height: 0;
}
.cf:after, .alert:after {
  clear: both;
}

#alerts {
  width: 400px;
  top: 100px;
  right: 10px;
  position: fixed;
  z-index: 9999;
  list-style: none;
}

.alert {
  width: 100%;
  margin-bottom: 8px;
  display: block;
  position: relative;
  border-left: 4px solid;
  right: -50px;
  /* opacity: 0; */
  line-height: 1;
  padding: 20px;
  transition: right 400ms, opacity 400ms, line-height 300ms 100ms, padding 300ms 100ms;
  /* display: table; */
}

.alert:hover {
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.open {
  right: 0;
  opacity: 1;
  line-height: 2;
  padding: 3px 15px;
  transition: line-height 200ms, padding 200ms, right 350ms 200ms, opacity 350ms 200ms;
}

.alert-title {
  font-weight: bold;
}

.alert-block {
  width: 80%;
  width: -webkit-calc(100% - 10px);
  width: calc(100% - 10px);
  text-align: left;
}
.alert-block em, .alert-block small {
  font-size: .75em;
  opacity: .75;
  display: block;
}

.alert i {
  font-size: 2em;
  width: 1.5em;
  max-height: 48px;
  top: 50%;
  margin-top: -12px;
  display: table-cell;
  vertical-align: middle;
}

.alert-success {
    color: #0f5132;
    background-color: #badbcc;
    border-color: #0f5132;
}

.alert-error {
  color: #fff;
  border-color: #dc4a4d;
  background-color: #f25c5d;
}

.alert-trash {
  color: #fff;
  border-color: #dc4a4d;
  background-color: #f25c5d;
}

.alert-info {
  color: #fff;
  border-color: #076d91;
  background-color: #3397db;
}

.alert-warning {
  color: #fff;
  border-color: #dd6137;
  background-color: #f7931d;
}

/*------------------------------Toast------------------------------*/

.toast {
    position: fixed;
    top: 3rem;
    right: 3rem;
    max-width: 70%;
    padding: 15px 20px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 99999;
    text-transform: capitalize;
    font-family: "Roboto", sans-serif;
    width: auto;
    min-width: 200px;
    transition: all 0.3s ease;
}

.toast-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.toast .icon {
  font-size: 4rem;
}

.toast .text {
  font-size: 1.2rem;
}

.toast--success {
  background: #2ee8ae;
  color: white;
  border: none;
}

.toast--error {
  background: #ff6868;
  color: white;
  border: none;
}

@media screen and (max-width: 600px) {
  .toast {
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6rem;
    border-radius: 2rem;
    padding: 4px;
  }
  .toast-content {
    justify-content: center;
    gap: 0.5rem;
  }

  .toast .icon {
    font-size: 1.4rem;
  }

  .toast .text {
    font-size: 14px;
    text-align: center;
  }
}

/*---------------------Global Loader-------------------*/


#global_loader {
    z-index: 9999999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
#global_loader .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: black;
}
#global_loader img {
    z-index: 1;
    position: relative;
    width: 30rem;
    filter: drop-shadow(0px 18px 5px gray);
    margin: auto;
    display: block;
    top: 50%;
    transform: translateY(-50%);
}
/*---------------------END Global Loader-------------------*/

small.er_msg {
    color:red;
    display:none;
}
small.er_msg.error {
    display:block;
}
input.error,select.error{
    transition: all .3s ease;
    border-color: red;
    margin-bottom: 0;
}