@import url("https://fonts.googleapis.com/css?family=Prompt&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Prompt", sans-serif;
}
a {
  cursor: pointer !important;
}
div {
  position: relative;
}
img,
picture {
  display: block;
  width: 100%;
}

.head {
  margin: 5% 0px;
}
.ccbutton {
  width: 36%;
  height: 8.1%;
  position: absolute;
  top: 25%;
  left: 32%;
}
.howtoreg2 {
  top: 49.5%;
  left: 46%;
  width: 40%;
  height: 4%;
  position: absolute;
}
.howtoreg3 {
  bottom: 15%;
  right: 28%;
  width: 39%;
  height: 3%;
  position: absolute;
}
.line {
  position: absolute;
  width: 7%;
  height: 21%;
  top: 62.5%;
  left: 40%;
}
.inbox {
  position: absolute;
  width: 7%;
  height: 21%;
  top: 62.5%;
  left: 49.3%;
}

.applyButton {
  position: absolute;
  width: 28%;
  height: 17%;
  left: 5.5%;
  top: 72%;
}
.applyButton1 {
  position: absolute;
  width: 28%;
  height: 44%;
  left: 36%;
  top: 28%;
}
.footer {
  margin-bottom: 10%;
}
@media only screen and (min-width: 961px) {
  .page {
    width: 960px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 480px) {
  .applyButton1 {
    width: 70.4%;
    height: 9.7%;
    top: 84.8%;
    left: 15%;
  }

  .line {
    left: 28%;
  }

  .inbox {
    left: 52.9%;
  }
  .inbox,
  .line {
    width: 19.5%;
    height: 18%;
    top: 65%;
  }
  .applyButton {
    width: 82.5%;
    height: 10%;
    left: 8.8%;
    top: 54%;
  }
  .applyButton1 {
    width: 82.5%;
    height: 56%;
    left: 8.8%;
    top: 22%;
  }
  .howtoreg2 {
    left: 34%;
    width: 46%;
    top: 51%;
  }
  .howtoreg3 {
    bottom: 18.5%;
    right: 23%;
    width: 44%;
  }
  .ccbutton {
    width: 55%;
    height: 8.1%;
    top: 25%;
    left: 23%;
  }
}

.pomodoro {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  padding-top: 15px;
  padding-bottom: 25px;
}
p {
  text-align: center;
}
.flip-clock-wrapper {
  max-width: 460px;
  margin: 3em auto 2em;
  display: flex;
  justify-content: center;
}
.col-md-4 {
  display: flex;
  justify-content: center;
}
.col-md-2 {
  display: flex;
  justify-content: center;
  height: 34px;
  align-items: center;
}
.counter {
  display: flex;
  justify-content: center;
}
.clock {
  margin-top: 30px;
}
.container {
  width: 500px;
}
.middle {
  display: inline-block;
}
.countdown-title {
  background: #141414;
  text-align: center;
  font-size: 32px;
  color: #0ecf62;
  padding: 20px 0;
}

.countdown-title span {
  color: #141414;
}
.countdown {
  background-color: #141414;
  height: 140px;
}

@media only screen and (max-width: 480px) {
  .pomodoro {
    width: 100%;
  }
}

.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress {
  background-color: #fff4da;
  border-radius: 20px;
  height: 45px;
  width: 80%;
}

.progress-text-end {
  float: right;
  font-size: 22px;
  color: #fff;
}

.progress-done {
  background-image: linear-gradient(to bottom, #188949, #188949);
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.progress-done::after {
  position: absolute;
  border-radius: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-size: 100%;
  background-image: linear-gradient(
    45deg,
    #fff 25%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0) 50%,
    #fff 50%,
    #fff 75%,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0)
  );
  background-size: 30px 30px;
  opacity: 0.3;
  animation: progress-bar-after-1 0.5s infinite linear;
}

@keyframes progress-bar-after-1 {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 30px 100%;
  }
}
