body
{
    padding: 0 0 0 0;
    margin: 0;
    background-color: var(--theme-white);
    font-family: Raleway, sans-serif;
}

p:empty
{
    display: none;
}

/* Images fixes */

img
{
    max-width: 100%;
}

img[align="left"],
img[style*="float: left"],
img[style*="float:left"]
{
    margin: 5px 15px 0px 0px;
}

img[align="right"],
img[style*="float: right"],
img[style*="float:right"]
{
    margin: 5px 0px 0px 15px;
}

/* Table layout fixes */

table
{
    border-spacing: 0px;
}

table tr td
{
    padding: 0px;
}

/* Menu fixes */

.menu li
{
    white-space: nowrap;
}

/* Page titles */

.page-title
{
    background-image: url(/includes/images/back-default-01.jpg);
    background-size: cover;
    background-position: center center;
    text-align: center;
}

.page-title .fader
{
    padding: 250px 0 150px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
}

.page-title h1
{
    text-transform: none;
    color: var(--theme-white);
    font-size: 50px;
    text-shadow: 1px 1px 2px var(--theme-black);
    font-weight: bold;
    opacity: 0;
    transition: all 1s ease;
    margin-bottom: 40px;
    width: auto;
    text-align: left;
    position: relative;
}

.page-title h1:after
{
    content: " ";
    border-bottom: 1px solid var(--theme-gray-dark);
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 500px;
}

.page-title .page-title-breadcrumb
{
    color: var(--theme-white);
    display: block;
    opacity: 0;
    transition: all 1.5s ease;
    text-align: left;
    position: relative;
}

.page-title .page-title-breadcrumb ul
{
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-title .page-title-breadcrumb ul li
{
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
    color: var(--theme-white);
    background-color: var(--theme-primary-dark);
    position: relative;
    margin-left: 24px;
    padding: 2px 9px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.page-title .page-title-breadcrumb ul li:last-of-type
{
    
}

.page-title .page-title-breadcrumb ul li:before
{
    vertical-align: middle;
    font-size: 20px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    height: 22px;
    line-height: 22px;
    content: "\e817";
    font-family: unicons-solid;
    margin-left: 5px;
    margin-right: 7px;
    color: var(--theme-white);
    position: absolute;
    left: -28px;
    top: 1px;
}

.page-title .page-title-breadcrumb ul li:first-of-type
{
    margin-left: 0;
}

.page-title .page-title-breadcrumb ul li:first-of-type:before
{
    display: none;
}

.page-title .page-title-breadcrumb ul li a
{
    text-decoration: none;
    text-align: left;
    color: var(--theme-white);
}

.page-title .menu-name:empty {
    display: none;
}

/* Page title displayed */

.page-title-displayed h1,
.page-title-displayed .page-title-breadcrumb {
    opacity: 1;
}

/* Page generic elements */

.page-content {
    min-height: 400px;
    padding: 50px 0;
}

.page-content .container {
    padding: 30px;
}

.page-content .container .content > *:first-child,
.secured-page-login-form > *:first-child {
    margin-top: 0;
}

/* Responsiveness */

@media screen and (max-width: 768px)
{
    .page-title h1
    {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
        border-bottom: 1px solid var(--theme-white);
        padding-bottom: 10px;
    }
    
    .page-title h1:before,
    .page-title h1:after
    {
        display: none;
    }
    
    .page-title .page-title-breadcrumb
    {
        display: block;
        text-align: center;
    }
    
    .page-title .page-title-breadcrumb ul
    {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .page-content .container {
        padding: 0;
    }
    
    .page-content .container > .row {
        margin: 0;
    }
}

/* Printing adjustments */

@media print {
  a[href]:after {
    content: none !important;
  }
}