html,
body {
  margin: 0;
  padding: 0;
  width: 300px;
  height: 250px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

.container {
  width: 300px;
  height: 250px;
  background-color: #f0f0f0;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

video {
  width: 300px;
  height: 250px;
  object-fit: cover;
}

#video1,
#video2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 250px;
  object-fit: cover;
}

#video2 {
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
}

#final {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#final img {
  width: 300px;
  height: 250px;
  object-fit: cover;
}
#final * {
  pointer-events: none;
}

#map {
  position: absolute;
  left: 10px;
  height: 163px;
  top: 43px;
}

#logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%);
  height: auto;
  margin-top: -20px;
}

#logo img {
  width: 100%;
  height: auto;
}

#address {
  position: absolute;
  right: 10px;
  top: 6px;
  width: 190px;
  font-size: 13px;
  font-weight: bold;
  text-align: right;
}
.muteControl {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  cursor: pointer;
  transform: scale(0.8);
  transform-origin: right top;
  pointer-events: all;
}
.hide {
  display: none;
}
