/* small file to format the loader */

button span#loader {

    width:30px;
    height:30px;
    display:block;
    margin:auto;
    border-width:3px;
    border-color:white transparent;
    border-style:solid;
    border-radius:50%;
    animation-name: rotate;
    animation-duration: 1s;
    animation-iteration-count:infinite;
    position:relative;
}


.showcart {
    animation-name:fadeIn;
    animation-duration:0.5s;
    animation-iteration-count:1;

}


.closecart__button {
    position: absolute;
right: 10px;
top: 10px;
width: 2rem;
height: 2rem;
background: none;
border: none;
font-weight: bold;
font-size: 1.5rem;

}

.continue-shopping {
    display:flex;
    color: #001500;
font-family: "FuturaPTBook";
text-transform: uppercase;
text-decoration: none;
font-size: 13px;
line-height: 13px;
font-weight: bold;
justify-content: center;
padding: 0px 0px 15px 0px !important;


}

a.added_to_cart {
    display:none !important;
}


.tofade {

    animation:fadeIn 0.5s reverse;
    animation-iteration-count:1;


}

@keyframes rotate {
    0% {transform:rotate(0deg)}
    100% {transform:rotate(359deg)}


}

@keyframes fadeIn {

    0% {display:block;opacity:0;}
    100% {display:block;opacity:1}


}

/* Error */

.topLine {
    grid-column:1/13;
}


.custom-error {
    padding: 1em 2em 1em 3.5em;
    margin: 0 0 2em;
    position: relative;
    background-color: #f6f5f8;
    color: #515151;
    border-top: 3px solid #b81c23;
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
    display:flex;
    gap:10px;

}

.custom-error:before {
    content: "\e016";
    color: #b81c23;
    font-family:WooCommerce;


}

form.cart .woocommerce-NoticeGroup {
   display:none !important; 

}