/* Clock design */
.clockContainer2 {
  position: relative;
  margin: auto;
  height: 70px;
  /*to make the height and width responsive*/
  width: 70px;
  /*setting our background image*/
  border-radius: 50%;
}

.clockContainer2:hover {
  border: 4px solid white;
}

.clockContainer {
  position: relative;
  margin: auto;
  height: 70px;
  /*to make the height and width responsive*/
  width: 70px;
  background: url(../image/clock/white-clock.svg) no-repeat;
  /*setting our background image*/
  background-size: 100%;
  border-radius: 50%;
}

.hour,
.minute,
.second {
  position: absolute;
  background: white;
  border-radius: 10px;
  transform-origin: bottom;
}

.hour {
  width: 1.8%;
  height: 25%;
  top: 25%;
  left: 48.85%;
  opacity: 0.8;
}

.minute {
  width: 1.6%;
  height: 30%;
  top: 19%;
  left: 48.9%;
  opacity: 0.8;
}

.second {
  width: 1%;
  height: 40%;
  top: 9%;
  left: 49.25%;
  opacity: 0.8;
}

.pac-container {
  z-index: 100000;
}

/* Scroll Bar */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #acabab;
  border-radius: 12px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #8a8989;
}

#preview-toggle {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

.marquee-container2 {
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 50px;
}
.marquee-container2 p {
  display: inline-block;
  padding-left: 100%;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
