.header {
  display: flex;
  height: 60px;
  justify-content: space-between;
  position: fixed;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  padding-right: 12px;
  background-color: white;
  border-bottom: solid 1px red;
  z-index: 1500;
}
/* LEFT SECTION */
.header-left-section {
  display: flex;
  align-items: center;
}
.img-full-logo {
  height: 34px;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 6px;
}
.shop-name {
  font-size: 18px;
  color: red;
  text-decoration: none;
}


/* RIGHT SECTION */
.header-right-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 8px;
}
.img-facebook,
.img-instagram {
  cursor: pointer;
  height: 24px;
}
.img-instagram {
  margin-left: 10px;
  margin-right: 10px;
}
.right-section-tooltip-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.right-section-tooltip {
  position: absolute;
  bottom: -75px;
  background-color: rgb(77, 76, 76);
  padding: 10px 6px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 300;
  opacity: 0;
  color: white;
  white-space: nowrap;
  transition: 0.15s;
  pointer-events: none;
}

.right-section-tooltip-container:hover .right-section-tooltip {
  opacity: 1;
}
.div-telephone {
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-telephone{
  height:24px;
  cursor: pointer;
}
.text-telephone-number {
  color: black;
  font-weight: 300;
  font-size: 18px;
  margin-left: 4px;
}

@media (max-width: 1000px) {
  /* .header-middle-section {
    margin-left: 30px;
  } */
  .header-right-section {
    margin-left: 20px;
    width: fit-content;
  }
  .img-full-logo {
    height: 30px;
  }
}


@media (max-width: 768px) {
  /* .header-middle-section, */
  .header-right-section {
    margin-left: 10px;
  }
  .img-full-logo {
    height: 24px;
    cursor: pointer;
    margin-left: 6px;
  }
  .header-right-section {
    width: fit-content;
    padding: 0;
  }
  .img-instagram {
    margin: 0;
    padding: 0 8px;
  }
.text-telephone-number {
  font-size: 1.4rem;
  }
  .shop-name {
    font-size: 14px;
  }
}