/* =====================================================
   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;
    }
}

/* FIX MOBILE HAMBURGER SEARCH */

@media only screen and (max-width: 767px) {

    #DrawerMenu .sld-drawer-search {
        display: block !important;
        width: 100% !important;
        padding: 12px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        background: #333 !important;
    }

    #DrawerMenu .sld-drawer-search form {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }

    #DrawerMenu .sld-drawer-search input {
        display: block !important;
        flex: 1 1 0% !important;
        width: 0 !important;
        min-width: 0 !important;
        height: 44px !important;
        margin: 0 !important;
        padding: 0 12px !important;
        border: 0 !important;
        border-radius: 4px 0 0 4px !important;
        background: #fff !important;
        color: #222 !important;
        font-size: 16px !important;
        box-sizing: border-box !important;
    }

    #DrawerMenu .sld-drawer-search button {
        display: block !important;
        flex: 0 0 80px !important;
        width: 80px !important;
        height: 44px !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 4px 4px 0 !important;
        background: #d4af37 !important;
        color: #222 !important;
        font-size: 12px !important;
        font-weight: bold !important;
        line-height: 44px !important;
        text-align: center !important;
        cursor: pointer;
    }
}

/* MOBILE DRAWER — REMOVE WHITE INNER STRIP */

@media only screen and (max-width: 767px) {

    #DrawerMenu,
    #DrawerMenu > .inner {
        background: #333 !important;
    }

    #DrawerMenu > .inner {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* MOBILE DRAWER — FULL-WIDTH DARK BACKGROUND */

@media only screen and (max-width: 767px) {

    #DrawerMenu {
        background: #333 !important;
        box-shadow: none !important;
    }

    #DrawerMenu .inner {
        background: #333 !important;
        width: 100% !important;
        min-height: 100vh !important;
        box-sizing: border-box !important;
    }

    #DrawerMenu::before,
    #DrawerMenu::after {
        background: #333 !important;
    }
}

