.checks {
	width: 100%;
}

.check-container {
    display: block;
    width: 100%;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: capitalize;
    padding-left: 28px;
    margin-top: 10px;
}

.check-container:first-child {
    margin-top: 0;
}

@media(max-width: 767px) {
	.check-container {
        width: 100%;
    }
}

.check-container p {
    margin-top: 0;
}

.span-text, .check-container p {
    display: block;
    font-size: 13px;
	line-height: 1.2;
    padding-top: 1.5px;
    text-transform: none;
}

.sub-check {
    padding-left: 28px;
    margin-top: 10px;
}

.sub-check:first-child {
    margin-top: 0;
}

.check-container p {
    color: rgba(0,0,0,0.5);
}

.check-container:last-child {
	margin-right: 0;
}

.check-container input {
    position: absolute;
    left: 0;
    top: 0;
    height: auto;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
	display: flex;
	align-items: center;
	justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 19px;
    width: 19px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #DDDDDD;
}

.check-container:hover input ~ .checkmark {
    background-color: #fff;
}

.check-container input:checked ~ .checkmark {
    background-color: #fff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-container input:checked ~ .checkmark:after, .checkmark.check:after  {
    display: block;
}

.check-container .checkmark:after {
	content: '';
	width: 10px;
	height: 10px;
	background: #0a9886;
    border-radius: 2px;
}

.checks__title {
    font-family: 'DMSans-Bold';
    color: #4DB36D;
}

.sub-check-img {
    position: absolute;
    top: 29px;
    left: 10px;
}

/*slider*/
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 23px;
}

.check-container .switch-text {
    width: 10%;
    flex: 1 1;
    color: #343232;
    padding-right: 10px;
}

.switch-block {
    margin-top: 7px;
}

.switch-block:first-child {
    margin-top: 0;
}

.switch-block .check-container {
    display: flex;
    align-items: center;
    padding-left: 0;
}

.switch input {display:none;}

.slider-check {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #DBEADD;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-check:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider-check {
  background-color: #4DB36D;
}

input:focus + .slider-check {
  box-shadow: 0 0 1px #4DB36D;
}

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

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

.slider-check.round:before {
  border-radius: 50%;
  background: #fff;
}
