/*
#6448D9 violeta
#4E5EE6 azul chillon
3F78CC azul
3BB0E3 celeste
38D7D9 verde agua
background-image: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%);
background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
*/

table {
    width: 100%;
    border-spacing: 0;
}

table td,
table th {
    padding: 1em;
    text-align: left;
}

table tr:nth-child(even) {
    background-color: #00b3ff26;
}

.fa-star {
    color: #ffc400;
}

a {
    text-decoration: none;
    color: #4b1efd;
    font-size: 14px;
}

html {
    font-family: 'Rubik', sans-serif;
}

td {
    border: solid 0.7px;
}

.headh1 {
    text-transform: capitalize;
    text-align: center;
}

.paragraph {
    line-height: 1.8em;
    font-weight: 300;
}

.container {
    background: #3F78CC;
    /* Por si hay navegadores antiguos */
    background-image: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%);
    height: 100vh;
    display: flex;
    /* los nodos del content (hijo) adoptan la posición del padre */
    align-items: center;
    justify-content: center;
}

section {
    padding-top: 0.75em;
}

.content {
    max-width: 960px;
    width: 100%;
    height: 80vh;
    background-color: white;
    /* box-shadow: diferencia horizontal || dif vertical || desemfoque || amplitud || color ;*/
    box-shadow: 0px 0px 4px 2px #000;
    border-radius: 10px;
    position: relative;
    overflow: scroll;
    padding: 0.9em;
}

.pos {
    position: absolute;
    top: 1em;
    right: 1em;
}

.volver {
    height: 40px;
    width: 40px;
    color: white;
    border-radius: 50%;
    background-color: #6448D9;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    cursor: pointer;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volver:hover {
    background-color: red;
    opacity: 0.8;
}

.rank {
    background-color: #4E5EE6;
    color: white;
    padding: 0.5em;
    border-radius: 4px;
    margin-right: 0.5em;
}



td {
    display: block;
    border: none;
}

/* transforma columnas en filas */

th {
    display: none;
}

td:nth-of-type(1) {
    font-size: 1.5em;
    font-weight: bold;
    color: #4E5EE6;
}

.local {
    border-bottom: solid #4E5EE6;
    padding-bottom: 1em;
}

a:hover {
    opacity: 0.7;
}

address {
    font-weight: bold;
    color: #6448D9;
    font-size: 1.1em;
    margin-top: 1em;
    display: inline-block;
}

.Btify {
    float: left;
    height: 200px;
    width: 200px;
    margin-right: 1em;
}

.Btify2 {
    float: left;
    height: 190px;
    width: 200px;
    margin-right: 1em;
    margin-top: 0;
}

@media (min-width:900px) {
    th {
        display: table-cell;
    }

    td {
        display: table-cell;
        width: auto;
    }

    td:nth-of-type(1) {
        font-size: 1em;
    }

    .content {
        padding: 2em;
        overflow: visible;
    }

    address {
        margin-top: 0;
    }
}

@media (min-height:550px) {

    /*Para las pantallas que superen los 550px*/
    #index {
        height: 500px;
    }

    #BTY {
        height: 550px;
    }
}

img {
    max-width: 100%;
}