body {
  font-size: 16px;
  font-family: 'Roboto', sans-serif !important;
  background-color: white !important;
}

a {
  text-align: center;
}

.page-container {
  border: 0px;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

.header_bg {
  background-image: url(../images/bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 193vw;

  display: flex;
  justify-content: center;
  align-items: center;
}

.timer {
  background-image: url(../images/timer_bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 10vw; */


}

.timer_flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;

}

.timer_header {
  color: white;
  text-align: center;
  font-weight: bold;
  padding-top: 24px;
}

.time {
  color: red;
  background-color: white;
  border-radius: 10px;
  padding: 12px;
  margin: 5px;

}

.des {
  color: white;
  margin-top: -40px;
  font-size: 50px;
}

.title {
  color: white;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.txt_flex {
  display: flex;
  flex-direction: column;
  align-items: center;

}

.txt {
  color: white;
  text-align: center;
  padding: 4px;
}

.header_bg>.phone_flex {
  flex: 50;
}

.header_bg>.desktop_view {
  flex: 50;
}

.timer_img {
  max-width: 100%;
  height: auto;
  padding: 2vw;

}

.img {
  width: 100%;
}

.cta {
  width: 60%;
}

.desktop_view {
  display: none;
}

.mobile_flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile_view {
  display: block;
}

@media (min-width: 320px) {}

@media (min-width: 576px) {}

@media (min-width: 768px) {

  .header_bg {
    height: 55vw;
  }

  .desktop_view {
    display: block;
  }

  .mobile_view {
    display: none;
  }

}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

@media (min-width: 1400px) {}

h3 {
  max-width: 700px;
  margin: 30px auto;

}

.container {
  max-width: 700px;
  margin: 0 auto;
  /* border: 1px solid #ccc; */
  padding: 10px;
  /* height: 300px; */
  /* display: flex; */
  justify-content: space-between;

}



.source-container {
  width: 300px;
  border: 1px solid #ccc;
}

.item {
  height: 30px;
  border: 1px solid #ccc;
  margin: 2px;
  background-color: lightyellow;
  cursor: move;
}

.item p {
  text-align: center;
  margin: 5px;
}

.source {
  position: relative;
  border: 1px solid #ccc;
  margin: 5px;
  height: 36px
}

.destination-container {
  width: 300px;
  border: 1px solid #ccc;
}

.destination {
  height: 36px;
  border: 1px solid #ccc;
  margin: 5px;
  background: #f1f1f1;
  border-left: 30px solid #ccc;
  position: relative;
}

.ui-droppable-active {
  border-color: #bbb;
}

.ui-droppable-hover {
  background: #ddd;
}

.destination span {
  position: absolute;
  z-index: 2;
  padding: 9px;
  left: -28px;
}

.ui-draggable-dragging {
  z-index: 999 !important;
}