/* PRE LOADER */
body .content-loader:before {
    background-color: var(--c-primary);
    background-image: url(/v1.048/r/images/site/icons/betonalfa_new_RBG_white.svg);
    background-repeat: no-repeat;
    background-position: 50% 45%;
    background-size: 160px auto;
}

body .content-loader:after, body .content-loader:not(:required):after {
    /* width: 0.75em; */
    /* height: 0.75em; */
    /* margin-top: 5em; */
    content: " ";
    font-size: unset;
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 50%;
    top: calc(50% + 45px);
    right: calc(50% - 22px);
    border: 4px solid var(--c-white-e);
    border-color: var(--c-white-e) transparent var(--c-white-e) transparent;
    animation: lds-dual-ring 1.2s linear infinite;
    box-shadow:unset
}

.animation-container {
    position: fixed;
    background-color: var(--c-primary);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display:none;
}
.animation-container .logo {
    position:absolute;
    width:200px;
    left:50%;
    transform:translate(-50%, -50%);
    top:50%
}
.animation-container .logo img {
    width:100%;
}
.animation-container .gif {
    position:absolute;
     left:50%;
    transform:translate(-50%, -50%);
    top:80%;
    border-bottom:1px solid var(--c-primary-c)

}
.animation-container .gif::before,
.animation-container .gif::after {
    content:"";
    display:flex;
    background:linear-gradient(to right, var(--c-primary), transparent);
    height:30px;
    width:50px;
    bottom:0px;
    position:absolute;
}
.animation-container .gif::after {
    right:0;
    background:linear-gradient(to left, var(--c-primary), transparent);
}