.hidden {
    display: none !important;
}

form .loading {
    background: #33333340;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.form-action-btns {
    float: right;
    margin-top: 2rem;
}

.btn-dashboard {
    border: 1px solid #333;
    margin-top: 1rem;
}

.f-btn-new,
.f-btn-edit,
.f-btn-cancel {
    margin: 0;
    border: 1px solid #333;
    color: #333;
    background: #fefefe;
}
.f-btn-edit {
    border-color: #b6a34d;
    background: #f5da64;
}
.f-btn-cancel {
    border-color: #af5e53;
    background: #f88070;
}

.details {
    margin-top: 1.5rem;
}
.details .col-md-4 {
    border-radius: 0.5rem;
    background-color: #fefefe;
    padding: 1rem 1.5rem;
}
.details p {
    margin-bottom: 0.25rem;
}

.drag-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.drag-container .placeholder {
    width: 100%;
    height: 0.5rem;
    padding: 0 7rem 0 3rem;
    margin: 0;
    background: transparent;
}
.drag-container .placeholder.first {
    height: 1.5rem;
    padding-top: 1rem;
}
.drag-container .placeholder.expanded {
    height: 4rem;
    padding: 0.5rem 7rem 0.5rem 3rem;
}
.drag-container .placeholder.expanded.first {
    height: 4rem;
    padding-top: 0.5rem;
}
.drag-container .placeholder.expanded:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #cecece;
    border: 1px dotted #1f1f1f;
    border-radius: 0.25rem;
}
.api-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 1rem;
    margin: 0.5rem 0;
    align-items: center;
}
.api-container .drag {
    min-width: 2rem;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.api-container .card {
    width: 100%;
    margin: 0;
    transition: all 400ms;
}
.api-container .actions {
    min-width: 6rem;
    display: flex;
    justify-content: space-evenly;
}

.api-title {
    border: 1px solid black;
    border-radius: 0.125rem;
    padding: 0.125rem 0.25rem;
    font-size: medium;
    margin-right: 1rem;
}
.api-title.api-get {
    border-color: #28a745;
    color: #28a745;
    background: #f0fff4;
}
.api-title.api-post {
    border-color: #ffc107;
    color: #ffc107;
    background: #fffdf5;
}
.api-title.api-put {
    border-color: #007bff;
    color: #007bff;
    background: #f6fbff;
}
.api-title.api-delete {
    border-color: #dc3545;
    color: #dc3545;
    background: #fff6f7;
}
