/* cookie */
.cookie-block {
    padding: 9px 10px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #ce7c4d;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 14px;
    row-gap: 7px;
}
@media (max-width: 767px) {
    .cookie-block {
        flex-direction: column;
    }
}
.cookie-block__text {
    font-weight: 500;
    font-size: 12px;
    color: #fff;
}
.cookie-block__text a {
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}
.cookie-block__btn {
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    /*color: #e31e24;
    padding: 4px 17px 3px;
    background: #fff;
    border-radius: 250px;*/
}
.label {
  display: flex;
/*  align-items: center;
  justify-content: center;*/
}

.label-text {
  margin-left: 0.5em;
}

.tooltip-toggle {
  cursor: pointer;
  position: relative;

  .card-title {
  }

  &::before {
    position: absolute;
    top: -80px;
    left: -80px;
    background-color: #2B222A;
    border-radius: 5px;
    color: #fff;
    content: attr(aria-label);
    padding: 1rem;
    text-transform: none;
    transition: all 0.5s ease;
    width: 160px;
  }


  &::after {
    position: absolute;
    top: -12px;
    left: 9px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #2B222A;
    content: " ";
    font-size: 0;
    line-height: 0;
    margin-left: -5px;
    width: 0;
  }


  &::before,
  &::after {
    color: #efefef;
    font-family: monospace;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    text-align: center;
  }


  &:focus::before,
  &:focus::after,
  &:hover::before,
  &:hover::after {
    opacity: 1;
    transition: all 0.75s ease;
  }
}