﻿/* Cappadocia Web v1.0 (https://cappadociaweb.com) * Copyright 2019 - ~The Cappadocia Web (by Aktan Can) Authors * Licensed(https://cappadociaweb.com/library/license) */
/*===========================================================================================================================*/
#loading .showbox .loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

#loading .showbox .loader .circular {
    animation: rotate 2s linear infinite;
    transform-origin: center center;
}

    #loading .showbox .loader .circular .path {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
        stroke-linecap: round;
    }

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes color {
    100%, 0% {
        stroke: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
    }
}
/*===========================================================================================================================*/
