/* fill button */
.dark-btn{
    font-size: 20px;
    line-height: 24px;
    font-family: var(--commissioner-font);
    margin: 0;
    padding: 11px;
    border-radius: 12px;
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    border: 1px solid var(--blue);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    z-index: 999;
    position: relative;
}

.dark-btn img {
    width: 25px;
    height: 25px;
}

.dark-btn:hover {
    background: var(--white);
    color: var(--blue);
    border: 1px solid var(--blue);
    transition: all 0.5s ease;
}

/* outline button */
.outline-btn {
    font-size: 20px;
    line-height: 24px;
    font-family: var(--commissioner-font);
    margin: 0;
    padding: 11px;
    border-radius: 12px;
    background: var(--white);
    color: var(--blue);
    font-weight: 600;
    border: 1px solid var(--blue);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
     z-index: 999;
    position: relative;
}

.outline-btn img {
    width: 25px;
    height: 25px;
}

.outline-btn:hover {
    background: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
    transition: all 0.5s ease;
}

@media (max-width: 768px) {

    .dark-btn,
    .outline-btn {
        font-size: 16px;
        line-height: 20px;
    }

    .dark-btn img,
    .outline-btn img {
        width: 20px;
        height: 20px;
    }
}

/* label */
.label {
    width: fit-content;
    font-size: 12px;
    font-style: italic;
    line-height: 17px;
    font-family: var(--objektiv-font);
    margin: 0;
    padding: 5px 11px;
    border-radius: 8px;
    background: var(--light-red3);
    color: var(--light-red);
    font-weight: 400;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.label.dark {
    background: var(--light-red2);
}

.label img {
    width: 12px;
    height: 12px;
}