.sidebar > div {
    position: relative;
}

.sidebar .item {
    margin-bottom: 2.4rem;
}

.sidebar .title {
    margin: 8px 0 16px 0!important;
    color: var(--focus);
    font-family: Inter!important;
    font-size: 2.3em!important;
    font-weight: 800!important;
}

.sidebar .item > label {
    display: block;
    box-sizing: border-box;
    margin-bottom: 8px;
    color: var(--text-color-dark);
    font-family: Inter!important;
    font-size: 1.2rem;
    font-weight: 600;
}

.sidebar input {
    width: 100%;
    box-sizing: border-box;
    padding: var(--input-p);
    border: 1px solid var(--main-softer);
    border-radius: 6px;
    background-color: var(--main);
    color: var(--text-color-dark);
    font-family: Inter;
    font-size: 1.3rem;
    font-weight: 400;
    transition: 0.6s;
}

.sidebar select {
    width: 100%;
    box-sizing: border-box;
    padding: var(--input-p);
    border: 1px solid var(--main-softer);
    border-radius: 6px;
    background-color: var(--main);
    color: var(--text-color-dark);
    font-family: Inter;
    font-size: 1.3rem;
    font-weight: 400;
}

.sidebar input:focus {
    border: 1px solid var(--focus-hard);
}

.sidebar textarea {
    height: 120px;
    width: 100%;
    box-sizing: border-box;
    padding: var(--input-p);
    border: 1px solid var(--main-softer);
    border-radius: 6px;
    background-color: var(--main);
    color: var(--text-color-dark);
    font-family: Inter;
    font-size: 1.3rem;
    font-weight: 400;
    resize: none;
}

.sidebar textarea:focus {
    border: 1px solid var(--focus-hard);
}

.sidebar .more {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 8px 0;
    cursor: pointer;
}

.sidebar .more img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 18px;
    width: 18px;
    box-sizing: border-box;
    padding: 3px;
    border: 1px solid var(--main-softer);
    border-radius: 50%;
    margin-right: 8px;
    background-color: var(--main);
    cursor: pointer;
}

.sidebar .more > select {
    border: none;
    background-color: var(--main);
    color: var(--text-color-dark);
    font-family: Inter;
    font-size: 14px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.sidebar .more > label {
    border: none;
    background-color: var(--main);
    color: var(--text-color-dark);
    font-family: Inter;
    font-size: 14px;
    cursor: pointer;
}

.sidebar #questions {
    padding: 0;
}

.sidebar .list {
    margin: 8px 0;
}

.sidebar .list .block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}

.sidebar .list .selectable {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 16px;
    border: 1px solid var(--main-softer);
    border-radius: 8px;
    background-color: var(--main);
    cursor: pointer;
    transition: 0.4s;
}

.sidebar .list .del {
    height: 24px;
    width: 0;
    cursor: pointer;
    transition: 0.6s;
}

.sidebar .list .block:hover .selectable {
    width: calc(100% - 40px);
    border: 1px solid var(--focus-hard);
}

.sidebar .list .block:hover .del {
    width: 24px;
}

.sidebar .list .selectable > label {
    width: fit-content;
    max-width: 80%;
    color: var(--text-color-dark);
    font-family: Inter;
    font-size: 13px;
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: pointer;
}

.sidebar .list .selectable > div {
    height: 16px;
    width: 16px;
    border: 1px solid var(--contrast);
    border-radius: 50%;
    margin-left: auto;
    background-color: #fff;
    transition: 0.4s;
}

.sidebar .list .selectable > div {
    border: 1px solid var(--main-softer);
    background-color: var(--main);
}

.sidebar .list .selectable.required > div {
    border: 1px solid transparent;
    background-color: var(--focus);
}

.sidebar .list .selectable.required {
    border: 1px solid var(--focus);
}

.sidebar .action {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 8px;
}

.sidebar .action > input {
    width: 38%;
    margin-right: 12px;
}

.sidebar .action .rem {
    height: 24px;
    width: 24px;
    cursor: pointer;
    transition: 0.6s;
}

.action-sign { 
    position: absolute;
    left: 136px;
    bottom: 8px;
    height: 20px;
    width: 20px;
    border: 1px solid #b44f3a;
    border-radius: 50%;
    color: #b44f3a;
    text-align: center;
}

.sidebar .property {
    display: flex!important;
    font-size: 1.3rem!important;
    font-weight: 400!important;
}

.sidebar .property > input {
    height: 16px;
    width: 16px;
    margin-right: 8px;
    background-color: var(--main);
    cursor: pointer;
    transition: 0.4s;
}

.sidebar .property input:checked {
    background-color: var(--focus);
}

.sidebar .row.item .item {
    width: 45%;
}

.sidebar .row.item {
    margin: 0;
}

.item > button {
    height: 24px;
    width: fit-content;
    border: 1px solid transparent;
    border-radius: 6px;
    background-color: var(--focus);
    color: var(--main);
    cursor: pointer;
}