.ws-anim {
  transition: visibility .4s ease, opacity .4s ease, transform .4s ease !important;
  opacity: 1;
  transform: scale(1);
  visibility: visible !important;
}

.ws-cookies-bar {
  font: inherit;
  width: calc(100% - 48px);
  max-width: 1080px;
  left: 0;
  right: 0;
  bottom: 24px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  position: fixed;
  box-sizing: border-box;
  padding: 32px 40px;
  color: #f7f7f7;
  background-color: rgba(25, 30, 40, 0.85);
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 24px 70px rgb(0 5 20 / 46%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
}

.ws-cookies-bar-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.ws-cookies-bar-title {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.25em;
  font-weight: 600;
}

.ws-cookies-bar-txt {
  max-width: 780px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.65;
}

.ws-cookies-bar-btn {
    color: #ffffff;
    background: #376DF9;
    min-width: 150px;
    width: auto;
    padding: 13px 28px;
    margin: 0 6px;
    display: inline-block;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    text-align: center;
    border-radius: 12px;
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
    /* text-transform: uppercase; */
    /* letter-spacing: .1rem; */
}

.ws-cookies-bar-btn.ws-light {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(#191e28, #191e28) padding-box,
    linear-gradient(90deg, #376DF9 0%, #DD3660 100%) border-box;
}

.ws-cookies-bar-btn.ws-right {
  float: none;
}

.ws-cookies-bar-btn.ws-xs {
  width: auto;
}

.ws-cookies-bar-btn:hover {
  box-shadow: 0 8px 20px rgba(55, 109, 249, 0.4);
  transform: translateY(-1px);
}

.ws-cookies-bar-btn.ws-light:hover {
  color: #fff;
  background: linear-gradient(#191e28, #191e28) padding-box,
    linear-gradient(90deg, #376DF9 0%, #DD3660 100%) border-box;
}

.ws-link {
  color: #DD3660;
  background: transparent;
  border-color: transparent;
  display: inline;
  padding-bottom: 0;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  border: 0;
}

.ws-simple-dialog-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  background-color: rgba(0, 6, 22, 0.56);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font: inherit;
  overflow-x: hidden;
  overflow-y: auto;
}

.ws-dialog {
  display: none;
  max-width: 40em;
  border-radius: 22px;
  display: flex;
  align-items: center;
  transform: none;
}

.ws-simple-dialog {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  background-color: rgba(25, 30, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 90px rgb(0 5 20 / 58%), 0 0 50px rgb(81 52 210 / 12%);
}

.ws-simple-dialog h3 {
  margin-bottom: 0em;
  font-size: 1.05em;
  float: left;
  font: inherit;
  color: #fff;
  font-weight: 600;
}

.ws-modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(101, 123, 169, 0.22);
  padding: 1.25rem 1.4rem;
}

.ws-modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  margin-top: 0;
}

.ws-dialog-content {
  font-size: 12px;
  line-height: 1.5em;
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.ws-modal-body {
  overflow-y: auto;
  min-height: 400px;
  padding: 1rem 1rem;
}

.ws-modal-footer {
  padding: 1rem 1rem;
  display: flex;
  gap: 12px;
}

.ws-modal-footer .ws-cookies-bar-btn {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
}

button.ws-close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  font-size: 24px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: color .2s ease, transform .2s ease;
}

button.ws-close:hover {
  color: #DD3660;
  transform: rotate(90deg);
}

.ws-dialog-setting {
  border: 1px solid rgba(255, 255, 255, 0.04);
  background-color: rgba(25, 30, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1em 1.3em;
  border-radius: 12px;
  margin-top: 10px;
  transition: background-color .25s ease;
  min-height: 60px;
}

.ws-dialog-setting:hover {
  background-color: rgba(25, 30, 40, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
  transition: background-color .25s ease;
}

.ws-switcher {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 50px;
  height: 25px;
  line-height: 25px;
  margin: 0px;
  font-size: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  float: right;
}

.ws-switcher input {
  display: none;
}

.ws-switcher-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #6d7482;
  border-radius: 50%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-animation-name: pulsein;
  animation-name: pulsein;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
}

.ws-switcher-indicator::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 50px;
  height: 6px;
  background-color: #4b5260;
  border-radius: 10px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

input:checked+.ws-switcher-indicator::after {
  background-color: #DD3660;
  -webkit-transform: translateX(25px);
  transform: translateX(25px);
  -webkit-animation-name: pulseout;
  animation-name: pulseout;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
}

input:checked+.ws-switcher-indicator::before {
  background: linear-gradient(90deg, #376DF9 0%, #DD3660 100%);
}

input:disabled+.ws-switcher-indicator::after, input:disabled+.ws-switcher-indicator::before {
  opacity: .72;
}

@media screen and (max-width: 768px) {
  .ws-cookies-bar {
    width: calc(100% - 24px);
    bottom: 12px;
    padding: 24px 20px;
    border-radius: 14px;
    font-size: 14px;
  }

  .ws-cookies-bar-content {
    margin: 0 auto;
    padding: 0;
    margin: 0;
  }

  .ws-cookies-bar-btn {
    width: 100%;
    margin: 0 0 10px;
  }

  .ws-simple-dialog-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
  }

  .ws-simple-dialog {
    width: 100%;
    padding-bottom: 15px;
    transform: none;
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
    height: calc(100% - 1rem);
    position: inherit !important;
    left: inherit;
    top: inherit;
    overflow-y: auto;
  }

  .ws-simple-dialog h3 {
    font-size: 0.95em;
  }

  .ws-dialog-setting {
    padding: 0.8em 1em;
  }

  .ws-cookies-bar-btn.ws-xs {
    width: 100%;
  }

  .ws-modal-footer {
    flex-direction: column;
  }
}
