* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --radioApp-height: 80px; /* Default height */
  --top-border: 2px;
  --theme-color: transparent;
  --secondry-color: #fff;
}
html,
body {
  height: 132px;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
#radioApp {
  position: fixed;
  width: 100%;
  bottom: 0px;
  z-index: 1000;
  box-sizing: border-box;
}
.top-border {
  width: 100%;
  height: var(--top-border);
  background-color: var(--theme-color);
}
.container {
  background-color: rgba(0, 0, 0, 0.65);
  position: relative;
  height: calc(var(--radioApp-height) - var(--top-border));
  display: block;
}
.controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: var(--radioApp-height);
}
.seg1,
.seg2,
.seg3,
.seg4,
.seg6 {
  position: relative;
  user-select: none;
}
.seg3 {
  flex: 1;
}
.seg6 {
  margin-left: 30px;
}
.seg6 {
  position: relative;
  margin-right: 0px;
}
.tab {
  position: relative;
  height: 19px;
  user-select: none;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  z-index: 100000;
}
.tab .tab-ico-wraper {
  position: absolute;
  right: 0px;
  bottom: -19px;
  height: 19px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-bottom-left-radius: 8px;
  background-color: var(--theme-color);
  z-index: 1000;
}
.tab .tab-icon i {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: bolder;
  line-height: 19px;
  transition: color 300ms linear;
}
.tab .tab-icon i:hover {
  color: #fff;
  transition: color 300ms linear;
}
.controls .play-pause-btn-con {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* border: 2px solid #fff; */
}
.controls .play-pause-btn {
  font-size: 75px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 300ms linear;
}
.controls .play-pause-btn:hover {
  color: var(--secondry-color);
  transition: color 300ms linear;
}
.timer {
  position: absolute;
  right: 5px;
  top: -20px;
  font-size: 14px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--theme-color);
  cursor: default;
}
.station-title {
  height: 30px;
  background-color: transparent;
  color: #ffffff;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: right;
  padding-left: 5px;
  border: 0px;
  outline: 0px;
  cursor: pointer;
  border-bottom: 0.5px solid transparent;
  transition: border-bottom 300ms linear;
}
.station-title:hover {
  border-bottom: 0.5px solid var(--theme-color);
  transition: border-bottom 300ms linear;
}
.station-title::after {
  content: "\002335";
  color: #ffffff;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bolder;
  padding: 0px 5px;
}
.station-menu {
  display: none;
  position: absolute;
  list-style-type: none;
  width: 160px;
  background-color: transparent;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-align: right;
  border: 0px;
  outline: 0px;
  cursor: pointer;
  top: -40px;
  right: 20px;
  padding-right: 5px;
}
.station-menu li {
  line-height: 22px;
}
.station-menu li:hover {
  color: var(--theme-color);
  /* border-bottom: 1px solid var(--theme-color); */
  transition: all 300ms linear;
}
.volume-section {
  position: absolute;
  width: 150px;
  height: 30px;
  /* border: 1px solid #1a1a1a; */
  top: 29px;
  right: 0px;
  display: flex;
  align-items: start;
  justify-content: flex-start;
}
.vol-bar-con {
  width: 115px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid #a34444; */
  overflow: hidden;
}
.volume-slider {
  width: 115px;
  -webkit-appearance: none;
  height: 10px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background: rgba(255, 255, 255, 0.65);
  outline: none;
  padding: 0;
  margin: 0;
  margin-right: -230px;
}
.volume-slider::-moz-range-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  outline: none;
  background-color: var(--theme-color);
  border: 1px solid rgba(255, 255, 255, 0.65);
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  outline: none;
  background-color: var(--theme-color);
  border: 1px solid rgba(255, 255, 255, 0.65);
  cursor: pointer;
}
.vol-toggle-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  color: var(--theme-color);
  font-size: 20px;
  line-height: 30px;
  cursor: pointer;
  width: 40px;
  height: 30px;
  /* border: 1px solid #16f102; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10px;
  transition: color 300ms linear;
}
.vol-toggle-btn:hover {
  color: #fff;
  transition: color 300ms linear;
}
.add-container {
  width: 720px;
  height: calc(var(--radioApp-height) - var(--top-border));
  line-height: calc(var(--radioApp-height) - var(--top-border));
  overflow: hidden;
  position: absolute;
  top: -65px;
}
.add-container .add-box {
  position: absolute;
  width: 100%;
  /* background-color: aqua; */
}
.add-box .add-item {
  width: 100%;
  height: calc(var(--radioApp-height) - var(--top-border));
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.logo-box {
  position: relative;
  height: var(--radioApp-height);
  aspect-ratio: 1/1;
  background-image: url("station1.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 23;
}
.show-box {
  position: relative;
  width: 350px;
  height: 130px;
  background-image: url("Lanota.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 22;
}
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .show-box {
    width: 0px;
    display: none;
  }
}
