.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

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

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

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

input:checked + .slider {
  background-color: #127b1f;
}
input:checked + .lock {
  background-color: #8BC5DA;
  /*A4BFDB*/
}

input:focus + .slider {
  box-shadow: 0 0 1px #127b1f;
}

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

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.c-details {
    width: 100%;
    float: left;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc;
	padding-bottom:5px;
}
.cookie-details:last-child {
    border-bottom: none;
}
.cookie-name {
    font-weight: bold;
    float: left;
    width: 15%;
    width: 130px;
}
.cookie-description {
    float: left;
    width: 70%;
}
.cp-cons {
    width: 60px;
    float: right;
	text-align:center;
}
@media only screen and (max-width: 599px) {
	.cookie-name {
	width: 90%;
	}
}
