/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

#email_newsletter::placeholder {
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

#email_newsletter::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #ffffff;
}

/* Enable Account and Cart dropdowns on mobile */
@media (max-width: 991px) {

    header ul.top_tools>li .dropdown-access .dropdown-menu.show,
    header ul.top_tools>li .dropdown-cart .dropdown-menu.show {
        display: block !important;
        opacity: 1;
        visibility: visible;
        position: absolute;
        right: 0;
        top: 100%;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .175);

    }

    /* Align arrows under icons on mobile */
    header ul.top_tools>li .dropdown-access .dropdown-menu.show:before,
    header ul.top_tools>li .dropdown-cart .dropdown-menu.show:before {
        display: block !important;
        left: auto !important;
        right: 5px !important;
        margin-left: 0 !important;
        border-bottom-color: #0e3437 !important;
        /* Restore previous theme color */
    }
}

/* React Managed Isolation Styles */
.react-qty-numbers {
    position: relative;
    width: 100%;
    height: 40px;
    overflow: visible;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    text-align: left !important;
    background-color: #fff;
    border: 1px solid #ddd;
}

.react-qty-btn {
    cursor: pointer;
    width: 33px;
    height: 40px;
    line-height: 38px;
    z-index: 2;
    font-size: 1.625rem;
    font-weight: 300 !important;
    color: #999;
    position: absolute;
    text-align: center;
}

.react-qty-btn:hover {
    color: #0e3437;
}

.react-qty-numbers .dec {
    left: 0;
    top: 0;
}

.react-qty-numbers .inc {
    right: 0;
    top: 0;
}

/* Restore Desktop Dropdown Hover */
@media (min-width: 992px) {
    .react-managed-dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        /* Align perfectly */
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
}