/* css/notifications.css */
/* POPUP STYLES */
.popup-screen {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1011;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.popup-screen.ready {
    opacity: 1;
    visibility: visible;
}

.popup-wrapper {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    max-width: 300px;
    margin: 0 auto;
    background-color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-transition: all 0.3s ease 0.2s;
    transition: all 0.3s ease 0.2s;
    z-index: 1;
}

.popup-screen.ready .popup-wrapper {
    opacity: 1;
    visibility: visible;
}

.popup-wrapper .popup-content {
    padding: 20px 15px 188px;
    text-align: center;
}

.popup-wrapper .popup-content .popup-title {
    font-size: 1.2em;
    font-weight: 600;
    padding: 0 0 15px;
    border-bottom: 1px solid #EFEFEF;
}

.popup-wrapper .popup-content img {
    margin-bottom: 10px;
    max-width: 76px;
}

.popup-wrapper .popup-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 168px;
    border-top: 4px solid #EFEFEF;
    z-index: 2;
}

.popup-wrapper .popup-bottom button {
    border: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    line-height: 54px;
    font-size: 1.2em;
    font-weight: 400;
    background-color: transparent;
    border-bottom: 1px solid #EFEFEF;
    cursor: pointer;
}

.popup-wrapper .popup-bottom button:first-child {
    font-weight: 500;
    color: #FF671B;
}

.popup-wrapper .popup-bottom button:last-child {
    border-bottom: none;
}

.popup-wrapper .popup-bottom button:focus {
    outline-width: 0;
}

.popup-wrapper .popup-bottom button:active {
    background-color: #E6E6E6;
}
