/* Search result popup desktop */
.srch_rst_dsk {
  position: fixed !important;
  top: 70px;
  right: 20px;
  background: rgba(0,0,0,0.95);
  width: 400px;
  max-height: 400px;
  overflow: auto;
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}


/* Hide scrollbar */
.srch_rst_dsk::-webkit-scrollbar {
  display: none;
}

/* Search item */
.srch_rst_dsk a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.3s;
}
.srch_rst_dsk a:hover {
  background: rgba(255,255,255,0.2);
}

/* Hide helper */
.none {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

/* Mobile fixed result */
@media (max-width: 768px) {
  .srch_rst_dsk {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    padding: 20px;
    border-radius: 0;
  }
}



.mobile-search-result {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  max-height: 70vh;
  overflow: auto;
  scrollbar-width: 0;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  z-index: 9999;
  padding: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.4);
  border-radius: 0 0 10px 10px;
  transition: 0.3s ease-in-out;
}
.mobile-search-result a {
  color: #fff;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-search-result a:hover {
  color: orange;
}
.mobile-search-result p.loading,
.mobile-search-result p.no-result,
.mobile-search-result p.error {
  text-align: center;
  color: #bbb;
}
.none {
  display: none !important;
}


















.cnt{
    justify-content: center;
}
.acnt{
    align-items: center;
}
.talign-c{
    text-align: center;
}
.talign-e{
    text-align: end;
}
.talign-s{
    text-align: start;
}
.fixed{
    position: fixed;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.sticky{
    position: sticky;
    position: -webkit-sticky;
}
.static{
    position: static;
}
.flx{
    display: flex;
}
.column{
    flex-direction: column;
}
.none{
    display: none;
}
.mnone{
    display: none;
}
.align{
    align-items: center;
}
.lft{
    justify-content: left;
}
.rit{
    justify-content: right;
}
.blk{
    display: block;
}
.flt_lft{
    float: left;
}
.flt_rit{
    float: right;
}
.gap{
    gap: 3px;
}
.pointer{
    cursor: pointer;
}
.clear{
    clear: both;
}
.number::-webkit-inner-spin-button{
    display: none;
}
.bold{
    font-weight: bold;
}




/* size */
.small{
    font-size: 0.5em;
}



/* animations */

.spin-linear{
    animation: spin 0.5s linear infinite;
}
.spin-ease{
    animation: spin 0.5s ease infinite;
}
.spin-ease-out{
    animation: spin 0.5s ease-out infinite;
}
.spin-ease-in{
    animation: spin 0.5s ease-in infinite;
}
.spin-ease-in-out{
    animation: spin 0.5s ease-in-out infinite;
}

.spin_s1{
    animation-duration: 0.5;
}

.spin_s2{
    animation-duration: 0.6;
}

.spin_s3{
    animation-duration: 0.7;
}

.spin_s4{
    animation-duration: 0.8;
}

.spin_s5{
    animation-duration: 0.9;
}


@keyframes spin{
    from{
        transform: rotatez(-360deg);
    }
}
.delay1{
    animation-delay: 1s;
}
.delay2{
    animation-delay: 2s;
}
.delay3{
    animation-delay: 3s;
}
.delay4{
    animation-delay: 4s;
}
.delay5{
    animation-delay: 5s;
}

.blink{
    animation: blink 0.9s linear infinite;
}
@keyframes blink{
    from{
        opacity: 0.3;
    }
}






 /* colors */

 .color-red{
    color: red;
 }
 .color-white{
    color: #fff;
 }
 .color-gold{
    color: gold;
 }
 .color-green{
    color: green;
 }
 .color-black{
    color: black;
 }
 .color-yellow{
    color: yellow;
 }
 .color-blue{
    color: blue;
 }
 .color-orange{
    color: orange;
 }
 .color-orangered{
    color: orangered;
 }