/*
    Include this file if WP needs to be simulated
    Includes top navigation bar, title and footer
*/


body {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    color: #fff;
    background-color: #5a72d6;
    font-size: 1rem;
    line-height: 20px;
    background-image: url(../images/feedback_shap.png);
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 100vh;
}

body,
#boxed-wrapper,
.fusion-wrapper,
.fusion-row,
#content.full-width,
.page,
.post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#main {
    flex: 1;
    display: flex;
    flex-direction: row;
}

.fusion-box {
    flex: 1;
}

nav {
    background-color: #5a71d6;
}

nav .navbar-brand {
    color: #ffffff;
}


/* Top navigation bar */
.navbar {
    height: 102px;
}
.navbar-nav .nav-item {
    margin-left: 30px;
}
.navbar-nav .nav-item .nav-link {
    position: relative;
    padding: 0;
    font-weight: 500;
    color: #fff;
}
.navbar-nav .nav-item .nav-link:hover {
    color: #fff;
}
.navbar-nav .nav-item .nav-link:before {
    content: '';
    position: absolute;
    top: calc(50% + 1.15em);
    left: 0;
    width: 100%;
    border-top: 3px solid #ffffff;
    transform: scaleX(0);
    transition: transform .2s ease-in-out;
}
.navbar-nav .nav-item.show .nav-link:before,
.navbar-nav .nav-item .nav-link:hover:before,
.navbar-nav .nav-item.active .nav-link:before {
    content: '';
    transform: scaleX(1);
}


/* Dropdown menu */
.dropdown-menu {
    width: 180px;
    border-color: rgba(0,0,0,.15);
    border-radius: 4px;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.1);
    margin-top: 15px;
}

.dropdown-item {
    padding-top: 7px;
    padding-bottom: 7px;
    color: #333333;
    font-size: 14px;
    transition: background-color ease-in-out 0.15s;
}

.nav-link img,
.dropdown-item img {
    margin-right: 15px;
}

.dropdown-toggle:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-left: 10px;
    font-size: 11px;
    display: inline-block;
    border: 0;
}


/* Header */
.section {
    padding-top: 98px;
    padding-bottom: 98px;
}

/* Footer */
.footer {
    background-color: #2a3644;
    padding: 55px 30px 0 30px;
}
.cookies-info {
    color: rgba(255,255,255,0.75);
    border-top: 1px solid rgba(255,255,255,0.25);
    padding: 20px 0;
    margin-top: 30px;
}
.cookies-info-link {
    color: #ff736d;
}

