/* /////////////////////////////////////////// A Flexible "Grid" /
(based on PocketGrid - http://arnaudleray.github.io/pocketgrid) */
*, *:before, *:after {
    box-sizing: border-box;
}
/* Clearfix */
.group,
.content-group
{
  *zoom: 1;
}
.group:before, .group:after,
.content-group:before, .content-group:after
{
  display: table;
  content: "";
  line-height: 0;
}
.group:after,
.content-group:after
{
  clear: both;
}

.group,
.content-group
{
  /* ul/li compatibility */
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Nested grid */
.group > .group,
.group > .content-group,
.content-group > .content-group
{
  clear: none;
  float: left;
  margin: 0 !important;
}

/* Default block */
.block,
.content-block
{
  float: left;
  width: 100%;
}

/* ///// Random Global /////*/

/* Colors /////
    TW Green: #426c22 (66,108,34)
        lighter: #5a0 (h3) (85,170,0)
        highlight: #51852A (buttton roll-over) (81,133,42)
        darker: #2f4c18 (button push) (47,76,24)
    Blue: #134 (17,51,68)
        lighter: #0af (h4) (0,170,255)
    Red: #600 (102,0,0)
    Orange: #f90 (255,153,0)
    White: #fcfefe (252,254,254)
    Black: #0d0d0d (13,13,13)
    50% gray: #7e7f7f (126,127,127)
    25% gray: #bebfbf (190,191,191)
*/

html {
    font-size: 18px;
    font-family: Lato, sans-serif;
    color: #0D0D0D;
    -webkit-font-smoothing: antialiased;
}

body {
    background-image: url('../img/paper_bg.png'); /* Background pattern from subtlepatterns.com */
    margin: 0;
}

h1.logo {
    height: 7rem;
    width: 7rem;
    text-align: center;
    margin: 1.5rem 0 0rem 1.5rem;
    font-family: thewilds;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 6rem;
    background: #426C22;
    border-radius: 50%;
    border: 9px solid #fafafa;
    box-shadow: 0 0 10px #000, inset 0 0 10px #000;
    color: white;
    cursor: pointer;
    position: absolute;
    z-index: 1;
}

h1.logo a {
    /*color: #fcfefe;*/
    display: block;
    background-image: url(../../../uploads/mainlogo.png);
    background-size: 88%;
    background-repeat: no-repeat;
    background-position: 50% 47%;
    color: transparent;
}

h2 {
    background: #426c22;
    color: #fcfefe;
    margin: 0;
    padding: .5rem 1rem;
}

h3 {
    text-align: left;
    color: #5a0;
    padding: .5rem 0;
    margin: 0;
}

h4 {
    color: #0af;
    margin: 0;
    padding: .3rem 0;
}

h1 + p, h2 + p, h3 + p, h4 + p, h5 + p {
    margin-top: 0rem;
}

a {
    color: #f90;
    text-decoration: none;
}

article a[href$=".pdf"] {
    background-image: url('../img/icons/pdf.png');
    background-repeat: no-repeat;
    padding-left: 18px;
    background-position: 0px;
}
article a[href$=".pdf"].button-link {
    background-image: none;
}

table {
    line-height: 1.2rem;
}

ul {
    margin: 0;
    padding: 0;
}

sup {
    font-size: .9rem;
}

article ul {
    list-style: disc;
}
article ul li {
    position: relative;
    left: 2rem;
    padding-right: 2rem;
}

.clearfix {
    clear: both;
}

/* Accordion Styles /////////////////////////////////////*/
.accordion {
    position: relative;
}

.accordion h4 {
    display: block;
    background-color: #eee;
    padding: .5rem 0;
    cursor: pointer;
    text-align: center;
    margin: 0 0 .1rem 0;
    box-shadow: 0 1px 5px rgba(15,15,15,.5);
}

.accordion h4:before {
    content: '>';
    position: absolute;
    left: 5px;
    background-color: #eee;
    width: 22px;
    height: 22px;
    line-height: 18px;
    border-radius: 25px;
    border: 1px solid #666;
    -webkit-transition: all 400ms ease;
            transition: all 400ms ease;
    color: #666;
}

.accordion h4.open:before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

.accordion h4 + p,
.accordion h4 + div,
.accordion h4 + ul {
    display: none;
}

@media screen and (min-width: 80em) {
    #wrap {
        width: 1200px;
        margin: 0 auto;
        box-shadow: 0 0 15px #000;
        background: #fcfefe;
    }
    #wrap:after {
        content: '';
        display: table;
        clear: both;
    }
}

/* /////////////////////////////// Responsive Navigation */

/* Primary //////////////////////////////////////////////*/
.mainmenu {
    border-top: 1px solid #888;
    font-weight: 300;
}

.mainmenu li {
    display: block;
    padding: .8rem 1rem;
    border-bottom: 1px solid #888;
    text-transform: uppercase;
    letter-spacing: .1rem;
    color: #fcfefe;
}

.mainmenu li a {
    display: block;
    color: #fcfefe;
}

.mainmenu li li {
    padding-left: 2.5rem;
    letter-spacing: normal;
    width: 17rem;
}

.mainmenu li li:first-child {
    margin-top: .8rem;
    border-top: 1px solid #888;
}

.mainmenu li li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.mainmenu li ul{
    margin-left: -1rem;

}

a.open-panel, a.close-panel {
    background: rgba(252,254,254,.6);
    height: 2.5rem;
    line-height: 2.5rem;
    width: 2.5rem;
    text-align: center;
    color: #0d0d0d;
    font-weight: 700;
    z-index: 1;
}

.close-panel {
    position: absolute;
    top: .5rem;
    right: .5rem;
}

span.close-panel {
    height: 2.5rem;
    line-height: 2.4rem;
    background: #aaa;
    width: 2.5rem;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
}

.openNav #wrap {
    right: 0;
    -webkit-transform: translate3d(-17rem, 0, 0);
    transform: translate3d(-17rem, 0, 0);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
}

#wrap {
    right: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
}

nav#topnav {
    width: 17rem;
    position: absolute;
    right: -17rem;
    display: none;
    min-height: 100%;
    background-color: rgba(0,0,0,.6);
}

.openNav #topnav {
    display: block;
}

#searchbox input {
    width: 8rem;
    color: #0d0d0d;
    background-color: #fcfefe;
    padding-left: .5rem;
}

nav span.search-everything-highlight { /* fixes changes to CSS by search plugin */
    color: inherit !important;
    font-weight: inherit !important;
}

@media screen and (min-width: 73em){
    .close-panel, .open-panel {
        display: none;
    }

    nav#topnav {
        right: 0;
        top: .5rem;
        min-height: 2rem;
        background: rgba(66,108,34,.8);
        width: auto;
        display: block;
        z-index: 1;
        border-radius: 3px 0 0 3px;
    }

    .mainmenu {
        border: 0;
        position: relative;
        float: right;
        background: none;
        margin-top: .5rem;
    }

    .mainmenu li {
        position: relative;
        float: left;
        margin-top: -.5rem;
        padding: .4rem .3rem;
        border: 0;
        border-left: 1px solid transparent;
        border-right: 1px solid transparent;
    }

    .mainmenu li:hover {
        background-color: #426c22;
        border-left: 1px solid #fcfefe;
        border-right: 1px solid #fcfefe;
    }

    .mainmenu li ul {
        margin-top: .4rem;
        position: absolute;
        display: none;
        background-color: rgba(252,254,254,.7);
        border-radius: 0 0 2px 2px;
        box-shadow: 1px 1px 5px #0d0d0d;
        left: 0;
        margin-left: 0;
    }

    .mainmenu li ul li {
        border: 0 !important;
        border-top: 1px solid transparent !important;
        border-bottom: 1px solid transparent !important;
        float: none;
        white-space: nowrap;
        text-align: left;
        width: auto;
        padding-bottom: .3rem !important;
        padding-left: .5rem;
        padding-right: 1.5rem;
    }

    .mainmenu li ul li a {
        color: #0d0d0d;
        display: block;
        padding: .2rem 0;
    }
    .mainmenu li ul li:hover {
        background-color: #426c22;
        border-top: 1px solid #fcfefe !important;
        border-bottom: 1px solid #fcfefe !important;
    }
    .mainmenu li ul li:hover a {
        color: #fcfefe;
    }
    .mainmenu li:hover ul {
        display: block;
    }

    #searchbox {
        position: absolute;
        right: 0;
        top: 2rem;
        border: 0;
    }
    #searchbox:hover {
        background-color: transparent;
    }
}

@media screen and (min-width: 73rem) and (max-width: 83em){
.mainmenu li#menu-item-283:hover ul {
    right: 0;
    left: auto;
}
.mainmenu li#menu-item-283 ul li {
    text-align: right;
    padding-right: .5rem;
}
}

/* Secondary ////////////////////////////////////////////*/

.secondary .toggle-nav {
    text-align: center;
    padding: .5rem;
    background: #ccc;
    display: table;
    width: 3rem;
    height: 2rem;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    box-shadow: inset 0px 0px 5px #444, 0 3px 2px rgba(0,0,0,.4);
    cursor: pointer;
    color: #0d0d0d;
    font-weight: 700;
    border-top: 2px solid #7e7f7f;
}

.secondary ul {
    display: none;
}

.secondary ul li {
    display: block;
    text-align: center;
}

.secondary ul li a {
    display: block;
    padding: .8rem;
    background-color: #134;
    color: #fcfefe;
    border-bottom: 1px solid #0af;
    transition-duration: 500ms;
}

.secondary .menu-item a:hover {
    color: #f90;
}

.secondary ul li.current-menu-item a,
.single-activity .secondary ul li.menu-item-129 a,
.single-accommodation .secondary ul li.menu-item-118 a {
    color: #f90 !important;
}

@media screen and (min-width: 50em) {
    .secondary {
        background-color: #134;
    }
    .secondary ul {
        display: block !important;
    }

    .secondary ul li {
        display: inline;
        float: left;
        border-right: 1px solid #0af;

    }
    .secondary ul li a {
        display: block;
        border-bottom: 0px;
    }
    .secondary .toggle-nav {
        display: none;
    }

}

/* Gallery ///////////////////////////////////////////////*/

.gallery-menu {
    padding: 1rem;
}

.gallery-menu a, .gallery-menu .sub-menu{
    display: inline;
}

.gallery-menu .menu li {
    font-weight: 700;
    display: block;
}

.gallery-menu .menu li a {
    color: #134;
}

.gallery-menu .sub-menu li {
    display: inline;
    font-weight: normal;
    padding: 0 .5rem;
}

.gallery-menu .sub-menu li a {
    border-bottom: 0;
    color: #0af;
}

.gallery-menu li.current-menu-item > a {
    color: #f90;
}

@media all and (min-width: 50em){

    .gallery-menu .sub-menu {
        margin: 0 0 .5rem 0rem;
    }

    .gallery-menu .menu li {
        padding: 0;
    }

    .gallery-menu .menu li a {
        display: block;
        border-bottom: 1px solid #134;
    }

    .gallery-menu .sub-menu {
        display: block;
    }

    .gallery-menu .sub-menu li:before {
        content: '-';
        float: left;
        padding-right: .5rem;
        color: #0af;
    }

    .gallery-menu .sub-menu li.current-menu-item:before {
        color: #f90;
    }

    .gallery-menu .sub-menu li a {
        border-bottom: 0;
    }
}
/* ////////////////////////////////////////////// Footer */

footer {
    background: rgba(13,13,13,.6);
    color: #fcfefe;
    font-size: .8rem;
    text-align: center;
    padding: .3rem 0;
}

footer span {
    display: block;
    margin: .2rem 0;
}

footer #littlelinks {
    font-size: .7rem;
}

footer #littlelinks a {
    color: #fcfefe;
}

footer .footer-sm {
    margin: 1px 3px;
    height: 62px;
}

@media all and (min-width: 30em) {
    footer {
        text-align: left;
    }

    footer .link-container {
        float: left;
        margin: 0 .5rem;
    }

    footer .footer-sm {
        float: right;
        margin: 1px 5px 0 0;
    }
}
/* ///////////////////////////////////////////// Headers */

header {
    position: relative;
}

/* Header Slider ////////////////////////////////////////*/
#banner-rotate {
    position: relative;
    z-index: 0;
    min-height: 18rem;
}
#banner-rotate .active{
    z-index: 3;
}
div.banner-img {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 18rem;
    text-shadow: 1px 1px 5px #000, -1px -1px 5px #000, 0 0 5px #000;
    font-weight: 700;
    color: #fcfefe;
}
div.banner-img div {
    position: absolute;
    bottom: 1rem;
    padding-left: 1rem;
    font-size: 2rem;
}

div.banner-img div a {
    color: #fcfefe;
}

@media screen and (min-width: 50em){
    #banner-rotate {
        min-height: 21rem;
    }

    div.banner-img {
        height: 21rem;
    }

    div.banner-img div {
        width: 60%;
        font-size: 3rem;
    }
}

/* Static Header ////////////////////////////////////////*/
div.bg-image {
    min-height: 22rem;
    background-image: url(../img/juniors-sm.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Video Header /////////////////////////////////////////*/
.header-video {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    max-height: 22rem;
    background-color: transparent;
}

.header-video iframe, .header-video video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
}

.header-video iframe {
    height: 100%;
}

.teaser-video {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
}

.header-media {
    width: 100%;
    height: auto;
}

.header-video--media {
    position: relative;
    min-width: 100%;
    min-height: auto;
    width: 100%;
}
#playbtn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #0d0d0d;
    padding: .5rem;
    box-shadow: 1px 1px 5px rgba(120,124,124,1);
    color: #fcfefe;
    border-radius: 3px;
    z-index: 3;

}

@media screen and (min-width: 80em) {
    .header-video video {
        top: -50%;
    }
}


/* /////////////////////////////////// Home Page specific */

/* Upcoming Camps ///////////////////////////////////////*/

.upcoming {
    margin: 0;
    margin-top: 1rem;
    padding: 0 .5rem;
    text-align: center;
    width: 100%;
}

.upcoming li{
    display: inline-block;
    width: 100%;
    margin-bottom: .5rem;
    text-align: left;
    border-radius: 2px 2px 2px 2px;
    box-shadow: 0 0 10px #0d0d0d;
    background-position: center;
    background-size: cover;
}

.upcoming li#up1 {
    background-image: url(../img/juniors-sm.jpg);
}
.upcoming li#up2 {
    background-image: url(../img/swing-sm.jpg);
}
.upcoming li#up3 {
    background-image: url(../img/lodge-sm.jpg);
}

.upcoming li a {
    display: block;
    padding: 1rem;
    margin: .2rem;
    height: 5rem;
    color: #fcfefe;
    line-height: 2.5rem;
    text-shadow: 0px 0px 8px #0d0d0d;
    background-color: rgba(13,13,13,.3);
    border-radius: 2px;
}

.upcoming li a span {
    display: inline-block;
    width: 70%;
    line-height: 1.2rem;
    vertical-align: middle;
    font-size: 1.5rem;
}

.upcoming li a span.upcoming-announcement {
    width: 100%;
}

.upcoming time.icon {
    float: right;
    position: relative;
    width: 3rem;
    height: 3rem;
    background-color: #fcfefe;
    border-radius: .4rem;
    box-shadow: 0 1px 0 #bdbdbd, 0 2px 0 #fff, 0 3px 0 #bdbdbd, 0 4px 0 #fff, 0 5px 0 #bdbdbd, 0 3px 7px 0 #000;
    overflow: hidden;
    line-height: 1rem;
}

.upcoming time.icon * {
    display: block;
    width: 100%;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-shadow: none;
}

.upcoming time.icon em { /* Month */
    position: absolute;
    top: 0;
    padding: .05rem 0 0 0;
    color: #fcfefe;
    background-color: #426C22;
    border-bottom: 1px dashed #ddd;
    box-shadow: 0 1px 0 #426C22;
    font-size: .9rem;
    letter-spacing: .2rem;
    text-align: center;
    padding-left: .2rem;
}

.upcoming time.icon span { /* Date */
    position: absolute;
    bottom: .4rem;
    color: #0d0d0d;
    font-size: 1.5rem;
}


@media screen and (min-width: 50em){

    .upcoming {
        position: absolute;
        right: 0;
        margin: 5.7rem 0 0;
        width: 32%;
        padding: .5rem 0 0 .5rem;
        text-align: right;

    }

    .upcoming li {
        width: 100%;
        border: .2rem solid rgba(255,255,255,.4);
        border-right: 0;
        border-radius: 2px 0 0 2px;
        box-shadow: -2px 0px 20px #000;
        transition: all 800ms ease;
        background-color: rgba(252,254,254,.3);
        background-image: none !important;
    }
    .upcoming li:hover {
        background-image: initial !important;
    }

    .upcoming li a {
        border-radius: 2px 0 0 2px;
        margin: 0;
        height: 4rem;
        line-height: 4rem;
    }
    .upcoming li a span {
        margin-top: -2.3rem;
        transition: all 1500ms ease;
    }

    .upcoming time {
        margin-top: -0.6rem;
    }

    .upcoming li.shrunk {
        width: 150px;
    }
    .upcoming li.shrunk a>span {
        width: 0px;
        overflow: hidden;
    }
    .upcoming li.shrunk:hover {
        width: 100%;
    }
    .upcoming li.shrunk:hover a>span {
        width: auto;
        overflow: visible;
    }
}

/* Camp Navigation //////////////////////////////////////*/

.campnav {
    margin-bottom: 1.5rem;
}

.campnav ul {
    height: 6rem;
}

.campnav li {
    list-style: none;
    margin: 0 .2% 0 0;
    width: 49.8%;
    text-align: center;
    float: left;
    background: #426C22;
    border: 8px solid #fcfefe;
    box-shadow: 0 0 5px 0px #000, inset 0 0 15px #333;
}

.campnav li:last-child{
    float: right;
    margin: 0 0 0 .2%;
}

.campnav li a {
    display: block;
    color: #000;
    text-decoration: none;
    line-height: 5rem;
    color: #fcfefe;
    font-size: 1.5rem;
}

.campnav li a span {
    display: inline-block;
    width: 75%;
    line-height: 1.3rem;
    vertical-align: middle;
}
.campnav li a span.arrow {
    margin-top: 2rem;
    width: 18%;
    float: left;
}

.campnav span.left.arrow:before {
    content: '\2190';
    font-family: 'slick';
}
.campnav span.right.arrow:before {
    content: '\2192';
    font-family: 'slick';
}

.campnav li:last-child a span.arrow {
    float: right;
}

@media screen and (min-width: 50em){
    .campnav li a {
        font-size: 2rem;
    }
    .campnav li a span {
        margin-top: -.5rem;
    }
}

/* Mission Statement ////////////////////////////////////*/
.statement {
    margin: 4rem 1rem 1rem;
    box-shadow: 0 0 50px rgba(13,13,13,8);
    clear: both;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    background-image: url('../img/paper_bg.png');
}
.statement blockquote {
    background: url('../img/quote-left.png') no-repeat left top, url('../img/quote-right.png') no-repeat bottom right;
    padding: 0;
    margin: .5rem;
    font-family: Lora;
    font-weight: normal;
}
.statement blockquote p {
    padding: 1rem 1rem 1rem 3rem;
}

@media screen and (min-width: 30rem) {
    .statement {
        font-size: 1.4rem;
    }
}

/* Feature Content Slider ///////////////////////////////*/
.contentslider {
    text-align: center;
}

.contentslider .slick-slide {
    padding: 1.5rem 0rem;
}

.contentslider .slidecontent {
    margin: 0 .5rem;
    box-shadow: 0 0 12px #222;
    background: rgba(252,254,254,.6);
    -webkit-transform: scale(.95);
            transform: scale(.95);
}

.contentslider .slidecontent p {
    padding: 0 .5rem .5rem .5rem;
}

.contentslider div img.feature {
   width: 100%;
}

.contentslider img {
    display: inline !important;
}

.slick-center .slidecontent {
    -webkit-transform: scale(1,1);
            transform: scale(1,1);
    box-shadow: 0 0 25px 1px #111;
    -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
}

.slick-next,
.slick-next:active,
.slick-next:focus,
.slick-next:hover,
.slick-prev,
.slick-prev:active,
.slick-prev:focus,
.slick-prev:hover{
    width: 2.6rem !important;
    height: 2.6rem !important;
    margin-top: -1.3rem !important;
    border-color: transparent;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.slick-next {
    right: 1rem !important;
}

.slick-prev {
    left: 1rem !important;
}
.slick-next:before, .slick-prev:before {
    font-size: 2.5rem !important;
    color: #888 !important;
    opacity: .55 !important;
    filter: alpha(opacity=55);
}

.slidecontent h3 {
    margin: 0 0 1rem 0;
    text-align: center;
    color: #0d0d0d;
}

.quick-info ul {
    margin: 1rem 0;
}

.quick-info ul li {
    display: inline;
    white-space: nowrap;
}

.quick-info ul li a {
    display: inline-block;
    padding: .5rem;
    margin: .1rem 0;
    color: #fcfefe;
    background: #134;
}

.brochures ul {
    display: block;
    list-style: none;
    width: 49%;
    margin: 1% .5%;
    text-align: left;
}

.brochures li {
    margin: .2rem 0;
}

.brochures li a {
    display: block;
    padding-left: 20px;
    color: #134;
    -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
}

.brochures li a:hover {
    box-shadow: 0 0 5px #ccc;
    -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
}

.brochures li a[href$=pdf] {
    background-image: url(../img/icons/pdf.png);
    background-repeat: no-repeat;
    background-position: 1px 3px;
}

.activities img {
    width: 20%;
}

.extracontent {
    display: none;
}

.mfp-customcontent {
    color: #fcfefe;
    text-align: center;
    line-height: 1.8rem;
    padding: 1rem 2rem;
}

.mfp-customcontent img {
    margin: 1rem auto;
    display: block;
}

.mfp-customcontent p {
    text-align: justify;
}

.bgblur {
    -webkit-filter: blur(5px);
    -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
}

@media screen and (min-width: 80em){

    .mfp-customcontent {
        width: 40rem;
        margin: 0 auto;
        background: #fcfefe;
        color: #0d0d0d;
        box-shadow: 0 0 15px #0d0d0d;
    }

}

/* Quick Links //////////////////////////////////////////*/

.panellinks ul {
    margin: -2rem 0 1rem 0;
    text-align: center;
}

.panellinks ul li {
    width: 98%;
    background: #134;
    margin: .5rem 1%;
    box-shadow: 0 0 10px #000, inset 0 0 100px #222;
}

.panellinks ul li a {
    display: block;
    padding: 1.75rem;
    color: #fcfefe;
}

@media screen and (min-width: 40em){
    .panellinks ul li {
        display: inline-block;
        width: 30.3%;
    }
}

@media screen and (min-width: 50em) {
    .home-last div[id*="_panel_widget"] {
        width: 31%;
        float: left;
        margin-left: 3.3%;
    }

    .home-last div[id*="_panel_widget"]:first-of-type {
        margin-left: 0;
    }

    .home-last div[id*="_panel_widget"]:last-of-type {
        margin-left: 0;
        float: right;
    }
}
/*//////////////////////////////////////// Top-Level-Nav */

.top-level-nav .main {
    padding: 1rem;
    text-align: center;
}

.top-level-nav .content ul {
    padding: 1rem;
}

.post-type-archive-camp article ul,
.category-adult-camps article ul,
.category-youth-camp article ul
{
    text-align: center;
}

.camp-mi {
    display: inline-block;
    width: 10rem;
    text-align: center;
    background: #134;
    background: -webkit-radial-gradient(#023 30%, #134 66%, #245);
    background: radial-gradient(#023 30%, #134 66%, #245);
    line-height: 4.5rem;
    margin: .5rem;
    padding-bottom: .2rem;
    padding-right: 0;
    left: 0;
    border-radius: 6px;
    float: none;
    box-shadow: 0 0 10px #444;
    -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
    position: relative;
    border: 3px solid #fcfefe;
}

.camp-mi:hover {
    box-shadow: 0 0 20px 1px #0d0d0d;
}

.camp-mi a {
    display: inline-block;
    color: #fcfefe;
    vertical-align: middle;
    line-height: 1.3rem;
    padding: .3rem 1.8rem .3rem .8rem;
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px #0d0d0d;
    text-align: left;
}

.camp-mi-img {
    position: absolute;
    right: 0;
    height: 4.7rem;
    border-radius: 3px;
}


/*///////////////////////////////////////// Camp */

.single-camp.postid-17 h2 {
    padding: 1rem 0 1rem 1rem;
    display: block;
    text-indent: -9999px;
    background-color: transparent;
    background-image: url('../img/summer-teen-2019-title.jpg');
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    /* margin: .2rem;
    max-width: 95%;
    */
    height: 100px;
}

.single-camp p {
    text-align: left;
}

.single-camp .content {
    padding: 0 1rem;
}

.single-camp .content p {
    line-height: 1.5rem;
}

.button-link {
    display: block;
    padding: .5rem;
    background: #426C22;
    color: #fcfefe;
    border-radius: 2px;
    text-align: center;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
    text-decoration: none;
}
.button-link:hover {
    background: #51852A;
}
.button-link:active {
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, .6);
    background: #426C22;
}

.buttons .button-link {
    margin-bottom: .4rem;
}

.brochure-link {
    background-color: #134;
}

.brochure-link:hover {
    background-color: #247;
}

a.button-link[href$=".pdf"]:after {
    background: url('../img/icons/pdf.png') no-repeat right bottom;
    width: 20px;
    height: 18px;
    content: '';
    display: inline-block;
}

a[id*="content-button-"] {
    margin-bottom: .5rem;
}

.button-slide {
    width: 49%;
    margin: 0 .5%;
    display: inline-block;
}

.camp-callout {
    background-color: #134;
    color: #fcfefe;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 3px;
    line-height: 1.5rem;
}

.camp-callout p {
    margin: 0 0 .5rem 0;
}

.single-camp table {
    width: 100%;
    text-align: left;
}

.schedule table tr:nth-child(even),
table.camp-schedule tr:nth-child(even)
{
    background-color: rgba(13,13,13,.2)
}

.single-camp table td {
    padding: 0 .3rem;
}

#inline {
    max-width: 30rem;
    margin: 2rem auto;
    background-color: #fcfefe;
    padding: 1rem;
}

aside.first {
    padding: 0 1rem;
}

h3.details {
    cursor: pointer;
}
h3.details:after {
    content: '+';
    float: right;
    text-align: center;
    width: 1rem;
}
h3.details + div {
    display: none;
}
h3.details.open:after {
    content: '-';
}

@media screen and (min-width: 60em){
  h3.details {
      cursor: text;
  }
  h3.details + div {
    display: block !important;
    height: inherit !important;
  }
  h3.details:after {
    display: none;
  }
}

table.dates {
    max-width: 18rem;
}

.date-closed {
    text-decoration: line-through;
}

dt.date-closed + div {display: none;}
dt.date-closed:hover + div, dt.date-closed + div:hover {
    display: block;
    position: absolute;
    z-index: 10;
    left: 100px;
    background-color: lightyellow;
    padding: .25rem;

    border-radius: 2px;
    box-shadow: 2px 2px 10px rgba(13,13,13,.5);
}
dt.date-closed + div p {
    margin: 0;
}
dt.date-closed + div ul {
    list-style-type: square;
    margin: 0 0 0 1rem;
}
dt.date-closed:after {
    content: '*';
    color: #600;
    display: inline-block;
    font-size: 2rem;
    position: absolute;
    margin: -3px 0 0px 5px;
}

ul.speakers {
    text-align: center;
}
ul.speakers li {
    display: inline-block;
    width: 5rem;
    padding-bottom: 1rem;
    line-height: .9rem;
    min-height: 9.7rem;
}
ul.speakers li span {
    display: block;
    font-size: .9rem;
    width: 90%;
    margin: 0 auto;
}

.accommodations {
    font-size: 70%;
    width: 100%;
    max-width: 300px;
    box-shadow: 1px 1px 5px #0d0d0d;
    margin-bottom: .5rem;
}
.accommodations td, .accommodations th {
    padding: 0 .1rem !important;
}
.accommodations td {
    text-align: center;
}
.accommodations th {
    font-weight: bold;
    font-size: 90%;
    background-color: rgba(17,51,68,.8);
    color: #fcfefe;
    line-height: .8rem;
}

.accommodations tbody tr:nth-child(even) td {
    background-color: rgba(13,13,13,.5);
}
ul.notes li:before {
    content: '\25A0';
    position: absolute;
    left: 0;
    top: -1px;
}
ul.notes li {
    position: relative;
    padding: 0 0 0 .9rem;
}

aside.second {
    padding: 0rem 1rem;
}

.second section img,
.post-type-archive-staff section img {
    float: left;
    margin-right: 1rem;
}

.second section img.staff-sm,
.post-type-archive-staff section img.staff-sm {
    float: none;
    margin: 0 0 0 .5rem;
}


.second section h4,
.post-type-archive-staff section h4 {
    margin: 0;
    clear: none;
}
.second section p:first-of-type,
.post-type-archive-staff section p:first-of-type {
    margin-top: 0;
}

aside.last,
aside.home-last {
    padding: 0 1rem 1rem 1rem;;
}

.last .photos {
    margin-bottom: 1rem;
}

.widget_tw_accordion_widget .accordion > div {
    padding: .5rem;
}

.button-link.button-sidebar {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
    margin: 1rem auto;
    max-width: 15rem;
}

aside.last li a[href$=pdf] {
    background-image: url(../img/icons/pdf.png);
    background-repeat: no-repeat;
    padding-left: 20px;
    background-position: 0px 3px;
    display: inline-block;
}

.rand-activity {
    width: 25%;
    float: left;
}
@media screen and (min-width: 40em){
    .brochure-3 {
        width: 32.666%;
        margin-right: 1%
    }
    .brochure-2 {
        width: 49.5%;
        margin-right: 1%;
    }
    .brochure-4 {
        width: 49.5%;
        margin-right: 1%;
    }
    .brochure-3:last-of-type,
    .brochure-2:last-of-type,
    .brochure-4:nth-of-type(2),
    .brochure-4:last-of-type
    {
        margin: 0;
    }
}
@media screen and (min-width: 60em){
    .main {
        width: 75%;
    }
    aside.last {
        width: 25%;
    }
    aside.last div[class^="widget_"] {
        margin-bottom: 2.5rem;
    }
    aside.last div[class^="widget_thewilds_button"] {
        margin-top: 1.2rem;
    }
    .second section p,
    .second section h4,
    .post-type-archive-staff section p,
    .post-type-archive-staff section h4 {
        margin-left: 8rem;
    }
}

@media screen and (min-width: 80em){

    .single-camp .content, .single-camp aside.second {
        width: 75%;
        float: right;
    }
    .single-camp aside.first {
        width: 25%;
    }
    .single-camp aside.first p,
    .single-camp aside.first ul,
    .single-camp aside.first div.dates
    {
        font-size: .9rem;
    }
    ul.speakers li {
        width: 5rem;
    }
}

/*//////////////////////////////////////// Standard Page */
.page-template .main article,
.archive .main article,
.search .main article,
.error404 .main article,
.single-post .main article
{
    padding: 0 1rem;
    margin: .5rem 0;
    line-height: 1.6rem;
}

.post-type-archive-camp .main article {
    padding: 0 .3rem;
}

.page-template-pagetemplatesstandard-page-php .main h3 {
    margin-top: 1.2rem;
}

.page-template-pagetemplatesstandard-page-php article p {
    text-align: left;
}

.page-template-pagetemplatesstandard-page-php article img {
    max-width: 100%;
}

/* Activities and Accommodations Image lists ////////////////*/
ul[class$="-grid"] {
    margin-left: 0;
}
[class$="-grid"] li {
    display: inline-block;
    padding: 1rem;
    margin: 0 1.5rem 1.5rem 0;
    box-shadow: -3px 3px 20px rgba(13,13,13,.5);
    background-color: #fcfefe;
}

[class$="-grid"] img {
    max-width: 100% !important;
    display: block;
    float: none !important;
}
[class$="-grid"] a {
    display: block;
    line-height: 1rem;
    max-width: 100%;
    position: relative;
}
.activity-container {
    text-align: center;
}
.activity-grid {
    display: inline-block;
}
.activity-grid li {
    width: 150px;
    padding: 0;
    margin: 0;
    float: left;
}


.activity-grid li:nth-child(1n) {
    clear: left;
}

@media screen and (min-width: 22em) {
    .activity-grid li:nth-child(1n) {
        clear: none;
    }
    .activity-grid li:nth-child(2n+3) {
        clear: left;
    }
}
@media screen and (min-width: 32em) {
    .activity-grid li:nth-child(2n+3) {
        clear: none;
    }
    .activity-grid li:nth-child(3n+4) {
        clear: left;
    }
}
@media screen and (min-width: 41em) {
    .activity-grid li:nth-child(3n+4) {
        clear: none;
    }
    .activity-grid li:nth-child(4n+5) {
        clear: left;
    }
}
@media screen and (min-width: 67em) {
    .activity-grid li:nth-child(4n+5) {
        clear: none;
    }
    .activity-grid li:nth-child(5n+6) {
        clear: left;
    }
}
.activity-grid li a:before {
    background-color: #134;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .3;
    content: ' ';
    transition: all 800ms ease;
}
.activity-grid li:nth-child(3n+1) a::before{
    background-color: #600;
    opacity: .2;
}
.activity-grid li:nth-child(3n+2) a:before{
    background-color: #426c22;
    opacity: .4;
}

.activity-grid li:hover a:before {
    opacity: 0;
}

span.activity-name {
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0;
    text-align: center;
    color: #fcfefe;
    text-shadow: 0 0 10px #0d0d0d;
}

.accommodation-grid li {
    max-width: 300px;
}

/*/////////////// Panels */


.last .panel,
.home-last .panel
{
    position: relative;
    padding: 1rem;
    background-color: #134;
    color: #fcfefe;
    box-shadow: 0 0 15px rgba(0,0,0,.8);
    margin-top: 1.2rem;
    border-radius: 3px;
    min-height: 120px;
}

.panel a {
    color: #fcfefe;
}

.panel-img {
    position: absolute;
    top: -10px;
    right: -10px;
}

.panel-text {
    position: absolute;
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    z-index: 1;
    left: .5rem;
    top: .5rem;
    text-shadow: 0px 0px 15px #0d0d0d;
    line-height: 2rem;
    width: 90%;
}

.panel-text span.logo-tw
{
    background-image: url("../../../uploads/twlogo.png");
    background-size: 100%;
    background-repeat: no-repeat;
    color: transparent;
    text-shadow: none;
    background-position: 50%;
    font-size: 120%;
    line-height: .5;
    padding-bottom: 1%;
    margin-left: -1%;
}

.panel-button {
    width: 60%;
    position: absolute;
    bottom: .5rem;
    left: .5rem;
    border-radius: 2px;
    box-shadow: 0 0 20px -5px #0d0d0d;
    background-color: #246;
    line-height: 1.3rem;
    padding-left: .2rem;
    z-index: 1;
    font-size: .8rem;
}

div[class*="_panel_widget"] iframe {
    width: 100%;
}

@media screen and (min-width: 50em){
    .last .panel {
        float: left;
        min-width: 47%;
        margin-left: 2rem;
    }

    .last div[id*="_panel_widget"]:nth-child(odd) .panel {
        margin-left: 0;
    }
}

@media screen and (min-width: 60em){
    .last .panel {
        float: none;
        margin-left: 0;
    }
    .panel-text span.logo-tw {
    	padding-bottom: 4%;
    	margin-left: -3%;
    }
}

/*/ Activities /*/

.single-activity .content,
.single-accommodation .content
 {
    padding: 1rem;
}

.single-activity aside.first,
.single-accommodation aside.first
{
    padding: 0;
}

.single-activity article h3,
.single-accommodation article h3
{
    padding-top: 0;
}
.grid-container {
    text-align: center;
    padding-top: 1rem;
}

.grid-mi {
    width: 85px;
    height: 85px;
    position: relative;
    display: inline-block;
    float: none;
    line-height: 85px;
    margin-left: -.2rem;
}

.grid-mi a {
    display: block;
    -webkit-transition: all 700ms ease;
            transition: all 700ms ease;
}

.grid-mi a:hover {
    background-color: rgba(17,51,68,.6);
    -webkit-transition: all 700ms ease;
            transition: all 700ms ease;
}

.grid-text {
    display: inline-block;
    line-height: 1.2rem;
    vertical-align: middle;
    color: #fcfefe;
    margin: -.2rem 0 0 0;
    text-shadow: 0 0 15px #0d0d0d;
    font-size: .9rem;
}

.grid-image {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.content img {
    max-width: 100%;
}

.thumb-container {
    margin-bottom: .5rem;
}

.nav-thumb img {
    display: inline;
    margin: 0 2% 2% 0;
    float: left;
    width: 23.5%;
    -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
}

.nav-thumb img:nth-child(4) {
    margin-right: 0;
}

.active-thumb {
    box-shadow: 0 0 30px 3px #0d0d0d;
    -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
}

@media screen and (min-width: 50em){
    .single-activity aside.first,
    .single-accommodation aside.first
    {
        width: 25%;
    }
    .single-activity .content,
    .single-accommodation .content
    {
        width: 75%;
    }
}

/*/ Galleries */

@media all and (min-width: 50em){
    body[class*=gallery-page] .gallery-menu {
        width: 25%;
        padding: 1rem;
    }
    body[class*=gallery-page] .main article {
        width: 75%;
        margin-left: 25%;
    }

}

/* FAQs ///////////////////////////////////////////*/


.faq-a:before {
    content: 'A:';
    float: left;
    margin: 0 0 0 1.6rem;
    font-weight: bold;
    color: #0af;
}

.faq-a p {
    margin-left: 3rem;
}
.faq-a ul {
    margin-left: 5rem;
}

/* Search ////////////////////////////////////////*/


.paging-navigation {
    margin: 1rem 0;
    padding: 1rem;
}


/* Content columns ///////////////////////////////*/
@media screen and (min-width: 40em){
    .content-group {
        margin: 0 -1rem;
    }
    .content-block {
        padding: 0 1rem;
    }
    .fourth, .one-fourth, .one-fourths {
        width: 25%;
    }
    .three-fourth, .three-fourths {
        width: 75%;
    }
    .third, .one-third, .one-thirds {
        width: 33%;
    }
    .two-third, .two-thirds {
        width: 66%;
    }
    .half, .one-half {
        width: 50%;
    }
}

/* Contact Form //////////////////////////////////*/
#FSContact1 fieldset {
    margin: 0;
    padding: 0;
}

#FSContact1 input,
#FSContact1 select,
#FSContact1 .fscf-div-error {
    width: 100%;
}

#FSContact1 input[type="checkbox"] {
    width: auto;
}

.fscf-div-field {
    margin-bottom: 1rem;
}

.fscf-div-error {
    color: darkred;
    background-color: rgba(255,0,0,.5);
    border: #f00;
    border-radius: 2px;
    margin-bottom: .5rem;
    padding-left: .5rem;
}


@media screen and (min-width: 40em) {
    #FSContact1 fieldset {
        width: 50%;
        float: left;
    }
    #FSContact1 fieldset input,
    #FSContact1 fieldset select,
    #FSContact1 fieldset .fscf-div-error {
        width: 90%;
    }
}

/* Ministry Team /////////////////////////////////////////*/
.post-304 .content-block.fourth {
    padding: .5rem;
    display: inline-block;
    transition: all 800ms ease;
}
.post-304 .content-block.fourth:hover {
    background-color: rgba(13,13,13,.1);
}
.itenerary {
    width: 100%;
}
.itenerary th {
    font-weight: 700;
    background-color: #134;
    color: #fcfefe;
    padding: .3rem 1rem .3rem .3rem;
}
.itenerary td {
    padding: 0 0 0 .3rem;
}
.itenerary tr:nth-child(even) {
    background-color: rgba(13,13,13,.1);
}
.itenerary tr:hover {
    background-color: rgba(13,13,13,.2);
}

/* CAMP Program /////////////////////////////////////////////////*/
@media screen and (min-width: 40em) {
    .post-503 .content-block.two-third {
        border-left: 1px solid rgba(13,13,13,.25);
    }
}


/* Responsive Tables /////////////////////*/

.footable {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 3px solid #134;
}
.footable.breakpoint>tbody>tr.footable-row-detail {
    background: #eee
}
.footable.breakpoint>tbody>tr:hover:not(.footable-row-detail) {
    cursor: pointer
}
.footable.breakpoint>tbody>tr>td.footable-row-detail-cell {
    background: #fff
}
.footable>tbody img {
    vertical-align: middle
}
.footable>tbody>tr:hover:not(.footable-row-detail) {
    background-color: rgba(13,13,13,.2);
}
.footable>tbody>tr:hover:not(.footable-row-detail)>td {
    color: #000
}
.footable>tbody>tr:last-child>td {
    border-bottom: 0
}
.footable>tbody>tr>td {
    border-top: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    border-left: none
}
.footable>tbody>tr>td.footable-row-detail-cell,
.footable>tbody>tr>td.footable-first-column {
    border-left: none
}
.footable>thead>tr>th {
    border-bottom: 1px solid #ddd;
    padding: 10px;
    text-align: left
}
.footable>thead>tr>th,
.footable>thead>tr>td {
    background-color: #134;
    border: 1px solid #134;
    color: #fff;
    border-top: 0;
    border-left: none;
    font-weight: normal
}
.footable>thead>tr>th.footable-first-column,
.footable>thead>tr>td.footable-first-column {
    border-left: none
}
.footable>tfoot>tr>th,
.footable>tfoot>tr>td {
    background-color: #134;
    border: 1px solid #134;
    color: #fff;
    border-top: 0;
    border-left: none;
    padding: 5px
}

/* Announcement///////////////////////////*/
.announcement>div {
    float: left;
    padding: .5rem 1rem;
    background-color: rgba(255, 160, 0, .8);
    float: left;
    width: 100%;
    margin: 0;
    position: relative;
}
.announcement .textwidget {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}




.fb-ifc * {
    width: 100%;
}
.page-id-403 h4[id$=smheader] {
    border-bottom: 2px solid #0af;
    margin-bottom: .5rem;
    padding-bottom: 0;
}
.ig-b- { display: block; margin: 0 auto; }
.ig-b- img { visibility: hidden; }
.ig-b-:hover { background-position: 0 -60px; } .ig-b-:active { background-position: 0 -120px; }
.ig-b-v-24 { width: 137px; height: 24px; background: url(//badges.instagram.com/static/images/ig-badge-view-sprite-24.png) no-repeat 0 0; }
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
.ig-b-v-24 { background-image: url(//badges.instagram.com/static/images/ig-badge-view-sprite-24@2x.png); background-size: 160px 178px; } }

.vimeoBadge .clip { padding:0; float:left; margin: 0 0 0px 0; line-height:0; }
.vimeoBadge .clear { display: block; clear: both; visibility: hidden; }
.vimeoBadge .s200 { min-width: 200px; width: 25%; }

.gmaps-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
.gmaps-embed-container iframe,
.gmaps-embed-container object,
.gmaps-embed-container embed
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Product Gallery ///////////////////////////////////////*/
.products, .products-other {
    text-align: center;
}

.product, .playlist-widget {
    text-align: center;
    margin-bottom: 2rem;
    width: 280px;
    float: none;
    display: inline-block;
    padding: 1rem;
}
.products-other .product,
.products-other .playlist-widget
{
    width: 200px;
    margin-bottom: 1rem;
}


.product img {
    box-shadow: 0 0 10px #444;
    transition: all 800ms ease;
}

.product:hover img {
    box-shadow: 0 0 30px #333;
    transition: all 800ms ease;
}

.product span {
    display: block;
    text-align: left;
    margin-bottom: .5rem;
}

.product-title {
    font-weight: bold;
}

.product-author {
    font-style: italic;
}

.product-description {
    font-size: 90%;
    line-height: 1rem;
}

/* Playlist widget ///////////////////////////////////////*/

.playlist-widget .wp-playlist-light {
    background: transparent;
}
.playlist-widget .wp-playlist-current-item,
.playlist-widget .wp-playlist-item-length {
    display: none;
}
.playlist-widget .wp-playlist {
    border: none;
    padding: 0;
    margin: 0;
}
.playlist-widget .wp-playlist-tracks {
    text-align: left;
}
.playlist-widget .wp-playlist-item .wp-playlist-caption {
    max-width: 100%;
}
.playlist-widget span.other-purchase {
    text-align: center;
    width: 100%;
    display: block;
    padding: .2rem 0;
}
.playlist-widget span.other-purchase a {
    padding: .2rem;
}

.playlist-widget span.product-link {
    display: block;
    margin: .5rem 0 .2rem 0;
}
.playlist-widget img.album-art {
    box-shadow: 0 0 10px #444;
    transition: all 800ms ease;
}
.playlist-widget:hover img.album-art {
    box-shadow: 0 0 30px #333;
    transition: all 800ms ease;
}
/* Full Width Page Specific /////////////////////*/
.page-template-fullwidth-page article div.standard {
    max-width: 1000px;
    background-color: #fcfefe;
    padding: .5rem 1rem;
    margin: 3rem auto;
    box-shadow: 0px 0px 30px rgba(0,0,0,.5);
}
.page-template-fullwidth-page article div.special {
    padding: 1rem calc((100% - 1000px) / 2);
    margin: 0;
    background-color: #134;
    color: #fcfefe;
}
.page-template-fullwidth-page article#post-230 {
    padding: 0;
    margin: 0;
}
.page-template-fullwidth-page div.special.orange {
    background-color: #f90;
    color: #0d0d0d;
}
.page-template-fullwidth-page div.special.orange a:link {
    color: #fcfefe;
}

@media screen and (max-width: 1000px) {
    .page-template-fullwidth-page div.special {
        padding: 1rem !important;
    }
}



@media screen and (min-width: 50em) {
    .page-template-fullwidth-page #wrap {
        width: auto;
        background: transparent;
    }
    .page-template-fullwidth-page #banner-rotate {
        min-height: 45rem;
    }
    .page-template-fullwidth-page div.banner-img {
        height: 45rem;
    }
    .page-template-fullwidth-page div.main {
        width: 100%;
    }

    .page-template-fullwidth-page aside.last {
        width: 100%;
        margin: 0;
    }
    .page-template-fullwidth-page aside.last div[class^="widget_"] {
        width: 48%;
        float: left;
    }
    .page-template-fullwidth-page aside.last .panel {
        width: 100%;
    }
    .page-template-fullwidth-page aside.last div[id*="_panel_widget"]:nth-child(even) .panel {
        margin-left: 2rem;
    }
}

@media screen and (min-width: 80em) {
    .page-template-fullwidth-page aside.last {
        max-width: 1000px;
        margin: 0 calc((100% - 1000px) / 2);
    }
}

.special.green .block {
    width: 50%;
    text-align: center;
    padding: 1.5rem 0;
}

.special.green .block span {
    display: block;
}

.special.green .block span.number {
    font-size: 3rem;
    padding: 1rem 1rem;
    font-weight: bold;
    text-shadow: 0px 0px 15px rgb(66, 108, 34), 0px 0px 15px rgb(66, 108, 34);
}

.special.green .block span.comment {
    font-size: .8rem;
    text-transform:uppercase;
}

.special.green .block.button {
    padding: 1.6rem 1rem;
    width: 100%;
}
.special.green .block.button a.button-link {
    padding: 1.5rem .5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.special.green .block.button a:hover {
    background-color: #73e600;
}

.page-template-fullwidth-page article div.special.green {
    background-color: #5a0;
}

@media screen and (min-width: 50em){
    .special.green .block {
        width: 18%;
    }

    .special.green .block.button {
        width: 28%;
    }
}

.page-template-fullwidth-page .special.video-bar {
    padding: 2rem 0;
    text-align: center;
}

.page-template-fullwidth-page .standard .wp-video {
    width: 100% !important;
}
