.t4popup {
    background-color: rgba(127, 127, 127, 0.75);
    border: black solid thin;
    border-radius: 5px;
    left: 500px;
    padding: 1%;
    position: fixed;
    top: 100px;
    z-index: 999999;
}

.centered-popup {
    left: 50%;
    position: fixed;
    top: 30%;
    transform: translate(-50%, -50%);
}

.t4popup.message-container {
    text-align: center;
}

.t4popup.centered  {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: both;
    background: #febd0f none repeat scroll 0 0;
    left: 0;
    margin: auto;
    right: 0;
    z-index: 9999999;
}

.t4popup {
    left: 0;
    margin: auto;
    padding: 30px;
    position: fixed;
    right: 0;
    top: 30%;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: -ms-fit-content;
    width: fit-content;
    border: none;
    font-weight: 500;
    box-shadow: none;
    max-width: 600px;
    width: 100%;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.t4popup .icon {
    animation-name: pulse;
    color: #fff;

    display: block;
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    overflow: hidden;
    width: 100%;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    font-size: 40px;
    font-weight: lighter;
    height: 48px;
    padding: 0 0 5px;
    vertical-align: middle;
    text-align: center;
}

.t4popup .icon::before {
    content: "";
    font-family: "themify";
}

.popupButtons {
    margin-top: 20px;
    text-align: center;
}

.message-container {
    text-align: center;
}

.message-container span.message {
    color: #fff;
    vertical-align: middle;
    text-align: center;
    font-weight: 500;
}

.t4popup .btn {
    font-weight: 500;
    color: #fff;
    margin: 0 10px;
    border-radius: 5px;
}

.t4popup .btn.btn-refuse {
    background: #727272;
}

.t4popup .btn.btn-confirm {
    background: #fff none repeat scroll 0 0;
    color: #727272;
}

.t4popup.closing {
    animation-name: fadeOut;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale3d(1, 1, 1);
    }
    25% {
        transform: scale3d(1.2, 1.2, 1.2);
    }
    50% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    75% {
        transform: scale3d(1.2, 1.2, 1.2);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}

.no-body-scroll::after {
    background-color: rgba(255, 255, 255, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.t4popup .btn.btn-refuse:hover, .t4popup .btn.btn-refuse:active, .t4popup .btn.btn-refuse:focus {
    background: #484848;
}

.t4popup .btn.btn-confirm:hover, .t4popup .btn.btn-confirm:active, .t4popup .btn.btn-confirm:focus {
    background: #cccccc;
}