@charset "UTF-8";
body a {
  text-decoration: none;
}

.navbar {
  background: rgb(248, 248, 248);
  height: 100px;
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .nav-link {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #212121;
  padding: 0 12px !important;
  position: relative;
  text-align: center;
}
.navbar .nav-link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #B3BEB3;
  transition: width 0.8s;
}
.navbar .nav-link:hover:before {
  width: 100%;
}
.navbar .link_sale {
  color: rgb(236, 92, 93);
}
.navbar .link_sale:before {
  background-color: rgb(236, 92, 93) !important;
}
.navbar .navbar-brand {
  padding-left: 5px;
}
.navbar .cart {
  padding-right: 5px;
}
.navbar .navbar-collapse {
  padding-right: 100px;
}

.navigation_site {
  background: rgb(248, 248, 248);
}
.navigation_site .row {
  border-top: 1px solid #B0C4B1;
  padding-top: 50px;
}
.navigation_site a {
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  display: inline;
  width: auto;
}
.navigation_site a img {
  padding-left: 8px;
}
.navigation_site .link_1 {
  color: #7F7F7F;
  padding-left: 5px;
}
.navigation_site .link_2 {
  color: #212121;
  padding-left: 0;
}

@media (max-width: 992px) {
  header .navbar .nav-link {
    font-size: 16px;
    line-height: 22px;
    padding: 0 6px !important;
  }
  header .navbar .navbar-brand {
    margin: 0 auto;
    padding-right: 35px;
  }
  header .navbar .navbar-brand img {
    max-width: 98px;
  }
  header .navbar .navbar-collapse {
    padding-right: 50px;
  }
}
@media (max-width: 576px) {
  .just-navbar {
    display: none;
  }
  .offcanvas-navbar {
    height: 66px;
  }
  .offcanvas-navbar .nav-link {
    text-align: start;
    margin-bottom: 20px;
  }
  .offcanvas-navbar .navbar-brand {
    margin: 0 auto;
    padding-right: 40px;
  }
  .offcanvas-navbar .offcanvas-body, .offcanvas-navbar .offcanvas-header {
    background-color: rgb(248, 248, 248);
  }
  .navbar-toggler {
    border: none;
  }
  .navbar-toggler img {
    width: 19px;
  }
  .navbar-toggler:active {
    border: none;
  }
  .navbar-toggler:hover {
    border: none;
  }
  .cart__text img {
    width: 19px;
  }
  .navigation_site .row {
    border-top: none;
    padding-top: 20px;
  }
}
@media (min-width: 577px) {
  .offcanvas-navbar {
    display: none;
  }
}
.header__cart {
  position: absolute;
  top: -60px;
  right: 1%;
  z-index: 200;
}

@media (max-width: 576px) {
  .header__cart {
    top: 25px;
    right: 25px;
  }
}
.cart_open {
  cursor: pointer;
}

.cart__quantity1 {
  position: absolute;
  right: -5px;
  top: 57%;
  transform: translateY(-50%);
  margin-top: -10px;
  background-color: #B0C4B1;
  border-radius: 50%;
  padding: 0;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: #212121;
  min-height: 16px;
  min-width: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-content__list {
  padding: 0;
}

.cart-content__item {
  list-style: none;
  position: relative;
}

.cart-content {
  position: fixed;
  top: 100px;
  right: -100%;
  width: 340px;
  min-height: 360px;
  padding: 50px 12px;
  background: #F8F8F8;
  box-shadow: -2px 0 4px hsla(0deg, 4%, 15%, 0.1);
  transition: 0.5s;
}
.cart-content h4 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #212121;
  text-align: center;
  padding-bottom: 20px;
}
.cart-content .cart-content__product {
  height: 110px;
  display: flex;
  flex-direction: row;
  padding-bottom: 16px;
  border-bottom: 1px solid #B0C4B1;
}
.cart-content .cart-content__product .cart-product__img {
  width: 84px;
  height: 95px;
  margin-right: 8px;
  padding: 0;
}
.cart-content .cart-content__product .cart-product__title {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #212121;
  margin: 0;
}
.cart-content .cart-content__product .cart-product__price {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #EC5C5D;
  margin: 0;
  padding: 14px 0;
}
.cart-content .cart-content__product span, .cart-content .cart-content__product .cart__quantity {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #212121;
}
.cart-content .cart-content__product .cart__quantity {
  border: none;
  width: 50px;
  outline: transparent;
  text-align: center;
}
.cart-content .counter-wrapper {
  display: flex;
  flex-direction: row;
}
.cart-content .counter-wrapper .items__current {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  padding-left: 8px;
  color: #212121;
}
.cart-content .cart-content__bottom .cart-content__fullprice {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 16px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #212121;
}
.cart-content .cart-content__btn {
  width: 100%;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #212121;
  background-color: #B0C4B1;
  height: 57px;
  border-radius: 0;
}
.cart-content .close_cart {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.cart-content .cart_remove {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 37%;
  right: 5%;
  cursor: pointer;
}

.cart-content.active {
  right: 20px;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
  width: 60%;
  padding: 50px 84px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.popup-content .popup_top {
  border-bottom: 1px solid #B0C4B1;
}
.popup-content .popup_top #closePopup2 {
  cursor: pointer;
  width: 15px;
  height: 15px;
}
.popup-content .popup_top h3 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  color: #212121;
}
.popup-content .popup_product {
  display: flex;
  padding: 50px 0;
}
.popup-content .popup_product .cart-content__item {
  margin-bottom: 20px;
}
.popup-content .popup_product .cart-product {
  display: flex;
}
.popup-content .popup_product .cart-product .cart-product__img {
  margin-right: 10px;
  width: 95px;
  height: 95px;
}
.popup-content .popup_product .cart-product .cart-product__title, .popup-content .popup_product .cart-product span {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #212121;
}
.popup-content .popup_product .cart-product p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #EC5C5D;
}
.popup-content .popup_product .cart_remove {
  width: 25px;
  height: 25px;
  cursor: pointer;
  align-items: center;
}
.popup-content .popup_product .popup_item2 {
  width: 40%;
  display: flex;
  justify-content: space-between;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #212121;
}
.popup-content .popup_product .popup_item {
  height: 150px;
  overflow: auto;
  width: 60%;
}
.popup-content .popup_footer {
  display: flex;
  justify-content: space-between;
}
.popup-content .popup_footer a {
  padding: 16px 39px;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #212121;
  text-decoration: none;
}
.popup-content .popup_footer #closePopup {
  border: 2px solid #B0C4B1;
}
.popup-content .popup_footer .to_order_link {
  background: #B0C4B1;
}

@media (max-width: 992px) {
  .popup-content {
    padding: 30px;
  }
  .popup-content .popup_product {
    display: flex;
    flex-direction: column;
  }
  .popup-content .popup_product .popup_item, .popup-content .popup_product .popup_item2 {
    width: 100%;
  }
  .popup-content .popup_product .popup_item {
    margin-bottom: 40px;
  }
  .popup-content .popup_footer {
    display: flex;
    flex-direction: column;
  }
  .popup-content .popup_footer a {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .popup-content {
    width: 95%;
  }
}
.order_form {
  background-color: rgb(248, 248, 248);
}
.order_form .error {
  color: red;
}
.order_form .container {
  border-top: 1px solid #B0C4B1;
}
.order_form h3 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 55px;
  color: #212121;
  text-align: center;
  padding: 40px 0;
}
.order_form .form-item1 {
  padding-right: 60px;
  border-right: 1px solid #B0C4B1;
  width: 62%;
}
.order_form .form-item2 {
  width: 37%;
}
.order_form .form-item2 .popup_product {
  width: 95%;
  background-color: #FFFFFF;
  padding: 20px;
  margin: 0 auto;
}
.order_form .form-item2 .popup_product h5 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  color: #212121;
  padding: 30px 0;
}
.order_form .form-item2 .popup_product .popup_item {
  display: flex;
  flex-direction: column;
}
.order_form .form-item2 .popup_product .popup_item .cart-product {
  display: flex;
  margin-bottom: 15px;
}
.order_form .form-item2 .popup_product .popup_item .cart-product .cart-product__img {
  width: 100px;
  margin-right: 10px;
}
.order_form .form-item2 .popup_product .popup_item .cart-product .cart-product__title, .order_form .form-item2 .popup_product .popup_item .cart-product .cart-product__price, .order_form .form-item2 .popup_product .popup_item .cart-product span {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
}
.order_form .form-item2 .popup_product .popup_item .cart-product .cart-product__title {
  color: #212121;
  padding: 10px 0;
}
.order_form .form-item2 .popup_product .popup_item .cart-product .cart-product__price {
  color: #EC5C5D;
}
.order_form .form-item2 .popup_product .popup_item .cart-product .cart_remove {
  width: 30px;
  position: absolute;
  top: 20px;
  right: 0;
}
.order_form .form-item2 .cart-content__fullprice {
  border-top: 1px solid #B0C4B1;
  padding: 15px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.order_form .user_info {
  padding: 50px 50px 25px 50px;
  background-color: #FFFFFF;
  margin-bottom: 50px;
}
.order_form .user_info .label1 {
  width: 32%;
}
.order_form .user_info .label1 input {
  width: 193px;
}
.order_form .user_info .label2 {
  width: 47%;
}
.order_form .user_info .label2 input {
  width: 302px;
}
.order_form .user_info .order__label {
  display: inline-block;
  flex-direction: column;
  padding-bottom: 25px;
  margin: 0 2px;
}
.order_form .user_info .order__label span {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #212121;
}
.order_form .user_info .order__label input {
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 24px;
  border: 0.5px solid #B0C4B1;
}
.order_form .user_info .order__label input::placeholder {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #7F7F7F;
}
.order_form .user_info h5 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  color: #212121;
  padding-bottom: 48px;
}
.order_form .user_info .city_div label {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #212121;
}
.order_form .user_info .city_div input {
  height: 43px;
  position: relative;
  border: 0.5px solid #B0C4B1;
  padding-left: 24px;
}
.order_form .user_info .city_div input::placeholder {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #7F7F7F;
}
.order_form .user_info .delivery_radio div {
  padding-top: 50px;
}
.order_form .user_info .delivery_radio div label {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #212121;
  padding-left: 27px;
}
.order_form .user_info .delivery_radio div input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  background-color: transparent;
  border: 1px solid #B0C4B1;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  -webkit-border-radius: 0; /* Встановлення радіусу кутів на 0 */
  -moz-border-radius: 0;
  border-radius: 0;
}
.order_form .user_info .delivery_radio div input[type=radio]:checked::before {
  content: "✔";
}
.order_form .user_info .delivery_radio div input[type=radio]::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: -3px;
  padding-left: 3px;
}
.order_form .user_info .payment_radio div {
  padding-top: 0;
  padding-bottom: 48px;
}
.order_form .order__btn {
  width: 302px;
  height: 59px;
  margin: 0 auto;
  background: #B0C4B1;
  border-radius: 0;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: #212121;
}

@media (max-width: 992px) {
  .order_form .row {
    flex-direction: column-reverse;
  }
  .order_form .form-item1, .order_form .form-item2 {
    width: 100%;
  }
  .order_form .form-item1 {
    padding: 0;
    border: none;
  }
  .order_form .form-item1 .order__label {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .order_form .form-item1 .order__label input {
    width: 100%;
  }
  .order_form .form-item1 .delivery_radio div label {
    padding: 0;
    font-size: 14px;
  }
  .order_form .form-item2 {
    margin-bottom: 20px;
  }
  .order_form .form-item2 .popup_product {
    margin: 0 auto;
  }
}
footer {
  background-color: rgb(248, 248, 248);
}
footer a {
  text-decoration: none;
  color: #000000;
}
footer a:hover {
  color: #000000;
}
footer .footer-row {
  border-top: 1px solid #B0C4B1;
  padding: 100px 0;
}
footer .footer-row .footer_drop {
  display: none;
}
footer .footer-row .footer_info {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
footer .footer-row .fot_item1 {
  padding-left: 30px;
}
footer .footer-row .footer_item {
  margin-left: 10px;
}
footer .footer-row .footer_item h5 {
  margin-bottom: 18px;
  text-transform: uppercase;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  color: #212121;
}
footer .footer-row .footer_item img {
  padding-right: 20px;
}
footer .footer-row .footer_item ul {
  padding: 0;
}
footer .footer-row .footer_item ul li {
  list-style: none;
  text-align: start;
  padding-left: 0;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #000000;
  padding-bottom: 8px;
}

.phone_links {
  position: fixed;
  bottom: 3%;
  right: 1%;
  background-color: #B0C4B1;
  border-radius: 25px;
}
.phone_links img {
  padding: 10px;
}

@media (min-width: 577px) and (max-width: 992px) {
  footer .footer-row {
    padding: 45px 0;
  }
  footer .footer-row .footer_drop {
    display: none;
  }
  footer .footer_logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
  }
  footer .footer_info {
    width: 100%;
  }
}
@media (max-width: 576px) {
  footer .footer-row {
    padding: 45px 0;
  }
  footer .footer-row .footer_drop {
    display: block;
  }
  footer .footer-row .footer_info {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  footer .footer-row .footer_info .footer_item {
    width: 100%;
  }
  footer .footer-row .footer_info .fot_item {
    display: none;
  }
  footer .footer-row .footer_logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
  }
  footer .footer-row .more_btn {
    padding-left: 0;
    font-family: "Nunito", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #212121;
    text-transform: uppercase;
  }
  footer .footer-row .more_btn:hover {
    border: none;
  }
  footer .footer-row .card-body {
    padding: 0;
    background-color: transparent;
    border: none;
  }
}
.order_form .order__btn:hover {
  background-color: #d0e7d2;
}

/*# sourceMappingURL=order_page.css.map */
