/*
My custom css. Does not get overwritten on upgrade.
*/

/* To enable responsive embedding
of youtube videos */

.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

/* Need to change the font sizes and weights. The below yanked and modified from the style sheet css */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
}

/* modifies a lot of stuff, check the css for the old values */
body, button, input, select, textarea {
    color: #111000;
		font-size: 17px;
		font-size: 1.7rem;
		font-weight: 400;
		line-height: 1.5;
}

/* change the menu background */
.main-navigation {
    background-color: #0072B2;
}

/* change the selected menu item and hover, old was #4f4f4f */

.main-navigation li.current_page_item > a,
.main-navigation li.current-menu-item > a,
.main-navigation li.current_page_ancestor > a,
.main-navigation li.current-menu-ancestor > a { color: #ff8b70; }

/* hover */
.main-navigation a:hover,
.main-navigation ul > *:hover > a,
.main-navigation ul > .focus > a { color: #ff8b70; }

/* isnt this captured in following
rule?? */

/*
.page-title,
.entry-title,
.entry-title a {
	color: #040303;
}
*/


/* widget titles, old #4f4f4f */
.front-widget-area .widget-title, .sidebar-widget-area .widget-title {
    color: #040303;
}

/* change the color of all links */
a {
  color: #0072B2;
}

/* Underline links only in blog posts */
.hentry .entry-content a {
  text-decoration: underline;
}

/* link hover colors, old #aaa */
a:hover, a:focus, a:active {
    color: #aaa;
}

/* the footer at the bottom */
.site-info {
    visibility: hidden;
}

.site-info:before {
    visibility: visible;
		font-size:9px;
    content: "\00a9 Mwamba Capital Limited 2018. All rights reserved. The material on this website is for informational purposes only. Nothing on this website constitutes an offer or a recommendation to buy, sell, or trade in any asset, nor does it constitute an offer to provide investment advice. Always check with an investment professional before making any investment decisions. Mwamba Capital Limited and its associated parties do not warranty or guarantee any of the information provided on this website, including its correctness, suitability, or fitness for any purpose.";
    display: block;
}