* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family : 'shadows-it' , Tahoma;
}
.wrapper_cookiebox {
  position: fixed;
  bottom: 20px;
  right: -370px;
  max-width: 370px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000000000;
  text-align: justify;
  direction: rtl;
  font-family : 'shadows-it' , Tahoma;
  margin-left: 30px;
}

.wrapper_cookiebox.show {
  right: 10px;
  left:30px;
}


@media (max-width: 992px) {
.wrapper_cookiebox.show {
  right: 5px;
}

}

.wrapper_cookiebox header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.wrapper_cookiebox .data {
  margin-top: 16px;
}
.wrapper_cookiebox .data p {
  color: #333;
  font-size: 14px;
  font-family : 'shadows-it' , Tahoma;
  font-weight: 400px;
}
.data p a {
  color: #f01d24;
  text-decoration: none;
  font-weight: 400px;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper_cookiebox .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #f01d24;
  font-size: 14px;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
  font-weight: 400px;
}
.buttons #acceptBtn:hover {
  background-color: #000000;
}
#declineBtn {
  border: 2px solid #f01d24;
  background-color: #fff;
  color: #f01d24;
  font-weight: 400px;
}
#declineBtn:hover {
  background-color: #f01d24;
  color: #fff;
}

.social{color: #f01d24; font-size: 18px; font-weight: 400px;}
.header_title {color: #f01d24; font-weight: 500; font-size: 18px;}