/*
Global CSS
*/
/* 
    Created on : Jan 8, 2017, 12:43:16 PM
    Author     : rohit
*/

@import url("../css/bootstrap.min.css");
@import url("../css/font-awesome.min.css");

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box
}
ul, ol{
    margin: 0;
    padding: 0;
    list-style: outside none none;
}
a{
    color: #000B2C;
    outline: 0;
    text-decoration: none;
    transition: all .5s;
}
a:focus, a:hover{
    color: #F47923 !important;
    text-decoration: none;
    outline: 0;
}
img {
    height: auto;
    max-width: 100%;
    width: auto;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
    line-height: 1.1;
    font-weight: 500;
}
body{
    font-family: 'Heebo', sans-serif;
    color: #000B2C;
    font-size: 18px;
    font-weight: 400;
}
body p{
    margin-bottom: 15px;
}
div#main-wrapper {
    overflow: hidden;
}
.loading-wrapper-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 999;
    text-align: center;
    display: none;
}
.loading-image {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 25%;
}
.copyright-mobile-info {
    display: none;
}
.springboard-global-message-container {
    position: fixed;
    left: 0%;
    right: 0;
    margin: 0 auto;
    width: 30%;
    top: 40%;
    z-index: 9;
    background: #E0F4FC;
    border: 2px solid #000B2C;
    border-radius: 4px;
    padding: 20px 40px;
    color: #000;
    text-align: center;
}
.springboard-global-message-container span.error {
    margin-bottom: 5px;
    display: inline-block;
    border-bottom: 1px dashed #fc7b7b;
    padding-bottom: 5px;
}
.springboard-global-message-container .close-popup {
    position: absolute;
    right: 0;
    top: 0;
    background: #000B2C;
    font-weight: 700;
    padding: 2px 8px;
    cursor: pointer;
    color: #FFF;
}
.springboard-global-message-container .close-popup:hover {
    background: #51a300;
}
.springboard-global-overlay {
    position: fixed;
    z-index: 9;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


@media screen and (max-width: 767px){
    .copyright-mobile-info {
        text-align: center;
        font-size: 13px;
        display: block;
    }    
}
