
#accn-cookie-consent-wrapper{
	width:100%;
	position: fixed;
    bottom: 40px;
    z-index: 99;
}

#accn-cookie-consent {
    background: #fff3cd;
    padding: 10px;
    font-size: 0.8em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /*align-items: center;*/
    border: 1px solid #e9e9e9;
	margin:0 auto;
	width:100%;
    
}

#accn-cookie-consent p {
    margin: 0px;
    /* line-height: 1.3em; */
    /* text-align: justify; */
}

#accn-cookie-consent a {
    text-decoration: underline;   
    color: black;
}

#accn-cookie-consent a:focus,
#accn-cookie-consent a:hover {
    background-color: #e9e9e9;
}

#accn-cookie-consent button {
    background-color: #212721;
    color: white;
    border: 0;
    border-radius: 3px;
    /* padding: 5px 20px 5px 20px; */
    padding: 15px 25px 16px 25px;
    font-size: 0.9em;
}

#accn-cookie-consent button:focus,
#accn-cookie-consent button:hover {
    text-decoration: underline;
	cursor:pointer;
}

.accn-row.cookie_row_2{
	width:100%;
}


/****** Larger screens ******/

@media (min-width: 768px) { 

    #accn-cookie-consent {
        flex-direction: column;
       /* left: 24%;*/
        width: 100%; 
		max-width:1350px;
        bottom: 23px;
    }

    #accn-cookie-consent .button-wrapper {
        width: 100px;
        text-align: center;
		display:inline-block;
    }
    
}

.accn-toggle-button{
	display:inline-block;
	font-weight:700;
}

/* The switch - the box around the slider */
.consent_switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.consent_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.consent_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.consent_slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  
}

input:checked + .consent_slider {
  background-color: #006341;
}

input:focus + .consent_slider {
  box-shadow: 0 0 1px #006341;
}

input:checked + .consent_slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.consent_slider.consent_round {
  border-radius: 34px;
}

.consent_slider.consent_round:before {
  border-radius: 50%;
}