
.popup {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    display:none;
}

.popup .popup-content {
    background-color: #fefefe;
    margin: 12% auto;
    border: 1px solid #888;
    max-width: 700px;
    width: 100%;
    height: 525px;
    overflow: hidden;
    word-wrap: break-word;
    position: relative;
    border-radius: 10px;
}

@media only screen and (max-width: 767px){
    .popup .popup-content {
        width: 80%;
        height: auto;
    }
}

/* The Close Button */
.popup .close {
    color: #000;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 0px;
    right: 10px;
}

.popup .close:hover,
.popup .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* The block content */
.popup .popup-content .popup-block-content .popup-container {
    /* margin: 100px 30px 0; */
    padding: 0 30px;
}

.popup .popup-content .popup-block-content .popup-container .small-comment {
    font-weight: bold;
}

.popup .popup-content .popup-block-content .popup-container .big-comment {
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    margin: 20px 0;
}

.popup .popup-content .popup-block-content .popup-container .button-sign-in {
    text-align: center;
}

.popup .popup-content .popup-block-content .popup-container a.sign-in {
    display: block;
    width: 70px;
    background: #242424;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
}

/** The don't show checkbox  */
.popup .dontShowFeature {
    position:absolute;
    bottom: 0.5rem;
    right: 2rem;
}
