/**
* 
* 
* El orden inicia en los - GENERALES - que se comparten en toda la plataforma.
* 
* 1- Generales.
* 2- Analitica.
* 3- Loader.
* 4- Calendar.
* 5- Artista.
* 6- Button Modal.
* 7- Footer.
* 8- Media Queries.
*
*
**
*/


/*
//TODO: Cambiar los styles de las tablas.
*/


/*=====----> STYLES GENERALES START <----=====*/

@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
html,
body {
    height: 100%;
    margin: 0;
    font-family: "Roboto", sans-serif !important;
    background-color: #dddddd !important;
    overflow-x: hidden;
}

section {
    padding-bottom: 4rem;
}

h5 {
    color: #7d7d7d;
}

.mb-10 {
    margin-bottom: 6rem;
}

.mt-10 {
    margin-top: 6rem;
}

.navbar {
    padding: 0.2rem 1rem !important;
}

.backgroundGral {
    background-color: white;
    border-radius: 3px;
    /* box-shadow: 1px 1px 1px 1px grey; Shadow previa */
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.centrarTexto {
    display: block;
    margin: 0 auto;
}

.background-btnBlack {
    border: none;
    padding: 5px 30px;
    border-radius: 10px 10px 10px 10px;
    color: #f4da30;
    background-color: black;
    margin-left: 1rem;
    font-weight: 600;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.background-btnBlack:hover {
    background-color: #f4da30;
    color: black;
    transition: 0.3s;
}

.rowCentrado {
    display: flex;
    justify-content: center;
}

.container {
    padding-left: 0px;
    padding-right: 0px;
}

.btnAnalytics {
    border: none;
    padding: 5px 30px;
    border-radius: 10px 10px 10px 10px;
    background-color: #f4da30;
    font-weight: 600;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.btnAnalytics:hover {
    background-color: black;
    color: #f4da30;
    transition: 0.3s;
}

.form-control {
    border: none;
    background-color: #ffffff;
    border-bottom: 2px solid #f4db31 !important;
}

.mat-option.mat-active {
    background-color: black;
    color: #f4da30;
}

.bBottom {
    border-bottom: 1px solid gray;
    padding-top: 1rem;
}


/*Style button X filtrar start*/

.mat-icon-button {
    width: 20px;
}

.size {
    font-size: 20px;
}


/*Style button X filtrar start*/

.widthInputs {
    width: 17rem;
}


/*-----> Fade In start */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}


/*-----> Fade In end */


/*-----> Inputs forms start */

label {
    position: relative;
    display: block;
    width: 100%;
}

label>input {
    position: relative;
    background-color: transparent;
    -webkit-background-color: transparent;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    outline: none;
    height: 40px;
    width: 100%;
    font-size: 16px;
    margin: 0 0 20px 0;
    padding: 0;
    box-shadow: none;
    box-sizing: content-box;
    transition: all 0.3s;
}

label>input:focus+span {
    transform: translateY(-25px) scale(0.8);
    transform-origin: 0;
    color: #f4da30;
}

label>input:focus {
    border-bottom: 1px solid #f4da30;
    box-shadow: 0 1px 0 0 #f4da30;
}


/* Select styles analitica START(si va a quedar el de material, eliminar y agregar de ANGULAR MATERIAL)*/

.select {
    position: relative;
}

.select-text {
    position: relative;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    padding: 0 5px 5px 0;
    font-size: 17px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #919191;
}

.select-text:focus {
    outline: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.select .select-text {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

.arrowDropdown:after {
    position: absolute;
    top: 15px;
}

.select:after {
    position: absolute;
    top: 30px;
    right: 10px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.select-label {
    color: rgba(115, 115, 115, 1);
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 2px;
    transition: 0.2s ease all;
}


/* active state */

.select-text:focus~.select-label,
.select-text:valid~.select-label {
    color: #747474;
    top: -20px;
    transition: 0.2s ease all;
    font-size: 12px;
}

.select-bar {
    position: relative;
    display: block;
    width: 180px;
}

.select-bar:before,
.select-bar:after {
    content: "";
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #f4da31;
    transition: 0.2s ease all;
}

.select-bar:before {
    left: 50%;
}

.select-bar:after {
    right: 50%;
}


/* active state */

.select-text:focus~.select-bar:before,
.select-text:focus~.select-bar:after {
    width: 50%;
}


/* HIGHLIGHTER ================================== */

.select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* Select styles analitica END(si va a quedar el de material, eliminar y agregar de ANGULAR MATERIAL)*/


/*--------> styles Alerts start<----------*/

.swal2-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.swal2-container.swal2-shown {
    background-color: transparent;
    width: 100%;
}

.swal2-popup {
    width: 21em !important;
}

#swal2-title {
    font-size: 17px !important;
}

.swal2-content {
    font-size: 14px !important;
}

.swal2-icon.swal2-info {
    color: #f4da30 !important;
    border-color: #f4da30 !important;
}

.mat-input-element {
    width: 100% !important;
}


/*--------> styles Alerts end <----------*/


/*--------> Styles buttons analytics start <----------*/

.button-style {
    border: none;
    padding: 0.2rem 1rem 0.2rem 1rem;
    border-radius: 10px 10px 10px 10px;
    color: black;
    background-color: #f4da30;
    margin-left: 1rem;
    font-weight: 600;
}

.button-style:hover {
    transition: 0.3s;
    color: #f4da30;
    background-color: black;
}

.button-style i {
    font-size: 14px;
}

.btn-yellow {
    background-color: transparent;
    border-color: #edd920;
    color: #343a40;
    height: 25px;
    width: 25px;
    margin-right: 5px;
    padding: 0 !important;
    border-radius: 0;
}

.btn-yellow:hover {
    background-color: #edd920;
    border-color: #edd920;
    color: #343a40;
}


/*--------> Styles buttons analytics end <----------*/

.mb-10 {
    margin-bottom: 6rem;
}

.mat-header-cell {
    color: #ed3!important;
    background-color: black;
    font-size: 14px!important;
}

.bgWhite {
    background-color: white;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.grayBtn {
    color: gray;
}


/*=====----> STYLES GENERALES END <----=====*/


/*=====----> INGRESOS STYLES START <----=====*/

.pb-10 {
    padding: 3rem 3rem 10.2rem 3rem;
}

.hrIngresos {
    border-color: yellow;
}

.w-filter {
    width: 100%;
    border-radius: 0;
}

.backgroundTable {
    background-color: #c3c3c3;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
    border-radius: 2px;
}


/*=====----> INGRESOS STYLES END <----=====*/


/*=====----> PERFIL STYLES START <----=====*/

.w-80 {
    width: 80%;
}


/*=====----> PERFIL STYLES END <----=====*/


/*=====----> ANALITICA STYLES START <----=====*/

.bg {
    background-color: #d8d7d7;
}

.bgFiltroAnalitica {
    background-color: #fafafa;
    padding: 2rem;
}

.centrar {
    margin-left: 1.5rem;
}


/*=====----> ANALITICA STYLES END <----=====*/


/*=====----> LOADER STYLES START <----=====*/

.spinner-circle-swish {
    position: fixed !important;
}


/*=====----> LOADER STYLES END <----=====*/


/*=====----> EGRESOS STYLES START <----=====*/

.w-48 {
    width: 48% !important;
}

.w-48ml {
    width: 48% !important;
    margin-left: 2% !important;
}

.centrarBtn {
    display: block;
    margin: 0 auto;
    padding: 0.3rem 4rem;
}


/*=====----> EGRESOS STYLES END <----=====*/


/*=====----> CALENDAR STYLES START <----=====*/

.theme-green .bs-datepicker-head {
    background-color: #f4db31 !important;
}


/*button.next span button.next span{
    font-size: 28px;
    line-height: 1;
    display: inline-block;
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}*/

.bs-datepicker-head {
    min-width: 0 !important;
    height: 2.5rem !important;
    padding: 0 !important;
}

.bs-datepicker-head button.current {
    /*display: block !important;
    margin: 0 auto;*/
    margin-right: 25px !important;
}


/*=====----> CALENDAR STYLES END <----=====*/


/*=====----> ARTISTA STYLES START <----=====*/

.findArtist {
    text-align: center;
}


/*=====----> ARTISTA STYLES END <----=====*/


/*=====----> BOTONES STYLES MODAL CONFIRMAR START <----=====*/

.swal2-confirm {
    border-radius: 10px 10px 10px 10px;
    margin-left: 1rem;
    font-weight: 600;
}

.swal2-styled {
    border: none;
    padding: 5px 30px !important;
    background-color: #f4da30;
    color: black !important;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22) !important;
}

.swal2-cancel {
    color: #f4da30 !important;
    background-color: black !important;
}

.swal2-title {
    font-size: 25px !important;
}


/*=====----> BOTONES STYLES MODAL CONFIRMAR END <----=====*/


/*=====----> FOOTER STYLES START <----=====*/

.footer {
    text-align: center;
    padding-top: 1rem;
    width: 100%;
    padding-bottom: 1rem;
}

.footer i {
    padding: 0 1rem;
}


/*=====----> FOOTER STYLES END <----=====*/


/*-----> media queries start <-----*/

@media only screen and (min-width: 1100px) and (max-width: 1700px) {
    .body-login {
        background-image: url('./assets/img/Home.jpg');
        background-size: cover;
    }
    .p5 {
        padding: 3rem;
    }
    .pb5 {
        padding: 3rem 3rem 10.3rem 3rem;
    }
    .change::before {
        content: "Nuevo afiliado";
    }
    .nuevoAlbum::before {
        content: "Nuevo album";
    }
    .form-control {
        height: 40px;
    }
    .inputArtist {
        border: none;
        background-color: white;
        border-bottom: 1px solid #f4db31;
    }
    .btnNewArtistA {
        border: none;
        padding: 10px 20px;
        background-color: #f4db31;
        border-radius: 10px;
    }
    .btnNewArtistB {
        border: none;
        padding: 10px 20px;
        background-color: #f4db31;
        border-radius: 10px;
    }
    .w20 {
        width: 20rem;
    }
    
    .w-55 {
        width: 41%;
    }
    .data {
        visibility: hidden;
    }
    .btnContent::before {
        content: "Nuevo Album";
    }
    .btnAnticipo::before {
        content: "Nuevo Anticipo";
    }
    .btnEgreso::before {
        content: "Nuevo egreso";
    }
    .btnUsuario::before {
        content: "Nuevo usuario";
    }
    .btnAfiliado::before {
        content: "Nuevo Afiliado";
    }
    .mat-table {
        width: 100%;
    }
    .row-login {
        padding: 40px 30px 40px 30px;
        display: block;
        margin: auto;
        border-radius: 15px;
        background-color: #0000009e;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .p5 {
        padding: 2rem;
    }
    .pb5 {
        padding: 2rem;
    }
    /*Tablet size*/
    .centrar {
        display: block;
        margin: 0 auto;
    }
    .marginTop {
        margin-top: 1rem;
    }
    .p1 {
        padding: 1rem;
    }
    .widthInputs {
        width: 100%;
    }
    .data {
        visibility: hidden;
    }
    .btnContent::before {
        content: "Nuevo Album";
    }
    .btnAnticipo::before {
        content: "Nuevo Anticipo";
    }
    .btnEgreso::before {
        content: "Nuevo egreso";
    }
    .btnAfiliado::before {
        content: "Nuevo Afiliado";
    }
    .btnUsuario::before {
        content: "Nuevo usuario";
    }
    .row-login {
        padding: 3rem 5rem 5rem 5rem;
        display: block;
        margin: auto;
        border-radius: 15px;
        background-color: #0000009e;
    }
}


/*--> Mobile start */

@media screen and (max-width: 767px) {
    .body-login {
        background-image: url('./assets/img/home-mobile.jpg');
        background-size: cover;
    }
    .pb5 {
        padding: 2rem;
    }
    .hidden {
        visibility: hidden;
    }
    .marginTop {
        margin-top: 1rem;
    }
    .inputArtist {
        width: 100%;
    }
    .btnNewArtistB {
        visibility: hidden;
    }
    .background-btn {
        margin-left: 0;
        width: 100%;
    }
    .btnNewArtistA {
        visibility: visible;
        background-color: #f4da30;
        border-radius: 100px;
        box-shadow: 1px 1px 1px 1px grey;
        font-size: 20px;
    }
    .btnAnalytics {
        width: 100%;
        padding: 5px 23px;
    }
    .btnNewArtist:hover,
    .btnGralMobile:hover {
        background-color: black;
        color: #f4da30;
    }
    .btnGralMobile {
        margin-left: 0;
        width: 100%;
    }
    .marginTop {
        margin-top: 2rem;
    }
    .marginBottom {
        padding-bottom: 3rem;
    }
    .p5 {
        padding: 1rem;
        padding-top: 2rem;
    }
    .mt1 {
        margin-top: 1rem;
    }
    .p1 {
        padding: 1rem;
    }
    label>input:valid {
        margin-top: 1rem;
    }
    .select {
        width: 170px;
    }
    .select-bar {
        width: 100px;
    }
    .select-text {
        width: 100%;
    }
    .ml5 {
        margin-left: 2rem;
    }
    .centrar {
        display: block;
        margin: 0 auto;
    }
    .fontMobile {
        font-size: 1.3rem;
        text-align: center;
    }
    /* Style para nav horizontal de ingresos START */
    .nav {
        display: flex!important;
        flex-wrap: unset!important;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    /* Style para nav horizontal de ingresos END */
    /*Button mobile + start */
    .btnMobile {
        margin-top: 31px;
        visibility: visible;
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
    }
    .w20 {
        width: 9rem;
    }
    .change::before {
        content: "+";
    }
    .nuevoAlbum::before {
        content: "+";
    }
    .w-55 {
        width: 40%;
    }
    .ml3 {
        margin-top: 0.3rem;
        margin-left: 15%;
    }
    .widthInputs {
        width: 100%;
    }
    .pagination {
        margin-bottom: 3rem;
    }
    .data {
        visibility: visible;
        color: silver;
        width: 10rem;
    }
    .btnContent::before {
        content: "+";
    }
    .btnAnticipo::before {
        content: "+";
    }
    .btnEgreso::before {
        content: "+";
    }
    .btnUsuario::before {
        content: "+";
    }
    .btnAfiliado::before {
        content: "+";
    }
    /*=====----->Table material design START <-----=====*/
    /*=====----->Table material design START <-----=====*/
    .mat-table {
        width: 100%;
    }
    td.mat-cell,
    td.mat-footer-cell,
    th.mat-header-cell {
        padding-left: 0 !important;
        height: 2rem;
    }
    .mat-table .mat-header-cell {
        border: 10px solid;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .mat-table .mat-row {
        display: flex;
        flex-direction: column;
    }
    .mat-row {
        border: 1px solid gray;
        margin-bottom: 1rem;
        padding: 1rem;
    }
    tr.mat-footer-row,
    tr.mat-row {
        height: 100% !important;
    }
    /*
      .mat-table .mat-row:nth-child(even) {background: #CCC}
      .mat-table .mat-row:nth-child(odd) {background: #FFF}
      */
    .mat-table .mat-cell {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: 1em;
        height: 100%;
        padding: 1rem 0;
    }
    .mat-table .mat-cell:before {
        /*
        * aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: normal;
        font-size: 0.85em;
    }
    .mat-table .mat-cell:last-child {
        border-bottom: 0;
    }
    /*=====----->Table material design END <-----=====*/
    /*=====----->Table material design END <-----=====*/
    .row-login {
        padding: 40px 0px 40px 0px;
        display: block;
        margin: auto;
        border-radius: 15px;
        background-color: #0000009e;
    }
    thead {
        display: none;
    }
}



/*-----> media queries end <-----*/

