html,
body {
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}
a:hover {
    text-decoration: underline;
}

/* .site-wrapper{ min-height: 100%; } */

.site-wrapper > .menu {
    background: #282d31;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 300px;
}

.site-wrapper > .menu > .subtitle {
    display: block;
    color: #ccc;
    padding: 0 10px 0 20px;
    margin-bottom: 20px;
}

.site-wrapper > .menu .menu-item {
    display: block;
    padding: 10px 20px;
    color: #81878c;
}
.site-wrapper > .menu .menu-item:hover,
.site-wrapper > .menu .menu-item.active {
    color: #fff;
}

.site-content > .top-menu {
    height: 50px;
    line-height: 50px;
    background-color: #ecf0f3;
    padding: 0 20px;
}

.site-content > .top-menu a {
    color: #333;
    padding: 0 10px;
}
.site-content > .top-menu a.active {
    text-decoration: underline;
}

.site-content .content {
    padding: 30px;
}

.image .delete {
    color: var(--warning);
    border: 2px solid var(--warning);
    border-radius: 50%;
    background-color: #fff;
    width: 22px;
    height: 22px;
    text-align: center;
    position: absolute;
    top: -8px;
    right: -8px;
    opacity: 0.8;
    cursor: pointer;
}
.image .delete:hover {
    opacity: 1;
}

/* table list */
.table th a {
    color: #000;
}

.list-table tbody td {
    min-width: 15%;
}

/* login */
.login-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100%);
    height: calc(100vh);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/site_admin.jpg) no-repeat center center #474747;
    color: #fff;
}

.login-wrapper > form {
    max-width: 600px;
    width: 100%;
}

#login-logo-admin{
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 325px;
    margin-bottom: 30px;
}

#login-logo-admin-interno{
    display: block;
    margin: 0 auto;
    width: calc(100% - 60px);
    max-width: 525px;
    margin: 10px 30px 20px;
}

.dropdown {
    position: relative;
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: -20px;
    background-color: #f1f1f1;
    width: 100vw;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #999;
    color: white;
}

.dropdown-open {
    display: block;
}

.dropdown-button {
    border: none;
}

.hamburguer {
    transform: scale(1.5);
    color: var(--text-color);
}

@media (max-width: 810px) {
    #menu {
        display: none;
    }

    .list-table th,
    .list-table td {
        display: none;
    }
    .list-table th:nth-child(1),
    .list-table td:nth-child(1),
    .list-table td:last-child {
        display: block;
    }
}

.editor {
    position: fixed;
    z-index: 9999;
    width: 75%;
    height: 75%;
    overflow: hidden;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    border: 10px solid white;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
}

.editor .cancel {
    padding: 10px;
    border: 1px solid #999;
    border-radius: 10px;
    background-color: #fff;
    z-index: 9999;
    position: absolute;
    left: 10px;
    top: 10px;
}

.editor .confirm {
    padding: 10px;
    border: 1px solid #999;
    border-radius: 10px;
    background-color: #fff;
    z-index: 9999;
    position: absolute;
    right: 10px;
    top: 10px;
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
    margin: 0 !important;
}
