html {
    font-family: Roboto, sans-serif;
    font-size: 82.5%;
    font-weight: 300;
}

.geral {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.header-menu {
    width: 24rem;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: #1f1f1f;
    display: flex;
    flex-flow: column wrap;
}

.header-menu h1 {
    width: 100%;
    height: 5rem;
    padding: 0 2rem;
    color: #fff;
    font-weight: bold;
    line-height: 5rem;
    font-size: 1rem;
    border-bottom: 0.1rem solid #444;
}

/* menu */

.header-menu ul {
    width: 100%;
    height: 10rem;
}

.header-menu ul li a {
    display: flex;
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 4rem;
    padding: 0 2rem;
    border-right: 0 solid #1f1f1f;
    border-bottom: 0.1rem solid #2a2a2a;
    transition: all 0.25s;
}

.header-menu ul li a:hover,
.header-menu ul li a:active {
    background: #2b2b2b;
    color: #a02c2c;
    border-right: 0.5rem solid #a02c2c;
}

.header-menu ul li a:hover .adm-menuList-icon,
.header-menu ul li a:active .adm-menuList-icon {
    opacity: 0.8;
}

.adm-menuList-icon {
    width: 1.4rem;
    height: 4rem;
    margin: 0 1rem 0 0;
    opacity: 0.5;
    transition: opacity 0.25s;
}

.logout {
    float: right;
}

/*  Content, conteudo geral  */

.adm-main {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

/* admin-content */

.adm-content {
    width: calc(100% - 24rem);
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.adm-body {
    width: 100%;
    min-height: 100vh;
    padding: 4rem 3.5rem;
}

.adm-body--header {
    width: 100%;
    margin: 0 0 4rem 0;
}

.adm-body--header-view {
    padding: 0 0 1rem 0;
    margin: 0 0 4rem 0;
    border-bottom: 0.1rem solid #ddd;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.adm-body--header-title {
    font-size: 3rem;
    font-weight: 300;
    color: #a02c2c;
}

.adm-body--header-subtitle {
    color: #bbb;
    font-size: 2.2rem;
}

.adm-body--header-subtitle:before {
    content: "|";
    color: #ddd;
    margin: 0 0.5rem;
}

/* ********* */

.adm-body--header-actions {
    display: flex;
    height: 30px;
    flex-flow: row wrap;
    justify-content: flex-end;
}

.courses-options {
    display: inline-flex;
    margin-right: 1rem;
}

.courses-options > * {
    display: inline;
}

/* FORM SEARCH */

.formSearch {
    display: flex;
    flex-flow: row wrap;
    margin: 0 0 0 1.25rem;
    height: 3.6rem;
}

.search-field {
    border-top: 0.1rem solid #ddd;
    border-left: 0.1rem solid #ddd;
    border-bottom: 0.1rem solid #ddd;
    width: 100%;
    height: 100%;
    padding: 0 1.5rem;
    color: #999;
}

::placeholder {
    color: #bbb;
}

/* scroll */

::-webkit-scrollbar-track {
    background-color: #f4f4f4;
}

::-webkit-scrollbar {
    width: 0.8rem;
    background: #f4f4f4;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
}

/*  BUTTONS */

button,
a {
    cursor: pointer !important;
}

.btn-icon {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem;
    height: 3.6rem;
}

.btn-icon:hover {
    cursor: pointer;
}

.btn--add {
    background: #333;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
    transition: background 0.25s;
    text-transform: uppercase;
}

.btn--option {
    color: #fff;
    background: #5a5a5a;
    opacity: 0.5;
}

.active {
    opacity: 1;
}

.btn--add:active,
.btn--add:hover {
    background: #333;
    opacity: 0.9;
}

.btn--add img {
    margin: 0 0.75rem 0 0;
}

.btn--search {
    background: #78a84799;
    transition: background 0.25s;
}

.btn--search:active,
.btn--search:hover {
    background: #78a847;
    opacity: 0.9;
}

.btn-icon--img {
    width: 1.2rem;
}

.btn--cancel {
    background: #a02c2c;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
    transition: background 0.25s;
    float: left;
    margin-right: 1%;
    text-transform: uppercase;
}

.btn--save {
    background: #333;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
    transition: background 0.25s;
    float: left;
    text-transform: uppercase;
}

.btn--save:active,
.btn--save:hover {
    background: #333;
    opacity: 0.9;
}

.btn--cancel:active,
.btn--cancel:hover {
    background: #a02c2c;
    opacity: 0.9;
}

.alert-sucess span {
    width: auto;
    padding: 1.5rem;
    font-size: 2rem;
    height: 5rem;
    color: #fff;
}

.alert-warning span p {
    width: 27rem;
    font-size: 1.6rem;
    /* line-height: 150%; */
    background: red;
    padding: 2rem;
    color: #fff;
}

.alert {
    margin-bottom: 4rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 50rem;
    color: #fff;
    font-size: 1.5rem;
}

.alert-success span {
    background: darkslategrey;
    padding: 3rem;
}

.alert-warning span p,
.alert-warning span {
    background: #a02c2c;
    padding: 3rem;
}

/* FORMULARIO */

.form {
    margin-bottom: 3rem;
}

.form-group {
    width: 100%;
}

.form-group-buttons {
    width: 100%;
}

.label {
    color: #a02c2c;
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
}

.label-tip {
    color: #999;
}

.field {
    height: 3rem;
    border: 0.1rem solid #ccc;
    border-radius: 3px;
    margin: 0.75rem auto 2rem auto;
    color: #999;
    padding: 2rem;
    font-size: 1.4rem;
}

textarea {
    height: 15rem;
    border: 0.1rem solid #ccc;
    border-radius: 5px;
    margin: 0.75rem auto 2rem auto;
    color: #999;
    padding: 2rem;
    font-size: 1.4rem;
}

.field-select {
    height: 4rem;
    border-radius: 3px;
    border: 0.1rem solid #ccc;
    margin: 0.75rem auto 2rem auto;
    color: #999;
    padding-left: 2rem;
    font-size: 1.4rem;
}

input[type="file"] {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

input[type="radio"] {
    color: #333;
}

.form-legend-title {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
    font-style: italic;
}

.form-legend {
    font-size: 1rem;
    color: #a02c2c;
    text-decoration: underline;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Login */
.login-view {
    width: 100%;
    height: 100vh;
    background: #444;

    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.login-title {
    color: #fff;
    font-size: 3.4rem;
}

.rubens-lara {
    color: #a02c2c;
}

.login-subtitle {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 3rem 0;
}

.login-form {
    width: 100%;
    max-width: 30rem;
    padding: 3rem 2.5rem;
    border-radius: 0.3rem;
    background: #fff;

    display: flex;
    flex-flow: column wrap;
}

.login-label {
    color: #444;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 0 0.75rem 0;
}

.login-field {
    color: #000;
    width: 100%;
    height: 4rem;
    margin: 0 0 1.5rem 0;
    padding: 0 1.25rem;
    border: 0.1rem solid #ccc;
}

.login-message {
    color: #999;
}

.login-button {
    border: none;
    width: 100%;
    height: 4rem;
    background: #444;
    color: #fff;
    transition: background 0.25s;
}

.login-button:hover,
.login-button:active,
.login-button:focus {
    background: #092b3d;
    cursor: pointer;
}

.periodo-horario {
    color: #fff;
    background: #5a5a5a;
    padding: 0.5rem;
    margin-left: 1rem;
    opacity: 0.5;
    text-transform: uppercase;
}

.ativo {
    opacity: 1;
}

.table {
    margin: 50px 0;
}

.filtros {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.filtro {
    text-align: center;
    flex-direction: column;
}

.filtros a:nth-child(1) span {
    margin-left: 0;
}

.filtro-desc {
    color: #a02c2c;
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.itens {
    margin-top: 1.4rem;
}

.acoes {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-default {
    color: #fff;
    height: 3.6rem;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0 1.5rem;
    text-align: center;
    width: 35% !important;
    margin-right: 1.5rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    cursor: pointer !important;
    border-radius: 10%;
}
.btn {
    border-radius: 10% !important;
}

.btn-delete {
    background: #a02c2c;
}

.btn-submit {
    background: rgb(237, 150, 35);
}

.btn-normal {
    background: #5f5f5f;
}

.acoes button:last-child {
    margin-right: 0;
}

.feedback {
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.alertas {
    width: 400px;
    display: flex;
    flex-wrap: wrap;
    right: 0;
    top: 0;
    padding-top: 20px;
    position: absolute;
    overflow-x: hidden;
    flex-direction: column;
}

.alertas-fechados {
    height: 0;
}

.alerta {
    width: 95%;
    opacity: 1;
    z-index: 1;
    color: #fff;
    display: flex;
    margin-top: 8px;
    min-height: 60px;
}

.alerta .container {
    width: 80%;
    display: flex;
    margin-left: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    min-height: inherit;
    align-items: center;
    justify-content: space-between;
}

.alerta .container .msg {
    width: 90%;
    overflow: hidden;
    line-height: 25px;
    padding: 10px 15px 10px 10px;
}

.alerta-icone {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.alerta-fechar {
    width: 1.8rem;
    height: 1.8rem;
    cursor: pointer;
}

.alerta-icone img {
    width: 25px;
    height: 25px;
}

.alerta-neutro {
    background-color: #3c3b3b;
}

.alerta-erro {
    background-color: #71211c;
}

.alerta-sucesso {
    background-color: #20712f;
}

@media (min-width: 768px) {
    .form-group {
        max-width: 60rem;
    }
}

/* Login */
.login-view {
    width: 100%;
    height: 100vh;
    background: #444;

    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.login-title {
    color: #fff;
    font-size: 3.4rem;
}

.rubens-lara {
    color: #a02c2c;
}

.login-subtitle {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 3rem 0;
}

.login-form {
    width: 100%;
    max-width: 30rem;
    padding: 3rem 2.5rem;
    border-radius: 0.3rem;
    background: rgb(237, 150, 35);

    display: flex;
    flex-flow: column wrap;
}

.login-label {
    color: #444;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 0 0.75rem 0;
}

.login-field {
    color: #000;
    width: 100%;
    height: 4rem;
    margin: 0 0 1.5rem 0;
    padding: 0 1.25rem;
    border: 0.1rem solid #ccc;
}

.login-message {
    color: #999;
}

.login-button {
    border: none;
    width: 100%;
    height: 4rem;
    background: #78a847;
    color: #fff;
    transition: background 0.25s;
}

.login-button:hover,
.login-button:active,
.login-button:focus {
    background: #092b3d;
    cursor: pointer;
}
