/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#subscribe-notifications-trigger {
    font-family: "FontAwesome";
    background: #0066cc;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #fff;
    z-index: 999;
    position: fixed;
    bottom: 75px;
    left: 15px;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#subscribe-notifications-trigger:hover {
    color: #0066cc;
    border-color: #0066cc;
    background: #fff;

}

#subscribe-notifications-trigger-text{
    padding: 7px 10px;
    background: #0066cc;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 11px;
    position: fixed;
    bottom: 130px;
    left: 5px;
    z-index: 1;
    display: none;
    transition: .5s all ease;
}
#subscribe-notifications-trigger-text::after{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #0066cc transparent transparent transparent;
    left: 19px;
    bottom: -10px;
}

#subscribe-notifications {
    display: none;
}

#subscribe-notifications h2 {
    background-color: #0066cc;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    padding: 20px 28px 20px;
}

#subscribe-notifications .inner {
    padding: 24px 30px 30px 30px;

}

#subscribe-notifications .inner p {
    color: #252525;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    margin: 0 0 20px 0;
    text-align: left;
}


#subscribe-notifications .items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

#subscribe-notifications .item {
    position: relative;
    text-align: left;
    height: 25px;
    margin-bottom: 5px;
    flex-basis: 100%;
}

#subscribe-notifications .item label {
    padding-left: 30px;
    font-size: 12px;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#subscribe-notifications .item input {
    position: absolute;
    top: -5px;
    left: 0;
    width: 20px;
    height: 20px;
    z-index: 10;
    opacity: 0;
}

#subscribe-notifications .item label a {
    font-size: 14px;
    color: #0066cc;
}

#subscribe-notifications .item label:before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #0066cc;
    display: flex;
    justify-content: center;
    align-items: center;
}

#subscribe-notifications .item input:checked ~ label:before {
    background: #0066cc;
    content: "\f00c";
    font-family: "FontAwesome";
    color: #fff;
    font-size: 15px;
    line-height: 17px;
}

#subscribe-notifications .buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#subscribe-notifications .button {
    flex-basis: 100%;
    margin: 10px 0;
    padding: 0 15px !important;
    height: 41px;
    line-height: 41px;
    border: 1px solid #0066cc;
    border-radius: 0 !important;
    font-weight: normal;
    text-transform: none !important;
    transition: all ease .25s;
}

#subscribe-notifications #subscribe-notifications-granted {
    color: #fff;
    background: #0066cc;
}

#subscribe-notifications #subscribe-notifications-granted:hover {
    color: #0066cc;
    background: #fff;
}

#subscribe-notifications #subscribe-notifications-denied {
    color: #0066cc;
    background: #fff;
}

#subscribe-notifications #subscribe-notifications-denied:hover {
    color: #fff;
    background: #0066cc;
}

#subscribe-notifications .error {
    color: red;
}


@media (min-width: 768px ) {
    #subscribe-notifications .item {
        flex-basis: 47.5%;
    }

    #subscribe-notifications .button {
        flex-basis: 49%;
    }
}
.fancybox-close {
    z-index: 9999999 !important;
}