.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-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: 2px solid #e9d7dc;
}

.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;
  color: black;
}

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

.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;
}

/* form */

form input {
  display: flex;
  box-sizing: border-box;
}

form input, .country_select {
  width: 100%;
  /* max-width: 300px; */
  /* display: block; */
  /* margin: 0 auto; */
  /* margin-bottom: 10px; */
  /* padding: 15px; */
  /* border-radius: 3px; */
  /* border: 2px solid #e9d7dc; */
  /* font-size: 15px; */
}

/* Price */

/* .price {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  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;
}

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

.new_price span {
font-size: 24px;
color: rgb(235, 175, 62);
}

.price_text {
font-size: 12px;
}


/* Button */

.order_button {
	border-radius: 5px;
	text-transform: uppercase;
	line-height: 1;
	display: block;
	padding: 15px 25px;
	font-size: 15px;
	font-weight: 700;
	color: #fff !important;
	background-color: rgb(235, 175, 62);
	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
}

/* checkbox */

.form__checkbox {
  position: relative;
  display: grid;
  grid-template-columns: -webkit-min-content 1fr;
  grid-template-columns: min-content 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 15px;
  column-gap: 15px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 15px;
  /* margin-left: auto; */
  /* margin-right: auto; */
  color: #000;
  /* max-width: 250px; */
  width: 100%;
  text-align: left;
}

.form__checkbox a {
  color: #000;
}

.form__checkbox-mark {
  width: 20px;
  height: 20px;
  border: 1px solid black;
  background-color: #fff;
  border-radius: 3px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  cursor: pointer
}

.form__checkbox-mark:after {
  position: relative;
  content: "";
  display: none;
  width: 80%;
  height: 80%;
  top: 2px;
  left: 1px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 10 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.823 2.774A.5.5 0 0 0 10 2.392V.91a.5.5 0 0 0-.823-.382l-5.422 4.58a.5.5 0 0 1-.637.007L.815 3.246A.5.5 0 0 0 0 3.634v1.503a.5.5 0 0 0 .185.389l2.933 2.38a.5.5 0 0 0 .637-.007l6.068-5.125z' fill='%23fff'/%3E%3C/svg%3E")
}

.form__checkbox-mark:hover {
  border-color: red;
  background: hsla(0,0%,100%,.9)
}

.form__checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: -10;
}

.form__checkbox input[type=checkbox]:checked~.form__checkbox-mark:after {
  display: block
}

.form__checkbox input[type=checkbox]:checked~.form__checkbox-mark {
  border-color: red;
  background-color: red
}

.form__checkbox input[type=checkbox]:checked~.form__checkbox-mark:after {
  border-color: red;
}

.form__checkbox input[type=checkbox]:active~.form__checkbox-mark,.form__checkbox input[type=checkbox]:focus~.form__checkbox-mark {
  border-color: red;
}
