/******************************************************************************* 

    SKREY CUSTOMIZATION

    This .css file does not override .css files from parent 
    theme (Alo Alto Theme). 

*******************************************************************************/

/********************************** HELPERS ***********************************/

.skrey
        .bx-inactive {
    display: none;
    pointer-events: none;
    transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}

/******************************** END HELPERS *********************************/

/*********************************** LOADING **********************************/

/* Loading Content */

.skrey
        .bx-loading-container {
    float: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}

/* Loading Overlay */

.skrey
        .bx-loading-overlay {
    background-color: #fff;
    opacity: 0.7;
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    display: block;
    width: 100%;
    height: 100%;
}

/* Loading Spinner */

.skrey
        .bx-loading-wrapper {
    width: 52px;
    height: 52px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px;
    animation: 1.2s ease-in-out 0s normal none infinite tp-rotateplane;
    -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
    animation: tp-rotateplane 1.2s infinite ease-in-out;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); 
    z-index: 2000;
}

.skrey
        .bx-loading {
    width: 32px;
    height: 32px;
    min-height: 0;
    top: auto;
    left: auto;
    background-image: url("../images/loading.gif");
}

/********************************* END LOADING ********************************/