  /* Start Check Box */

.ns-checkboxes__item {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.25;
    display: block;
    position: relative;
    min-height: 40px;
    margin-bottom: 10px;
    padding-left: 40px;
    clear: left;
}
@media print {
    .ns-checkboxes__item {
        font-family: sans-serif;
    }
}

@media print {
    .ns-checkboxes__item {
        font-size: 14pt;
        line-height: 1.15;
    }
}
.ns-checkboxes__item:last-child,
.ns-checkboxes__item:last-of-type {
    margin-bottom: 0;
}
.ns-checkboxes__item:hover .ns-label-span  {
	background-color: #f8d44c;
	transition: 0.2s ease;
}
.ns-checkboxes__input {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: -2px;
    left: -2px;
    width: 44px;
    height: 44px;
    margin: 0;
    opacity: 0;
}
.ns-checkboxes__label {
    display: inline-flex;
    margin-bottom: 0;
    padding: 8px 15px 5px;
    cursor: pointer;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
label.ns-checkboxes__label.noBold{
	font-family: "open_sansregular",Helvetica,Arial,Tahoma,sans-serif;
	font-weight: normal;
}
.ns-checkboxes__label:before {
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #A2A2A2;
    background: #fff;
	transition: 0.2s ease;
}
.ns-checkboxes__input:checked + .ns-checkboxes__label:before {
	background: #0058A4;
} 
.ns-checkboxes__label:after {
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 11px;
    left: 9px;
    width: 23px;
    height: 12px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border: solid;
    border-width: 0 0 5px 5px;
    border-top-color: transparent;
    opacity: 0;
    background: transparent;
	color: #fff;
}
.ns-checkboxes__hint {
    display: block;
    padding-right: 15px;
    padding-left: 15px;
	line-height: 1.5rem;
}

.ns-checkboxes__input:focus + .ns-checkboxes__label:before, .ns-checkboxes__input:hover + .ns-checkboxes__label:before  {
    -webkit-box-shadow: 0 0 0 3px #F8D44C;
    box-shadow: 0 0 0 3px #F8D44C;
}
.ns-checkboxes__input:checked + .ns-checkboxes__label:after {
    opacity: 1;
}
.ns-checkboxes__input:disabled,
.ns-checkboxes__input:disabled + .ns-checkboxes__label {
    cursor: default;
}
.ns-checkboxes__input:disabled + .ns-checkboxes__label {
    opacity: 0.5;
}
.ns-checkboxes__conditional {
    margin-bottom: 15px;
    margin-left: 18px;
    padding-left: 33px;
    border-left: 4px solid #b1b4b6;
}
@media (min-width: 40.0625em) {
    .ns-checkboxes__conditional {
        margin-bottom: 20px;
    }
}
.js-enabled .ns-checkboxes__conditional--hidden {
    display: none;
}
.ns-checkboxes__conditional > :last-child {
    margin-bottom: 0;
}
.ns-checkboxes--small .ns-checkboxes__item {
    min-height: 0;
    margin-bottom: 0;
    padding-left: 34px;
    float: left;
}
.ns-checkboxes--small .ns-checkboxes__item:after {
    content: "";
    display: block;
    clear: both;
}
.ns-checkboxes--small .ns-checkboxes__input {
    left: -10px;
}
.ns-checkboxes--small .ns-checkboxes__label {
    margin-top: -2px;
    padding: 13px 15px 13px 1px;
    float: left;
}
.ns-checkboxes--small .ns-checkboxes__item .ns-label-span {
	padding: 0px 12px;
    position: relative;
    left: -10px; 
}
@media (min-width: 40.0625em) {
    .ns-checkboxes--small .ns-checkboxes__label {
        padding: 11px 15px 10px 1px;
    }
}
.ns-checkboxes--small .ns-checkboxes__label:before {
    top: 8px;
    width: 24px;
    height: 24px;
}
.ns-checkboxes--small .ns-checkboxes__label:after {
    top: 15px;
    left: 6px;
    width: 12px;
    height: 6.5px;
    border-width: 0 0 3px 3px;
}
.ns-checkboxes--small .ns-checkboxes__hint {
    padding: 0;
    clear: both;
}
.ns-checkboxes--small .ns-checkboxes__conditional {
    margin-left: 10px;
    padding-left: 20px;
    clear: both;
}
.ns-checkboxes--small .ns-checkboxes__item:hover .ns-checkboxes__input:not(:disabled) + .ns-checkboxes__label:before {
    -webkit-box-shadow: 0 0 0 10px #F8D44C;
    box-shadow: 0 0 0 5px #F8D44C;
}
.ns-checkboxes--small .ns-checkboxes__item:hover .ns-checkboxes__input:focus + .ns-checkboxes__label:before {
    -webkit-box-shadow: 0 0 0 3px #F8D44C, 0 0 0 5px #F8D44C;
    box-shadow: 0 0 0 3px #F8D44C, 0 0 0 5px #F8D44C;
}

  /* end Check Box */