/*
	bMaster
	Default Template Styles
	============
	default.css
*/

/* body */
body{
	font-family: 'Source Sans Pro', sans-serif;
}

/* a */
a{
	color:inherit;
}
a:hover,
a:focus,
a:active{
	color: inherit;
	outline:none;
	text-decoration:none;
}

/* debug */
div#debug {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
}
div#debug > span {
	position: absolute;
    color: #000;
    padding: 7px;
}
div#debug .main {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    background-color: rgb(0, 0, 0);
    padding: 7px 0;
    color: #fff;
    text-align: center;
    opacity: 0;
    font-weight: 600;
}
div#debug .main:hover {
	opacity: 1;
}
div#debug p {
    margin: 0;
}
div#debug p small {
    font-weight: 300;
    opacity: .5;
}

/* topbar */
.topbar {
    background-color: #ddd;
    padding: 10px 0;
}
.topbar .list-inline {
    margin: 0;
}

/* logo */
.logo {
    width: 210px;
    height: 70px;
    float: left;
}
.logo a {
    width: 100%;
    height: 100%;
    display: block;
    background-position: 50%;
    background-repeat: no-repeat;
}

/* navbar */
.affix{
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 1;
}
nav.navbar {
    border: 0;
    margin: 0;
    border-radius: 0;
}
nav.navbar #mainmenu {
    float: left;
}
ul.nav > li > a.dropdown-toggle:after {
    content: "\f0d7";
    font: normal normal normal 12px/1 FontAwesome;
    margin-left: 5px;
}

/* carousel */
#bCarousel {
    height: 60vh;
}
#bCarousel .carousel-inner, #bCarousel .item, #bCarousel .fill {
    height: 100%;
}
#bCarousel .fill {
    background-size: cover;
    background-position: 50%;
}

/* content */
.content {
    padding: 20px 0;
}

/* footer */
.footer{
    padding: 10px 0;
    background-color: #ddd;
}
.footer .list-inline {
    margin: 0;
}

/* modal */
.modal-content .modal-body a {
    display: block;
}
.modal-content .modal-body a img {
    width: 100%;
}
.modal-content .modal-body p.popup-text {
    margin: 15px 0 0;
}


/* form */
.bm-form {
    float: left;
    width: 100%;
}
form#bm-form {
    float: left;
    width: 100%;
}
form#bm-form .form-elem {
	position: relative;
}
form#bm-form .form-elem.col-lg-12 {
    padding: 0;
}
form#bm-form .form-elem > span.radio-checkbox {
    display: block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}
form#bm-form .form-elem input,
form#bm-form .form-elem textarea,
form#bm-form .form-elem select {
    width: 100%;
    border: 1px solid #ddd;
    padding: 8px 15px;
    margin-bottom: 8px;
    border-radius: 2px;
}
form#bm-form .form-elem textarea {
    resize: vertical;
}
form#bm-form .form-elem select {
    height: 38px;
    background-color: transparent;
}
form#bm-form .form-elem input[type=checkbox] {
    width: 25px;
}
form#bm-form .form-elem label.label-checkbox,
form#bm-form .form-elem label.label-radio {
    margin-right: 20px;
    font-weight: normal;
}
form#bm-form .form-elem label.label-checkbox input,
form#bm-form .form-elem label.label-radio input {
    width: auto;
    margin-right: 5px;
}
form#bm-form .form-elem ::placeholder {
    -webkit-font-smoothing: antialiased;
    color: #999;
}
form#bm-form .form-elem button {
    border: 1px solid #ddd;
    background: #fff;
    width: auto;
    display: inline-block;
    padding: 6px 5%;
    border-radius: 2px;
    color: #666;
    margin-top: 10px;
    -webkit-font-smoothing: auto;
    transition: all .3s ease-in-out;
}
form#bm-form .form-elem button:hover {
    background-color: #f5f5f5;
}
form#bm-form .form-elem.disabled button {
    pointer-events: none;
}