*,
*::after,
*::before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 14px;
}

body {
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #000;
}

@media (max-width: 1199px) {
    .container {
        max-width: 100%;
    }
}

/* Images */
img {
    align-self: center;
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

img.frame {
    border: 5px solid #fff;
    margin: 0 auto 0.5em auto;
    -moz-box-shadow: 2px 1px 5px #999;
    -webkit-box-shadow: 1px 1px 5px #999;
    box-shadow: 1px 1px 5px #999;
}

/* Typeface */
h1, .h1 { font-size: 1.8rem; }
h2, .h2 { font-size: 1.428rem }
h3, .h3 { font-size: 1.2rem }
h4, .h4 { font-size: 1.1rem }
h5, .h5 { font-size: 1rem }
h6, .h6 { font-size: 1rem; }

.largeType { font-size: 1.375rem; }
.smallType { font-size: 0.75rem; }

.color-white { color: #fff; }
.color-purple { color: #8d0f91; }
.color-light-blue { color: #93d3e2; }
.color-blue { color: #253274; }
.color-light-black { color: #333; }
.color-black { color: #000; }
.color-orange { color: #df551b; }
.color-red { color: #a94442; }

b, strong, .font-weight-bold { font-weight: 600 !important; }

/* Banners */
.banner {
    margin: 3em 0;
    text-align: center;
}

.banner img {
    margin: 0 1em 1em 0;
    height: 52px;
    border: 1px solid #e5e5e5;
    box-shadow: 1px 1px 1px 1px #999;
}

/* Buttons */
.btn, form button[type=submit], input[type=submit] {
    background: #253274!important;
    -moz-box-shadow: 0 2px 0 #1c2658, inset 0 0 0 rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 2px 0 #1c2658, inset 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 2px 0 #1c2658, inset 0 0 0 rgba(255, 255, 255, 0);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 1em;
    color: #fff !important;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 20px;
    line-height: normal;
    padding: 8px 50px;
    border: none;
}
.btn:hover, form button[type=submit]:hover, input[type=submit]:hover {
    background: #1c2658;
    color: #fff;
}

.btn:focus, .btn:active. form button[type=submit]:focus, form button[type=submit]:active, input[type=submit]:focus, input[type=submit]:active {
    color: #fff;
}

.btn.btn-secondary, form button[type=submit].btn-secondary, input[type=submit].btn-secondary, .btn.alt, form button[type=submit].alt, input[type=submit].alt {
    background: #8d0f91!important;
    border-radius: 0;
    border: 1px solid #fff;
    font-size: 1.15rem;
    font-weight: 400;
    margin: auto auto 0;
    text-transform: uppercase;
}

.btn.btn-secondary:hover, form button[type=submit].btn-secondary:hover, input[type=submit].btn-secondary:hover,
.btn.alt:hover, form button[type=submit].alt:hover, input[type=submit].alt:hover {
    background: #fff;
    color: #1c2658 !important;
    border-color: #1c2658;
}

.btn.btn-tertiary {
    background: #fff;
    color: #253274 !important;
    text-shadow: none;
    border: 1px solid #253274;
}

.btn.small, form button[type=submit].small, input[type=submit].small {
    font-size: 12px;
    padding: 8px 20px;
    -moz-box-shadow: 0 1px 0 #1c2658, inset 0 0 0 rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 1px 0 #1c2658, inset 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 1px 0 #1c2658, inset 0 0 0 rgba(255, 255, 255, 0);
}

/* Links */
a {
    color: #444;
    cursor: pointer;
    text-decoration: none;
}

a:not([href]):not([tabindex]) {
    cursor: pointer !important;
}

a:hover {
    color: #444;
}

a:active, a:focus, a:hover {
    outline: 0;
}

/* Messages */
.message {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    font-weight: 400;
}

.message.confirm {
    background-color: #dff0d8;
    border-color: #d0e9c6;
    color: #3c763d;
}

.message.error {
    background-color: #f2dede;
    border: 1px solid #ebcccc;
    color: #a94442;
}

/* Navigation */

#mainNav {
    background: #3b3e46;
    min-height: 50px;
}

#mainNav nav {
}
#mainNav nav .navbar { border-bottom: none; }

#mainNav nav .navbar-brand { display: none; }

#mainNav nav ul#nav {padding: 0;}

#mainNav nav ul#nav li {
    padding: 0 1em;
    display: flex;
    line-height: 38px;
    position: relative;
}
#mainNav nav ul#nav li:hover ul { display: block; }

#mainNav nav ul#nav li a {
    color: #fff;
    border-bottom: 2px solid transparent;
}

#mainNav nav ul#nav li a:hover{
     border-bottom-color: #b812bc;
     text-decoration: none;
}

#mainNav nav ul#nav li ul {
    background: #3b3e46;
    margin: 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    border: none;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    white-space: inherit;
    min-width: 100%;
    line-height: 50px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
#mainNav nav ul#nav li ul li {
    white-space: nowrap;
    padding: 0 1em
}

#mainNav nav ul#nav li ul li a { width: 100%; }

.navparent::after {
     content: '\f0d7';
     font-family: "FontAwesome", serif;
     color: #fff;
     margin-left: 0.5em;
}

/* Header */
#logo {max-height: 100px;padding: 1em 0;}

/* Footer */
footer {clear: both;margin: 2em 0 0 0;}
footer a {color: #fff;}
footer a:hover { color: #fff; }

footer #footer-cityscape {background: url('/app/themes/bbi-theme/resources/assets/images/cityscape.png') center bottom no-repeat;height: 100px;}

footer #footer-main {background: #253274;border-top: solid 1px #eee;color: #fff;padding: 1.5em 0;}
footer #footer-main ul {list-style: none;padding: 0 0 0 10px;}
footer #footer-main ul li {padding: 0}
footer #footer-main ul li::before {content: '\f105';font-family: "FontAwesome", serif;padding-right: 8px;}
footer #footer-main ul li a {font-weight: 400;}

footer #footer-copyright {background: #3b3e46;color: #fff;padding: 1em 0;}


/* Page Specific Styles */
#form-wizard-container #page-title {background: #8d0f91;color: #fff;font-size: 1rem;overflow: hidden;padding: 1rem 0;}
#form-wizard-container h1 {font-size: 2rem;}
#form-wizard-container span {font-size: 1.5rem;}
#form-wizard-container #form-wizard-iframe-container {background:#8d0f91}

#overview {background: #253274;color: #fff;font-size: 1.15rem;padding: 4rem 0;}
#overview h1 {color: #93d3e2;font-size: 2.5rem; font-weight: 400;margin-bottom: 2rem;}
#overview h2 {color: #93d3e2;font-size: 2rem; font-weight: 400;margin-bottom: 2rem;}
#overview ul li a {color: #fff;}

#billboard-rates .rate-item {padding: 2rem 0; border-bottom: 1px dashed #CCC;}
#billboard-rates .rate-item:last-of-type {border-bottom: 0;}

/*------------------------------------*\
    Loading Dialog
\*------------------------------------*/
#loading-container {
    background: rgba(0, 0, 0, 0.6);
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
}

#loading-container #loading-frame {
    background: #8c1b8f;
    border-radius: 8px;
    border: 3px solid #253274;
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
}
#loading-container #loading-frame img {
    height: 300px;
}

#loading-container #loading-frame .title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

