/**
Theme Name: coppercre-wp
Author: Wordsphere
Author URI: http://wordsphere.com
Description: Coppercre WordPress theme 
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coppercre-wp
Template: astra
*/


.fixed-header {
	background:#000000e3!important;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
    -webkit-animation: fadeInDown 0.5s ease;
    animation: fadeInDown 0.5s ease;
}

@-webkit-keyframes fadeInDown {
    0% {
        -webkit-transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}