﻿@import url(fonts.css);
@import url(reset.css);
@import url(header.css);
@import url(search.css);
@import url(footer.css);
@import url(navigation-bar.css);

.popupnl {
    background: rgba(0,0,0,0.7);
    display: none;
    font-size: 0;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

    .popupnl .btnclosepopup {
        background: #fff url(/images/close.png) center center no-repeat;
        border-radius: 150px;
        box-shadow: 0 7px 8px 2px rgba(0,0,0,.04);
        cursor: pointer;
        font-size: 0;
        height: 36px;
        left: 10px;
        opacity: 1;
        position: absolute;
        top: 10px;
        width: 36px;
        z-index: 1;
    }

    .popupnl .btncloseuserpanel:hover {
        cursor: pointer;
        filter: grayscale(0);
    }

    .popupnl .checkboxes {
        font-size: 14px;
        font-size: 0;
    }

        .popupnl .checkboxes .active {
            background: #f60;
            color: #fff;
        }

        .popupnl .checkboxes span {
            background: #eee;
            border-radius: 4px;
            cursor: pointer;
            display: inline-block;
            font-size: 15px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            width: 48%;
        }

            .popupnl .checkboxes span img {
                float: right;
                height: 20px;
                margin: 5px 10px 0 0;
                width: auto;
            }

            .popupnl .checkboxes span:first-child {
                margin-left: 4%;
            }

    .popupnl .item {
        padding: 20px 20px 0;
    }

    .popupnl .passwordinput {
        background: url(/images/pass.png) no-repeat left 10px center;
    }

    .popupnl .userinput {
        background: url(/icons/028-user-1.png) no-repeat left 10px center;
    }

    .popupnl > div {
        background: #fff;
        border-radius: 9px;
        bottom: 0;
        box-shadow: 0 37px 89px #484848;
        box-sizing: unset;
        min-width: 354px;
        left: 0;
        margin: auto;
        padding: 52px;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 11;
        font-size: 14px;
        text-align: justify;
        line-height: 2;
        width: 100%;
        max-width: 483px;
        max-height: 360px;
    }

        .popupnl > div * {
            text-align: justify;
        }

    .popupnl h2 {
        color: #555;
        font-size: 15px;
        height: 50px;
        line-height: 50px;
        padding-right: 30px;
        position: relative;
    }

    .popupnl a {
        color: #da0000;
    }

    .popupnl img {
        border-radius: 10px;
    }
@media (max-width:700px) {
    .popupnl > div {
        padding: 20px;
        max-width: unset;
        max-height: unset;
        height: 95vh;
        box-sizing: border-box;
        width: 92%;
        min-width: unset;
    }
}