/* font has already imported at header by google font (Lat) */

/* In the edit page, side bar (upper side) and content region (lower side) is separated by group brocks */


/* heading font (H2,H3) : Lato bold */
h2 {
    font-family: "Lato", sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    font-style: normal;
    display: inline-block;
    padding: 0 50px 5px 50px;
    text-decoration: none;
    background-image: linear-gradient(rgba(161, 210, 234, 0.5), rgba(165, 216, 241, 0.5));
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: 130% 10px;
}

h3.custom-h3 {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
    position: relative;
    text-decoration: none;
    padding-bottom: 10px;
    background-image: linear-gradient(rgba(161, 210, 234, 0.5), rgba(161, 210, 234, 0.5));
    background-repeat: no-repeat;
    background-size: 100% 7px;
    background-position: 0 100%;
}

@media (width < 1000px) {
    h2 {
        font-size: 2rem;
    }
}

/* side bar style */
.frotet-list-content-block>div>ul>li {
    list-style: none;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    display: block !important;
    width: 100% !important;
    margin-bottom: 5px;
    padding: 0 0 3px 0;
    text-decoration: none;
    background-image: linear-gradient(rgba(161, 210, 234, 0.5), rgba(161, 210, 234, 0.5));
    background-repeat: no-repeat;
    background-size: 100% 3px;
    background-position: center bottom;
    cursor: pointer;
    transition: background-size 0.3s ease;
}

.frotet-list-content-block>div>ul>li:hover {
    background-size: 100% 10px;
}

.frotet-list-content-block>div>ul>li>a {
    text-decoration: none;
}

/* sticky side bar */
/* needed to unlock overflow: hidden */
#wrapper,
.l-wrapper,
.l-content,
.l-main,
.c-postContent {
    overflow: visible !important;
}


.frotet-page-content>.wp-block-group__inner-container {
    display: flex !important;
    align-items: flex-start !important;
    flex-wrap: wrap;
    width: 100%;
    max-width: none !important;
}

.frotet-list-content-block {
    flex: 0 0 250px !important;
    width: 250px !important;
    margin-right: 30px;
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 120px !important;
    z-index: 100;
}

.frotet-content-block {
    flex: 1 1 0% !important;
    min-width: 0 !important;
}

.frotet-list-content-block>.wp-block-group__inner-container,
.frotet-content-block>.wp-block-group__inner-container {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.frotet-list-content-block .wp-block-list {
    margin-top: 0 !important;
    background-color: transparent;
}

.c-postContent {
    display: block;
}

@media (width < 600px) {
    /* disable sidebar for mobile */
    .frotet-list-content-block {
        display: none !important;
    }

    /* rese the size of right contents */
    .frotet-content-block {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
}
