.policy-unfinished {
    border: none;
    text-align: center;
}
.policy-loader {
    background-image: linear-gradient(#263238 50px, transparent 0), radial-gradient(circle 25px at 25px 25px, #FFF 100%, transparent 0), radial-gradient(circle 50px at 50px 50px, #FFF 100%, transparent 0), radial-gradient(circle 25px at 25px 25px, #FFF 100%, transparent 0), linear-gradient(#FFF 50px, transparent 0);
    background-position: 55px 60px, 0px 30px, 37px 0px, 122px 30px, 25px 40px;
    background-repeat: no-repeat;
    background-size: 64px 6px, 50px 50px, 100px 76px, 50px 50px, 120px 40px;
    margin: 5rem auto;
    position: relative;
    width: 17.5rem;
    height: 8rem;
}
.policy-loader::after {
    content: "";
    background-image: linear-gradient(#DDD 20px, transparent 0), linear-gradient(#DDD 5px, transparent 0), linear-gradient(#DDD 10px, transparent 0), linear-gradient(#DDD 10px, transparent 0);
    background-color: var(--bc-clr-text-100);
    background-position: 5px 36px, 5px 25px, 5px 10px;
    background-repeat: no-repeat;
    background-size: 50px 20px;
    border-radius: 2px 2px 4px 4px;
    box-shadow: 0px -4px 7px rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 50%;
    top: 6.2rem;
    z-index: 10;
    height: 6.4rem;
    width: 6rem;
    transform: translateX(-50%) rotate(-180deg);
    animation: policy_loader 4s linear infinite;
}
.policy-unfinished-subtitle {
    text-align: center;
    font-size: var(--bc-fs-300);
    font-weight: 200;
    color: var(--bc-clr-text-800);
}

section {
    padding: 2rem;
}

ul {
    padding-left: 2rem;
}
li {
    list-style-position: outside;
}
b {
    font-weight: 900;
    color: var(--bc-clr-text-100);
}
.definition {
    color: var(--bc-clr-primary-600);
}

.contact-wrapper {
    border: 1px solid var(--bc-clr-primary-400);
    border-radius: .5rem;
    margin-block: 4rem;
    padding: 2rem;
}
.contact-title {
    font-family: var(--bc-ff-heading);
    font-size: var(--bc-fs-800);
    font-weight: 800;
    color: var(--bc-clr-primary-400);
}

@keyframes policy_loader {
    0% {height: 6.4rem}
   90%,100% {height: 0}
}