:root {
  font-size: 16px;
}
@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  :root {
    font-size: 12px;
  }
}

.delivery--container {
  position: absolute;
  top: -30px;
  right: 100px;
  z-index: 90;
}
@media (max-width: 1400px) {
  .delivery--container {
    right: 30px;
  }
}

.container-fixed-element {
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
}
@media (max-width: 950px) {
  .container-fixed-element {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(280px, -50%);
    transition: all 0.2s ease-in-out;
  }
  .container-fixed-element.active {
    transform: translate(0, -50%);
  }
  .container-fixed-element.active .show-button {
    left: 0;
    z-index: 99;
    background: transparent;
  }
}
.container-fixed-element .show-button {
  background: white;
  width: fit-content;
  padding: 15px;
  height: fit-content;
  display: none;
  position: absolute;
  top: 0;
  left: -60px;
  transition: all 0.2s ease-in-out;
  border-radius: 5px 0 0 5px;
}
.container-fixed-element .show-button img {
  max-width: 30px;
}
@media (max-width: 950px) {
  .container-fixed-element .show-button {
    display: block;
  }
}
.container-fixed-element #ak_fixeddelivery {
  background: black;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
#ak_fixeddelivery .svg {
  fill: var(--secondary);
}

.container-fixed-element #ak_fixeddelivery .delivery-icons img {
  height: 18px;
}
.container-fixed-element #ak_fixeddelivery .delivery-icons img:last-of-type {
  margin-left: 0.3125rem;
}
.container-fixed-element #ak_fixeddelivery p {
  margin: 0;
  font-family: "Open-sans", sans-serif;
  font-weight: 700;
}
.container-fixed-element #ak_fixeddelivery .title {
  color: #FFFFFF;
  padding: 12px 35px 12px;
  font-size: 22px;
  text-transform: uppercase;
}
.container-fixed-element #ak_fixeddelivery .description {
  color: var(--secondary);
  position: relative;
  padding: 12px 50px 18px;
  font-size: 14px;
}
.container-fixed-element #ak_fixeddelivery .description::before {
  content: "";
  border-top: solid 2px var(--secondary);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 71px;
}
@media (max-width: 950px) {
  .container-fixed-element #ak_fixeddelivery {
    border-radius: 10px 0 0 10px;
  }
}

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