/********* CRUD POPUP ******************/

.popup-box {
    position: fixed;
    width: 1000px;
    height: 100%;
    background: #FFF;
    box-shadow: 0 10px 10px #000;
    top: 0;
    left: calc(50% - 500px);
    z-index: 9995;
}
@media screen and (max-width: 1000px) {
    .popup-box {
        width: 100%;
        left: 0;
    }
}
.popup-content {
    width: 100%;
    height: 100%;
}
.popup-wide {
    width: calc(100% - 230px);
    left: 115px;
}


.popup-close-button {
    position: absolute;
    right: 25px;
    top: 5px;
    cursor: pointer;
}

.popup-close-button:hover {
    color: red;
}

.popup-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.popup-overlay {
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:9994;
    overflow:hidden;
    background: #FFF;
    opacity: 0.5;

}

.popup-loader:before {
    display: inline-block;
    font: normal normal normal 35px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f110";
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.popup-box .close-button {
    width: 12px;
    height: 12px;
    background: black;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

/********* END CRUD POPUP ******************/

/********* WIDE POPUP ******************/

.wide-popup-box {
    position: fixed;
    width: calc(100% - 230px);
    height: 100%;
    background: #FFF;
    box-shadow: 0 10px 10px #000;
    top: 0;
    left: 115px;
    z-index: 9995;
}
@media screen and (max-width: 1000px) {
    .wide-popup-box {
        width: 100%;
        left: 0;
    }
}
.wide-popup-content {
    width: 100%;
    height: 100%;
}
.wide-popup-close-button {
    position: absolute;
    right: 25px;
    top: 5px;
    cursor: pointer;
}

.wide-popup-close-button:hover {
    color: red;
}

.wide-popup-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.wide-popup-overlay {
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:9994;
    overflow:hidden;
    background: #FFF;
    opacity: 0.5;

}

.wide-popup-loader:before {
    display: inline-block;
    font: normal normal normal 35px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f110";
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.wide-popup-box .close-button {
    width: 12px;
    height: 12px;
    background: black;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

/********* END WIDE POPUP ******************/