/*
Theme Name: Agro-projects by Domotics studio
Theme URI: http://www.domotics.studio/
Author:DOMOTICS studio team
Author URI: http://domotics.studio/
Description:

    DOMOTICS Studio Sarl
    ----------------------------------------------
    RC/ contribuable: 
    Capital social: 100 000 FCFA
    Siege Social: Douala Cameroon

    tel:+ 237 6 20 24 20 11
    Site Web: www.domotics.studio
    Mail: connect@domotics.studio

Version: 1.0
License: domotics.studio/
License URI: http://www.domotics.studio
Tags:
Text Domain: 

*/
@charset "UTF-8";
@charset "iso-8859-15";

#fader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
    background: #ffffff;  
    animation-duration: 500ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes fade-out {
    from { opacity: 1 }
      to { opacity: 0 }
}

@keyframes fade-in {
    from { opacity: 0 }
      to { opacity: 1 }
}

#fader.fade-out {
    opacity: 0;
    animation-name: fade-out;
}

#fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
}
