/* start base */
:root {
	/* colors */
	--none-color: transparent;
	--text-color: #fff;
	--dark-color: #000;
	--bg-color: #383c40;
	--white-color: #fff;
	--primary-color: #fbc010;
}

.text-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
/* end base */

/* start cookies */
.cookies {
    position: fixed;
    z-index: 10000;
    right: 0;
    bottom: 15px;
    display: flex;
    justify-content: flex-end;
    padding: 0px 25px;
    max-width: max-content;
}

.cookies__content-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 512px;
    width: 100%;
    color: var(--white-color);
    font-size: 16px;
    background-color: var(--bg-color);
}

.cookies__text-link {
    display: inline;
    text-decoration: underline;
    color: var(--primary-color);
}
/* end cookies */

/* start phone */
@media (max-width:767px) {
    .cookies {
        padding: 0px 10px;
    }
    
    .cookies__content-wrap {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      padding: 10px;
      font-size: 14px;
    }
    
    .cookies__btn {
        max-width: 100%;
        width: 100%;
    }
}

/* end phone */
@media (hover:hover) {
    .cookies__text-link:hover {
        text-decoration: none;
    }
}
