
@font-face {
    font-family: 'PUSAB'; /*a name to be used later*/
    src: url('../fonts/PUSAB.otf'); /*URL to font*/
    font-family: 'HELVETICA';
    src: url('../fonts/Helvetica.ttf');
}

  
.background-image {
    
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    
  }
  
.flayercontent {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;

}


.font-gold-pusab {
    font-size: clamp(180%, 2vw, 200%);
    margin: 2px 0px;
    line-height: 93%;
    transform: translate(0%, -30%);
    font-family: 'PUSAB';
    color: rgb(255,200,0);
    display: inline-block;
    position: static;
    -webkit-text-stroke-color: rgb(0, 0, 0);
    -webkit-text-stroke-width: clamp(1.65px, 1vw, 1.9px);
    overflow-wrap: break-word;
    word-wrap: break-word;
}
  
.font-helvetica {
    font-family: 'HELVETICA';
    transform: translate(0%, 0%);
    color: white;

    position: static;
    font-size: clamp(100%, 1vw, 110%);
    margin-top: 0px;
    margin-bottom: 15px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.iframe-brown {
    display: none;
    width: 100%; 
    height: 50vh;
    margin-bottom: 10px;
    border: 10px solid black;
    border-radius: 5px;
    background-color: black; 
    background-size: cover; 
    background-repeat: no-repeat;
    
}

.fllayeriframe-brown-rotating-img {
    animation: inf-rotate 1.5s linear infinite;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25%;
    margin-top: 25%;
}

@keyframes inf-rotate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
  }

.gdbtn-close {
    background: none;
    border: none;
    background-image: url("../icons/ok.png");
    background-size: 100% 100%;
    padding: 10px 20px;
    width: 90px;
    height: 50px;
    cursor: pointer;
    outline: inherit;
}

.gdbtn-close.fancy-0,.gdbtn-close.brown-0 {
  background-image: url("../icons/ok.png");
}

.gdbtn-close.fancy-1,.gdbtn-close.brown-1 {
  background-image: url("../icons/close.png");
  position: fixed;
  display: flex;
  /* transform: translate(60%, -200%); */
  width: 50px;
  height: 50px;
}

.flayeroptions-fancy {
  width: auto;
  max-height: 54vh;
  height: auto;
  margin-bottom: 4%;
  overflow-y: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
}


.gdbtn-close:hover {
    background-color: transparent;
}

  
.over-flalert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease;
}


.gdalert {
  max-height: 95%;
  height: auto;
  
  max-width: 400px;
  min-width: 30%;

  
  position: absolute;
  z-index: -1;
  border: 30px solid transparent;
  border-radius: 40px;
  background-color: rgb(0, 0, 0);
  text-align: center;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  
  transform: scale(0);
  animation: zoomIn 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;

  overflow:auto;
}

.gdalert.fancy-box {
  border-image: url("../icons/fancybox.png") 13% round;
  background-color: rgb(0,25,49);
}

.gdalert.brown-box {
  border-image: url("../icons/brownbox.png") 13% round;
  background-color: #995533;
  max-width: 900px;
  width: 800px;
  min-width: 30%;
  height: 80%;
}

input.flayersearch-fancy {
  display: flex;
  align-items: center;
  width: 100%;
  height: 4%;
  font-size: clamp(15px, 2.2vw, 23px);
  border-radius: 1vh;
  border: 0.2vh solid #ffffff33;
  display: none;
}




  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
@keyframes zoomIn {
    from {
      transform: scale(0);
    }
    to {
      transform: scale(1);
    }
}
    