html,body {
    background-color: #f5f5f5;
	color: #494747;
}
.simcontainer{
	font-family: Helvetica, Arial, sans-serif;
	padding: 0px;
	margin: 0 auto;
    font-size: 1rem;
}
.simcontainer .header{
	font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: lighter;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.simcontainer .banner{
    margin-bottom: 30px;
	text-align: center;
}
.simList {
    border: 1px solid #d9d9d9;
    background-color: #fff;
    margin-bottom: 30px;
}
.img-responsive {
	width: 100%;
}
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  }
.clearfix::after {
  clear: both;
  }
.clearfix::before, .clearfix::after {
  display: table;
  content: ' '; }

.nlssubscription, .cofsubscription {
	padding: 20px;
    border-bottom: 1px solid #d9d9d9;
}
.consent{
    width: calc(100% - 55px);
    margin: 0;
    padding-right: 20px;
    float: left;
}
.consent .title{
    width: 200px;
    margin: 0;
    color: #494747;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    line-height: 1.5;
    padding-right: 20px;
	font-size:1rem;
}
.consent .question {
    margin: 0;
    padding-right: 40px;
    line-height: 1.6;
}
.state {
    width: 55px;
    float: left;
}
.hidden{
  display: none;
}

@media screen and (min-width: 600px) {
.simcontainer{
	max-width: 1150px;
}
.consent .question {
    display: table-cell;
    max-width: 60%;
}
.consent .title {
    display: table-cell;
    vertical-align: top;
}
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}

/* 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: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
	position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
  background-color: #9bbb04;
}

input:focus + .slider {
  box-shadow: 0 0 1px #9bbb04;
}

input:checked + .slider:before {
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 32px;
}

.slider.round:before {
  border-radius: 50%;
}