* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

a, select {
    outline: 0;
}

a:hover {
    text-decoration: none;
    color: red;
}

body {
    background: #eee;
}

textarea {
    resize: vertical;
}

.btn:focus, .btn.focus {
    box-shadow: none;
}

.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    margin: 0 auto;
    padding: 0;
}

.content {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 20px 50px;
    min-height: 500px;
}

.content.form-content {
    max-width: 700px;
}

.content.--dashboard {
    text-align: center;
    padding: 20px;
}

.content.--dashboard .logo {
    width: 200px;
    margin-bottom: 20px;
    box-shadow: 0 10px 5px -5px rgba(0,0,0,0.5);
    border-radius: 50%;
    background: #fff;
}

.content.--dashboard .title{
    font-size: 24px;
    margin-bottom: 5px;
}

.form-content .title {
    font-size: 16px;
    font-weight: 600;
}

.col {
    margin: 0;
    padding: 0;
}

.navbar {
    padding: 5px 40px;
}
.navbar-brand {
    margin-right: 3rem;
}

.navbar-brand .logo {
    width: 100px;
}
.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin: 0 20px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.nav-link .fas {
    font-size: 20px;
    margin-bottom: 5px;
}

.landing-table {
    box-shadow: 0px 3px 7px -5px rgba(0,0,0,0.5);
    font-size: 14px;
    background: #fff;
}

.landing-table .col-active,
.landing-table .col-edit,
.landing-table .col-image  {
    text-align: center;
}

.landing-table .col-image img {
    width: 45px;
    box-shadow: 0 3px 4px -1px rgba(0,0,0,0.7);
}

.actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
}

/* .be_form {
    max-width: 700px;
    margin: 0 auto;
} */

.button-cont {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.button-cont .btn {
    min-width: 150px;
}

.Editor-container .btn {
    font-size: 13px;
    padding: 7px;
}

.row {
    margin: 0 auto;
}
#upload {
    opacity: 0;
}

#upload-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}

.image-area {
    border: 2px dashed rgba(255, 255, 255, 0.7);
    padding: 1rem;
    position: relative;
}

.image-area.hidden {
    display: none;
}

.image-area::before {
    content: 'Uploaded image result';
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    z-index: 1;
}

.image-area img {
    z-index: 2;
    position: relative;
}
