/* Timer */

.timer-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  background-color: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
}

.date-second {
  border: 1px solid red;
}

.date-digit {
  display: block;
  margin-bottom: 3px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0.005em;
}

.day {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.01em;
  color: #D2D2D2;
}

.dogs {
  margin: 0 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #8B8B8B;
}

/* Price */

.price {
    display: flex;
    margin: 20px auto;
    max-width: 400px;
    justify-content: space-between;
}

.price_value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.old_price {
  font-size: 26px;
  text-decoration: line-through;
}

.new_price span {
  font-size: 26px;
  color: rgb(255, 102, 68);
}

.price_text {
  font-size: 12px;
}

/* Button */

.order_button {
	border-radius: 5px;
	text-transform: uppercase;
	line-height: 1;
	display: block;
  max-width: 300px;
	padding: 15px 25px;
	font-size: 15px;
	font-weight: 700;
	color: #fff !important;
	background-color: rgb(255, 102, 68);
	text-decoration: none !important;
	/* transition: all .5s ease 0; */
	margin: 0 auto;
	text-align: center;
	cursor: pointer;
	border: none;
}

.order_button:hover {
	text-decoration: none;
	color: #fff;
	transform: scale(1.1);
	transition: all .5s ease 0
}
