#ccc-banner[hidden],
#ccc-modal[hidden] {
  display: none !important;
}

.ccc-banner {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 99999;
}

.ccc-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #111;
  color: #fff;
  border-radius: 0px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ccc-banner__text {
  font-size: 12px;
  line-height: 1.3;
  max-width: 700px;
}

.ccc-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ccc-btn {
  border: 0;
  border-radius: 0px;
  padding: 5px 5px;
  cursor: pointer;
  font-weight: 600;
}

.ccc-btn--primary {
  background: #FC9515;
  color: #fff;
}

.ccc-btn--secondary {
  background: #e5e7eb;
  color: #111;
}

.ccc-btn--link {
  background: transparent;
  color: #fff;
  text-decoration: underline;
}

.ccc-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
}

.ccc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.ccc-modal__dialog {
  position: relative;
  width: calc(100% - 40px);
  max-width: 720px;
  margin: 60px auto;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  z-index: 2;
}

.ccc-modal__header,
.ccc-modal__footer {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.ccc-modal__footer {
  border-bottom: 0;
  border-top: 1px solid #eee;
}

.ccc-modal__content {
  padding: 10px;
}

.ccc-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ccc-modal__close {
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.ccc-option {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.ccc-option:last-child {
  border-bottom: 0;
}

.ccc-option p {
  margin: 6px 0 0;
  color: #555;
  font-size: 12px;
}

.ccc-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ccc-switch input {
  display: none;
}

.ccc-switch span {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #ccc;
  position: relative;
  display: inline-block;
}

.ccc-switch span:after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: all .2s ease;
}

.ccc-switch input:checked + span {
  background: #FC9515;
}

.ccc-switch input:checked + span:after {
  left: 23px;
}

.ccc-reopen-settings {
  position: fixed;
  left: 0px;
  bottom: 20px;
  z-index: 9999;
  border: 0;
  border-radius: 0 200px 200px 0;
  background: #1D3C41;
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 13px;
}

@media (max-width: 768px) {
  .ccc-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ccc-option {
    flex-direction: column;
    align-items: flex-start;
  }
}
