/* ==========================================================
   AGROTÉCNICA MARKET
   Cotizaciones públicas
   ========================================================== */

.atm-market {
    width: 100%;
    margin: 30px 0;
    font-family: inherit;
    box-sizing: border-box;
}

.atm-market *,
.atm-market *::before,
.atm-market *::after {
    box-sizing: border-box;
}

/* ==========================================================
   TÍTULOS
   ========================================================== */

.atm-market h2 {
    margin: 0 0 15px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

/* ==========================================================
   CONTENEDORES
   ========================================================== */

.atm-market-grains,
.atm-market-dollar {
    width: 100%;
    margin-bottom: 30px;
}

/* ==========================================================
   TABLAS
   ========================================================== */

.atm-market table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
    background: #F4F1E0;
}

/* ==========================================================
   ENCABEZADOS
   ========================================================== */

.atm-market th {
    padding: 12px 14px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    background-color: #E5DEB5 !important;
    color: #222222;
    border-bottom: 2px solid #d3cc9f;
    white-space: nowrap;
}

/* ==========================================================
   DATOS
   ========================================================== */

.atm-market td {
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.4;
    background-color: #F4F1E0 !important;
    color: #222222;
    border-bottom: 1px solid #ded9bd;
    vertical-align: middle;
}

/* Última fila */

.atm-market tbody tr:last-child td {
    border-bottom: none;
}

/* Efecto al pasar el mouse */

.atm-market tbody tr:hover td {
    background-color: #EEE9D1 !important;
}

/* ==========================================================
   TABLA DE GRANOS
   ========================================================== */

.atm-market-grains table {
    border: 1px solid #d3cc9f;
    border-radius: 4px;
    overflow: hidden;
}

.atm-market-grains th:nth-child(1) {
    width: 25%;
}

.atm-market-grains th:nth-child(2) {
    width: 18%;
}

.atm-market-grains th:nth-child(3) {
    width: 20%;
    text-align: right;
}

.atm-market-grains th:nth-child(4) {
    width: 20%;
    text-align: right;
}

.atm-market-grains th:nth-child(5) {
    width: 17%;
    text-align: center;
}

.atm-market-grains td:nth-child(3),
.atm-market-grains td:nth-child(4) {
    text-align: right;
    white-space: nowrap;
}

.atm-market-grains td:nth-child(5) {
    text-align: center;
}

/* Precio */

.atm-market-grains td:nth-child(3) {
    font-weight: 700;
}

/* ==========================================================
   TABLA DÓLAR
   ========================================================== */

.atm-market-dollar {
    max-width: 850px;
}

.atm-market-dollar table {
    border: 1px solid #d3cc9f;
    border-radius: 4px;
    overflow: hidden;
}

.atm-market-dollar th,
.atm-market-dollar td {
    text-align: center;
}

.atm-market-dollar th:first-child,
.atm-market-dollar td:first-child {
    text-align: left;
}

.atm-market-dollar td:nth-child(3),
.atm-market-dollar td:nth-child(4) {
    font-weight: 700;
    white-space: nowrap;
}

/* ==========================================================
   ÚLTIMA ACTUALIZACIÓN
   ========================================================== */

.atm-market-updated {
    margin-top: 10px;
}

.atm-market-updated p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.75;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 700px) {

    .atm-market {
        margin: 20px 0;
    }

    .atm-market h2 {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .atm-market th,
    .atm-market td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .atm-market-grains {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .atm-market-grains table {
        min-width: 650px;
    }

    .atm-market-dollar {
        max-width: 100%;
    }

    .atm-market-dollar table {
        width: 100%;
    }

/* ==========================================================
   VARIACIÓN DE PRECIOS
   ========================================================== */

.atm-variation {
    font-weight: 700;
    white-space: nowrap;
}

.atm-variation-positive {
    color: #2e7d32;
}

.atm-variation-negative {
    color: #c62828;
}

.atm-variation-neutral {
    color: #555555;
}

}