@import 'https://fonts.googleapis.com/css?family=Open+Sans|Quicksand:400,700';

*,
*::before,
*::after {
    box-sizing: border-box;
}

p {
    margin: 0!important;
}

.dx-datagrid .dx-header-filter {
    color: #6A1748 !important;
}

.dx-datagrid .dx-header-filter-empty {
    color: rgba(149, 149, 149, .5) !important;
}

.required-field  .v-label::before {
    content: "* " ;
    color: red;
    margin-left: 4px; 
}

body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Quicksand', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html,body, #__nuxt, #__layout{
    height:100%!important;
    width: 100%!important;
}

req{
    color: red;
}

/* width */
::-webkit-scrollbar {
    width: 2px;
    background-color: #888;
}

/* Track */
::-webkit-scrollbar-track {
    background: white; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-color); 
    border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #888; 
}

h1{
    margin: 0 !important;
}

input[type="checkbox"]{
    accent-color: var(--main-color);
}

.background-login {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    font-family: 'Quicksand', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  
    background: rgba(30,29,31,1);
    background: -moz-linear-gradient(-45deg, rgba(30,29,31,1) 0%, #93155F 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(30,29,31,1)), color-stop(100%, #93155F));
    background: -webkit-linear-gradient(-45deg, rgba(30,29,31,1) 0%, #93155F 100%);
    background: -o-linear-gradient(-45deg, rgba(30,29,31,1) 0%, #93155F 100%);
    background: -ms-linear-gradient(-45deg, rgba(30,29,31,1) 0%, #93155F 100%);
    background: linear-gradient(135deg, rgba(30,29,31,1) 0%, #93155F 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e1d1f', endColorstr='#df405a', GradientType=1 );
  }

/* Buttons */
.folder-icon{
    width: 24px;
    height: 24px;
}
.folder-btn{
    padding: 12px 20px;
    background-color: var(--main-color);
    min-width: 64px;
    border: none;
    border-radius: 6px;
    color: #FFF;
    cursor: pointer;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.charts-icon{
    width: 24px;
    height: 24px;
}
.charts-btn{
    padding: 12px 20px;
    background-color: var(--main-color);
    min-width: 64px;
    border: none;
    border-radius: 6px;
    color: #FFF;
    cursor: pointer;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.att-btn{
    padding: 12px 20px;
    width: 210px;
    background-color: var(--main-color);
    border: none;
    border-radius: 6px;
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.att-btn:hover, .folder-btn:hover{
    background-color: var(--main-color-hover);
    transition: .5s;
}

.att-btn:disabled{
    background-color: #808080;
    cursor: default;
}

.att-btn.disabled:hover{
    filter: none;
}

.att-red-btn{
    padding: 10px;
    background-color: #F44336;
    border: none;
    border-radius: 6px;
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: .5s;
}

.att-red-btn:hover{
    background-color: #F44336a9;
    transition: .5s;
}

.att-red-btn.disabled{
    background-color: #808080;
    cursor: default;
}

.att-red-btn.disabled:hover{
    filter: none;
}

/* Messages */    

.error-message{
    position: fixed;
    background-color: #FFDDDD; 
    padding: 20px;
    border-radius: 6px;
    border: solid 1px red;
    bottom: 40px;
    right: 40px;
    border-radius: 6px;
    font-weight: 600;
    color: red;
    z-index: 30;
    transition: 0.5s;
}

.success-message{
    position: fixed;
    background-color: #DDFFDD;
    padding: 20px;
    border-radius: 6px;
    border: solid 1px green;
    bottom: 40px;
    right: 40px;
    border-radius: 6px;
    font-weight: 600;
    color: green;
    z-index: 30;
    transition: 0.5s;
}

.box-icon{
    width: 20px;
    height: 20px;
    color: var(--main-color);
}

.pencil-icon{
    width: 16px;
    height: 16px;
    color: var(--main-color);
}
.pencil-icon:hover{
    cursor: pointer;
    color: var(--main-color-hover);
}

/* width */
.div-body ::-webkit-scrollbar {
    width: 1px;
}

/* Track */
.div-body ::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

/* Handle */
.div-body ::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 1px;
}

/* Handle on hover */
.div-body ::-webkit-scrollbar-thumb:hover {
    background: #888; 
}
.btn-save,
.btn-cancel{
    width: 120px;
    height: 36px;
    background-color: var(--main-color);
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s;
    font-weight: 600;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.btn-save:hover{
    background-color: var(--main-color-hover);
}
.btn-cancel{
    background-color: #F44336;
}
.btn-cancel:hover{
    background-color: #f1766e;
}
.btn-save:disabled{
    background-color: #808080;
    cursor: default;
}

.input-field{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 5px;
}
.input-field label{
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 5px;
}
.input-field input, .input-field textarea, .input-field select{
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 12px 5px;
    font-size: 16px;
    transition: .5s;
    resize: none;
}
.input-field input:focus, .input-field textarea:focus, .input-field select:focus{
    border-color: var(--main-color);
    outline: none;
}

.v-data-table .v-data-table-header tr th {
    font-family: 'Quicksand', sans-serif !important;
    font-size: 16px !important;
    background-color: #f5f5f5 !important;
    font-weight: bold !important;
    color: var(--dark-gray) !important;
}
.v-data-table tbody tr td {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px !important;
    font-weight: 500;
}
.v-data-table tbody tr{
    background-color: #fff; 
}
.v-data-table tbody tr:nth-child(even) { 
    background-color: #fafafa;
}
.btn-new{
    width: 300px;
    height: 40px;
    background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: .5s;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px
}
.btn-new:hover{
    background-color: var(--main-color-hover);
}

.table-icon{
    font-size: 16px!important;
    color: var(--main-color)!important;
    min-width: 24px!important;
    cursor: pointer;
    transition: .5s;
}
.table-icon-null{
    font-size: 16px!important;
    color: var(--medium-gray)!important;
    width: 100%;
    transition: .5s;
}
.table-icon:hover{
    color: var(--main-color-hover)!important;
}

.table{
    background-color: var(--white);
    padding: 0px;
    border-radius: 6px;
    width: 100%;
    margin-top: 20px;
}
#data-table table thead tr th {
    background-color: var(--light-gray) !important; 
}
#data-table table tbody tr {
    background-color: var(--white) !important; 
}
#data-table table tbody tr:nth-child(even) {
    background-color: var(--very-light-gray) !important; 
}
#payment-data-table {
    text-align: center;
}
#payment-data-table table thead tr th {
    background-color: var(--light-gray) !important; 
}
#payment-data-table table tbody tr {
    background-color: var(--white) !important; 
}
#payment-data-table table tbody tr:nth-child(even) {
    background-color: var(--very-light-gray) !important; 
}
/* .table-text{
    width: 100%;
    display: flex;
    justify-content: center;
} */

.edit-btn{
    margin-right: 20px; 
    color: var(--main-color); 
    cursor: pointer;
    transition: .5s;
}

.end-btn{
    color: #119f1d; 
    cursor: pointer;
    transition: .5s;
}

.edit-btn:hover, .end-btn:hover{
    filter: brightness(120%);
    transition: .5s;
}

.btn-filter::-webkit-scrollbar {
    width: 3px !important;
    background-color: #888;
}
/* Track */
.btn-filter::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
/* Handle */
.btn-filter::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 1px;
}
/* Handle on hover */
.btn-filter::-webkit-scrollbar-thumb:hover {
    background: #888; 
}

.disabled{
    color: gray;
}

.green{
    color: green;
}

.red{
    color: red;
}

.index-body{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 90vh;
}
.index-table{
    display: flex;
    flex-direction: column;
    width: 70%;
    height: 100%;
}
.index-post{
    width: 30%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.table-text{
    width: 100%;
    display: flex;
    overflow: hidden!important;
    text-overflow: ellipsis!important;
    white-space: nowrap;
    flex-direction: column;
    justify-content: flex-start;
}
.page-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.box-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    gap: 20px;
}

.content-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
}
.content-box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.content-box h3{
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
}
.content-list{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-height: 300px;
    max-height: 350px;
    overflow: auto;
}
.content-list p{
    font-size: 16px;
    color: #000000;
}
.content-list b{
    color: #6A1748;
}
.data-item {
    width: 100%;
    min-height: 260px;
}
.data-item b{
    color: #000000;
}
.content-total{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    padding: 0px 10px 0px 0px;
}
.content-total p{
    font-size: 22px;
    color: #6A1748;
    font-weight: 600;
}
.content-total span {
    font-size: 16px; 
    color: #000; 
    font-weight: 600;
}
hr {
    background-color: #F0F0F0;
    border-color: #F0F0F0;
}

.content-additional{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    width: auto;
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 5px;
    margin-bottom: 5px;
    margin-left: 15px;
}
.content-additional p{
    font-size: 14px;
    color: #6C6C6C;
}

.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections {
    min-height:auto!important;
}