.videoinfo {
  position: relative;
  margin-bottom: 37px;
}

.videoinfo-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 84px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--blackColor);
  padding: 32px 37px 30px 30px;
}

.videoinfo-main {
  color: #fff;
  max-width: 460px;
  flex: 1 270px;
}

.videoinfo-main__top {
  margin-bottom: 30px;
}
.videoinfo-main__top h3 {
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid #949494;
}
.videoinfo-main__top h3 b {
  color: var(--accentColor);
  font-weight: 500;
}
.videoinfo-main__top p {
  color: #949494;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.videoinfo-main__opt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.videoinfo-video {
  position: relative;
  max-width: 612px;
  width: 100%;
}

.videohint {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  overflow: hidden;
  background: #FF0000;
  padding: 3px 13px;
  left: 54px;
  top: -10px;
}

.video-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  z-index: 10;
  transition: all 0.12s ease-out;
  padding-left: 10px;
  flex-shrink: 0;
}
.video-play:hover {
  transform: scale(1.1);
  background: rgb(255, 255, 255);
  transition: all 0.12s ease-in;
}
.video-play.hide {
  opacity: 0;
  visibility: hidden;
  z-index: -2;
  transition: all 0.12s ease;
}

video#module-video {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 335px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
}

.videoinfo-adds {
  display: flex;
  align-items: center;
  gap: 32px;
  width: -moz-max-content;
  width: max-content;
  padding: 10px;
  background: var(--blackColor);
  border-radius: 30px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  right: 37px;
  transform: translate(0, -22px);
}

@media screen and (max-width: 1090px) {
  .videoinfo-wrapper {
    justify-content: center;
    flex-direction: column-reverse;
  }
  .videoinfo-main {
    max-width: initial;
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .videoinfo-main__top h3 {
    font-size: 16px;
  }
  .videoinfo-main__top p {
    font-size: 14px;
  }
}