#newsletterList {
    border: 1px solid #ccc;
    border-radius: 3px;
}

.ui-page-theme-a .ui-focus {
    box-shadow: none;
}

.newsletter {
    display: flex;
    align-items: center;
    padding: 0;
}

.newsletter label {
    position: relative;
    margin: 0;
    width: 100%;
    cursor: pointer;
    padding: 10px 10px 10px 60px;
    transition: background-color .3s;
}

.newsletter label:hover {
    background-color: #eee;
}

.newsletter:not(:last-of-type) label {
    border-bottom: 1px solid #ddd;
}

.newsletter label.ui-checkbox-on {
    background-color: #def;
}

.newsletter:nth-child(even) {
    /*background-color: #eee;*/
}

.newsletter .title {
    font-family: DIN;
    font-size: 1em;
    text-transform: uppercase;
}

.newsletter input:focus {
    outline: none;
}

.newsletter input[type=checkbox] {
    position: absolute;
    display: block;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.newsletter input[type=checkbox]:after {
    content: "";
    display: block;
    height: 30px;
    width: 16px;
    position: absolute;
    border-bottom: 5px solid;
    border-right: 5px solid;
    border-color: #ccc;
    transform: rotateZ(35deg);
    top: -5px;
    left: 20px;
    transition: border-color .3s;
}

.newsletter input[type=checkbox]:focus {
    outline: none;
}

.newsletter input[type=checkbox]:checked:after {
    border-color: #9c9;
}

.ui-page-theme-a .ui-checkbox-on:after {
    background-color: transparent;
    border-color: transparent;
    border: 0 none;
    color: #fff;
    text-shadow: none;
    left: 0;
}

.backBtn {
    display: none;
    margin: 10px 0;
    padding: 4px 12px;
    cursor: pointer;
    border: 1px solid #072441;
    border-radius: 3px;
    font-weight: 700;
}
