.gridtable__container {
    position: relative;
    display: grid;
    grid-auto-rows: minmax(max-content, 1fr);
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
    grid-gap: .7rem;
    margin-top:.1rem;
}

.gridtable__container--scroll {
    position: relative;
    display: grid;
    grid-auto-rows: minmax(max-content, 1fr);
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
    grid-gap: .7rem;
    margin-top:.1rem;
    max-height: 15rem;
    scrollbar-width: none;
    overflow-y: scroll
}

.gridtable__container--scrollh {
    position: relative;
    display: grid;
    grid-auto-rows: minmax(max-content, 1fr);
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
    grid-gap: .7rem;
    margin-top:.1rem;
    scrollbar-width: none;
    overflow: hidden
}

.gridtable__container--scrollv {
    position: relative;
    display: grid;
    grid-auto-rows: minmax(max-content, 1fr);
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
    grid-gap: .7rem;
    margin-top:.1rem;
    scrollbar-width: none;
}

.gridtable {
    display: grid;
    grid-gap: .7rem;
    color:#444;
    margin-top:.1rem;
    background-color: rgba(197, 197, 215, 0.5);
    border-radius: .3rem;
    padding: .3rem;
}

.gridtable__classic {
    display: grid;
    grid-gap: 1.5rem;
    background-color: rgb(255, 255, 255);
    padding: .3rem;
}

.gritable__barra {
    padding:5px;
    font-size:20px;
    background-color:#0af580;
    color:#fff;
    min-height:30px;
}

.gritable__barra--blue {
    padding:5px;
    font-size:20px;
    background-color:#262d2b;
    color:#fff;
    min-height:30px;
}

.gritable__barra--cyan {
    padding:5px;
    font-size:20px;
    background-color:#c4eaff;/* #cef5e5; */
    color:#c4ceff;
    min-height:30px;
}

.gritable__barra--gray {
    padding:5px;
    font-size:20px;
    background-color:rgb(220, 220, 220);
    color:#fff;
    min-height:30px;
}

.tabla__column1{
    width: 100px;
}

.tabla__column2{
    width: 360px;
}

.gridtable__header {
    display: none;
}

.gridtable__item {
    padding: .3rem;
     align-items: center;
}

.gridtable__item--button {
    border: 1px solid transparent;
    border-radius: 0.2rem;
    box-shadow: 0px 2px 2px #aaa;
    margin: .3rem;
}

.gridtable__item--button2 {
    text-align:center;
    font-size:16px;
    background-color:white;
    color:#fff;
    height:6vh;
}

.gridtable__item--button3 {
    border: 1px solid transparent;
    border-radius: 0.2rem;
    box-shadow: 0px 2px 2px #aaa;
    margin: .3rem;
    position: absolute;
    left: 45%;
    padding-top:10px;
    height:5vh;
    width:10vw;
    background-color:#22c9c0;
    font-weight: bold;
}

.gridtable__item--button4 {
    border: 1px solid transparent;
    border-radius: 0.2rem;
    box-shadow: 0px 2px 2px #aaa;
    margin: .3rem;
    position: absolute;
    left: 45%;
    padding-top:8px;
    height:5vh;
    width:10vw;
    background-color: #c4eaff;
}
.gridtable__item--structured {
    padding: .3rem;
    display: flex;
}

.scrollhide::-webkit-scrollbar {
      display: none;
}

.scrollhide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media screen and (min-width: 1350px) {
    .gridtable__container {
        grid-template-columns: 1fr;
        grid-gap: 0;
        background-color: rgb(220, 220, 220);
        border-radius: 3px;
    }

    .gridtable__container--scroll {
        grid-template-columns: 1fr;
        grid-gap: 0;
        background-color: rgb(220, 220, 220);
        border-radius: 3px;
        grid-template-rows:auto;
        max-height: 15rem;
        overflow-y: auto;
    }

    .gridtable__container--scrollBig {
        grid-template-columns: 1fr;
        grid-gap: 0;
        background-color: rgb(220, 220, 220);
        border-radius: 3px;
        grid-template-rows:auto;
        max-height: 30rem;
        overflow-y: auto;
    }

    .gridtable__container--scrollh {
        grid-template-columns: 1fr;
        grid-gap: 0;
        background-color: rgb(220, 220, 220);
        border-radius: 3px;
        grid-template-rows:auto;
        max-height: 34rem;
        overflow-y: auto;
    }

    .gridtable__container--scrollv {
        grid-template-columns: 1fr;
        grid-gap: 0;
        background-color: rgb(220, 220, 220);
        border-radius: 3px;
        grid-template-rows:auto;
        max-height: 20rem;
        overflow-y: auto;
    }

    .gridtable {
        grid-auto-rows: 1fr;
        grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
        grid-gap: .24rem;
        padding: initial;
        background-color: rgb(220, 220, 220);
    }

    .gridtable__classic {
        grid-auto-rows: 1fr;
        grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
        grid-gap: .24rem;
        padding: .12rem 0;
        background-color: rgb(220, 220, 220);
    }

    .gridtable__header {
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
        grid-gap: .24rem;
    }

    .gridtable__header--item {
        display: flex;
        background-color: rgba(255, 255, 255,.5);
        font-size: 1rem;
        font-weight: bold;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
        padding: .5rem 0;
    }

    .gridtable:hover {
        background-color: rgb(200, 200, 225);
    }

    .gridtable__item {
        display: flex;
        padding: .2rem .5rem;
        background-color: rgba(255, 255, 255, .8);
        align-items: center;
    }

    .gridtable__item--warning {
      display: flex;
      padding: .2rem .5rem;
      background-color: #ff9000;
      color: #262d2b;
      align-items: center;
    }

    .gridtable__item--structured {
        display: flex;
        background-color: rgba(255, 255, 255, .8);
        justify-content: space-around;
        align-items: center;
    }

    .label-hide {
        display: none;
    }
}
