@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap');
/* ------------------------------------------------- GLOBAL ------------------------------------------------- */

body {
    font-family: "Manrope";
}

main#primary #app {
    position: fixed;
    z-index: 2;
    left: 220px;
    top: 0;
    bottom: 0;
    margin: 0;
    right: 0;
    background: #F2F2F2;
    border-radius: 20px 0 0 20px;
    overflow-y: auto;
    padding: 30px;
}

.page-content, .entry-content, .entry-summary {
    margin-top: 0;
}

.hidden {
    display: none;
}

main#primary {
    position: fixed;
    z-index: 2;
    left: 200px;
    top: 0;
    bottom: 0;
    margin: 0;
    right: 0;
    background: #F2F2F2;
    border-radius: 20px 0 0 20px;
    overflow-y: auto;
    padding: 30px;
    overflow-y: scroll;
}

.page-template-page-account main#primary {
    left: 200px;
}

.page-template-page-flux-vue main#primary {
    padding-left: 0;
    left: 0;
}

/* ------------------------------------------------- HEADER ------------------------------------------------- */

div#masthead {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    max-width: 220px;
    background: rgb(35, 53, 66);
    background: -moz-linear-gradient(180deg, rgba(35, 53, 66, 1) 0%, rgba(47, 100, 123, 1) 25%);
    background: -webkit-linear-gradient(180deg, rgba(35, 53, 66, 1) 0%, rgba(47, 100, 123, 1) 25%);
    background: linear-gradient(180deg, rgba(35, 53, 66, 1) 0%, rgba(47, 100, 123, 1) 25%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#233542", endColorstr="#2f647b", GradientType=1);
    padding: 40px 0 0 40px;
}

a.custom-logo-link {
    width: 80px;
}

.site-branding {
    margin-bottom: 90px;
}

ul#primary-menu {
    flex-wrap: wrap;
}

.main-navigation li {
    width: 100%;
    padding: 10px 0;
    opacity: 0.4;
    position: relative;
    display: flex;
    align-items: center;
}

.main-navigation li:after {
    content: "";
    display: block;
    position: absolute;
    left: -140px;
    z-index: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0.2497373949579832) 0%, rgba(47, 100, 123, 0) 75%);
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0.2497373949579832) 0%, rgba(47, 100, 123, 0) 75%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2497373949579832) 0%, rgba(47, 100, 123, 0) 75%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#2f647b", GradientType=1);
    opacity: 0;
    -webkit-transition: opacity 0s, left 0.5s;
    -moz-transition: opacity 0s, left 0.5s;
    -o-transition: opacity 0s, left 0.5s;
    transition: opacity 0s, left 0.5s;
}

.main-navigation li:hover {
    opacity: 1;
}

.main-navigation li:hover:after {
    opacity: 1;
    left: -40px;
}

.main-navigation li {
    color: #FFFFFF;
    z-index: 1;
    position: relative;
    cursor: pointer;
}

.main-navigation li a {
    color: #FFFFFF;
    position: relative;
    z-index: 10;
}

.main-navigation li.ic-bookmark:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 14px;
    background-image: url(/wp-content/themes/opinions-bm/img/ic-bookmark.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
}

.main-navigation li.ic-home:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 14px;
    background-image: url(/wp-content/themes/opinions-bm/img/ic-home.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
}

.main-navigation li.ic-archives:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 13px;
    background-image: url(/wp-content/themes/opinions-bm/img/ic-archives.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
}

.main-navigation {
    margin-top: 7vh;
}

/* ------------------------------------------------- LOADER RING ------------------------------------------------- */

.lds-ring {
    display: inline-block;
    position: relative;
    width: 42px;
    height: 42px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 42px;
    height: 42px;
    margin: 5px;
    border: 5px solid #1bda87;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #1bda87 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ------------------------------------------------- HOME PAGE ------------------------------------------------- */

