@font-face{
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face{
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face{
  font-family: 'Oswald';
  src: url('../fonts/Oswald-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face{
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face{
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face{
  font-family: 'Oswald';
  src: url('../fonts/Oswald-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
.consent-banner-wrapper{
  position: fixed;
  bottom: 0;
  left: 0;
  font-family: 'Oswald', Arial, sans-serif;
  width: 100%;
  z-index: 9999;
  display: none;
}
.default-bar-wrapper{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #eef1f3;
  padding: 40px 100px;
  box-sizing: border-box;
  width: 100%;
  -webkit-box-shadow: 0px -2px 10px rgb(211 211 211 / 75%);
  -moz-box-shadow: 0px -2px 10px rgb(211 211 211 / 75%);
  box-shadow: 0px -2px 10px rgb(211 211 211 / 75%);
  transition: .3s all;
}
.default-bar-wrapper.inactive{
  display: none;
  transition: .3s all;
}
.consent-banner-wrapper .default-bar-left{
  width: calc(100% - 400px);
}
.consent-banner-wrapper .default-bar-left p.title{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  text-align: left;
  color: #000;
}
.consent-banner-wrapper .default-bar-left p{
  font-size: 16px;
  margin: 0;
}
.consent-banner-wrapper .default-bar-left p a{
  font-weight: 700;
  color: #000;
}
.consent-banner-wrapper .default-bar-right{
  width: 380px;
}
.consent-banner-wrapper .default-bar-right span.action-button{
  background-color: #b23427;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  margin: 0 10px 0 0;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
  user-select: none;
}
.consent-banner-wrapper .default-bar-right span.settings-button{
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  text-decoration: underline;
  user-select: none;
}
.consent-banner-wrapper .close-default-bar,
.consent-banner-wrapper .close-settings-bar{
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.consent-banner-wrapper .close-settings-bar{
  position: absolute;
  right: 20px;
  top: 15px;
}
.consent-banner-wrapper .close-default-bar:before,
.consent-banner-wrapper .close-default-bar:after,
.consent-banner-wrapper .close-settings-bar:before,
.consent-banner-wrapper .close-settings-bar:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #000;
}
.consent-banner-wrapper .close-default-bar:before,
.consent-banner-wrapper .close-settings-bar:before{
  transform: rotate(45deg);
}
.consent-banner-wrapper .close-default-bar:after,
.consent-banner-wrapper .close-settings-bar:after{
  transform: rotate(-45deg);
}
.consent-banner-wrapper .settings-bar-wrapper{
  position: fixed;
  top: 0;
  left: -501px;
  width: 500px;
  height: 100vh;
  z-index: 9999;
  background-color: #eef1f3;
  padding: 24px;
  box-sizing: border-box;
  transition: .3s all;
}
.consent-banner-wrapper .settings-bar-wrapper.active{
  left: 0;
  transition: .3s all;
  overflow-y: auto;
}
.consent-banner-wrapper .settings-bar-wrapper p.settings-title,
.consent-banner-wrapper .settings-bar-wrapper h2{
  font-size: 25px;
  font-weight: 700;
  padding: 0 50px 0 0;
  color: #000;
}
.consent-banner-wrapper .settings-bar-wrapper h2{
  font-size: 20px;
  padding: 0;
}
.consent-banner-wrapper .settings-bar-wrapper p{
  font-size: 18px;
  font-weight: 300;
  color: #000;
}
.consent-banner-wrapper .settings-bar-wrapper p a{
  color: #000;
  text-decoration: none;
}
.consent-banner-wrapper .settings-bar-list ul{
  list-style: none;
  padding: 0;
}
.consent-banner-wrapper .settings-bar-list ul li{
  border-top: 1px solid #000;
  padding: 10px 0;
  margin: 0;
}
.consent-banner-wrapper .settings-bar-list ul li:last-child{
  border-top: 1px solid #000;  
}
.consent-banner-wrapper .settings-bar-list ul li a.group-info{
  color: #b23427;
  font-size: 16px;
  display: block;
  text-align: right;
  text-decoration: underline;
}
.consent-banner-wrapper .settings-bar-list ul li .cookie-group-header{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.consent-banner-wrapper .settings-bar-wrapper .settings-bar-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 30px 0;
}
.consent-banner-wrapper .settings-bar-wrapper .settings-bar-actions span.action-button{
  background-color: #b23427;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  margin: 0 10px 0 0;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
  user-select: none;
}
.group-switch{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.group-switch input{ 
  opacity: 0;
  width: 0;
  height: 0;
}
.group-slider{
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.group-slider:before{
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .group-slider{
  background-color: #4daf41;
}
.group-switch.disabled input:checked + .group-slider{
  background-color: #a3d39d;
}
input:focus + .group-slider{
  box-shadow: 0 0 1px #4daf41;
}
input:checked + .group-slider:before{
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.group-slider.group-slider-round{
  border-radius: 34px;
}
.group-slider.group-slider-round:before{
  border-radius: 50%;
}


@media (max-width: 991px){
  .default-bar-wrapper{
    padding: 20px;
  }
  .consent-banner-wrapper .default-bar-left{
    width: 100%;
    margin: 0 0 15px 0;
  }
  .consent-banner-wrapper .default-bar-right{
    width: 100%;
  }
  .consent-banner-wrapper .close-default-bar{
    position: absolute;
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 500px){
  .consent-banner-wrapper .settings-bar-wrapper{
    width: 100%;
  }
}