.form-group {
    padding-bottom: 20px;
}

.form-group input {
    margin-bottom: 0px;
}

.form-group span:not(.upload-file-input-custom__btn) {
    color: red;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
}

.mobile-submenu__add-class {
    height: 100vh;
}

.crumbs-ref a {
    color: #000;
    transition: all 0.2s;
}

.crumbs-ref:hover a {
    text-decoration: none;
    color: orange;
}

.crumbs-ref.active {
    color: #3E2F18 !important;
}

.vacancy-name-1 {
    display: block;
    margin-bottom: 15px;
}

.header-title {
    font-family: Oswald;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
}

/* Кастомный чекбокс */
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    border: 1px solid #C6C6C6;
    border-radius: 3px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.custom-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 14 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 4.85185L6 9L12.4 1" stroke="%233E2F18" stroke-width="3"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.custom-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px
}

.custom-checkbox-label {
    font-size: 16px;
    color: #454545;
    font-family: Oswald;
    font-weight: 300;
    line-height: 20px;
}