/* .row {
    width: 100%;
    max-width: 1024px;
    display: -webkit-inline-box;
    flex-wrap: wrap;
    margin-bottom: 24px;
    justify-content: space-between;
} */

:root {
    --primary-color: #00602A;
    --secondary-color: #008138;
    --tertiary-color: #89BD47;
    --fourtry-color: #C2DE35;
}

.action i {
    cursor: pointer;
}

.w300 {
    width: 300px;
}

.gorup {
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

textarea:focus,
input:focus {
    outline: none;
}

*:focus {
    outline: none;
}

body {
    margin: 0;
    padding: 0;
    background-color: #F3F7FD;
    font-family: 'Myriad Pro';
}

.login {
    width: 100%;
    height: 100vh;
    display: flex;
}

.left-green {
    flex: 1;
    height: 100vh;
    border-radius: 0 30px 30px 0;
    background: var(--primary-color);
    background: linear-gradient(0deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.right {
    flex: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #F3F7FD;
}

.login .logo {
    width: 232px;
    height: 232px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -116px;
    margin-top: -116px;
}

.login .box-login {
    width: 90%;
    max-width: 440px;
    height: 420px;
    margin-left: 180px;
    margin-top: 200px;
}

.login .box-login h3 {
    color: #242424;
    font-family: 'Myriad Pro';
    font-size: 20px;
    font-weight: normal;
}

.login .box-login h3 span {
    font-size: 30px;
}

.form-input {
    width: 80%;
    max-height: 51px;
    background: #FFF;
    padding: 2px 0 2px 10px;
    box-shadow: rgba(173, 27, 231, 0.20) 1px 1px 3px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 20px;
    font-family: 'Myriad Pro';
}

.form-input i {
    margin-left: 10px;
}

.form-input input {
    max-width: 66%;
    font-size: 22px;
    margin-left: 20px;
    padding: 8px;
    font-family: 'Myriad Pro';
    border: none;
    font-weight: normal;
}

.form-input input::placeholder {
    font-size: 20px;
    font-family: 'Myriad Pro';
    font-weight: normal;
}

.form-input input:focus,
.btn-login {
    outline: none;
}

.btn-login {
    width: 160px;
    color: #FFF;
    font-family: 'Myriad Pro';
    border: none;
    background: var(--primary-color);
    background: linear-gradient(0deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    cursor: pointer;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 5px;
    margin-top: 16px;
    font-weight: normal;
}

.box-login a {
    color: var(--primary-color);
    text-decoration: none;
}

.dashboard {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.sidebar {
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-color);
    background: linear-gradient(0deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.header-app {
    background: var(--primary-color) !important;
    background: linear-gradient(0deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
}

.sidebar a {
    color: white;
}

.sidebar .item-nav {
    font-size: 17px;
    margin: 0 0 20px 0;
    width: 200px;
    /* text-align: center; */
}

.sidebar .item-nav ul {
    list-style: none;
    display: none;
}

.sidebar .item-nav ul li a {
    margin: 5px 0;
}

.sidebar .item-nav a {
    color: white !important;
    /* width: 100%; */
    float: left;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.sidebar .item-nav a .text {
    padding: 2px 30px 2px 20px;
    margin-left: -25px;
    border-radius: 0 5px 5px 0;
    position: relative;
    z-index: 1;
}

.sidebar .item-nav a:hover .text,
.sidebar .item-nav .router-link-active .text {
    color: var(--primary-color);
    background: white;
}

.sidebar .item-nav:hover ul,
.sidebar .item-nav .router-link-active ul {
    display: block;
}

.sidebar .item-nav .icon {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background: rgb(209, 210, 212);
    background: linear-gradient(0deg, rgba(209, 210, 212, 1) 0%, rgba(255, 255, 255, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color) !important;
    position: relative;
    z-index: 2;
}

.sidebar .item-nav a .text-b {
    width: 150px;
    padding: 2px 10px 2px 10px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    background: white;
}

.sidebar .item-nav a:hover .text-b {
    color: white;
    background: var(--secondary-color);
}

.img-logo {
    background: var(--primary-color);
    background: linear-gradient(0deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 100%;
}

.sidebar .logo {
    width: 120px;
    margin-bottom: 20px;
}

.sidebar .logo img {
    width: 100%;
}

.nav-btn {
    z-index: 3;
    position: fixed;
    top: 20px;
    left: 10px;
    border: none;
    background: none;
    color: #566F20;
    font-size: 30px;
}

.top-dashboard {
    z-index: 1;
    width: calc(100% - 10px);
    padding: 5px;
    display: flex;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    justify-content: flex-end;
    align-items: center;
}

.notifications {
    position: absolute;
    top: 21px;
    right: 240px;
    cursor: pointer;
}

.notifications i {
    font-size: 30px;
    color: #566f20;
    text-shadow: 1px 2px 3px #e0e0e0;
}

.notifications .badge {
    position: absolute;
    background: #F00;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFF;
    font-size: 12;
    margin-top: -10px;
    margin-left: 20px;
}

.notifications .list {
    position: absolute;
    width: 300px;
    right: 10px;
}

.notifications .list .item {
    flex-direction: column;
    text-align: left;
    align-items: start;
    justify-content: center;
    margin-top: 5px;
}

.person {
    width: 195px;
    display: flex;
    position: absolute;
    right: 20px;
    height: 50px;
    top: 10px;
    align-items: center;
    justify-content: flex-end;
}

.nav-persion {
    position: absolute;
    top: 60px;
    width: 190px;
    background: #242424;
}

.nav-persion .item {
    color: rgb(212, 212, 212);
    padding: 5px;
    cursor: pointer;
}

.nav-persion a {
    text-decoration: none;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: palegreen 2px solid;
    background-size: cover;
}

.dashboard main {
    margin-top: 100px;
    padding: 20px;
    min-height: 70vh;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* max-width: 1024px; */
}

.title {
    color: #2e2e2e;
    font-weight: bold;
    font-size: 24px;
}

.subtitle,
.subtitle-white {
    color: #2e2e2e;
    font-weight: bold;
    font-size: 18px;
}

.subtitle-white {
    color: white;
}

.card-transparent {
    height: 160px;
    color: #9BBD5B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding: 0 20px;
}

.card,
.card-green {
    border-radius: 10px;
    padding: 5px 20px 20px 20px;
    color: #636E7C;
    background: white;
    margin-right: 20px;
    margin-top: 15px;
}

.card-green {
    background: #9BBD5B;
    color: white;
}

.card-green .subtitle {
    color: white;
}

.card .name {
    margin-left: 20px;
}

.card .item {
    width: 100%;
    display: flex;
    align-self: start;
    justify-content: space-between;
    font-size: 15px;
}

.card .item strong {
    margin-right: 30px;
}

.card .avatar {
    position: absolute;
    margin: 0 -40px;
}

.card .hedlines {
    display: flex;
    margin: 35px 0 0 0;
    align-items: center;
    justify-content: center;
}

.card .hedlines .avatar {
    position: relative;
    margin: 0 -20px 0 0;
}

.card .meta {
    background: #19D5F6;
    color: white;
    padding: 2px 3px;
    border-radius: 30px;
}

.gorup .card {
    /* margin-left: 5px; */
}

.text-center {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    width: 100%;
    clear: both;
    text-align: center;
    color: var(--primary-color);
}

.footer img {
    width: 45px;
    height: 45px;
}

.list .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    /* max-width: 950px; */
    background: white;
    padding: 15px;
    border-radius: 5px;
}

.list .item .icon {
    color: white;
    background: #2CBB57;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.list .item strong {
    margin-left: 20px;
}

.list .item .title-file {
    flex: 1;
    display: flex;
    align-items: center;
}

.search {
    width: 100%;
    background: #FFF;
    padding: 12px 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.search input {
    width: 100%;
    border: none;
}

.search i {
    margin-right: 20px;
    font-size: 30px;
    color: #CCC;
}

.search .active {
    color: #242424;
}

.title-button {
    display: flex;
    align-items: center;
}

.btn-add,
.btn-add-orange,
.btn-cancel {
    background: #6baf59;
    font-size: 18px;
    color: white;
    height: 45px;
    border: none;
    padding: 0 20px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 0px 2px #000;
}

.btn-add-orange {
    background-color: orange;
    box-shadow: none;
    height: 40px;
}

.btn-cancel {
    background-color: red;
}

.small {
    font-size: 13px;
    padding: 0 10px;
    height: 30px;
}

.percentage {
    height: 5px;
    background-color: #EBEBEB;
    border-radius: 30px;
    width: 100%;
    margin: 20px 0;
}

.percent {
    height: 5px;
    border-radius: 30px;
}

.form,
.message {
    width: calc(100% - 60px);
    background: #FFF;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    color: #6d6d6c;
}

.input {
    text-align: left;
    font-size: 12px;
    color: orange;
}

.message {
    padding: 100px 30px;
}

.form h1,
.message h1 {
    color: #6baf59;
}

.form {
    display: flex;
    flex-direction: column;
}

.row .col-2 {
    width: 10%;
}

.row .col-3 {
    width: 25%;
}

.row .col-4 {
    width: 33%;
}

.row .col-6 {
    width: 50%;
}

.form .row {
    display: flex;
}

.form input {
    width: calc(100% - 20px);
    font-size: 16px;
    padding: 5px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px #000 solid;
}

.select {
    width: calc(100% - 20px);
    font-size: 16px;
    padding: 5px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px #000 solid;
}

.error-input {
    color: orangered;
}

.btn {
    cursor: pointer;
    width: 30px;
    height: 30px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog {
    width: 300px;
    position: fixed;
    top: 5% !important;
    left: 50%;
    padding: 10px;
    margin-left: -150px;
    text-align: center;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999999999;
    box-shadow: 1px 2px 3px #242424;
}

.dialog input,
.dialog select {
    width: 200px;
    padding: 5px;
    margin: 5px 0;
}

.btn-angle {
    text-align: center;
    width: 50px;
    padding: 5px;
    font-size: 30px;
    color: #9BBD5B;
}

.dates {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .row {
        width: 93%;
    }
    .dashboard main {
        padding: 10px;
    }
    .search {
        width: 96%;
    }
}

.v-pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.v-pagination>li {
    display: inline;
}

.v-pagination__item,
.v-pagination__navigation {
    padding: 10px;
    margin: 2px;
    cursor: pointer;
    color: #FFF;
    background: #6baf59;
    border: none;
    border-radius: 5px;
}

.v-pagination__navigation--disabled,
.v-pagination__item--active {
    background: orange;
}

.brazao {
    display: flex;
}

.brazao .text {
    background-color: var(--primary-color);
    padding-left: 23px;
    padding-right: 23px;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 60px;
    margin-left: -15px;
    margin-top: 26px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    border-radius: 0 6px 6px 0;
}

.brazao .text .b-title {
    color: white;
    font-size: 20px;
}

.brazao .text .b-name {
    color: var(--fourtry-color);
}

.stock-print {
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.stock-print .f-b {
    font-size: 50px;
}

.card-print {
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    margin-right: 30px;
    text-align: center;
}

.b-download {
    cursor: pointer;
}

.brazao img {
    height: 120px !important;
    position: relative;
    z-index: 2;
}

@media print {
    @page {
        size: landscape;
    }
    .no-print,
    .v-toolbar__content,
    header,
    .footer {
        display: none !important;
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
    }
    .v-main,
    .v-content {
        padding: 0 !important;
    }
    .v-btn {
        border: none !important;
        background: none !important;
        box-shadow: none !important;
        width: 150px;
    }
    .v-btn__content {
        text-overflow: clip ellipsis !important;
        white-space: nowrap;
        justify-content: flex-start !important;
        font-size: 12px;
        width: 50px !important;
        overflow: hidden;
    }
    table h3 {
        margin: 0;
        padding: 0;
        font-size: 16px;
    }
    table tr {
        text-align: left !important;
    }
    table tr td,
    table tr th {
        width: 10% !important;
        text-align: left !important;
        text-overflow: clip ellipsis !important;
        white-space: nowrap;
        justify-content: flex-start !important;
        font-size: 12px;
        overflow: hidden;
        padding: 0 !important;
        height: auto !important;
    }
    table tr td span,
    table tr th h3,
    table tr th span {
        width: 10% !important;
        text-align: left !important;
        text-overflow: clip ellipsis !important;
        white-space: nowrap;
        justify-content: flex-start !important;
        font-size: 12px;
        overflow: hidden;
        padding: 0 !important;
        height: auto !important;
    }
}