/*
Theme Name: Child Theme
Theme URI: http://www.ownerswebsites.co.uk
Version: 6.1
Description: A child theme used as a starting point for custom development.
Author: Owners Websites
Author URI: https://www.ownerswebsites.co.uk
template: bb-theme

/* 1. Remove Blue Border Issue
.navbar-toggler:focus {
outline:none !important;
}
:focus {outline:0 !important;}
select {
/*-webkit-appearance: none; 
-moz-appearance: none;
/*appearance: none; 
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
background-position: right center;
background-color: #CCCCCC;
color: #000000;
border: 1px solid #000000;
}
*/
/* 1. Remove Blue Border Issue */ 
.navbar-toggler:focus {
outline:none !important;
}
body {
  -webkit-animation-duration: 0.1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0.1s;
}
/* 2. IE Compatibility Font rendering */
body #wrap_all{
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}



/* 5. Remove Dropdown Arrows */ 
select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}
/* For IE10 */
select::-ms-expand {
  display: none;
}
