:root {
  --my-primary: #5f491f;
  --my-secondary: #ac9467;
}
* {
  box-sizing: border-box;
}
.site-description ul {
  list-style: none;
}
.site-description ul li {
  text-align: left;
}
.fab-wrapper {
     scale: 1.3;
     position: fixed;
     z-index: 1;
     left: 15px;
     bottom: 75px;
     height: 45px;
}
.fab-wrapper.checked{
    height: auto;
    bottom: 105px;
}
.fab-checkbox {
  display: none;
}
.fab {
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-size: 80%;
  background: var(--my-primary);
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0px 5px 20px var(--my-primary);
  transition: all 0.3s ease;
  z-index: 1;
  border-bottom-left-radius: 6px;
  border: 1px solid var(--my-secondary);
}

.fab:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-size: 80%;
  background-color: rgba(255, 255, 255, 0);
  background-repeat: no-repeat;
  background-position: center;
}
.fab-checkbox:checked ~ .fab:before {
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
  background-color: rgba(255, 255, 255, 0);
  background-size: contain;
}
.fab:hover {
  background: var(--my-primary);
  box-shadow: 0px 0 8px 1px var(--my-secondary);
}

.fab-checkbox:checked ~ .fab .fab-dots {
  height: 6px;
}

.fab .fab-dots-2 {
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
}

.fab-checkbox:checked ~ .fab .fab-dots-1 {
  width: 32px;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.fab-checkbox:checked ~ .fab .fab-dots-3 {
  width: 32px;
  border-radius: 10px;
  right: 50%;
  transform: translateX(50%) translateY(-50%) rotate(-45deg);
}

@keyframes blink {
  50% {
    opacity: 0.25;
  }
}

.fab-checkbox:checked ~ .fab .fab-dots {
  animation: none;
}

.fab-wheel {
  position: relative;
  bottom: 5rem;
  left: 0;
  width: 5rem;
  height: 300px;
  transition: all 0.3s ease;
  transform-origin: bottom;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.fab-checkbox ~ .fab-wheel { 
  transform: scale(0);
}
.fab-checkbox:checked ~ .fab-wheel {
  transform: scale(1);
}
.fab-action {
  position: absolute;
  background: var(--my-primary);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: White;
  box-shadow: 0 0.1rem 1rem #000000;
  transition: all 1s ease;
  opacity: 0;
  background-size: contain;
}

.fab-checkbox:checked ~ .fab-wheel .fab-action {
  opacity: 1;
}

.fab-action:hover {
  background-color: var(--my-primary);
}

.fab-wheel .fab-action {
  left: 0;
  right: 0;
  margin: auto;
}

@media (min-width: 1024px) {
  .fab-wrapper {
    scale: 1.5;
    bottom: 5%;
    left: 2.5rem;
  }
}
    
#customGif {
    padding-top: 20px;
    z-index:205;
    cursor:pointer;
    bottom:65px;
    left:14px;
    position:fixed;
    display: flex;
    justify-content:center;
    flex-direction: column;
}
#customGif a {
    padding-bottom: 5px;
}
#customGif.close_custom_gif{
    display: none;
}
#custom_popup::before{
    content:" ";
    width:100px;
    height: 100px;
    background: red;
}
#alternate{
    display: none;
}
@media (max-width: 767px) {
    #noty_layout__bottomLeft {
        bottom:50px;
    }
    #customGif {
        right:14px;
        left: auto;
    }
    #alternate{
        display: block;
    }
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);  /* Initial size */
  }
  50% {
    transform: scale(1.2);  /* Zoomed in size */
  }
  100% {
    transform: scale(1);  /* Back to initial size */
  }
}

.onlinePlayer {
    width: 15%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: 0 25px;
    scale: 1.7;
}
.onlinePlayer .title {
  color: #9afe9a;
  animation: zoomInOut 0.8s infinite;
}
.onlinePlayer .nowOnline {
    color:white;
}
@media only screen and (max-width: 767px) {
    .onlinePlayer.mobile{
      display: flex;
      justify-content: space-around;
      flex-direction: row;
      scale: 1;
      padding: 10px 0;
      width: auto;
      margin: 0;
    }
}
