/*
Theme Name: Twenty Seventeen Child
Theme URI: https://example.com
Description: Twenty Seventeen Child Theme
Author: the WordPress team
Author URI: https://example.com/
Template: twentyseventeen
Version: 1.0.0
*/

.breadcrumbs {
    margin-top: -50px;
    font-size: 16px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #0073aa;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .breadcrumb-separator {
    font-size: 20px; /* Increase the font size of the separator */
    margin: 0 5px; /* Add some space around the separator */
}

.breadcrumbs span {
    color: #555;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.custom_header {
    margin: 40px 0 40px 0;
}

.custom_link:hover {
    text-decoration: underline;
}

.custom_page_header {
    float: top;
    text-align: center;
    margin: 40px 0 40px 0;
}

.custom_page_navigation {
    border: 1px solid #CCC;
    padding: 20px 30px 0px 30px;
    float: bottom;
    display: block;
}

.custom_page_list {
    background-color: #eee;
    padding: 30px 30px 10px 30px;
    margin: 60px 20% 0 20%;
}

.custom_page_list ul {
    border-bottom: 2px solid #ddd;
    border-top: 2px solid #ddd;
}

.custom_page_list ul li {
    list-style: none;
    border-bottom: 2px solid #ddd;
    border-top: 2px solid #ddd;
    padding: 0.5em 0;
}

.custom_page_list ul li:hover {
    text-decoration: underline;
}

.loginout_button {

}

/* sidebar stuff */
.wrap:after {
    clear: none !important; /* allow sidebar to go next to wrap */
}

.has-sidebar:not(.error404) #primary {
    width: 100% !important;
    margin: 0 0 100px 0 !important;
}

.has-sidebar #secondary {
    float: left !important;
    width: 100% !important;
}

.sidebar_wrap {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line */

    min-width: 400px;
    max-width: 700px; /* same as content */
    padding-left: 2em; /* same as content */
    padding-right: 2em; /* same as content */
    margin-left: auto; /* center horizontally */
    margin-right: auto; /* center horizontally */

    box-sizing: border-box;
}

@media screen and (min-width: 48em) {
    .loginout_button {
        float: right;
    }

    /* overwrite for bigger size analogous to content */
    .sidebar_wrap {
        max-width: 1000px; /* same as content */
        padding-left: 3em; /* same as content */
        padding-right: 3em; /* same as content */
    }
}

.table-schedule {
    width: 100%; /* Optional: Set the table width */
}
.table-schedule th:nth-child(1),
.table-schedule td:nth-child(1) {
    width: 15%;
}
.table-schedule th:nth-child(2),
.table-schedule td:nth-child(2) {
    width: 75%;
}
.table-schedule th:nth-child(3),
.table-schedule td:nth-child(3) {
    text-align: center;
    width: 5%;
}

/* show posts on page */
.page:not(.twentyseventeen-front-page) #primary .entry-meta a.post-edit-link {
    color: #222;
    display: inline-block;
    margin-left: 1em;
    white-space: nowrap;
}

.page:not(.twentyseventeen-front-page) #primary .entry-header .edit-link {
    font-size: 11px;
    font-size: 0.6875rem;
}

body.page-two-column:not(.archive):not(.twentyseventeen-front-page) #primary .entry-header {
    float: none;
    width: 100%;
}

body.page:not(.twentyseventeen-front-page) .entry-title {
    color: #666;
    font-size: 26px;
    font-size: 1.625rem;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
}

.page.page-one-column:not(.twentyseventeen-front-page) #primary {
    max-width: none; /* do not restrict content width for one column */
}

/* show posts on page panel */
.page-two-column .panel-content .recent-posts {
    clear: right;
    float: none;
    width: 100%;
}


body.page-two-column #primary .panel-content .entry-content {
    float: left;
    width: 64%;
}

.calendar-navigation {
    margin-bottom: -25px;
    text-align: center;
}

.calendar-navigation button {
    color: #000;
    background-color: #fff;
    font-size: 20px;
    padding: 0 10px 0 10px;
    cursor: pointer;
}

.calendar-navigation #prev-month{
    margin: 0 100px 0 0;
}
.calendar-navigation #next-month{
    margin: 0 0 0 100px;
}

/*--------------------------------------------------------------
Featured Image Hover
--------------------------------------------------------------*/

.post-thumbnail {
    margin-bottom: 1em;
    text-align: center;
}

.post-thumbnail a img {
    -webkit-backface-visibility: hidden;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.post-thumbnail a:hover img,
.post-thumbnail a:focus img {
    opacity: 1.0;
}

