* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
}

.o-scroll {
    overflow: scroll;
}

.o-auto {
    overflow: auto;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.grid-2-col {
    grid-template-columns: repeat(2, 1fr);
}

.gap-g {
    gap: 1em;
}

.gap-m {
    gap: .5em;
}

.gap-p, .gap-s {
    gap: .2em;
}

.a-center,
.centro {
    align-items: center;
}

.ac-center {
    align-content: center;
}

.ac-between {
    align-content: space-between;
}

.ac-start {
    align-content: start;
}

.jc-center {
    justify-content: center;
}

.jc-evenly {
    justify-content: space-evenly;
}

.jc-between {
    justify-content: space-between;
}

.row-mc {
    grid-template-rows: min-content;
}

.w-80 {
    width: 80%;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.max-h-80 {
    max-height: 80vh;
}

.of-auto {
    overflow: auto;
}

.bottom-fixed {
    position: fixed;
    bottom: 0;
}

.p-10 {
    padding: 10px;
}

.p-l {
    padding: 1em;
}

.p-m {
    padding: .5em;
}

.p-s {
    padding: .2em;
}

.pl-1 {
    padding-left: 1em;
}

.pointer {
    cursor: pointer;
}