.modification-form td button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #776345;
    border-radius: 1.5rem;
    padding: 0 1.5rem;
    transition: 0.3s;
}
.modification-form td button:hover {
    background: #776345;
    color: #fff;
}
.modification-form td {
    position: relative;
}
.modification-form td div {
    width: calc(100% - 100px);
}
td.is-editing div {
    width: 100%;
}
td.is-editing input {
    margin: 1rem 0 0 0;
    padding: 0.5rem;
    border: 1px solid #776345;
    width: calc(100% - 100px);
}
.error-msg[hidden] {
    opacity: 0;
    height: 0px;
    transform: scale(0);
}
.error-msg {
    font-size: 1.6rem;
    font-weight: 700;
    color: red;
    transform-origin: left;
    transition: all 200ms;
    display: block;
}
.errors-list {
    list-style: disc;
    margin-left: 1.5rem;
}
.errors-list li {
    list-style: disc;
    color: red;
    font-size: 1.8rem;
}
td.is-editing .cbx-wrapper input {
    width: 2rem;
}
.pankuzu span {
    margin-right: 5px;
}
.pankuzu span:nth-child(2) {
    margin-left: 5px;
}

/** MODAL CSS */
.fade {
    transition: opacity .15s linear;
}
.fake-layer {
    display: none;
}
.modal-open .fake-layer {
    background: rgba(0,0,0,.2);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: block;
}
.modal-open .modal {
    display: block;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
    transform: translate(0, 0);
    transition: all .3s ease-out;
    top: 0;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}
.modal-open .modal .modal-dialog {
    transition: all .3s ease-out;
    transform: translate(0, -50%);
    top: 50%;
}
.modal.show .modal-dialog {
    transform: none;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}
.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}
.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}
.modal-header .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    /* background: transparent url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e) center/1em auto no-repeat; */
    border: 0;
    border-radius: 0.25rem;
    opacity: .5;
}
.modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}
.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer a.btn-primary {
    height: 4rem;
    border: 1px solid var(--pink);
    padding: 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.75;
    transition: all .3s;
}
.modal-footer button.btn-secondary {
    height: 4rem;
    border: 1px solid var(--pink);
    font-size: 1.5rem;
    padding: 0 0.75rem;
    font-weight: 700;
    line-height: 1.75;
    transition: all .3s;
}
.modal-footer a.btn-primary:hover,
.modal-footer button.btn-secondary:hover {
    background: var(--pink);
    color: #fff;
}