/* BTLOAD */
.btload.btload--loading:before { content: ""; }
.btload--loading > .btload__ico { background-color: #ffffff; display: inline-block; vertical-align: middle; height: 10px; margin-left: 4px; width: 10px; opacity: 0.2; border-radius: 50%; transform: scale(0.8); animation-name: btload__animation; animation-duration: 1.2s; animation-iteration-count: infinite; animation-timing-function: ease-in-out; }
.btload--loading.btload--white > .btload__ico { background-color: #ffffff; }
.btload__ico:nth-child(1) { animation-delay: 0s; }
.btload__ico:nth-child(2) { animation-delay: 0.4s; }
.btload__ico:nth-child(3) { animation-delay: 0.8s; }
@keyframes btload__animation { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.3); opacity: 0.2; } 100% { transform: scale(1); opacity: 1; } }

@media screen and (max-width: 768px) {
    .btload--loading > .btload__ico { height: 8px; width: 8px; margin-left: 3px; }
}