:root {
  --my-primary: #f2eded00;
  --my-secondary: #f2eded00;
}
* {
  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.left {
  left: 7%;
}
.fab-wrapper.right {
  left: 10%;
}
.fab-wrapper2 {
  scale: 1.3;
  position: fixed;
  z-index: 1;
  right: 10px;
  bottom: 75px;
  height: 45px;
}

.fab-wrapper.checked {
    height: auto;
    bottom: 105px;
}
.fab-wrapper2.checked {
    height: auto;
    bottom: 105px;
}

.fab-checkbox {
  display: none;
}
.fab-checkbox2 {
  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);
}
.fab2 {
  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;
}
.fab2: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-checkbox2:checked ~ .fab2: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);
}
.fab2:hover {
  background: var(--my-primary);
  box-shadow: 0px 0 8px 1px var(--my-secondary);
}

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

.fab .fab-dots-2 {
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
}
.fab2 .fab2-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-checkbox2:checked ~ .fab2 .fab2-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);
}
.fab-checkbox2:checked ~ .fab2 .fab2-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-checkbox2:checked ~ .fab2 .fab-dots2 {
  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-wheel2 {
  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);
}
.fab2-checkbox ~ .fab2-wheel { 
  transform: scale(0);
}

.fab-checkbox:checked ~ .fab-wheel {
  transform: scale(1);
}
.fab2-checkbox:checked ~ .fab2-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-action2 {
  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-checkbox2:checked ~ .fab-wheel2 .fab-action2 {
  opacity: 1;
}

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

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

@media (min-width: 1024px) {
  .fab-wrapper {
    scale: 1.5;
    bottom: 5%;
    left: 2.5rem;
  }
  .fab-wrapper2 {
    scale: 1.5;
    bottom: 5%;
    left: 10rem;
    right:auto;
  }
  .fab-wrapper .left {
    left: 20%;
  }
  .fab-wrapper .right {
    left: 35%;
  }
}
    
#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 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  margin: 0 450px;
  scale: 2;
}
.onlinePlayer .title {
  color: hsla(0, 0%, 100%, 0.644);
}
.onlinePlayer .title::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: rgb(124, 252, 0);
  border: 1.5px solid grey;
  border-radius: 50%;
  position: absolute;
  left: -5%;
  top: 10%;
}
.onlinePlayer .nowOnline {
    color: hwb(122 0% 0%);
    animation: zoomInOut 1s infinite;
}
@media only screen and (max-width: 767px) {
    .onlinePlayer.mobile{
      width: auto;
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      align-items: center;
      text-align: center;
      font-size : 20px;
      scale: 1;
      padding: 10px 0;
      margin: 0;
    }
    .onlinePlayer .title::before {
      position: relative; /* Change the position to relative for smaller screens */
      display: inline-block; /* Adjust the display property for smaller screens */
      margin-right: 5px; /* Add margin for spacing */
      top: 0; /* Reset the top position */
      left: 0; /* Reset the left position */
    }
}

.scroll-container {
            height: 200px;
            width: 70%;
	    min-width: 330px;
	    margin: 20px auto 35px auto;
            overflow: hidden;
            position: relative;
	    font-family: 'Arial', sans-serif;
            background: linear-gradient(to bottom,#400d75 0%,#700d3c 100%);
            border-style: none ridge ridge ridge;
            border-color: #700d3c;
            border-width: 5px;
            box-sizing: border-box;
            box-shadow: 0 0 8px 2px #400d75 ;
            animation: boxShadowAnimation 2s infinite;
        }

.scroll-title {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: #700d3c;
            color: #fff;
            text-align: center;
            padding: 3px;
            box-sizing: border-box;
            font-weight: bold;
            text-shadow: 2px 2px 4px #400d75;
            z-index: 1;
        }

        .scroll-text {
	    background: #1b1b1b;
            display: flex;
            flex-direction: column;
            position: absolute;
            width: 100%;
            top: 30px;
            animation: scroll 20s linear infinite;
            overflow: hidden;
            box-sizing: border-box;
        }

        .scroll-text p {
	    background: linear-gradient(to right,#400d75 0%,#700d3c 100%);
            margin: 3px;
            padding: 3px;
            border: 2px solid #700d3c;
	    border-radius: 5px;
            text-shadow: 2px 2px 4px black;
            color: white;
            display: flex;
            justify-content: space-between;
        }

.scroll-text span {
    display: inline-block;
}

.scroll-text span.circle {
    position: relative;
    display: inline-block;
    padding-left: 25px; /* Adjust as needed */
}

.scroll-text span.circle::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, 
      #00FF00, /* Bright green */
      #66FF66, /* Light green */
      #009900, /* Medium green */
      #004d00 /* Dark green */
    );
    border: 3px solid #b5b5b5;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes boxShadowAnimation {
            0% {
                box-shadow: 0 0 8px 2px #400d75;
            }
            50% {
                box-shadow: 0 0 15px 5px #700d3c;
            }
            100% {
                box-shadow: 0 0 8px 2px #400d75;
            }
        }

@keyframes scroll {
            from {
                transform: translateY(0);
            }
            to {
                transform: translateY(-75%);
            }
        }
