/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

 /*Loader*/
.body_c_loader::after {
    content: '';
    background: #ffffff7a;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 10000;
  }
.body_c_loader::before {
    position: fixed;
    top: 0;
    width: 48px;
    height: 48px;
    border: 5px solid #e5e5e5;
    border-bottom-color: #650A13;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    content: '';
    z-index: 1;
    margin: auto;
    transform: translate(-50%, -50%);
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    z-index: 10001;
}