/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.minus-template-by {
    padding: 0px 9px !important;
    border: none !important;
    color: #1d1d1d !important;
    background: none !important;
}
.plus-template-by {
    padding: 0px 7px !important;
    border: none !important;
    color: #1d1d1d !important;
    background: none !important;
}

.minus-template-by:focus, .minus-template-by:hover, .plus-template-by:focus, .plus-template-by:hover {
    color: #1d1d1d !important;
    
    text-decoration: none;
}

.quantity {
    display: flex !important;
}
.woocommerce .quantity .qty {
    padding: 3px;
    width: 40px !important;
    border-radius: 0;
    border-color: #c4c4c4 !important;
    border-width: 1px 0px !important;
    text-align: center;
}
.woocommerce-cart-form .coupon{
    display: flex;
}

.woocommerce table.shop_table {
    border: none !important;
}
.woocommerce-cart-form .coupon .button {display: block !important;}
.woocommerce-cart-form .button {display: none !important}

.woocommerce-notices-wrapper {
    display: none;
}


.template-site-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22,43,64,.7);
    opacity: 0;
    z-index: 9;
    pointer-events: none;
    
    -webkit-transition: opacity .1s cubic-bezier(.5,.12,.46,.88) .1s;
    -o-transition: opacity .1s cubic-bezier(.5,.12,.46,.88) .1s;
    transition: opacity .1s cubic-bezier(.5,.12,.46,.88) .1s;
   
}
.template-site-cover.active { opacity: 1;}