* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
  --checkmark-color: #fff;
  --checkbox-color: #000;
  --checkbox-size: 16px;
  --label-color: #555;
}
body {
    background-image: url('https://source.unsplash.com/1600x900');
    //background-position: center;
    background-size: 100%;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #333;
    font-family: arial !important;
}

.unsub_body {
    width: 550px;
    -webkit-box-shadow: 0 0 10px 0px #646363;
    -moz-box-shadow: 0 0 1px 0 #ccc;
    display: inline-block;
    transform: translate(-50%, -50%);
    position: fixed;
    left: 50%;
    top: 50%;
    background-color: #fff;
    padding: 50px 50px;
}

.unsub_body_in {
    width: 100%;
    display: inline-block;
}

.unsub_body_in h3 {
    margin-bottom: 20px;
    margin-top: 0px;
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
}

.unsub_body_in label {
    margin-bottom: 0px;
    display: inline-block;
    font-weight: 500;
}

.unsub_body_in input[type='email'] {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #ccc;
    display: inline-block;
    margin-top: 5px;
}

.unsub_body_in input[type='submit'] {
    border: 0;
    background-color: #6161f5;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
	margin-top: 10px;
}

.unsub_body_in input[type='submit']:hover {
    background-color: #333;
}

.unsub_body_in h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.ul_style {
    margin: 0px;
    margin-bottom: 0px;
    padding: 0px;
    list-style: none;
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}

.ul_style li {}

.radio {
    margin: 0.5rem;
}

.radio input[type=radio] {
    position: absolute;
    opacity: 0;
}

.radio input[type=radio]+.radio-label:before {
	content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #6161f5;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
  top: -1px;
  margin-right: 8px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

.radio input[type=radio]:checked+.radio-label:before {
    background-color: #6161f5;
	box-shadow: inset 0 0 0 2px #fff;
}

.radio input[type=radio]:focus+.radio-label:before {
    outline: none;
    border-color: #6161f5;
}

.radio input[type=radio]:disabled+.radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}

.radio input[type=radio]+.radio-label:empty:before {
    margin-right: 0;
}

.alert_form {}

.alert_form p {
    color: #f00;
    font-style: italic;
    margin-bottom: 0;
    font-weight: 500;
}
.mt_10{margin-top: 0px;}
.header_ul{
	
}
.header_ul li{
	float: left;
	border: 1px solid #eee;
	background-color: #eee;
	margin-right: 10px;
	padding: 5px 20px;
	font-size: 14px;
	font-weight: bold;
}
article{
  background: #fff;
  display: none;
}
article.on{
  display: block;
}
.lef_ul {}
.lef_ul li {display: inline-block;}
section{
  background: #fff;
  display: none;
}
section.on{
  display: block;
}
.boxul{
	padding: 0;
	list-style: none;
}
.boxul li{
	display: inline-block;
	width: 180px;
}
.boxul:has(input[type="checkbox"]:checked) {
  background-color: #fff;
}

.checkbox-wrapper {
	margin: 0px 5px;
}
.textar{
	width: 100%;
	padding: 10px 10px;
	border: 1px solid #ccc;
	display: inline-block;
	margin-bottom: 10px;
	height: 100px;
  }
input[type="checkbox"] {
	position: relative;
	border: 1px solid #6161f5;
	border-radius: 0px;
	background-color: transparent;
	cursor: pointer;
	margin: 0;
    margin-right: 0px;
	height: 18px;
	width: 18px;
	-webkit-appearance: none;
	opacity: 1;
	isolation: isolate;
	top: 4px;
	margin-right: 5px;
}

input[type="checkbox"]:hover {
  opacity: 0.8;
}

input[type="checkbox"]:checked {
  --checkbox-color: #7f36f5;
  background-color: var(--checkbox-color);
  opacity: 1;
}

.checkbox-label {
	color: #333;
	cursor: pointer;
	user-select: none;
	opacity: 1;
}

.checkbox-label--strong {
  font-weight: 500;
}

.checkbox-label--desc {
  opacity: 0.8;
}

.checkbox-label--required {
  color: #f60;
  font-weight: 500;
}

input[type="checkbox"]:checked + .checkbox-label,
input[type="checkbox"]:hover + .checkbox-label {
  opacity: 1;
}

input[type="checkbox"]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 3px;
  height: 8px;
  border: solid var(--checkmark-color);
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}