/*!
 * Part 7 / A4: storefront global inline <style> block extracted from
 * layouts/user.blade.php into a cached, versioned stylesheet.
 * Loaded at the SAME <head> position (after @yield('css')) to preserve cascade.
 * Part 7 / B: the conditional flash/error notification overrides folded in as
 * always-on rules (they are class-scoped, so inert without a notification);
 * .slider-item-placeholder moved wholly into front.css (B1/B3).
 */
        .fade {
            transition: opacity 0.4s;
            opacity: 1;
        }

        .add-to-compros, .add-to-hart1, .add-to-hart {
            background: unset;
            border: unset;
        }


        /*img[src] { opacity: 0; }*/
        input[type=number]::-webkit-inner-spin-button,
        input[type=number]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .border-r-3 {
            border-radius: 3px !important;
        }

        .mt-0 {
            margin-top: 0px !important;
        }

        .mt-n-30 {
            margin-top: -30px !important;
        }

        .w-h-100 {
            width: 100% !important;
            height: 100% !important;
        }

        /*the container must be positioned relative:*/
        .autocomplete {
            position: relative;
            display: inline-block;
        }

        * + address, * + dl, * + fieldset, * + figure, * + ol, * + p, * + pre, * + ul {
            margin-top: 0 !important;
        }

        input {
            border: 1px solid transparent;
            background-color: #f1f1f1;
            padding: 10px;
            font-size: 16px;
        }

        input[type=text] {
            background-color: #f1f1f1;
            width: 100%;
        }

        input[type=submit] {
            background-color: DodgerBlue;
            color: #fff;
            cursor: pointer;
        }

        .autocomplete-items {
            position: absolute;
            box-shadow: 0 3px 3px 1px #d6d6d6;
            z-index: 9999;
            /*position the autocomplete items to be the same width as the container:*/
            top: 100%;
            left: 16px;
            right: 1px;
            border-radius: 0 0 5px 5px;
            background: #fff;
        }

        .autocomplete-items div {
            padding: 10px;
            cursor: pointer;
            font-size: 12px;
            /*background-color: #fff;*/

        }

        /*when hovering an item:*/
        .autocomplete-items div:hover {
            background-color: #e9e9e9;
            border-radius: 5px;
        }

        /*when navigating through the items using the arrow keys:*/
        .autocomplete-active {
            background-color: DodgerBlue !important;
            color: #ffffff;
        }

        .autocomplete-items > div > strong {
            font-size: 15px;
            color: #1abc9c;
        }

        .uk-notification-bottom-center, .uk-notification-top-center {
            z-index: 9999;
        }

        .uk-notification-message-danger {
            z-index: 9999 !important;
            background: #fff1f0;
            color: #d85030;
            border: 1px solid;
            border-color: rgba(216, 80, 48, .3);
            border-radius: 4px;
        }

        .uk-notification-message-success {
            z-index: 9999 !important;
            background: #f2fae3;
            color: #659f13;
            border: 1px solid;
            border-color: rgba(101, 159, 19, .3);
            border-radius: 4px;
        }

        .uk-notification-message-danger > a {
            color: #d85030;
        }

        .uk-notification-message-success > a {
            color: #659f13;
        }

        .uk-notification-message > div {
            margin-right: 25px !important;
            font-size: 15px !important;
        }

        .uk-notification-message > div > ul > li {
            font-size: 15px !important;
        }

        .fs-25 {
            font-size: 25px !important;
        }

        .box_shadow {
            box-shadow: 2px 5px 8px 3px rgba(0, 0, 0, .24);
        }

