.cookie-con {
  position: fixed;
  bottom: 20px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  animation: slideUpFadeIn 0.6s ease-out forwards;
}

.cookie-block {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-text-col {
  display: flex;
  gap: 22px;
  align-items: center;
  width: 55%;
}

.cookie-text-col img {
  width: 66px;
  height: auto;
}

.cookie-text-col p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.cookie-text-col p a {
  text-decoration: underline;
  color: #0E26FF;
  transition: opacity 0.3s ease;
}

.cookie-text-col p a:hover {
  opacity: 0.7;
}

.cookie-btn-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cookie-btn-col button {
  width: 354px;
  padding: 18px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  border: none;
  background-color: #0E26FF;
  color: #FFFFFF;
  border-radius: 10px;
  transition: backround-color 0.3s ease;
}

.cookie-con-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  padding: 29px 24px;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10000000000;
  animation: slideUpFadeInMobile 0.6s ease-out forwards;
}

.cookie-con-mobile p {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 23px;
}

.cookie-con-mobile p a {
  color: #0E26FF;
  text-decoration: underline;
}

.cookie-con-mobile button {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  width: 100%;
  padding: 15px;
  background-color: #0E26FF;
  color: #FFFFFF;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease;
}

.cookie-con-mobile button:active {
  background-color: #000000;
}


.ui-container {
  max-width: 1200px;
  width: 100%;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 1200px) {
  .cookie-btn-col button {
      width: 270px;
  }
  .cookie-text-col {
      width: 65%;
  }
}

@media screen and (min-width: 1024px) {
  .cookie-btn-col button:hover {
      background-color: #000000;
  }
}

@media screen and (max-width: 1024px) {
  .cookie-text-col {
      gap: 10px;
  }
  .cookie-btn-col button {
      width: 200px;
  }
}

@media screen and (max-width: 992px) {
  .cookie-con-mobile {
      display: block;
  }
  .cookie-con {
      display: none;
  }
}