.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 6px
}

.checkmark2 {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 2px solid #006d44;
    border-radius: 6px
}

.container:hover input~.checkmark, .container:hover input~.checkmark2 {
    background-color: #ccc;
}

.container input:checked~.checkmark {
    background-color: #006d44;
    border-radius: 6px;
}

.container input:checked~.checkmark2 {
    background-color: #db272d !important;
    border-radius: 6px;
}

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

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

.container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.container .checkmark2:after {
    left: 4px;
    top: 0px;
    width: 8px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.selected_topic {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 10px;
    background: #e2e2e2;
    border-radius: 10px;
    margin: 1px;
    font-size: 12px;
}

.selected_topic:hover {
    background: #d8d8d8;
}

.selected_topic_remove {
    background: none;
    border: none;
}

.selected_topic_remove:hover {
    opacity: 1;
}

.selected_topic_remove:before, .selected_topic_remove:after {
    position: absolute;
    content: ' ';
    margin-left: -6px;
    margin-top: -9px;
    height: 10px;
    width: 2px;
    background-color: #333;
}

.selected_topic_remove:before {
    transform: rotate(45deg);
}

.selected_topic_remove:after {
    transform: rotate(-45deg);
}

.nl_label {
    background: white !important;
}

.select_topics {
    padding: 50px;
}

.topic_label {
    margin-left: 10px;
}

.cont_newsletter {
    padding: 50px;
    max-width: 1600px;
    margin: 0 auto !important;
}

label.container.nl_label.privacy {
    margin-left: 84px;
}

.selected_topics {
    margin-top: 30px !important;
}

.titleSection {
    border-top: 1px #ccc dotted;
    color: #454545;
    padding-top: 26px;
}

/* modals */

.topics_modal
{
    width: 90% !important;
    height: 80% !important;
    overflow: auto;
    border-radius: 10px;
}

jw-modal {
    display: none;
}

jw-modal .jw-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    overflow: auto;
    margin: 0 auto;
}

jw-modal .jw-modal .jw-modal-body {
    padding: 20px;
    background: #fff;
    margin: 40px;
    border-radius: 10px;
    margin: 0 auto !important;
    margin-top: 32px !important;
}

jw-modal .jw-modal-background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.75;
    z-index: 900;
}

body.jw-modal-open {
    overflow: hidden;
}