/*
    Theme Name: ICS Web Loyalty
    Version: 1.0
    Description: Tema básico de ICS para la Web de Fidelización
    Author: ICS
    Author URI: https://www.icssolution.com/
    Template: storefront
*/
.storefront-primary-navigation {
    display: none;
}
body.page {
    /*position: relative;*/
    -webkit-animation-name: pagefade;
    -webkit-animation-duration: 1s;
    animation-name: pagefade;
    animation-duration: 1s
}

@-webkit-keyframes pagefade {
    from { bottom:-100px; opacity:0 }
    to { bottom:0px; opacity:1 }
}

@keyframes pagefade {
    from{ bottom:-100px; opacity:0 }
    to{ bottom:0; opacity:1 }
}
#ics_loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

@-webkit-keyframes spin {
    from {-webkit-transform:rotate(0deg);}
    to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

#ics_loader::after {
    content:'';
    display:block;
    position:absolute;
    left:45%;top:45%;
    width:50px;height:50px;
    border-style:solid;
    /*border-color:black;*/
    border-color: var(--theme-background-color);
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}
.input-error {
    border: 1px solid red !important;
    color: red !important;
}
.entry-taxonomy {
    display: none;
}
#modalRegister {
    display: none;
}
