﻿:root {
    --mainColor: #601412;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;
}

.accordion-collapse {
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 0;
    opacity: 0;
}

.spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(farthest-side,var(--mainColor) 94%,#0000) top/9px 9px no-repeat,
           conic-gradient(#0000 30%,var(--mainColor));
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 9px),#000 0);
    animation: spinner-c7wet2 1s infinite linear;
}
 
@keyframes spinner-c7wet2 {
    100% {
        transform: rotate(1turn);
    }
}