.fd {
    width: 100%;
    display: flex;

    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
}

.fd.text-left {
    text-align: left;
    align-items: flex-start;
}

.fw {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px 12px 5px 50px;
    box-sizing: border-box;
}

.fw label {
    width: 100%;
    height: auto;

    font-family: sans-serif;
    font-weight: bold;
    color: rgb(98 98 98);
    justify-content: unset;
    align-items: unset;
    font-size: 12px;
}

.grid {
    flex-direction: row;
    column-gap: 10px;
}

.col {
    flex-direction: column;
    row-gap: 10px;
}

.cntr {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nop {
    padding-left: 0;
    padding-right: 0;
    padding-top: 5px;
}

.cntr .nop {
    padding: 0;
}

.tl {
}

.l,
.r {
    width: 48%;
}

.r {
    margin-left: auto;
}

.cntr-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cntr-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cntr-al-left {
    align-items: flex-start;
}

.cntr-al-right {
    align-items: flex-end;
}

.al-left {
    align-items: flex-start;
}

.al-right {
    align-items: flex-end;
}

.mt {
    margin-top: 20px;
}

.pointer {
    cursor: pointer;
}
