@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

body.login .logo {
    max-width: 100%;
}

body.login .copy h1 {
    text-transform: none;
}
.border-0{
    border: none;
}
.red_btn{
    width: fit-content;
    padding: 10px 24px;
    background: #f0533f;
    border: 1px solid #e44733;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    text-decoration: none !important;
    font-size: 18px !important;
    display: flex;
    justify-content: center;
    transition: all .2s ease-in-out;
}
.red_btn span{
    color:#ffffff;
    display: flex;
    align-items: center;
}
.red_btn:hover{
    transform: scale(1.01);
}
/* footer-wrap */
#footer-wrap {
    position: absolute;
    bottom: 0;
    clear: both;
    /* width: 910px; */
    font-size: 95%;
    /* padding: 20px 0; */
    text-align: left;  
    background: url(MarketPlace-images/footer-bottom.jpg) no-repeat center bottom;  
  }
  #footer-wrap a {
    text-decoration: none;
    color: #666666;
    font-weight: bold;
  }
  #footer-wrap a:hover {
    color: #000;  
  }
  #footer-wrap p {
    margin: 0px;
  }
  #footer-wrap h2 {
    color: #666666;
    margin: 0;
    padding: 0 10px; 
  }
  
  /* footer */
  #footer {
    clear: both;
    color: #666;  
    /* margin: 0 auto 10px auto;  */
    width: 100vw;
    padding: 5px 0;
    text-align: center;
    background: #F7F7F7;
    /* border-top: 1px solid #F2F2F2;   */
  }
/* Ticket Widget Pluse effect */
  .pulse {
    background: white;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    animation: pulse-white 2s infinite;
    /* transition: all .2s ease-in-out; */
  }

  @keyframes pulse-white {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    
    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }

  .tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    color: white;
    font-size: 12px;
    background-color: #192733;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    opacity: 60%;
  }
  
  .hover-text:hover .tooltip-text {
    visibility: visible;
  }
  
  #top {
    top: -40px;
    left: -10%;
  }
  
  #bottom {
    left: 0; 
    right: 0; 
    bottom: -20%;
  }
  
  #left {
    top: -8px;
    right: 120%;
  }
  
  #right {
    top: -8px;
    left: 120%;
  }
  
  .hover-text {
    position: relative;
    /* display: inline-block; */
    /* margin: 40px; */
    font-family: Arial;
    text-align: center;
  }