/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */

@media (min-width: 768px) {
  /* Change width of the logo container */
  .fl-page-header-primary .row > div:first-child {
    width: 10%;
  }
  /* Change width of the nav container */
  .fl-page-header-primary .row > div:last-child {
    width: 90%;
  }
}

.sub-menu {
  text-transform: none !important;
}

.fl-page-nav ul.sub-menu li a {
  text-transform: none !important;
}




  /* Change width of the nav container */

  .pagination {
    clear: both;
    position: relative;
    font-size: 11px;
    line-height: 13px;
    float: right;
  }

  .pagination span,
  .pagination a {
    display: block;
    float: left;
    margin: 2px 2px 2px 0;
    padding: 6px 9px 5px 9px;
    text-decoration: none;
    width: auto;
    color: #fff;
    background: #808080;
    -webkit-transition: background .15s ease-in-out;
    -moz-transition: background .15s ease-in-out;
    -ms-transition: background .15s ease-in-out;
    -o-transition: background .15s ease-in-out;
    transition: background .15s ease-in-out;
  }

  .pagination a:hover {
    color: #fff;
    background: #14a6cd;
  }

  .pagination .current {
    padding: 6px 9px 5px 9px;
    background: #14a6cd;
    color: #fff;
  }