/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: Bolton Schools ICT.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
/* Contact info Icons Colour Widget */
#footer-widgets .contact-info-widget i {
color: #fff;
}
/* File blk dwnld btn padding n colour */
.wp-block-file__button {
    padding: 10px 15px 10px 15px;
    background: #f7a42d;
}
/*White img border*/
.b-img {
    border: 5px solid #ffffff;
}
/* Hover alt colour */
.altcolour a:hover {
	color: #ffffff;
}
/* Hover alt colour2 */
.altcolour2 a:hover {
	color: #fcb54d;
}
/*Page Titles */
.border_rad {
border: 2px solid #e6e6e6;
border-radius: 25px;
	padding-top: 32px;
	padding-bottom: 16px;
	margin-bottom: 32px;
}
/* kb pages bg col and footer border*/
.eckb-kb-template {
	background-color: #34a2aa;
	margin-bottom: 3px !important;
	/*padding-bottom: 0px !important;*/
}
/* KB page header hide */
#eckb-article-page-container-v2 #eckb-article-body #eckb-article-content #eckb-article-content-header {
    display: none;
}

/* Next Previous top padding */
#eckb-article-page-container-v2 #eckb-article-body #eckb-article-content #eckb-article-content-footer .epkb-article-navigation-container {
    padding-top: 32px;
}
/*KB category bg image */
#eckb-categories-archive-container-v2 #eckb-categories-archive__body #eckb-categories-archive__body__content {
    background-image: url("https://res.cloudinary.com/bolton-schools-ict/image/upload/v1525027358/Global/Backgrounds/clouds-bg.png");
	}

/* mobile menu bg color*/
#site-header.medium-header {
    background-color: #fcb54d;
    text-align: center; 
}
/* Main Menu*/ 
.wp-block-navigation a:where(:not(.wp-element-button)) {
    color: inherit;
    padding-right: 22px;
}
/* Mobile Menu*/ 
.wp-container-core-navigation-layout-1.wp-container-core-navigation-layout-1 {
    justify-content: center;
    padding: 10px 0 5px 0;
}
/*Hide on mobile */
@media only screen and (max-width: 479px) {
   .mobile-hide{ display: none !important; }
}
/* Menu hover & focus */
.wp-block-navigation .wp-block-navigation-item a:hover,
.wp-block-navigation .wp-block-navigation-item a:focus {
    text-decoration: underline;
    color: #fff;
}
/* White altcolor */
.altcolour {
	color: #FFF;
}
/* Detail block customisation */
.wp-block-details summary {
	padding: 15px;
	margin-bottom: 5px;
	background-color: #34A2AA;
	color: white;
	box-sizing: border-box;
}
/* accessible marquee */
.announcement {
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  color: white;
  font-size: 28px;
}
.announcement h2 {
  display: inline-block;
  padding-left: 100%;
	color: white;
	font-size: 28px;
  animation: scroll-left 35s linear infinite;
  text-shadow: 0 0 2px #0198a8, 0 0 4px #000;
}
.announcement h2:hover {
  animation-play-state: paused;
}
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}