* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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: 12px;
    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: red;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.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: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: -0.2em;
    margin-right: 10px;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.radio input[type=radio]:checked+.radio-label:before {
    background-color: red;
    box-shadow: inset 0 0 0 3px #f4f4f4;
}

.radio input[type=radio]:focus+.radio-label:before {
    outline: none;
    border-color: red;
}

.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;
}