:root {
  --clRed: #d40101;
  --clRedHover: #960202;
  --clWhite: #ffffff;
  --clShineGray: #f6f7f8;
  --clLightGray: #f1f0f0;
  --clWineGray: #c7cacd;
  --clWhitetGray: #ebebeb;
  --clGray: #bfbfbf;
  --clBlackGray: #333333;
  --clBlack: #000000;
  --clOrange: #f47920;
  --clOrangeHover: #b4530d;
  --cllightGreen: #71bb4a;
  --clGreen: #5fad56;
  --clGreenHover: #3b7e33;
  --clSky: #258de7;
  --clSkyHover: #0966b7;
  --clYellow: #b0b307;
  --clYellowHover: #858803;
}

#policy .policy {
  background: #878787;
  width: 100%;
  color: var(--clWhite);
  padding: 1.6rem 0;
}
#policy .policy ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 0;
  margin: 0;
  padding: 0;
}
#policy .policy ul li {
  border-right: 0.1rem solid var(--clWhite);
  padding-right: 1.5rem;
}
#policy .policy ul li:last-child {
  border-right: 0;
}
#policy .policy ul li a {
  color: var(--clWhite);
}
#policy .policy ul li a:hover {
  text-decoration: underline !important;
}

@media (max-width: 991px) {
  #policy .policy ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #policy .policy ul li {
    border-right : 0;
    padding-right: 0;
  }
}

#policy .dbd {
  background: var(--clWhitetGray);
  width: 100%;
  color: var(--clBlackGray);
  padding: 1rem 0;
}
#policy .dbd img {
  max-width: 5rem;
}
#policy .policy_fix {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 29;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  gap: 1.5rem;
  width: 100%;
}
#policy .policy_fix.bottom {
  display: none;
}
#policy .policy_fix section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
#policy .policy_fix section p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  flex-wrap: wrap;
}
#policy .policy_fix section a {
  text-decoration: underline !important;
}
#policy .policy_fix h6,
#policy .policy_fix p {
  color: var(--clWhite);
}
#policy .policy_fix .confirm_close {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
#policy .policy_fix button {
  background: var(--clRed);
  color: var(--clWhite);
  border: 0;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
}
#policy .policy_fix button:hover {
  background: var(--clRedHover);
}
#policy .policy_fix button:last-child {
  background: var(--clWhite);
  color: var(--clBlackGray);
}
#policy .policy_fix button:last-child:hover {
  background: var(--clGray);
}
.policy p{
  text-align: center;
  margin-bottom: 16px;
}