﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

.container {
    display: grid;
}

.box {
    margin-bottom: 10px;
}

.box-flag {
    float: left;
    padding-right: 10px;
}

.box-flag-img {
    border: 0.01em solid;
    color: lightgrey;
    width: 34px;
    height: 26px;
}

.divMain {
    color: #666;
    background-color: #f8f8f8;
    text-align: center;
    padding: 30px;
    border-radius: 5px;
    display: grid;
}

/*tabela*/
.divtable {
    display: table;
}

.divrow {
    display: table-row;
}

.divHeadCol {
    display: table-cell;
    background-color: #EEE;
    font-weight: bold;
    padding: 5px 10px;
    vertical-align: middle;
}

.divcol {
    display: table-cell;
    width: 100px;
    background-color: #fff;
    border-top: 1px solid #999999;
    padding: 5px 10px;
    vertical-align: middle;
}

.headrow {
    display: table-header-group;
}

.content {
    display: table-cell;
    width: 100px;
}
/*fim tabela*/

.divPagenationGroup {
    display: flex;
    justify-content: space-around;
    background-color: #EEE;
    padding: 10px;
    margin-top: -5px;
    border-radius: 0 0 5px 5px;
}

.divHeader {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
    background-color: white;
}

.divHeader div img {
    width: 350px;
}

.divHeader div label {
    color: #666666;
    font-size: 25px;
}

@media only screen and (min-width: 801px) {
    .mobile {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    .divHeader {
        font-size: 1.5em;
        margin-bottom: 10px;
        background-color: white;
    }

    .desktop {
        display: none;
    }

    .container {
        padding-right: 0;
        padding-left: 0;
        font-size: 0.5em;
    }

    .divMain {
        padding: 0;
        border-radius: 0;
    }

    .pagination {
        display: inline-block;
        margin-top: 7px;
    }

    .divPagenationGroup {
        display: block;
        border-radius: 0;
    }
}

@media only screen and (max-width: 800px) and (orientation: landscape) {
    .divHeader {
        padding-top: 25px;
    }

    .container {
        font-size: 1em;
    }
}