/* body {
    background: black;
    color: white;
} */

.logo {
    height: 50px;
}

.banner_img {
    width: 80%;
    height: 450px;
    object-fit: fill;
}

.operator {
    border: solid linear-gradient(to bottom, #009900 0%, #66ff00 100%) 2px !important;
    width: 80%;
    font-size: 18px;
    color: black;
    text-align: center;
    padding: 5px 0px;
    margin: 0px auto 10px;
    border-radius: 10px !important;
    background: linear-gradient(to bottom, #009900 0%, #66ff00 100%)
}

.text_but {
    border: solid #666666 2px !important;
    width: 250px;
    font-size: 18px;
    color: #000;
    text-align: center;
    padding: 5px 0px;
    font-weight: bold;
    margin: 0px auto 10px;
    border-radius: 10px !important;
    background: #19b200;
    background: -moz-linear-gradient(top, #19b200 0%, #61fa01 100%);
    background: -webkit-linear-gradient(top, #19b200 0%, #61fa01 100%);
    background: linear-gradient(to bottom, #19b200 0%, #61fa01 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#19b200', endColorstr='#61fa01', GradientType=0);
}

.text_close {
    border: solid #666666 2px !important;
    width: 250px;
    font-size: 18px;
    color: #000;
    text-align: center;
    padding: 5px 0px;
    font-weight: bold;
    margin: 0px auto 10px;
    border-radius: 10px !important;
    background: red;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#19b200', endColorstr='#61fa01', GradientType=0);
}

ul {
    list-style: none;
}

.popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    width:400px;
    height:300px;
    transform: translateX(-50%);
    /* background-color: transparent !important; */
    /* padding: 20px; */
    border-radius: 8px;
    box-shadow: 0 2px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 1000;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .processing-popup{
    /* width:500px;
    height:200px;
    background-color: transparent !important;
    color:#fff !important; */
  }

  .popup.active {
    display: block;
    bottom:40%;
    opacity: 1;
  }

  .bg-primary{
    background-color: rgb(63 138 247) !important; 
  }

  @keyframes slideUp {
    from {
      bottom: 0;
      opacity: 0;
    }
    to {
      bottom: 40%;
      opacity: 1;
    }
  }

  .popup.animate {
    animation: slideUp 2.5s forwards;
  }

  /* dripple loader */
  
.lds-ripple,
.lds-ripple div {
  box-sizing: border-box;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
.bg-success {
  background-color: #0AC238 !important;
}

