/**------ GENERAL STYLES -------- */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

.spacer{flex: 1}

.color-text--accent{
    color: #d35400;
}
.color-text--blue{
    color: #29589e;
}
.color--accent{
    color: #d35400;
}
.color--blue{
    color: #29589e;
}

.btn-giross{
    background: #d35400;
    border: 0;
    padding: .4rem 2.3rem;
    color: #FFF
}
.btn-giross:hover{
    box-shadow: 0 0 5px #00000061;
    color: #FFF
}

.btn-icon {
    border-radius: 50%;
    font-size: 24px;
    height: 32px;
    margin-left: 0;
    margin-right: 0;
    min-width: 32px;
    width: 32px;
    padding: 0;
    overflow: hidden;
    color: inherit;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn-icon:hover{
    background-color: rgba(158,158,158,.2);
}

.card{
    border-radius: 6px;
    overflow: hidden;
    padding: 10px 20px;
    box-shadow: 1px 1px 5px #ccc;
}

.table .thead-dark th {
    background-color: #29589e;
    border-color: #204782;
}

.input-container{
    border: 1px solid #0000001f;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 4px;
    background: #ffffff;
    box-shadow: 0 0 3px #00000026;
}

.input-label{
    font-size: 10px;
    color: #a0a0a0;
}

.input-container input{
    border: 0;
    padding: 0;
    width: 100%;
    outline: none;
    color: #d35400;
}

/**------ Dashboard -------- */

#dashboard-container{
    background: #cd6932;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

/**--------- Sidebar --------- */
#dashboard-sidebar{
    background: #cd6932;
    width: 64px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}

#dashboard-sidebar a{
    text-decoration: none;
}

#sidebar-header{
    padding: 0 20px;
    font-size: 26px;
    color: white;
    font-weight: 300;
    height: 81px;
    display: flex;
    align-items: center;
}

#sidebar-header span{
    display: none;
}

#sidebar-header img{
    width: 28px
}

#sidebar-menu{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item {
    height: 45px;
    display: flex;
    flex-direction: row;
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    cursor: pointer;
}

.menu-item:hover {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
}

.menu-item div {
    font-size: 16px;
    margin-left: 8px;
    display: none;
}

.menu-item.active {
    background-image: linear-gradient(to right, #2c3e50c9, #141923);
    border-left: 4px solid #29589e;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8);
}


/**---------- Content ---------- */
#dashboard-content{
    flex: 1;
    height: 100%;
    background: #e3e2e7;
    overflow-x: hidden;
    overflow-y: auto;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    margin-left: 64px;
}

#content-title {
    padding: 20px 30px;
    font-size: 26px;
    color: #525252;
    font-weight: 400;
    background: #FFF;
    border-bottom: 1px solid #d6d6d6;
}

#content-inside {
    padding: 20px 15px;
}

/** -------- LOGIN ------------- */
#login-container{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

#login-sidebar {
    width: 500px;
    height: 100%;
    background: #FFF;
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


#login-imageholder{
    flex: 1;
    height: 100%;
    background: #1e73b7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px
}

#login-imageholder img{
    width: 50%
}

#login-sidebar>div {
    width: 300px
}
#login-sidebar .login-logo {
    width: 100px;
}

/** ------------------------ */
.card.detalhes-corrida h5{
    margin-bottom: 2px;
}

/* Listagem */
.index-table img{
    width: 50px;
}

.table tr td {
    vertical-align: middle;
}

.gap-1 {
    gap: 16px;
}
