/*
Theme Name: industribladet
Text Domain: industribladet
*/
#more_posts .btn {
    background-color: rgba(0,0,0,0)!important;
    background-position: 50%;
    background-repeat: no-repeat;
    border: none!important;
    box-shadow: none!important;
    cursor: default!important;
    opacity: 0;
    outline: none!important;
    overflow: hidden;
    text-indent: -9999px;
    transition: opacity .2s ease;
    width: 100%;
    height: 100%;
}

@-moz-keyframes spin-loader {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin-loader {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin-loader {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

.rb-loader {
    font-size: 10px;
    position: relative;
    display: none;
    overflow: hidden;
    width: 3em;
    height: 3em;
    transform: translateZ(0);
    animation: spin-loader .8s infinite linear;
    text-indent: -9999em;
    color: #054474;
    border-radius: 50%;
    background: currentColor;
    background: linear-gradient(to right, currentColor 10%, rgba(255, 255, 255, 0) 50%);
    margin: 0 auto;
}
.rb-loader:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 75%;
    height: 75%;
    margin: auto;
    content: '';
    opacity: 0.5;
    border-radius: 50%;
    background: var(--solid-white);
}
.rb-loader:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    content: '';
    color: inherit;
    border-radius: 100% 0 0 0;
    background: currentColor;
}