.cookie-notice-border-box {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
#rogue-cookie-notice-box {
    background: #34A798;
    border-radius: 34px;
    padding: 30px;
    width: 400px;
    max-width: 92vw;
    max-height: 90vh;
    position: fixed;
    bottom: 2vw;
    left: 4vw;
    z-index: 10000;
    transform: translateY(100vh);
    -webkit-transform: translateY(100vh);
    -moz-transform: translateY(100vh);
    transition: all 0.8s ease 0s;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#rogue-cookie-notice-box::-webkit-scrollbar {
    display: none;
    width: 0;
    background:transparent;
}

#rogue-cookie-notice-box.show {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
}

#rogue-cookie-notice-box.settings-open {
    width: 92vw;
}

.cookie-notice-content {
    font-size: calc(14px + 0.2vw);
    font-size: -webkit-calc(14px + 0.2vw);
    font-size: -moz-calc(14px + 0.2vw);
    color: #ffffff;
}

.cookie-notice-content p {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.cookie-notice-settings {
    width: 100%;
    align-items: center;
}

.cookie-notice-section {
    margin-bottom: 10px;
}

.cookie-notice-section-title {
    font-weight: bold;
    font-size: 16px;
}

.cookie-notice-header .cookie-notice-settings {
    display: grid;
    align-items: center;
    grid-template-columns: 60px auto;
}


.cookie-notice-header .cookie-notice-section-title {
    font-size: 20px;
}

.cookie-notice-section-action {
    margin-top: 5px;
}

.cookie-notice-section-content {
    margin-top: 20px;
}

.cookie-notice-section-content p.external-ref-notice {
    margin-top: 5px;
    font-size: 13px;
}

.cookie-notice-section-content p.external-ref-notice a {
    color: #252525;
}

.rogue-cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.rogue-cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.rogue-cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cccccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.rogue-cookie-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

.rogue-cookie-switch input:checked + .rogue-cookie-slider {
  background-color: #252525;
}

.rogue-cookie-switch input:focus + .rogue-cookie-slider {
  box-shadow: 0 0 1px #252525;
}

.rogue-cookie-switch input:checked + .rogue-cookie-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.cookie-notice-button {
    background: #252525;
    border-radius: 34px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: calc(16px + 0.2vw);
    font-size: -webkit-calc(16px + 0.2vw);
    font-size: -moz-calc(16px + 0.2vw);
    max-width: 200px;
    margin: 0;
}

.cookie-notice-button:hover {
    background: #ffffff;
    color: #252525;
}

.update-rogue-cookie-notice-settings {
    text-align: center;
    margin: 0 auto;
    max-width: 250px;
    cursor: pointer;
    padding: 15px;
}

img.rogue-cookie-image {
    max-width: 50px;
}

.open-cookie-notice-settings {
    color: #252525;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin: 10px 0;
}

.cookie-notice-adjust-settings {
    padding: 20px 0;
    display: none;
}

.cookie-notice-adjust-settings.show {
    display: block
}

@media screen and (min-width: 680px) {

}

@media screen and (min-width: 1200px) {
    .cookie-notice-adjust-settings.show {
        display: grid;
        align-items: center;
        grid-template-columns: 30.33% 30.33% 30.33%;
        margin: 2%;
    }
}
