/* 
Imports 
##################################################
*/
@import "_open-sans.css";
@import "_apps.css";
@import "_breadcrumb.css";
@import "_call.css";
@import "_contact.css";
@import "_footer.css";
@import "_home.css";
@import "_list.css";
@import "_login.css";
@import "_meeting.css";
@import "_menu.css";
@import "_meeting-plan.css";
@import "_navbar.css";
@import "_pagination.css";
@import "_recent_call.css";
@import "_setting.css";
@import "_user.css";

/* 
Global 
##################################################
*/
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;

    @media screen and (max-width: 575px) {
        font-size: 14px;
    }
}

body {
    min-height: 100vh;
    margin: 0;
    background-color: #e8e9ea;
    display: flex;
    flex-direction: column;
    font-family: 'Open Sans', sans-serif;
}

a {
    color: #27348a;
    text-decoration: none;
}

a:hover,
a:active {
    color: #2b40d3;
}

input {
    border: 1px solid #888888 !important;
    height: 40px;
}

h1.top-panel {
    background-color: #27348a;
    color: white;
    padding: .5rem 1rem;
    font-size: 1.1875rem;
    font-weight: 600;
    margin-bottom: 0;
}

.main-container {
    flex: 1;
}

.content-container {
    padding: 0 3.375rem;
}

.content-description {
    font-size: 0.875rem;
    color: #304575;
    margin-bottom: 1.5rem;
}

.content-container .content-panel {
    background-color: white;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}

.popover {
    background-color: black;
}

.popover .popover-arrow:before,
.popover .popover-arrow:after {
    border-bottom-color: black !important;
}

.popover a {
    color: #38daff;
    text-decoration: underline;
}

.popover .popover-body {
    color: white;
    font-size: 0.75rem;
}

.popover a:hover {
    color: #fdc539;
}

.display-desktop {
    display: block;
}

.display-mobile {
    display: none;
}

@media screen and (max-width: 1199px) {
    .display-desktop {
        display: none;
    }

    .display-mobile {
        display: block;
    }
}

label.required:after {
    content: "*";
    margin-left: .33rem;
}