.paper-snackbar {
    transition-property: opacity, bottom, left, right, width, margin, border-radius;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    background-color: #E20613;
    align-items: center;
    display: flex;
    color: white;
    opacity: 0;
    border-radius: 4px !important;
    border: 1px solid #fff;
    box-shadow: 1px 1px 7px #aaa;
    padding: 30px 10px;
    position: fixed;
    z-index: 100;
    left: 110px;
    top: 140px !important;
    margin: 0 !important;
    height: 50px;
    width: 320px;
}

.paper-snackbar .action {
    right: 10px;
    bottom: 12px;
    position: absolute;
    background: inherit;
    display: inline-block;
    border: none;
    font-size: inherit;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    margin: 0px 0px 0px 10px;
    padding: 0px;
    min-width: min-content;
    border: 1px solid #fff;
    padding: 8px;
}

.paper-snackbar.topics {
    vertical-align: middle;
    text-align: center;
    left: 350px !important;
    top: 200px !important;
    display: inline-block !important;
    line-height: 0 !important;
    position: absolute;
}

@-moz-document url-prefix() { /* Firefox */
    .paper-snackbar {
        border-radius: 0 !important;
        width: 362px;
        font-size: 16px;
        left: 270px;
        top: 140px !important;
    }
}

@supports (-ms-ime-align:auto) {  /* IE */
    .paper-snackbar {
        bottom: 60px !important;
        top: unset !important;
        border-radius: 0 !important;
        border: 2px solid #fff;
        right: calc(50% - 160px);
        left: auto;
        z-index: 9999999;
    }
}

@media (min-width: 640px) {
    .paper-snackbar {
        /*
        Desktop:
          Single-line snackbar height: 48 dp tall
          Minimum width: 288 dp
          Maximum width: 568 dp
          2 dp rounded corner
          Text: Roboto Regular 14 sp
          Action button: Roboto Medium 14 sp, all-caps text
          Default background fill: #323232 100%
        */
        min-width: 288px;
        max-width: 568px;
        display: inline-flex;
        border-radius: 5px;
        margin: 24px;
        bottom: -100px;

    }
}

@media (max-width: 640px) {
    .paper-snackbar {
        /*
        Mobile:
          Single-line snackbar height: 48 dp
          Multi-line snackbar height: 80 dp
          Text: Roboto Regular 14 sp
          Action button: Roboto Medium 14 sp, all-caps text
          Default background fill: #323232 100%
        */
        left: 0px;
        right: 0px;
    }
}

form .form-submit button.webpushButton {
    position: relative;
    margin: 0 auto;
    width: auto;

    display: block;
    height: 44px;
    background: #ffffff;
    color: #454545;
    border: 1px solid #cccccc;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    line-height: 42px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    padding: 0 10px;
    transition: color 0.125s ease;
    -o-transition: color 0.125s ease;
    -webkit-transition: color 0.125s ease;
}

form .form-submit button.webpushButton:hover {
    color: #e2021b;
}

.webpushHeader {
    width: 100%;
    /*padding: 0 10px;*/
    position: relative;
    margin-left: 20px;
}

.webpushHeader h2 {
    display: inline-block;
    color: #999;
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: 1;
    margin: 4px 0 5px
}

.webpushCheckbox {
    vertical-align: middle;
    position: relative;
    bottom: 1px;
}

.webpushText {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    margin-left: -30px;
}

.container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-left: 5px;
    cursor: pointer;
    /*font-size: 20px;*/
    -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: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ccc;
}

.container:hover input ~ .checkmark {
    background-color: #9b9b9b;
}

.container input:checked ~ .checkmark {
    background-color: #e2021b;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 8px;
    border: solid white;
    line-height: 16px;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fa {
    margin-left: -12px;
    margin-right: 8px;
}