#planmiddle .commentable { border: 1px dashed transparent; padding: 2px 3px; transition: background .2s, border .2s; }
#planmiddle.comments-enabled .commentable:hover { background: #e5f4f7; border: 1px dashed #003b53; cursor: pointer; }
#planmiddle.comments-enabled .commentable.commenting { background: #e5f4f7; border: 1px dashed #003b53; cursor: pointer;  } 

#toggle-comment-mode { background: #008eaa; border-radius: 0 8px 8px 0; font-weight: 700; left: 0; padding: 14px 16px 12px 20px; position: fixed; text-align: left; top: 198px; transition: background .4s, padding .4s, width .4s; width: 250px; -webkit-box-shadow: 13px 0px 25px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 13px 0px 25px 0px rgba(0,0,0,0.75);
    box-shadow: 13px 0px 25px 0px rgba(0,0,0,0.75);} 
#toggle-comment-mode span:after { content: " Off"; font-size: .9em; text-transform: uppercase; }
#toggle-comment-mode:hover { background: #007b94; padding-left: 32px; width: 270px; z-index: 10; }
#toggle-comment-mode div { background: #fff; border-radius: 80px; display: block; height: 28px; margin-top: 10px; position: relative; width: 70px; }
#toggle-comment-mode div:after { background: #fff; border: 1px solid #bbb; border-radius: 50%; bottom: 17px; content: ""; height: 26px; left: 0%; margin: 0 1px; position: absolute; top: 1px; transition: .4s; width: 26px; }

.comments-enabled #toggle-comment-mode { background: #003b53;border-right:3px solid #87d625;border-bottom:3px solid #87d625; border-top:3px solid #87d625;  }
.comments-enabled #toggle-comment-mode span:after { color: #87d625; content: " On"; }
.comments-enabled #toggle-comment-mode div:after { background: #699e26; left: 100%; margin-left: -28px; }
#toggle-comment-mode a {display:inline-block;margin-top:8px; font-size:.8em;color:white;border-bottom:dotted white 1px;}
#toggle-comment-mode a:hover {border-bottom:solid 2px white;}
#comment-bubble { background: #fff; border: 0; border-radius: 12px; box-shadow: 0 6px 18px -2px #333; display: none; height: 400px; position: fixed; top: 200px; width: 540px; z-index: 99; }
#comment-bubble:after { border: 25px solid transparent; border-width: 30px 24px; border-right-color: #fff; content: ""; margin-top: -30px; position: absolute; right: 100%; top: 50%; }
#comment-bubble.up-top:after { margin-top: -170px; }
#comment-bubble.down-low:after { margin-top: 110px; }
#comment-bubble.far-right:after { right: auto; left: 100%; border-right-color: transparent; border-left-color: #fff; } 
#comment-bubble.mobile-up:after { bottom: 100%; border-right-color: transparent; border-bottom-color: #fff; margin-right: -24px; right: 50%; top: auto; } 
#comment-bubble.mobile-down:after { border-right-color: transparent; border-top-color: #fff; margin-top: 0; margin-right: -24px; right: 50%; top: 100%; } 
#comment-bubble.mobile-right:after { margin-right: 0; right: 10%; } 
#comment-bubble.mobile-left:after { margin-right: 0; right: 70%; } 
#comment-bubble iframe { clear: both; display: block; height: 320px; margin: 0 auto; width: 94%; }
#comment-bubble #close-form { background: #fff; border-radius: 12px; color: #000; float: right; font-size: 2em; margin: 0; padding: 6px 14px; }
#comment-bubble #close-form:hover { color: #aaa; }
#comment-bubble #close-form span { left: -9999px; position: absolute; }

@media screen and (max-width: 900px) {
  #comment-bubble { height: 260px; width: 320px; }
  #comment-bubble.up-top:after { margin-top: -80px; }
  #comment-bubble.down-low:after { margin-top: 50px; }
  #comment-bubble iframe { height: 200px;  }
}

@media screen and (max-width: 500px) {
  #comment-bubble { height: 200px; width: 240px; }
  #comment-bubble.up-top:after { margin-top: -80px; }
  #comment-bubble.down-low:after { margin-top: 50px; }
  #comment-bubble iframe { height: 140px;  }
}

html {
    scroll-behavior: smooth;
}
.jump-to-section-menu.example-style .jts-nav {

    display: flex;
    flex-wrap: wrap;
    margin:20px 0px 0px 0px;
}

.jump-to-section-menu.example-style .jts-nav li {
    display: block;
    font-size: 1em;
    line-height: 1.1em;
    border-bottom: 1px dotted #176288;
    padding-bottom: 9px;
    margin-bottom: 9px;
}
.jump-to-section-menu.example-style .jts-nav li:last-of-type{border-bottom:none;}

.jump-to-section-menu.example-style .jts-nav li a {
    color: #FFF;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    font-size:.9em
}

.simple-modal-visible {
    display: flex !important;
}
.simple-modal-container {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index:3;
}
.simple-modal-background {
    background: rgba(0,0,0,.75);
    overflow: hidden;
    z-index: 998;
    
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.simple-modal-body {
  z-index: 999;
  background: #FFF;
  position: relative;
  max-height: 84%;
  max-width: 88%;
  overflow: auto; 
}

.simple-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    color: #032F60;
    font-size: 2.0rem;
    cursor: pointer;
    border: 0;
    padding: 0.75rem;
    transition: all .3s ease-in-out;
}
.simple-modal-close:hover {
    color: #206B8F;
}

/* @media (min-width: 768px) { */
  .simple-modal-content {
    padding: 25px;
  }
/* } */

@media (min-width:992px){
  .simple-modal-content {
    padding: 50px;
  }
}