body, html {
    padding: 0px;
    margin: 0px;
    overflow: hidden !important;
    background: #f4f4f4;
    font-family: 'Montserrat', sans-serif;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.login-page{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-mask {
    box-shadow: 0px 0px 10px 0.1px #00000010;
    padding: 50px;
    background: #fff;
}

.login-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form > * {
    width: 300px !important;
}

.logos{
    display: flex;
    gap: 10px;
}

.logos > img {
    width: 120px;
}

.btn-primary {
    background: #263e4f;
    border-color: #263e4f;
    height: 50px;
}
.btn-primary:hover {
    background: #263e4f;
    border-color: #263e4f;
}
.btn-primary:focus {
    background: #263e4f;
    border-color: #263e4f;
    box-shadow: unset !important;
}
.form-control{
    height: 50px !important;
}
.form-control:focus {
    outline: none !important;
    box-shadow: unset !important;
    border-color: #263e4f;
}
.app-container{
    width: 100vw;
    display: flex;
    flex-grow: 1;
    overflow: hidden !important;
}
.app-container .sidebar {
    min-width: 250px;
    height: 100vh;
    box-shadow: 1px 0px 10px 1px #00000010;
    background: white;
}
.app-container .content{
    width: 100%;
    height: 100vh;
    overflow: auto !important;
}

.app-container .sidebar .logos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90px;
    border-bottom: 1px solid #00000020;
}
.app-container .sidebar .logos > img{
    width: 200px;
}
.voices .item {
    font-size: 20px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #00000020;
    cursor: pointer;
    transition-duration: .1s;
}

.voices .item:hover {
    background: #263e4f;
    color: #fff;
}

.voices .item.active{
    background: #263e4f;
    color: white;
}
.app-container .content .body{
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 20px;
    overflow-y: auto;
}
.app-container .content .header {
    width: 100%;
    padding-left: 40px;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    align-items: center;
    border-bottom: 1px solid #00000015;
}
.app-container .content .header .section{
    font-size: 30px;
}
.btn.exit{
    width: 120px;
    height: 50px;
    font-size: 20px;
}
.location{
    font-size: 15px;
    color: #00000070;
}
tbody > tr:nth-of-type(odd) {
    background: #eff8ff;
}
.action-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #00000015;
    padding: 10px;
    gap: 10px;
    margin-bottom: 10px;
    height: 60px;
}
@media screen and (max-width: 600px) {
    .login-mask{
        padding: 30px !important;
    }
}