/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/

/* Examples (uncomment to use):*/

/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */

/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }

/* Hide compare button */
/* a.compare_item { display: none !important;  }*/

.notification-cookies {
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(34, 34, 34, 0.80);
  backdrop-filter: blur(6px);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
}

.notification-cookies__description {
  color: #FFF;
  margin: 0;
}

.notification-cookies__link {
  color: #66B5FF;
  text-decoration: none;
}

.button--notification {
  border-color: #FFF;
  color: #FFF;
  font-weight: 400;
  text-transform: capitalize;
  background: transparent;
  transition: all 0.3s;
}

.button--notification:hover {
  border-color: var(--c-blue);
  background-color: var(--c-blue);
}

.notification-cookies .button-notification {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .notification-cookies {
    padding: 14px 16px;
    gap: 34px;
    font-size: 11px;
  }
}