/* Preloader */
.wp-master-elementor-preloader {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: #fff;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}
.path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
    0% {
        stroke: #444;
    }
    100% {
        stroke: #444;
    }
}

@keyframes colors {
    0% {
        stroke: #444;
    }
    100% {
        stroke: #444;
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}
@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}


/* To Top */
#wpme-to-top {
    display: flex;
      align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    background-color: white;
    position: fixed;
    z-index: 10000;
}

#wpme-arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
    margin-top: 6px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

#wpme-to-top:hover,
#wpme-to-top:active,
#wpme-to-top:focus {
    transition: all .1s;
    background-color:#111;
}

#wpme-to-top:hover #wpme-arrow,
#wpme-to-top:active #wpme-arrow,
#wpme-to-top:focus #wpme-arrow {
    transition: all .25s;
    border-color:#fff;
}

/* Hack position for tablet and mobile devices (cancel js positioning) */
@media only screen and (max-width: 768px) {
    #wpme-to-top {
        bottom: 0 !important;
        right: 0 !important;
    }
}


@media only screen and (min-width: 1025px) {
    #wpme-to-top {
        margin: 0;
        right: 20px;
        bottom: 20px;
    }
}

