/* =====================================================
   SUPERLIGHT DIAMONDS - MOBILE SHOPPING HERO
   ===================================================== */

.sld-mobile-shopping {
    display: none;
}

@media only screen and (max-width: 767px) {

    .sld-mobile-shopping {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 14px 14px 20px;
        background: #fff;
        text-align: center;
    }

    /* SEARCH */
    .sld-mobile-search {
        display: flex;
        width: 100%;
        margin: 0 0 14px;
        box-sizing: border-box;
    }

    .sld-mobile-search input {
        flex: 1;
        min-width: 0;
        height: 46px;
        padding: 0 13px;
        border: 1px solid #b8b8b8;
        border-right: 0;
        border-radius: 4px 0 0 4px;
        background: #fff;
        font-size: 16px;
        box-sizing: border-box;
    }

    .sld-mobile-search button {
        height: 46px;
        padding: 0 15px;
        border: 0;
        border-radius: 0 4px 4px 0;
        background: #333;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
    }

    /* DIAMOND FINDER HERO */
    .sld-mobile-finder {
        position: relative;
        padding: 23px 15px 25px;
        border: 1px solid #e2e2e2;
        background: #f8f8f8;
        box-sizing: border-box;
    }

    .sld-mobile-new {
        display: inline-block;
        margin-bottom: 10px;
        padding: 3px 9px;
        border-radius: 12px;
        background: #333;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .sld-mobile-earth {
        margin-bottom: 5px;
        color: #555;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.2px;
    }

    .sld-mobile-finder h1 {
        margin: 3px 0 8px;
        color: #222;
        font-size: 27px;
        line-height: 1.1;
        font-weight: 700;
        letter-spacing: .5px;
    }

    .sld-mobile-finder p {
        margin: 0 0 18px;
        color: #555;
        font-size: 14px;
        line-height: 1.5;
    }

    .sld-mobile-finder-button {
        display: block;
        width: 100%;
        padding: 14px 10px;
        box-sizing: border-box;
background: #d4af37;
    color: #fff !important;
        text-decoration: none !important;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: .5px;
        border-radius: 3px;
    }

    .sld-mobile-finder-button:hover,
    .sld-mobile-finder-button:focus {
        background: #b8941f;
        color: #fff !important;
    }
}