@import 'elements/banners.css';
@import 'elements/forms.css';

.only-desktop {
    display: grid;
}

.only-mobile {
    display: none;
}

@media only screen and (max-width: 600px) {
    .only-desktop {
        display: none !important;
    }

    .only-mobile {
        display: grid !important;
    }
}

a {
    text-decoration: none;
}

div.banner {
    top: 0;
    left: 0;
    width: 100%;
    position: center;
    padding: 5px 0px;
    text-align: center;
    font-size: x-large;
    border-radius: 0px;
}

.main-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    grid-gap: 20px;
}

.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    grid-gap: 5px;
}

.three-col-grid-text {
    width: 100%;
    align-self: start;
}

.three-col-grid-number {
    width: 100%;
    text-align: right;
}

.two-col-grid-text {
    width: 100%;
    align-self: start;
    padding: 2px 5px;
}

.two-col-grid-number {
    width: 100%;
    text-align: right;
    padding: 2px 5px;
}

.main-buttons-grid a {
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 200px;
    line-height: 200px;
    font-size: 50px;
    border-radius: 15px;
}

.buttons a {
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 200px;
    line-height: 200px;
    font-size: 50px;
    border-radius: 15px;
}

.button-gasolina {
    background-color: #cc1133;
}

.button-ahorro {
    background-color: #4CAF50; /* Green */
}

.button-pesos {
    background-color: #999999;
}

.button-books {
    color: white;
    background-color: #3344aa;
}

.top-menu-grid {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    justify-items: center;
    align-items: center;
    grid-gap: 0px;
    background-color: white;
}

.pagination > .username > a
{
    background-color: #33ff33;
    color: #115511;
}

.pagination > li > a,
.pagination > li > button
{
    background-color: #f0f0ff;
    border-color: #0000dd;
    color: #0000dd; !important
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover,
.pagination > li > button:focus,
.pagination > li > button:hover
{
    color: #0000dd;
    background-color: #ccccff;
    border-color: #0000dd;
}

.pagination > .active > a,
.pagination > .active > button
{
    color: white;
    background-color: #6666dd !important;
    border: solid 1px #c0c0ff !important;
}

.pagination > .active > a:hover
{
    color: #0000dd;
    background-color: #ccccff !important;
    border: solid 1px #0000dd;
}

.pagination > .disabled > button:hover
{
    color: white;
    background-color: #7161ff !important;
    border: solid 1px #c0c0ff !important;
}

.block-1 {
    justify-self: stretch;
    border-radius: 12px;
    font-weight: bold;
    font-size: 24px;
    background-color: #7766ff;
    color: white;
    margin-bottom: 10;
    padding: 5;
    padding-left: 15;
    margin-left: 0;
    margin-right: 0;
}

.block-2 {
    border: none;
    color: #ffffff;
    background-color: #304b8e;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 25;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 15;
    padding-top: 5;
    padding-bottom: 5;
}

.login-color {
    background: #bb1111;
    color: #ffffff;
    font-weight: bold;
}
