.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 rgb(11, 41, 142);
}

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

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input {
  padding-left: 5px;
  height: 42px;
  margin-bottom: 10px;
  width: 100%;
  max-width: 250px;
  border: 1px solid;
}

select {
  box-sizing: content-box;
}

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

/* 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_inner {
  font-size: 18px;
  text-align: center;
}
.old_price {
  text-decoration: line-through;
}

.new_price {
  text-align: center;
}

.new_price span {
  font-size: 18px;
  color: rgb(11, 41, 142);
}

.price_text {
  font-size: 12px;
}

/* Button */

.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(11, 41, 142);
	text-decoration: none !important;
	/* transition: all .5s ease 0; */
	margin: 0 auto;
	text-align: center;
	cursor: pointer;
	border: none;
}

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