* {
    margin: 0;
    padding: 0;
    color: inherit;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

.marginL {
    margin-left: 0px;
}

.borderRed{
    border: 1px solid red;
}

/*.marginBody {
    padding-left: 5px;
    padding-right: 5px;
}*/

.bgMain {
    background-color: #EAEAEA; /*Otro gris: #F3F2F1*/
}

.button-container {
    padding-top: 2.31vh;
}
/*
.div-border {
    border: 1px solid red;
}*/

.config-container {
    font-size: 1.85vh;
    padding-top: 0.93vh;
}

.custom-control-label {
    cursor: pointer;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label {
    font-weight: bold;
}

    .custom-radio .custom-control-input:checked ~ .custom-control-label::before, .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
        background-color: #2A22F0;
        border-radius: 50%;
    }

.custom-radio .custom-control-label::before, .custom-radio .custom-control-label::after {
    top: 0.65vh;
    height: 1.5vh;
    width: 1.5vh;
}

.dashboard-container {
    background-color: #EAEAEA;
    height: calc(74vw * 0.5625); /* 16:9 aspect ratio */
    max-height: 75vh;
    padding: 0;
    visibility: hidden;
}

.dashboard-display-text {
    color: #6E6E6E;
    font: 3.7vh "segoe ui light", arial, sans-serif;
    left: 50%;
    margin: auto;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}

.dashboard-wrapper {
    background-color: #EAEAEA;
    height: calc(74vw * 0.5625); /* 16:9 aspect ratio */
    max-height: 75vh;
    padding: 0;
}

.heading {
    color: #8F1B4D; /* Original: #2A22F0 */
    font-family: 'Gotham Bold'; /* Original: 'Segoe UI Light', arial, sans-serif */
    font-size: 3.7vh;
}

.outer-div {
    padding: 2.78vh 13.05vh 4.63vh 13.05vh;
    font-size: 2.5vh;
}

.overlay {
    background-color: #FCFCFC;
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 2;
}

.report-display-text {
    color: #6E6E6E;
    font: 3.7vh "segoe ui light", arial, sans-serif;
    left: 50%;
    margin: auto;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}

.report-container {
    height: calc(0.5625 * 110vw);
    padding: 0;
    visibility: hidden;
}

.report-wrapper {
    background-color: #EAEAEA;
    height: calc(0.5625 * 74vw); /* 16:9 aspect ratio */
    padding: 0;
}

.select-list {
    align-self: flex-end;
    border-radius: 6.17vh;
    border-color: #D3D3D3;
    font-size: 1.48vh;
    height: 3.61vh;
    padding: 0.46vh;
    padding-left: 0.92vh;
}

    .select-list:focus {
        outline: none;
    }

.sign-in {
    left: 50%;
    font-size: 2.28vh;
    top: 65%;
    transform: translate(-50%, -35%);
    -ms-transform: translate(-50%, -35%);
}

.signin-container {
    height: 27vh;
    left: 50%;
    padding: 4.5vh;
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 70vh;
}

    .signin-container > p {
        color: #2A22F0;
        font-family: 'Segoe UI Light', arial, sans-serif;
        font-size: 5vh;
        text-align: center;
    }

.spinner {
    animation: rotation 1s infinite linear;
    left: 50%;
    top: 50%;
    width: auto;
}

.tile-container {
    height: calc(0.5625 * (100vw - 206px)); /* 16:9 aspect ratio */
    max-height: 75vh;
    padding: 0;
    visibility: hidden;
}

.tile-display-text {
    color: #6E6E6E;
    font: 3.7vh "segoe ui light", arial, sans-serif;
    left: 50%;
    margin: auto;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}

.tile-wrapper {
    background-color: #EAEAEA;
    height: calc(0.5625 * 74vw); /* 16:9 aspect ratio */
    max-height: 75vh;
    padding: 0;
}

.user-info {
    color: #0C2243; /* Original: #2C2C2C */
    font-family: 'Aleo Bold Italic'; /* Original: 'Segoe UI', arial, sans-serif */
    font-size: 2.5vh; /* Original: 1.85vh */
    padding-top: 2.31vh;
    text-align: right;
}

body {
    background: #FCFCFC;
    opacity: 1;
}

button {
    background-color: #B22222;
    border: none;
    border-radius: 3.7vh;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 1.39vh;
    font-family: 'Segoe UI Semibold', arial, sans-serif;
    padding: 0.93vh 2.5vh;
}

.boxReport {
    width: 300px;
}

.colorHeader {
    background-color: #0C2243;
}

.colorTitle {
    color: crimson;
}

.colorText {
    color: white;
}

.imgLogo{
    width: 70px;
}

button:disabled {
    background-color: #5C5C5F;
    cursor: default;
}

button:focus {
    outline: none;
}

main {
    margin: 0 auto;
    width: 100%;
}

iframe {
    border: none;
}

.colored-bg {
    background-color: #EAEAEA;
}

.transparent-bg {
    background-color: transparent;
}

.sizeReport {
    width: 700px;
}

@keyframes rotation {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(359deg);
    }
}

@media screen and (max-width: 1680px) {
    .navSize {
        font-size: 14px;
    }

    .workspaceWidth {
        width: 300px;
        text-align: center;
        margin-top: 5px;
        font-size: 14px;
    }

    .chooseReport {
        width: 270px;
        text-align: center;
        margin-top: 5px;
        font-size: 14px;
    }

    .userSize {
        font-size: 13px;
    }

    /*Tamaņo de tablero*/
    .report-container {
        height: 104%;
        padding: 0;
        visibility: hidden;
    }

    .sizeReport {
        width: 700px;
    }

    .btnGo {
        margin-left: 45px;
    }

}
@media screen and (max-width: 2048px) {
    /*    .selectReport {
        gap: 50px;
    }

    .userSize {
        margin-left: 20px;
    }*/
    .menuOff {
        display: block;
        justify-content: space-between
    }

    .sizeReport {
        width: 700px;
        justify-content:space-evenly;
    }
}
@media screen and (max-width: 1280px) {
    .imgLogo {
        width: 70px;
    }

    .workspaceWidth {
        width: 200px;
        text-align: center;
        font-size: 13px;
    }

    .chooseReport {
        width: 150px;
        text-align: center;
        font-size: 13px;
    }

/*    .navSize {
        border: 1px solid red;
        width:100%;
    }*/

    .btnGo {
        padding-top: 18px;
        padding-right: 10px;
        padding-left: 50px;
    }

    #workspace-select {
        font-size: 11px;
    }

    #report-select {
        font-size: 11px;
    }

    .selectReport {
        margin-bottom: 5px;
    }

    .userSize { 
        font-size: 0
    }
}

@media screen and (max-width: 576px) {

    .sizeMobile {
        font-size: 0;
    }

    .userSize {
        font-size: 0;
        width: 0px;
    }
    /*


    .chooseReport {
        width: 100px;
        border: 1px solid orange;
        height: 25px;
    }
     Sirve

    .select-list {
        padding: 0px;
    }

    .selectReport {
        border: 1px solid red;
        height: 100px;
        width: 400px;
        display: block;
    }

    .report {
        border: 1px solid red;
        height: 100px;
        width: 400px;
    }



    .menuOff {
        width:1px;
    }




    }*/

    .mobile {
        display: block;
        flex-wrap: wrap;
    }

    .chooseReport {
        width: 200px;
        text-align:left;
        height: 25px;
    }

    .btnGo {
        padding-top: 0px;
    }

    .report-container {
        height: calc(0.5625 * 110vw);
        padding: 0;
        visibility: hidden;
    }

/*    .sizeReport {
        width: 700px;
        height: 80px;
        border: 1px solid yellow;
    }*/

    . .sizeReport {
        width: 700px;
    }
}