/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.skip-link{
  position:absolute;
  overflow:hidden;
  top:auto;
  left:-10000px;
  width:1px;
  height:1px;
}

.skip-link:focus{
  top:0px;
  left:0px;
  width:auto;
  height:auto;
}


#content{
  min-height:85vh;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

.sticky {
  position: relative;
}

#page {
  position: relative;
  word-wrap: break-word;
}

.wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  padding-left: 2em;
  padding-right: 2em;
}

.wrap:after {
  clear: both;
  content: "";
  display: block;
}

.site-header {
  background-color: #fafafa;
  position: relative;
}

.blog .site-main > article,
.archive .site-main > article,
.search .site-main > article {
  padding-bottom: 2em;
}

.page .panel-content .entry-title,
.page-title,
body.page:not(.maximgym-front-page) .entry-title {
  color: #222;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.entry-header .entry-title {
  margin-bottom: 0.25em;
}

.entry-title a {
  color: #333;
  text-decoration: none;
  margin-left: -2px;
}

.entry-title:not(:first-child) {
  padding-top: 0;
}

.entry-meta {
  color: #767676;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1818em;
  padding-bottom: 0.25em;
  text-transform: uppercase;
}

.entry-meta a {
  color: #767676;
}


.panel-content {
  position: relative;
}

.panel-content .wrap {
  padding-bottom: 0.5em;
  padding-top: 1.75em;
}

.page .panel-content .recent-posts .entry-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}


.site-footer{
  background:#f03c02;
  color:white;
}

.panel-content .wrap {
    padding-bottom: 2em;
    padding-top: 3.5em;
}

.page-one-column .panel-content .wrap {
    max-width: 740px;
}

.panel-content .entry-header {
    margin-bottom: 4.5em;
}

.panel-content .recent-posts .entry-header {
    margin-bottom: 0;
}

.wrap {
    max-width: 1400px;
    padding-left: 3em;
    padding-right: 3em;

}

.page-header {
  padding-bottom: 2em;
}

.blog .site-main > article,
  .archive .site-main > article,
  .search .site-main > article {
    padding-bottom: 4em;
}

.navbar-light .navbar-nav .nav-link{
  color:white;
}

.cursor-pointer{
  cursor:pointer;
}

.text-justify{
  text-align: justify;
}

.post-thumbnail img{
  border:solid grey;
  padding:5px;
}

#maximgym-blog-sidebar-wrapper h5{
  padding:10px 0px;
  border-bottom: solid grey;
}

#maximgym-blog-sidebar-wrapper .widget_block{
  margin-top:10px;
}

#maximgym-blog-sidebar-wrapper .widget_recent_entries .wp-block-latest-posts li{
  margin-bottom: 15%;
}

#maximgym-blog-sidebar-wrapper .wp-block-latest-posts li a{
  text-decoration: none;
  color:black;
}

#maximgym-blog-sidebar-wrapper .wp-block-categories{
  padding:0px;
}

#maximgym-blog-sidebar-wrapper .wp-block-categories .cat-item {
  list-style: none;
}

#maximgym-blog-sidebar-wrapper .wp-block-categories .cat-item a{
  text-decoration: none;
  color:black;
}



.comment-reply-title{
  font-size:1.5rem;
}

input[type=submit] {
  background-color:#f03c02;
  color:white;
  border-color:#f03c02;
  border-style:none;
  padding: 8px 16px;
  border-radius:5px;
}

textarea{
  width:100%;
}
input[type=text],input[type=email],input[type=url]{
  width:100%;
  line-height: 30px;
}

.maximgym-bg-orange{
  background-color: #f03c02;    
}


.entry-header{
  padding:20px;
}

.pagination{
  margin-bottom: 20px;
  display: block;
  text-align: center;
}
.pagination .page-numbers{
  padding:5px 10px;
  text-decoration: none;
}
.current{
  background: #f03c02;
    color: white;
}


/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  .dropdown-menu li{
    position: relative;
  }
  .dropdown-menu .submenu{ 
    display: none;
    position: absolute;
    left:100%; top:-7px;
  }
  .dropdown-menu .submenu-left{ 
    right:100%; left:auto;
  }

  .dropdown-menu > li:hover{ background-color: #f1f1f1 }
  .dropdown-menu > li:hover > .submenu{
    display: block;
  }
} 
/* ============ desktop view .end// ============ */

a{
  color:#000;
}
