

.widget_cookie {
  width: 100vw;
  padding: 4px 20px;
  position: fixed;
  z-index:6;
  bottom: 0;
  right: 0;
  background: #fff;
  transition: opacity 1.2s, transform 1.2s;
  justify-content: space-between;
  align-items: center;
  border: 2px solid var(--theme-color-primary, #63aa28);
}

.widget_cookie__style1 {
  border-color: #63aa28;
}

.widget_cookie__style1 .widget_cookie__btn-close-cookie {
  background-color: #63aa28;
}

.widget_cookie__style2 {
  border-color: var(--colorSunglow);
}

.widget_cookie__style2 .widget_cookie__btn-close-cookie {
  background-color: var(--colorSunglow);
}

.widget_cookie__style3 {
  border-color: #e12a2a;
}

.widget_cookie__style3 .widget_cookie__btn-close-cookie {
  background-color: #e12a2a;
}

.widget_cookie__style4 {
  border-color: #0082d1;
}

.widget_cookie__style4 .widget_cookie__btn-close-cookie {
  background-color: #0082d1;
}

.widget_cookie__style5 {
  border-color: #159dba;
}

.widget_cookie__style5 .widget_cookie__btn-close-cookie {
  background-color: #159dba;
}


.widget_cookie__text {
  margin: 0 auto;
  color: rgba(25, 25, 25, 0.6);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  color: rgba(25, 25, 25, 0.6);
  line-height: 20px;
}

.widget_cookie a {
  color: var(--theme-b-link);
}

.widget_cookie__btn-close-cookie {
  position: absolute;
  right: 40px;
  background-size: 100% 100%;
  width: 111px;
  height: 26px !important;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
  font-size: 13px;
  line-height: 19px;
}

.widget_cookie .btn-close-cookie:hover {
  opacity: 0.5;
}

.widget_cookie.cookie__hide {
  transition-delay: 0s;
  opacity: 0 !important;
  transform: translateY(20px) !important;
}

@media screen and (max-width: 1024px) {
  .widget_cookie {
    padding: 4px 14px;
  }

  .widget_cookie__btn-close-cookie {
    height: 34px !important;
  }

  .widget_cookie {
    bottom: 68px;
    padding: 4px 16px;
  }
  
  .widget_cookie__btn-close-cookie {
    position: static;
    right: 0px;
  }
  
  .widget_cookie__text {
    margin: 0;
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .widget_cookie {
    padding: 2px 16px;
  }
  
  .widget_cookie__text {
    line-height: 1 !important;
  }
}