/* ========================================
   Home Offers
======================================== */

.themill-home-offers {
    position: fixed;
    left: 20px;
    bottom: 30px;

    width: 360px;
    max-width: calc(100vw - 30px);

    display: grid;
    grid-template-columns: minmax(0, 1fr);

    background: #fff;
    z-index: 99999;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);

    font-family: "Open Sans", sans-serif;
}


/* ========================================
   Close button
======================================== */

.themill-home-offers__close {
    position: absolute;
    top: -9px;
    right: -9px;

    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;

    border: 1px solid #d5d5d5;
    border-radius: 50%;

    background: #fff;
    color: #666;

    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;
    z-index: 20;

    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.14);
}

.themill-home-offers__close:hover {
    background: #f5f5f5;
    color: #222;
}


/* ========================================
   Tabs
======================================== */

.themill-home-offers__tabs {
    grid-row: 1;
    grid-column: 1;

    display: flex;
    width: 100%;

    background: #f2f0ee;
}

.themill-home-offers__tab {
    flex: 1;
    min-width: 0;

    padding: 8px 6px;

    border: 0;
    border-bottom: 2px solid transparent;

    background: #f2f0ee;
    color: #333;

    cursor: pointer;

    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.themill-home-offers__tab:hover {
    background: #e8e4e1;
}

.themill-home-offers__tab.active {
    background: #fff;
    color: #9b7259;
    border-bottom-color: #9b7259;
}


/* ========================================
   Offers
======================================== */

.themill-home-offers__offer {
    grid-row: 2;
    grid-column: 1;

    position: relative;

    width: 100%;

    /*
     * Image column.
     * No fixed/min height - content determines
     * the real height of the card.
     */
    padding-left: 100px;

    box-sizing: border-box;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.themill-home-offers__offer.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* ========================================
   Image
   Always fills full offer height
======================================== */

.themill-home-offers__image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 100px !important;
    max-width: 100px !important;

    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;

    margin: 0 !important;

    object-fit: cover;
    object-position: center;

    border: 0;
}


/* ========================================
   Content
======================================== */

.themill-home-offers__content {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 11px 13px 12px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    box-sizing: border-box;
}


/* Title */

.themill-home-offers__title {
    margin: 0 0 5px !important;

    color: #222;

    font-family: "Playfair Display", sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.12 !important;
}


/* Description */

.themill-home-offers__text {
    margin: 0 0 8px !important;

    color: #666;

    font-family: "Open Sans", sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
}


/* ========================================
   Button
======================================== */

.themill-home-offers__button {
    display: inline-block;

    margin-top: auto;
    padding: 7px 11px;

    background: #b19172;
    color: #fff !important;

    font-family: "Open Sans", sans-serif !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;

    letter-spacing: 0.25px;

    text-decoration: none !important;
    text-transform: uppercase;

    transition: background-color 0.2s ease;
}

.themill-home-offers__button:hover,
.themill-home-offers__button:focus {
    background: #967357;
    color: #fff !important;
    text-decoration: none !important;
}


/* ========================================
   Mobile
   Keep 360px until viewport < 450px.
======================================== */

@media (max-width: 450px) {

    .themill-home-offers {
        left: 12px;
        right: 12px;
        bottom: 15px;

        width: auto;
        max-width: none;
    }

    .themill-home-offers__close {
        top: -8px;
        right: -7px;

        width: 24px;
        height: 24px;

        font-size: 17px;
        font-family: "Open Sans", sans-serif;
    }

    .themill-home-offers__tab {
        padding: 8px 5px;

        font-size: 10.5px;
        line-height: 1.15;
    }

    .themill-home-offers__offer {
        padding-left: 92px;
    }

    .themill-home-offers__image {
        width: 92px !important;
        max-width: 92px !important;

        height: 100% !important;
        min-height: 100% !important;
        max-height: none !important;
    }

    .themill-home-offers__content {
        padding: 10px 11px 11px;
    }

    .themill-home-offers__title {
        margin-bottom: 5px !important;

        font-size: 16px !important;
        line-height: 1.1 !important;
    }

    .themill-home-offers__text {
        margin-bottom: 7px !important;

        font-size: 10.5px !important;
        line-height: 1.22 !important;
    }

    .themill-home-offers__button {
        padding: 7px 10px;

        font-size: 10px !important;
    }
}