/* UIverse.io components
SOURCE: https://uiverse.io/Galahhad/sweet-ape-100
 */

.ui-checkbox {
    --primary-color: #1677ff;
    --secondary-color: #fff;
    --primary-hover-color: #4096ff;
    /* checkbox */
    --checkbox-diameter: 20px;
    --checkbox-border-radius: 5px;
    --checkbox-border-color: #888888;
    --checkbox-border-width: 1px;
    --checkbox-border-style: solid;
    /* checkmark */
    --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ui-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: var(--checkbox-diameter);
    height: var(--checkbox-diameter);
    border-radius: var(--checkbox-border-radius);
    background: var(--secondary-color);
    border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.ui-checkbox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
    box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
    border-radius: inherit;
    opacity: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
    -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
    transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
    top: 40%;
    left: 50%;
    content: "";
    position: absolute;
    width: 4px;
    height: 7px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    opacity: 0;
    -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
    -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
    transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}


/* actions */

.ui-checkbox:hover {
    border-color: var(--primary-color);
}

.ui-checkbox:checked {
    background: var(--primary-color);
    border-color: transparent;
}

.ui-checkbox:checked::before {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
    -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
    transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
    -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
    -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
    transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
    -webkit-transition: none;
    -o-transition: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: none;
    opacity: 1;
}

.loadingOnboarding svg {
    transform-origin: center;
    animation: rotate4 2s linear infinite;
}


/* From Uiverse.io by Nawsome */

.loader {
    width: 12em;
    height: 12em;
}

.loader path {
    stroke: #1677ff;
    stroke-width: 0.6px;
    animation: dashArray 12s ease-in-out infinite, dashOffset 8s linear infinite;
}

@keyframes dashArray {
    0% {
        stroke-dasharray: 0 1 359 0;
    }
    50% {
        stroke-dasharray: 0 359 1 0;
    }
    100% {
        stroke-dasharray: 359 1 0 0;
    }
}

@keyframes dashOffset {
    0% {
        stroke-dashoffset: 365;
    }
    100% {
        stroke-dashoffset: 5;
    }
}

.skeleton p,
.skeleton li,
.skeleton b,
.skeleton h2,
.skeleton p a,
.skeleton h1 {
    position: relative;
    margin-bottom: 5px;
    width: max-content;
    color: transparent !important;
}

.skeleton li a {
    color: transparent !important;
}

.skeleton p::after,
.skeleton li::after,
.skeleton b::after,
.skeleton h2::after,
.skeleton h1::after {
    content: "";
    height: 100%;
    width: 100%;
    background: #eeeeee;
    position: absolute;
    z-index: 100;
    display: block;
    top: 0;
    animation: Skeleton 2s infinite linear;
}

.skeleton li::after {
    background-color: #c9c9c9;
}

.skeleton h2::after {
    background-color: #dddddd;
    height: calc(100% - 2rem);
    top: 2rem;
}

.skeleton .innerBodyLegal>b::after {
    background-color: #dbdbdb;
}

.skeleton a.downloadBttn {
    color: transparent !important;
    border: transparent !important;
}

.skeleton a.downloadBttn:hover {
    background-color: transparent !important;
}

.skeleton .innerBodyLegal {
    overflow: hidden;
}

.skeleton img {
    display: none;
}

.skeleton .logo::before {
    content: "";
    height: 50px;
    width: 50px;
    position: relative;
    background-color: #dbdbdb;
    animation: Skeleton 2s infinite linear;
}

.skeleton a.downloadBttn::after {
    content: "";
    height: 100%;
    width: 100%;
    background: #b4b4b4;
    position: absolute;
    z-index: 100;
    display: block;
    left: 0;
    top: 0;
    animation: Skeleton 2s infinite linear;
}

@keyframes Skeleton {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

.spinner {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #0026ff 94%, #0000) top/14.1px 14.1px no-repeat, conic-gradient(#0000 30%, #0026ff);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 14.1px), #000 0);
    animation: spinner-c7wet2 1s infinite linear;
}

@keyframes spinner-c7wet2 {
    100% {
        transform: rotate(1turn);
    }
}