.header-container-line{
  width: 100%;
  height: 9px;
  background-color: var(--pink-color);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  background-color: var(--white-color);
}
.left-buttons, .middle-buttons, .right-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.middle-buttons{
  margin-right: 100px;
}
.top_navigation_section_button {
  color: var(--pink-color);
  padding: 5px 5px;
  border: 0px;
  font-family: var(--font-main);
  background-color: var(--white-color);
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
.top_navigation_section_button_black {
  color: var(--black-color);
}
.vertical_line {
  background-color: var(--pink-color);
  height: 30px;
  width: 3px;
}
.button-menu-layout{
  flex: 1;
  display: flex;
  height: 80px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background-color: var(--white-color);
}
.left-menu-buttons,
.right-menu-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 10px;
}
.center-image-menu {
  flex: 0.25;
  display: flex;
  margin-top: 100px;
  justify-content: center;
  align-items: center;
}
.center-image-menu a.logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.center-image-menu a.logo-link img {
  width: 200px;
  height: 200px;
  z-index: 100 !important;
  display: block;
}
.btn-menu {
  width: 90%;
  height: 60px;
  color: var(--black-color);
  padding: 10px 15px;
  border: 0px;
  font-family: var(--font-main);
  font-size: large;
  background-color: var(--white-color);
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}
.button-menu-line{
  background-color: var(--black-color);
  height: 1px;
  width: 100%;
}
.btn_basket {
  background-color: var(--black-color);
  border-radius: 20px;
  color: var(--white-color);
  height: 40px;
  width: 110px;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
.basket-button-link{
  position: relative;
  display: inline-block;
}
.basket-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--pink-color);
  font-family: var(--font-main);
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation_section{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  height: 40px;
  min-height: 40px;
  background-color: var(--white-color);
  color: var(--blue-color);
  margin-top: 20px;
  font-size: 14px;
  font-weight: bold;
  font-family: var(--font-main);
}