﻿.backgroundSpinner {
    background-color: #e3e3e38f;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    z-index: 999999999;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.hideSpinner {
    display: none;
    transition: all .3s ease-in-out;
}
.spinnerIcon {
    width: 80px;
    height: 80px;
    background-image: url(../Images/CableFamilia/load.gif);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}


.spinnerText {
    width: 140px;
    height: 20px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-shadow: 1px 1px 5px #252525;
}
.blurEffect{
    filter: blur(2px);
}