.btn-one {
  background-color: #feb302;
  color: #111111;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  font-family: "Roboto", sans-serif;
}

.btn-one:hover {
  background-color: #da9900;
  color: #fff;
  transition: all 0.3s;
}

.btn-two {
  background-color: #ff4a64;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  font-family: "Roboto", sans-serif;
}

.btn-two:hover {
  background-color: #c42037;
  transition: all 0.3s;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.go-top {
  position: fixed;
  cursor: pointer;
  right: 3%;
  top: 87%;
  background-color: #046bd2;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 31%);
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 42px;
  border-radius: 8px;
  -webkit-transform: scale(0);
  transform: scale(0);
  visibility: hidden;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #046bd2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
}

.go-top.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 84%;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.modal div.clock {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
}

.modal .label-count {
  background-color: #000;
  color: #fff;
  margin: 10px;
  text-align: center;
  width: 100px;
}

.modal .count {
  font-size: 40px;
  font-weight: 500;
  padding: 5px 10px;
}

.modal .label {
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .modal .count {
    font-size: 22px;
    padding-bottom: 0;
  }
  .modal .label-count {
    width: 60px;
    margin: 4px;
    padding: 0 10px;
  }

  .modal .label {
    font-size: 12px;
  }

  .btn-two {
    font-size: 12px;
    padding: 10px 10px;
  }
}
