/**
* Theme Name: Fana Child
* Description: This is a child theme for Fana
* Author: Thembay
* Author URI: https://thembay.com/
* Version: 1.1.18
* Template: fana
*/


/*  [ Add your custom css below ]
- - - - - - - - - - - - - - - - - - - - */

.woocommerce-products-header{
    display: none;
}
.navbar-nav .menu-item a.elementor-item {
	padding-left: 5px !important; 
	padding-right: 5px !important;
}
.single-product .navbar-nav>li>a {
	margin: 0 14px;
}
.post-type-archive .navbar-nav>li>a {
	margin: 0 14px;
}

#scroll-container {
/*   border: 3px solid black;
  border-radius: 5px; */
  overflow: hidden;
}

#scroll-text {
  text-align: right;

  /* animation properties */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  
  -moz-animation: my-animation 15s linear infinite;
  -webkit-animation: my-animation 15s linear infinite;
  animation: my-animation 15s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from { -moz-transform: translateX(100%); }
  to { -moz-transform: translateX(-100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from { -webkit-transform: translateX(100%); }
  to { -webkit-transform: translateX(-100%); }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

body .single-product .topbar-device-mobile {
	background: #db9ea4 !important;
}