.vjs-theme-city {
  --vjs-theme-city--primary: #bf3b4d;
  --vjs-theme-city--secondary: #fff;
}

.vjs-theme-city .vjs-control-bar {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 70px;
  padding-top: 20px;
  background: none;
  background-image: linear-gradient(0deg, #000, transparent);
}

.vjs-theme-city .vjs-button > .vjs-icon-placeholder:before {
  line-height: 50px;
}

.vjs-theme-city .vjs-play-progress:before {
  display: none;
}

.vjs-theme-city .vjs-progress-control {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 40px;
}

.vjs-theme-city .vjs-progress-control .vjs-progress-holder {
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0;
}

.vjs-theme-city .vjs-play-progress {
  background-color: var(--vjs-theme-city--primary);
}

.vjs-theme-city .vjs-remaining-time {
  order: 1;
  line-height: 50px;
  flex: 3;
  text-align: left;
}

.vjs-theme-city .vjs-play-control {
  order: 2;
  flex: 8;
  font-size: 1.75em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  z-index: 10;
}

.vjs-layout-small .vjs-play-control {
  position: relative;
  top: unset !important;
  bottom: 0;
  z-index: 0 !important;
  height: 45px !important;
}

.vjs-theme-city .vjs-fullscreen-control,
.vjs-theme-city .vjs-picture-in-picture-control {
  order: 5;
  flex: 1;
  max-width: 30px;
}

/* Ses kapatma ve ses seviyesi kontrollerini yan yana hizalama */
.vjs-theme-city .vjs-mute-control {
  flex: none; /* Mute butonu için esnek boyutlandırmayı devre dışı bırak */
  margin-right: 5px; /* Sağa boşluk ekle */
}

.vjs-theme-city .vjs-volume-panel {
  order: 3; /* Sıralamayı ayarla */
  flex: none; /* Volume paneli için esnek boyutlandırmayı devre dışı bırak */
  display: flex; /* Flexbox modelini kullan */
  align-items: center; /* İçerikleri dikey olarak ortala */
  margin-left: 0; /* Sol margini sıfırla */
  margin-right: 0.5em; /* Sağa boşluk ekle */
  padding-top: 0; /* Üst padding'i sıfırla */
}

.vjs-theme-city .vjs-volume-control {
  display: block; /* Volume çubuğunu göster */
  display: flex;
  align-items: center;
  justify-content: center;
}

.vjs-theme-city .vjs-volume-bar.vjs-slider-horizontal {
  width: 70px; /* Genişliği ayarla */
  height: 7px;
  cursor: pointer; /* İmleci pointer olarak ayarla */
  background-color: var(
    --vjs-theme-city--secondary
  ); /* Arka planı şeffaf yap */
}
.vjs-theme-city .vjs-volume-bar {
  background-color: transparent;
  margin: 0;
}

.vjs-theme-city .vjs-slider-horizontal .vjs-volume-level {
  background-color: var(
    --vjs-theme-city--primary
  ); /* Dolu bölümü kırmızı yap */

  height: 100%;
}

.vjs-theme-city .vjs-volume-bar:before,
.vjs-theme-city .vjs-volume-level:before {
  content: none; /* Önceki pseudo-elementleri kaldır */
}

.vjs-theme-city .vjs-fullscreen-control,
.vjs-theme-city .vjs-picture-in-picture-control {
  max-width: 30px;
}

.vjs-control-bar:hover .vjs-load-progress {
  height: 10px !important;
  bottom: 0 !important;
}

.vjs-control-bar:hover .vjs-play-progress {
  height: 10px !important;
  bottom: -0.2px !important;
}

.vjs-control-bar:hover .vjs-mouse-display {
  bottom: 2px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: inherit !important;
}

