.kirb-modal-nextstep {
    display: none; 
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.kirb-modal-nextstep .kirb-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 500px;
    position: relative;
}

.kirb-modal-nextstep .close {
    color: #7f7f7f;
    float: right;
    font-size: 34px;
    font-weight: 400;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
}

.kirb-modal-nextstep .close:hover,
.kirb-modal-nextstep .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.kirb-modal-nextstep .kirb-modal-button{
    width: 80%;
    margin: auto;
}

.kirb-modal-nextstep .kirb-modal-button .kirb-btn-catg {
    width: 100%;
    height: 45px;
    font-size: 15px;
    font-weight: 400;
    background-color: var(--kirb-primary-color);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px 0px;
    cursor: pointer;
}

.kirb-modal-nextstep .popup-heading{
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
    
    .kirb-modal-nextstep .kirb-modal-content {
        width: 90%;
    }

    .kirb-modal-nextstep .kirb-modal-button {
        display: flex;
        flex-direction: column;
        width: 100% !important;
    }
}

.kirb_loader {
    top: 0%;
    left: 0%;
    position: fixed !important;
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 9999;
}

@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner {
    animation: rotator 0.8s linear infinite;
}

.kirb_loader img {
    width: 160px;
}