.material-symbols-rounded {
    font-variation-settings:
            'FILL' 0,
            'wght' 300,
            'GRAD' 0,
            'opsz' 48
}
h1,h2,h3,h4,h5,h6{
    font-weight: 600;
}
h1 {
    font-size: 30px;
}
h2 {
    font-size: 24px;
}
h3 {
    font-size: 20px;
}
h4 {
    font-size: 16px;
}
h5 {
    font-size: 14px;
}
h6 {
    font-size: 12px;
}

body {
    font-family: var(--font-family-default);
    font-size: 16px;
    line-height: 1.5;
    background: var(--color-grey-100);
}

p {

    &[data-size="middle"] {
        font-size: 14px;
    }
    &[data-size='small'] {
        font-size: 12px;
    }
    &[data-priority='secondary'] {
        color: var(--color-grey-600);
    }
}

strong {
    font-weight: 500;
}

@keyframes fadeBlinking {
    0% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: var(--color-primary-500);
    &:hover {
        color: var(--color-primary-300);
    }
}
.ant-modal-confirm-paragraph {
    max-width: 100% !important;
}