#implcookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 15px;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  color: var(--awb-text-color);
}

.implcookie-consent-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1199.98px) {
  .implcookie-consent-content {
    width: 1200px;
    margin: 0 auto;
  }
}

@media (max-width: 1250px) {
  .implcookie-consent-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

body .to-top-floating #toTop {
  bottom: 90px;
}

body .to-top-floating #toTop:focus {
  outline: 2px solid #000000;
}

#implcookie-consent a {
  text-decoration: underline;
}

#implcookie-consent a:hover {
  color: #9CACBF;
}

#implcookie-consent-text {
  flex: 1;
}

#implcookie-consent-text a {
  color: #fff;
}

#implcookie-consent-buttons {
  display: flex;
  gap: 10px;
}

.implcookie-btn {
  display: block;
  padding: .8em .8em;
  font-size: .9em;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  border-style: none;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
}

.implnecessary-btn {
  color: rgb(255, 255, 255);
  background: transparent;
  text-decoration: underline;
}

.implnecessary-btn:hover {
  color: #9CACBF;
}

.implall-btn {
  color: rgb(255, 255, 255);
  background-color: var(--awb-custom_color_4);
  border-radius: 32px;
}

.implall-btn:hover {
  background-color: var(--awb-custom_color_5);
  color: #ffffff;
}

@media (max-width: 575.98px) {
  #implcookie-consent {
    flex-direction: column;
  }
  #implcookie-consent-buttons {
    flex-direction: column;
  }
}