.special__row {
  width: 100%;
  min-height: 50px;
  background: rgb(115, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(115, 0, 0, 1) 0%,
    rgba(153, 0, 0, 1) 100%
  );
  border-radius: 10px;
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 1rem !important;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.special__row:hover {
  background-color: #420101;
}

.special__row span, .special__row i
{
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////*/
.special-modal-container {
  width: 100%;
  position: fixed;
  bottom: 10px;
  z-index: 998;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
}

.special-modal-container .cookie-container {
  width: 100%;
  max-width: 1200px;
  min-height: 80px;
  background: rgb(115, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(115, 0, 0, 1) 0%,
    rgba(153, 0, 0, 1) 100%
  );
  box-shadow: 0 0 14px rgb(7, 7, 7);
  padding: 3rem;
}
.special-modal-container .cookie-container p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 2rem;
}
.special-modal-container .cookie-container p span {
  text-decoration: underline !important;
  cursor: pointer;
}

.special-modal-container .cookie-container .cookie-button-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.special-modal-container .cookie-container .cookie-button-container button {
  height: 35px;
  background-color: #696969;
  border: none;
  outline: none;
  font-size: 13px;
  color: #fff;
  padding: 0.3rem 0.9rem;
}
.special-modal-container .cookie-container .cookie-button-container span {
  text-decoration: underline !important;
  color: #fff;
  cursor: pointer;
}

.cookie-details-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00000094;
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cookie-details-container .cookie-details {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
  min-height: 500px;
  background-color: #d6d6d6;
}
.cookie-details-container .cookie-details .cookie-d-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #888888;
  padding: 1rem;
}
.cookie-details-container .cookie-details .cookie-d-header .cookie-d-logo {
  max-width: 110px;
  overflow: hidden;
}
.cookie-details-container .cookie-details .cookie-d-header .cookie-d-logo img {
  width: 100%;
}
.cookie-details-container .cookie-details .cookie-d-header i {
  color: #000;
  font-size: 30px;
  cursor: pointer;
}
