.suspended-popup .popup-holder{
    width: 575px;
    min-height: 148px;
    background-color: #ffffff;
    box-shadow: 0 4px 9px 2px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    position: relative;
    margin-top: 15%;
    overflow: hidden;
}
.suspended-popup {
    display: none;
    display: block;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index:1001;
}
.suspended-popup .content-area {
    position: absolute;
    font-family: Helvetica,Arial,sans-serif;
    font-size: 12px;
    color: #4a4a4a;
    top: 37px;
    left: 31px;
    right: 31px;
    text-align: left;
    margin-bottom: 31px;
    line-height: 1.67;
}
.suspended-popup .content-area a {
    font-family: Helvetica,Arial,sans-serif;
    color: #2f4b6a;
    font-weight: bold;
    text-decoration: none;
}
.suspended-popup .content-area a:hover {
    text-decoration: underline;
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 15px;
    height: 15px;
    opacity: 0.3;
}
.close:hover {
    opacity: 1;
}
.close:before, .close:after {
    position: absolute;
    left: 8px;
    content: ' ';
    height: 15px;
    width: 2px;
    background-color: #4a4a4a;
}
.close:before {
    transform: rotate(45deg);
}
.close:after {
    transform: rotate(-45deg);
}

@media screen and (max-width: 580px) {
    .suspended-popup .popup-holder{
      width: 95%;
    }
}
@media screen and (max-width: 500px) {
    .suspended-popup .popup-holder{
      min-height: 168px;
    }
}
@media screen and (max-width: 400px) {
    .suspended-popup .popup-holder{
      min-height: 185px;
    }
}
@media screen and (max-height: 320px) {
    #firefox-popup .content-area {
        margin-top: 10px;
    }
}