:root{
  --praimary-color: #093b60;
  --ligte-blue: #7ba0c5;
  --secondary-color: #006495;
}
.tamalk-cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 10000;
  max-width: 920px;
  margin: 0 auto;
  padding: 22px;
  color: #fff;
  background: var(--praimary-color);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
}

.tamalk-cookie-consent[hidden] {
  display: none;
}

.tamalk-cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tamalk-cookie-consent__copy {
  flex: 1 1 auto;
}

.tamalk-cookie-consent__title {
  margin: 0 0 6px;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
}

.tamalk-cookie-consent__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.7;
}

.tamalk-cookie-consent__link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tamalk-cookie-consent__link:hover,
.tamalk-cookie-consent__link:focus {
  color: var(--secondary-color);
}

.tamalk-cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.tamalk-cookie-consent__button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tamalk-cookie-consent__button--reject {
  color: #fff;
  background: transparent;
}

.tamalk-cookie-consent__button--reject:hover,
.tamalk-cookie-consent__button--reject:focus {
  color: #242b4a;
  background: #fff;
}

.tamalk-cookie-consent__button--accept {
  color: #242b4a;
  background: #fff;
}

.tamalk-cookie-consent__button--accept:hover,
.tamalk-cookie-consent__button--accept:focus {
  background:var(--ligte-blue) ;
  border-color:var(--ligte-blue);
}

.tamalk-cookie-consent[dir="rtl"] {
  text-align: right;
}

@media (max-width: 767px) {
  .tamalk-cookie-consent {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 18px;
  }

  .tamalk-cookie-consent__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .tamalk-cookie-consent__actions {
    flex-direction: column-reverse;
  }

  .tamalk-cookie-consent__button {
    width: 100%;
  }
}
