@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: 9.1%;
  position: absolute;
  top: 20%;
  left: 32%;
}
.howtoreg2 {
  top: 44.5%;
  left: 52%;
  width: 27%;
  height: 4%;
  position: absolute;
}
.howtoreg3 {
  bottom: 23%;
  right: 12%;
  width: 28%;
  height: 3%;
  position: absolute;
}

.applyButton1 {
  position: absolute;
  width: 30%;
  height: 12%;
  top: 79%;
  left: 17%;
}
.inbox {
  position: absolute;
  width: 11%;
  height: 63%;
  top: 18.5%;
  left: 57.4%;
}
.line {
  position: absolute;
  width: 11%;
  height: 63%;
  top: 18.5%;
  left: 70%;
}

.applyButton {
  position: absolute;
  width: 30%;
  height: 35%;
  left: 35.5%;
  top: 32%;
}
.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: 91.4%;
    height: 9.7%;
    top: 41.8%;
    left: 5%;
  }

  .inbox {
    left: 29%;
  }
  
  .line {
    left: 54.6%;
  }
  .inbox, .line {
    width: 19%;
    height: 35%;
    top: 48%;
  }
  .applyButton {
    width: 91.5%;
    height: 63%;
    left: 4.8%;
    top: 19%;
  }
  .howtoreg2 {
    left: 40%;
    width: 34%;
    top: 51%;
  }
  .howtoreg3 {
    bottom: 22.5%;
    right: 8%;
    width: 30%;
  }
  .ccbutton {
    width: 54%;
    height: 8.7%;
    top: 24.5%;
    left: 24%;
  }

}


.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: #fff;
  text-align: center;
  font-size: 32px;
  color: #ED0876;
  padding: 20px 0;
}

.countdown-title span {
  color: #ED0876;
}
.countdown {
  background-color: #fff;
  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: #FCDEEC;
  border-radius: 20px;
  height: 45px;
  width: 80%;
}

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

.progress-done {
  background-image: linear-gradient(to bottom, #EF60A3,  #EF60A3);
  box-shadow: 0 3px 3px -5px #F2709C, 0 2px 5px #F2709C;
  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%;
  }
}

