@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600&display=swap');

.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-family: 'Roboto', sans-serif;
  width: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  position: fixed;
  z-index: 999;
  padding: 2em;
  color: #3C3C3C;
  background-color: #FFF;
  font-size: 14px;
  line-height: 1.5em;
  box-shadow: 0 0.625em 1.875em rgb(2 2 3 / 28%);
}

.ws-cookies-bar-content {
  max-width: 40em;
  margin: 0 auto;
}

.ws-cookies-bar-title {
  margin-bottom: 0.7em;
  font-size: 1.35em;
}

.ws-cookies-bar-txt {
  margin-bottom: 1.4em;
  font-size: 14px;
  line-height: 1.5em;
}

.ws-cookies-bar-btn {
  color: #131414;
background: rgb(214,201,152);
background: linear-gradient(90deg, rgba(214,201,152,1) 0%, rgba(180,156,119,1) 33%, rgba(245,245,232,1) 66%, rgba(172,148,112,1) 100%);
border-color: transparent;
  padding: 1em 1.7em;
  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: 0;
  width: 48.5%;
  border: 0;
  font-weight: 600;
  font-size: 12px;
}

.ws-cookies-bar-btn.ws-light {
  color: #3C3C3C;
  background: #EBEBEB;
}

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

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

.ws-link {
  color: #3C3C3C;
  background: #fff;
  border-color: #FFF;
  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, 0, 0, 0.6);
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

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

.ws-simple-dialog {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ccc;
  background-color: #fff;
  color: #3C3C3C;
}

.ws-simple-dialog h3 {
  margin-bottom: 0em;
  font-size: 1.05em;
  float: left;
  font-family: 'Roboto', sans-serif;
  color: #3C3C3C;
}

.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: 0.3rem;
  border-top-right-radius: 0.3rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
  padding: 1rem 1rem;
}

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

.ws-dialog-content {
  font-size: 14px;
  line-height: 1.5em;
  padding-bottom: 20px
}

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

.ws-modal-footer {
  padding: 1rem 1rem;
}

button.ws-close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  font-size: 24px;
  cursor: pointer;
  color: #3C3C3C;
}

.ws-dialog-setting {
  background: #F5F5F5;
  padding: 1em 1.3em;
  border-radius: 0;
  margin-top: 10px;
  transition: background-color .25s ease;
  min-height: 60px;
}

.ws-dialog-setting:hover {
  background: #EBEBEB;
  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: #d5d5d5;
  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: #d5d5d5;
  border-radius: 10px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

input:checked+.ws-switcher-indicator::after {
  background-color: #3C3C3C;
  -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-color: #3C3C3C;
}

input:disabled+.ws-switcher-indicator::after, input:disabled+.ws-switcher-indicator::before {
  background-color: #e5e5e5;
}

@media screen and (max-width: 768px) {
  .ws-cookies-bar {
    width: auto;
  }

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

  .ws-cookies-bar-btn {
    width: 100%;
    margin-bottom: 5px
  }

  .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%;
  }
}
