.scrollbar-style::-webkit-scrollbar {
  width: 10px;
  height: 12px;
}

.scrollbar-style::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #d3d3d3 !important;
  border-radius: 10px;
}

.scrollbar-style::-webkit-scrollbar-thumb,
.scrollbar-style::-webkit-scrollbar-thumb:hover {
  background: #68236D !important;
  border-radius: 10px;
}

.transition {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.content-data {
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
}

.menu-wrapper {
  position: absolute;
  right: -100%;
  top: 17%;
  z-index: 999;
  width: 200px;
  /* height: 250px; */
  background: white;
  padding: 15px;
  border-radius: 5px 0 0 5px;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.5);
}

.menu-btn {
  position: absolute;
  /* right: 46px; */
  right: 31px;
  top: 10%;
  left: initial;
  z-index: 100;
  width: initial;
  background: #E41D86;
  border: 1px solid white;
  color: white;
  padding: 4px 10px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.menu-toggle {
  /* right: 4%; */
  right: 3%;
}

.menu-btn:before,
.menu-btn:after {
  display: none !important;
}

.video-listing {
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: auto;
}

.video-listing li {
  list-style-type: none;
  border-top: 1px solid #dddddd;
}

.video-listing li:last-child {
  border-bottom: 1px solid #dddddd;
}

.video-listing li a {
  text-decoration: none;
  color: #E41D86;
  display: block;
  padding: 4px 0 4px 0;
  font-size: 14px;
}

.video-listing li a:hover {
  color: #68236D;
}

.video-listing li a:focus {
  color: #68236D;
}

@media only screen and (max-width: 1024px) {
  .menu-btn {
    right: 35px;
    top: 12%;
  }

  .menu-wrapper {
    top: 19%;
    width: 150px;
  }
  .menu-toggle {
    right: 4%;
  }
}

@media only screen and (max-width: 991px) {
  .menu-btn {
    right: 35px;
    top: 14%;
  }

  .menu-wrapper {
    top: 21%;
  }

  .menu-toggle {
    right: 4%;
  }
}

@media only screen and (max-width: 768px) {
  .menu-btn {
    right: 35px;
    top: 10%;
    font-size: 11px;
    padding: 2px 7px
  }

  .menu-wrapper {
    top: 18%;
    padding: 10px;
  }

  .menu-toggle {
    right: 5%;
  }

  .video-listing li a {
    font-size: 11px;
  }
}

@media only screen and (max-width: 576px) {
.menu-btn {
  right: 20px;
  top: 8%;
}
.menu-toggle {
  right: 4%;
}

}
@media only screen and (max-width: 440px) {
  .menu-btn {
    right: 10px;
    top: 8%;
    font-size: 10px;
  }
  .menu-toggle {
    right: 3%;
  }
  .menu-wrapper {
    top: 20%;
    width: 120px;
}
.video-listing li a {
  font-size: 10px;
  padding: 2px 0 2px 0;
}
  }