.content-holder {
    min-height: 70vh;
}

.folder {
    font-weight: 600;
}
.folder .title {
    color: #0b6e4a;
    border: 1px solid #ebebeb;
    padding: 0 0 0 10px;
    margin-bottom: 3px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}
.folder .title button {
    border: 1px solid #efefef;
    color: #0b6e4a;
    background-color: #e5e7eb;
}
.folder .title.full::before {
    content: "+";
    position: absolute;
    left: -15px;
    font-weight: bold;
}
.folder .folder {
    display: none;
}
.folder .record-holder {
    display: none;
}
.folder.active {
    text-decoration: none;
}
.folder.active > .folder {
    display: block;
    padding: 0 0 0 15px;
}
.folder.active > .record-holder {
    display: block;
}

.record-holder {
    position: relative;
}

.custom-text {
    width: 100%;
    color: #000;
    min-height: 300px;
    max-height: 500px;
    background-color: #fff;
    border: 2px solid #acb9af;
    padding: 10px;
    margin-bottom: 3px;
}

.disable-remover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
}

.rename-container {
    width: 100%;
    color: #0b6e4a;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.rename-container:focus-visible {
    outline: none;
    border: none;
}

.button-block {
    display: flex;
    transition: all 0.3s ease-in-out;
    z-index: 10;
}

.form-control-block button {
    margin-left: 8px;
}

.button-block .hidden {
    display: none;
}

.form-control-block button {
    margin-left: 8px;
}

.button-block.active .hidden {
    display: block;
}

.form-control-block {
    text-align: right;
    padding: 10px 0;
}

.button-block button {
    position: relative;
}

.button-block button:hover .custom-tooltip {
    visibility: visible;
    opacity: 1;
}

.custom-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: 0.6s ease-in-out;
    top: -1px;
    border: 1px solid transparent;
    right: 35px;
    padding: 2px 5px;
    border-radius: 4px;
    white-space: nowrap;
    background-color: #0b6e4a;
    color: #fff;
}

.main-form .cancel-button {
    display: none;
}

.main-form .move-btn-destination {
    display: none;
}

.main-form.active .cancel-button {
    display: inline-block;
}

.main-form.active .move-btn-destination {
    display: inline-block;
}

.main-form.active .move-btn-folder {
    display: none;
}

.main-form.active .move-btn-record {
    display: none;
}

@media(max-width: 767px) {
    body {
        font-size: 12px;
    }
}
