/*!
 * Clases perteneciente al elemento modal loading.
 *
 * @author Claudio Lopez - tinet
 * @version 1.0
 */

 .loading-frame {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: rgb(255, 255, 255, 0.8);
    overflow: hidden;
    z-index: 99999;
}
.loading-content {
    top: 306px;
    left: 450px;
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: center;
}
.loading-title {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.014em;
    color: #333D47;
    margin-top: 13px;
}
.loading-icon, .loading-icon svg, .loading-icon image {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .loading-frame {
        width: 100vw;
        height: 100vh;
        left: 0;
        top: 0;
    }
    .loading-content {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .loading-title {
        width: 90vw;
		font-weight: 400;
    }
}
