html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/*============ HEADER =======================*/
.header {
  display: flex;
  width: 100%;
  /* height: 100px; */
  background-color: rgb(175, 219, 255);
}

.header_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.logo_container {
  display: flex;
  align-items: center;
}

.logo_container_img {
  max-width: 250px;
  width: 100%;
  height: auto;
  padding: 0px 0px 0px 20px;
}

.nav_group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.phone_group {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px 0px 0px;
  font-size: 1em;
}

.phone_top_img {
  display: flex;
  align-items: center;
}

.phone_top_img>img {
  height: 25px;
  background-color: #0064bb;
  border-radius: 3px;
}

.phone_top_text {
  display: flex;
  align-items: flex-end;
  font-size: 1.7em;
}

.btn_group {
  display: flex;
  justify-content: space-around;
  /* padding: 0px 20px 10px 0px; */
  font-size: 1.2em;
  background-color: #0064bb;
  /* border-radius: 20px 0px 0px 0px; */
  padding: 15px;
}

.header_btn {
  color: #fff;
  width: 100%;
  text-align: center;
}

.header_btn:hover {
  color: #ffff00;
}

/*============ HEADER =======================*/
/*================ MAIN =======================*/

.main {
  display: flex;
  flex: 1;
  flex-direction: column;
  /* background-image: url('./img/background3.jpg');
  background-size: 100% 100%; */
}

.main_header {
  width: 100%;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  padding: 30px 0px 30px 0px;
}

.about_list_container li {
  font-size: 20px;
}

#about {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  /* grid-template-rows: 1fr 1fr; */
  /* width: 100%;
  height: 100%; */
}

.main_section_img {
  max-height: 300px;
  width: auto;
  object-fit: contain;
}

.left_container {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

.right_container {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

.about_divst_container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  font-size: 1em;
}

/*================ MAIN =======================*/

/*=============== FOOTER ==============================*/
.footer {
  display: flex;
  height: 70px;
  background-color: #9eceff;
  padding: 10px;
  text-align: center;
}

.container_footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line_container {
  width: 100%;
  height: 95%;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left_footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* color: #ffffff; */
}

.left_footer_text {
  font-size: 16px;
  /* padding-bottom: 10px; */
  display: flex;
  text-align: left;
}

.cop {
  margin: 0 auto;
  text-align: center;
  color: #000;
  font-size: 12px;
  line-height: 14px;
}

.middle_footer {
  max-width: 400px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  /* padding-left: 30px;
  padding-right: 30px; */
}

.footer_icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.footer_icon img {
  height: 38px;
}

.footer_icon_text {
  text-align: center;
}

.right_footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  /* color: #ffffff; */
}

.phone_footer_text {
  font-size: 16px;
  /* color: #ffffff; */
}

/*=============== FOOTER ==============================*/

/*=============== SERVICES ============================*/
.services_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*=============== SERVICES ============================*/

/*============== CONTACTS =============================*/
.contacts_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  font-size: 20px;
}

.contacts_section_img {
  max-height: 600px;
  width: 100%;
}


/*============== CONTACTS =============================*/
.services_preorder_desc {
  font-size: 1.1em;
  font-weight: bold;
}

#totalAmountDiv {
  font-weight: 800;
}

.addNewOrderPerson {
  border: 1px grey solid;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
}

#services_preorder {
  display: none;
  flex-direction: column;
}

#services_preorder.active {
  display: flex;
}

#services {
  width: 100%;
}

.servicesGrid {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 10px;
  padding: 10px;
  align-items: center;
  border: 1px solid #ddd;
}

.servicesGrid.service {
  grid-template-columns: 50px 1fr 100px;
  max-height: 250px;
  overflow: auto;
}

.servicesGrid>div {
  font-weight: bold;
  text-align: left;
  padding-bottom: 5px;
  /* border: 2px solid #ddd; */
}

/* Вирівнювання чекбоксу по центру */
.servicesGrid input[type="checkbox"] {
  margin: auto;
  display: block;
}

.addNewOrderLine_title {
  font-size: 1.1em;
}

.addNewOrderLine_input {
  height: 30px;
  width: 300px;
}

#button {
  display: flex;
  justify-content: center;
}

#addNewOrderBtn {
  font-size: 1em;
  padding: 5px;
  /* background-color: #00ff00; */
  border-radius: 5px;
  margin-top: 30px;
}

.paymentContainer {

  background-color: white;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.paymentContainer.active {
  display: flex;
}

.payBtn {
  width: 200px;
  height: 35px;
  text-align: center;
  cursor: pointer;
}

.closeBtn {
  width: 200px;
  height: 35px;
  text-align: center;
  cursor: pointer;
}

/* newOrderWindow === */