﻿:root {
    --primary-color: #1E1E24; /* Black */
    --secondary-color: #FFC107; /* Yellow */
    --white-color: #FFFFFF;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-roller div {
        animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 40px 40px;
    }

        .lds-roller div:after {
            content: " ";
            display: block;
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #1E1E24;
            margin: -4px 0 0 -4px;
        }

        .lds-roller div:nth-child(1) {
            animation-delay: -0.036s;
        }

            .lds-roller div:nth-child(1):after {
                top: 63px;
                left: 63px;
            }

        .lds-roller div:nth-child(2) {
            animation-delay: -0.072s;
        }

            .lds-roller div:nth-child(2):after {
                top: 68px;
                left: 56px;
            }

        .lds-roller div:nth-child(3) {
            animation-delay: -0.108s;
        }

            .lds-roller div:nth-child(3):after {
                top: 71px;
                left: 48px;
            }

        .lds-roller div:nth-child(4) {
            animation-delay: -0.144s;
        }

            .lds-roller div:nth-child(4):after {
                top: 72px;
                left: 40px;
            }

        .lds-roller div:nth-child(5) {
            animation-delay: -0.18s;
        }

            .lds-roller div:nth-child(5):after {
                top: 71px;
                left: 32px;
            }

        .lds-roller div:nth-child(6) {
            animation-delay: -0.216s;
        }

            .lds-roller div:nth-child(6):after {
                top: 68px;
                left: 24px;
            }

        .lds-roller div:nth-child(7) {
            animation-delay: -0.252s;
        }

            .lds-roller div:nth-child(7):after {
                top: 63px;
                left: 17px;
            }

        .lds-roller div:nth-child(8) {
            animation-delay: -0.288s;
        }

            .lds-roller div:nth-child(8):after {
                top: 56px;
                left: 12px;
            }

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.white-color {
    color: var(--white-color);
}

body {
    background-color: #EBE8E7;
}

.title {
    font-weight: bold;
}

.form-button {
    width: 200px;
}

.form-button-large {
    width: 300px;
}

.centered-items {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.righted-items {
    display: flex;
    align-items: center;
    justify-content: end;
    align-content: center;
}

.lefted-items {
    display: flex;
    align-items: center;
    justify-content: start;
    align-content: center;
}

.centered-items-full-width {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.centered-column-items {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.flex-full-space-item {
    flex-grow: 1;
}

.centered-text {
    text-align: center;
}

.righted-text {
    text-align: right;
}

.historical-report-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr 5fr;
    justify-content: space-between;
}

.historical-report-grid-img {
    grid-area: 1 / 1 / 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.historical-report-grid-month {
    grid-area: 1 / 2 / 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.historical-report-grid-account {
    grid-area: 1 / 3 / 2 / 4;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.historical-report-grid-download {
    grid-area: 2 / 2 / 3 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.historical-report-grid-description {
    grid-area: 2 / 3 / 3 / 4;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.last_month_header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.main-table-header {
    text-align: center;
    font-weight: bold !important;
    background-color: black !important;
    color: #FFC107 !important;
}

    .main-table-header > span:hover {
        color: #FFC107 !important;
    }

.main-table-cell {
    text-align: center;
}

.main-table-cell-number {
    text-align: right;
}

.main-table-footer-description {
    font-weight: bold;
    text-align: center;
}

.main-table-footer-total {
    font-weight: bold;
    text-align: right;
}

.chart {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    width: 100vw;
}

.impersonated-autocomplete > .mud-input-control-input-container {
    background-color: #FFFFFF;
    background: #FFFFFF;
}

.nav-menu-divider {
    border-color: rgba(255, 255, 255, 0.3);
    margin-left: 5px;
    margin-right: 5px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
}

.portfolio-grid-item {
    padding: 10px;
    text-align: center;
}

.portfolio-grid-item-icon {
    padding: 10px;
    text-align: left;
}

.portfolio-grid-item-money {
    padding: 10px;
    text-align: right;  
}

.portfolio-grid-item-money-text {
    font-weight: bold;
}

.video-item {
    display: flex;
    align-items: center;
}

.play-button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px;
}

hr {
    border-top: 1px solid yellow;
}

#smart-investor-menu-report-weekly > a > span {
    padding-left: 5px;
}

#smart-investor-menu-report-special > a > span {
    padding-left: 5px;
}

#smart-investor-menu-finance-introduction > a > span {
    padding-top: 10px;
}

.smart-investor-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-top: 5px solid goldenrod; /* Borde dorado arriba */
}

    .smart-investor-image .background-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: black;
    }

    .smart-investor-image .background-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../inversor-inteligente.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

.alert-info-color {
    color: var(--primary-color);
}

.paper-elevation {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.common-button {
    width: 150px;
}

.pesos-color {
    color: #3185FC;
}

.dollar-color {
    color: #139A43;
}

.negative-color {
    color: #cf1b1b;
}

.logo {
    border-radius: 5px 5px 0px 0px;
    background-color: black;
    padding: 10px;
}

.app-bar-logo {
    margin-top: 5px;
    width: 140px;
    padding: 10px;
}

.primary-background-color {
    background-color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.sticky-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px; /* Ajusta la distancia horizontal entre los botones según sea necesario */
    z-index: 1000;
}

.paper-base {
    padding: 20px;
}

.paper-bottom {
    margin-bottom: 20px;
}

.paper-black-title {
    padding-bottom: 10px;
}

.investor-profile-title-1 {
    font-weight: bold;
    text-align: center;
    padding-top: 20px;
}

.investor-profile-title-2-a {
    font-weight: bold;
    text-align: center;
    padding-top: 70px;
}

.investor-profile-title-2-b {
    font-weight: bold;
    text-align: center;
    padding-top: 50px;
}

.investor-profile-title-3-a {
    font-weight: bold;
    text-align: center;
    padding-top: 70px;
}

.investor-profile-title-3-b {
    font-weight: bold;
    text-align: center;
    padding-top: 40px;
}

/* Media section */

/* If the screen size is 600px wide or less */
@media (max-width: 600px) {
    .app-bar-logo {
        margin-top: 5px;
        width: 80px;
        padding: 0px;
    }

    .investor-profile-title-1,
    .investor-profile-title-2-a,
    .investor-profile-title-2-b,
    .investor-profile-title-3-a,
    .investor-profile-title-3-b {
        padding: 0;
    }

    .main-bussiness-name {
        font-size: 12px;
    }

    #smart-investor-menu-saver-to-investor > a > span {
        padding-top: 5px;
    }

    .last_month_header {
        height: 100px;
        padding-bottom: 0px !important;
    }

    .righted-items,
    .lefted-items {
        justify-content: center;
    }
}

/* If the screen size is between 601px and 1500px */
@media screen and (min-width: 601px) and (max-width: 1500px) {
    .main-bussiness-name {
        font-size: 16px;
    }

    .last_month_header {
        height: 80px;
    }

    .last_month_item {
        padding-left: 0px !important;
        padding-right: 0px !important;
    } 
}