/* @import url(https://fonts.googleapis.com/css?family=Noto+Sans);
body {
  background: #011e17;
  font-family: 'Noto Sans', 'Helvetica';
} */

.cust_toast {
    display: none;
    position: fixed;
    border-radius: 5px;
    left: calc(50% - 200px);
    width: 400px;
    height: 100px;
    padding: 10px 5px;
    box-sizing: border-box;
    z-index: 9999999999;
    bottom: 10px;
    box-shadow: 0 1px 15px rgba(0,0,0,.4), 0 1px 6px rgba(0,0,0,.4) !important;
    background: #fff;
}

.cust_toast.modfiedMod{
  height: 130px;
}

.cust_toast.ccht{
  height: 145px;
}

.cust_toast>h1{
    font-size: 1rem;
    text-align: center;
    width: 100%;
    font-weight: 600;
}

.cust_toast.modfiedMod>h1{
  width: 200px;
  text-align: center;
  margin-left: calc(50% - 100px);
  background: #FF7200;
  color: #FFF;
  border-radius: 3px;
  padding: 2px;
  font-weight: 100;
}

.cust_toast.success>h1{
    color:#008000;
}

.cust_toast.error>h1{
    color:#f31010;
}

.drag-dse{
  width: 100px;
  height: 80px;
  background: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 5px;
  font-family: GOTHIC;
  text-align: center;
  z-index: 99;
  box-shadow: rgba(255, 114, 0, 0.4) 0px 1px 15px, rgba(255, 114, 0, 0.4) 0px 1px 6px;
  position: fixed;
  transition: none !important;
  animation: pulse 0.4s alternate infinite;
}

.drag-dse>div>img{
  margin-bottom: 0px;
  height: 40px;
}

.drag-dse>div>i{
    font-size: 2.5rem;
    font-weight: 600;
    color: #808080;
}

.drag-dse>div>h2{
  font-size: 10px;
  margin-top: 5px;
}

@keyframes pulse {
  30%{
    transform: scale(0.95)
  }
  100% {
    transform: scale(1.05);
  }
}

@media all and (max-width: 1300px) {
  .cust_toast .message {
    font-size: 14px !important;
  }
  .cust_toast input[type='button'] {
    height: 15% !important;
  }
}
.cust_toast .message {
    font-size: 14px;
    text-align: center;
    margin-bottom: 0;
}

.cust_toast .message .sttext{
  font-weight: 600;
}

.cust_toast div.fotrDv{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  width: calc(100% - 10px);
  height: 30px;
}
.cust_toast input[type='button'] {
    width: fit-content;
    height: 25px;
    outline: 0;
    border: 0;
    background: #04B486;
    color: white;
}
.cust_toast.confirm input[type='button']#cancelToa {
    background: #f31010;
}
.cust_toast div.fotrDv input[type='button'] + input[type='button']{
    margin-left: 10px;
}

.cust_toast input[type='button']:hover {
  transition: 0.3s;
  cursor: pointer;
  background: #05cd99;
}

.cust_toast input[type='text'].inputText {
  width: calc(100% - 20px);
  margin-left: 10px;
  margin-top: 10px;
  border: 1px solid #727376;
  border-radius: 5px;
  padding: 2px 5px;
}

.cust_toast input[type='text'].inputText:focus-visible{
  outline: 1px solid #727376;
}

.cust_toast.success input[type='button'] {
    background: #3bad3b;
}

.cust_toast.error input[type='button'] {
    background: #f31010;
}
.cust_toast.success input[type='button']:hover {
  background: #008000;
}

.cust_toast.error input[type='button']:hover {
  background: #e61212;
}

@keyframes fadeOutToa {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInToa {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
