/* FlexSlider */
/*
 * jQuery FlexSlider v2.6.2
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 0px;
  background: #fff;
  border: 0px solid #fff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
  display:none;
  
}



.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 150px;
  text-align: right;
  z-index:2; 
  right:12px; 
}





.flex-control-nav li {
  margin: 0 6px 3px 0px;
  zoom: 1;
  display: block;
}



.flex-control-paging li a {
  width: 12px;
  height: 12px;
  display: inline-block;
  border:2px solid #ffffff; 
  background: transparent;
  cursor: pointer;
  text-indent: -9999px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  color:transparent;
}


.flex-control-paging li a.flex-active, .flex-control-paging li a:hover {background:#ffffff; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}





/* Footer */
.footer-box {
    border: solid 0px white;
    box-sizing: border-box;
    padding: 30px 20px 30px 0px;
    margin-bottom: 20px;
}



/* Global */
.wp-caption {
    background: transparent;
}

.gform_wrapper.gravity-theme .gfield_checkbox label, .gform_wrapper.gravity-theme .gfield_radio label {font-size:14px;}


.gform_wrapper .gf_progressbar, .gform_wrapper .gf_progressbar_percentage, .gform_wrapper .gf_progressbar:after {border-radius:0px !important; }

.page-template .gform_wrapper .gf_progressbar {padding:0px; height:41px; background: #07B0F2;    -webkit-box-shadow: none; 
    -moz-box-shadow: none ;
    box-shadow: none; }

 .page-template .gform_wrapper .gf_progressbar_percentage {height:41px; background:#8ec742;   -webkit-box-shadow: none; 
    -moz-box-shadow: none ;
    box-shadow: none;}
    
    
  .page-template   .gform_wrapper .gf_progressbar_percentage span {line-height:41px; }
    
     .page-template   .gform_wrapper .gf_progressbar:after {background:none;   -webkit-box-shadow: none; 
    -moz-box-shadow: none ;
    box-shadow: none;}
    
    
    .page-template  .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title {margin-left:0px !important; }
    
.page-id-2854 .gfield_radio b{color: #07b0f2; font-weight:800; }

.gform_wrapper span.ginput_total {color: #07b0f2; font-weight:800; }
.page-id-2854 .gform_title {display:none; }



.gvCol.column-form-text {float:left; width:68%; margin-right:20px;  }
.gvCol.column-form-code {float:left; width:30%; background:rgba(216,216,216,0.2); }
.gvCol.column-form-code .formWrapper { padding:15px; }
.gvCol.column-form-code .gform_wrapper {margin-top:0px; }
.entry-content .gvCol.column-form-code .fundraising-goal h2 {text-align: center; margin-bottom:5px !important; line-height:22px; font-size:16px;     font-weight: 400;
    letter-spacing: .5px;color: #77247e; }

.gvCol.column-form-code .tax-deduct-gift {text-align:center; display:block; margin-bottom:25px; }


.gvCol.column-form-code .gform_footer.top_label {text-align: center;}

.gvCol.column-form-code .ginput_container.ginput_container_email , .gvCol.column-form-code .ginput_container.ginput_container_phone,.gvCol.column-form-code .ginput_container.ginput_container_email input , .gvCol.column-form-code .ginput_container.ginput_container_phone input {width:100%; }
.gform_wrapper ul li.gfield#field_5_23 {padding-top:20px; }

.gform_wrapper ul.gform_fields li.gfield input[type=radio]
{
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     display: inline-block;
     background-color: #f1f1f1;
     color: #666;
     top: 10px;
     height: 30px;
     width: 30px;
     border: 0;
     border-radius: 50px;
     cursor: pointer;     
     margin-right: 7px;
     outline: none;
     margin-top:0px; 
}

.gform_wrapper .gfield_radio li label {
    margin: 2px 0 0 12px !important;
    
}
    .gform_wrapper .top_label div.ginput_container.ginput_container_fileupload {margin-bottom:30px !important; }

.gform_wrapper .top_label div.ginput_container.ginput_container_fileupload input{font-size:13px;     color: #fff !important;
    background: #07b0f2;
    text-align: center;
    width: auto;
    margin: 0px auto 0 auto;
    padding: 10px;
    border-radius: 4px;
    font-size: 15px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border: 0px; }
    
.gform_wrapper .top_label div.ginput_container.ginput_container_fileupload  .screen-reader-text {font-size:11px;margin-bottom:30px; display:block;   }

.gform_wrapper ul.gform_fields li.gfield input[type=radio]:before
{
     position: absolute;
     left: 10px;
     top: 16px;
     content: ' ';
     background-color:#777777; 
     width:12px; 
     height:12px; 
     margin-top:-2px;
     border-radius:24px; 
}

.gform_legacy_markup_wrapper .gfield_checkbox li label, .gform_legacy_markup_wrapper .gfield_radio li label {min-height:38px; }


.gform_wrapper ul.gform_fields li.gfield input[type=radio]:checked::before
{

     background-color:#0cb1ec; 
 
}

.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {display:none !important; }

.gform_wrapper ul.gfield_radio li {position:relative; }


.gform_wrapper ul.gform_fields li.gfield#field_5_14 label {display:none !important; }


.gform_wrapper input::placeholder {
    padding-left:5px; color:#333333; font-weight:300; font-size:13px; 
}
.gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month, .gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_year {font-weight:300; font-size:13px; 
}
.ignitiondeck.column-form-code  form {padding:0px; }

.ignitiondeck.column-form-code .id-product-infobox {background:transparent; }

.gvCol.column-form-code .goal-amount {background: #07B0F2; text-align: center;     width: 100%;
    height: 48px;
    z-index: 5;
    position: relative;
    margin-bottom: 10px;    color: #ffffff;
    font-size: 24px;
    font-weight: 500;line-height:48px; }


  .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit]   {color: #fff !important;
    background: #07b0f2;
    text-align: center;
    width: auto;
    margin: 0px auto 0 auto;
    padding: 10px;
    border-radius: 4px;
    font-size: 15px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase; border:0px; }

.gform_wrapper .gform_footer {margin-top:0px; }

/* IGNITION DECK */
.memberdeck .checkout-title-bar span.checkout-payment {width:100%; }


.gform_wrapper .gfield_checkbox li label, .gform_wrapper .gfield_radio li label {font-size: 17.6px; }


.gform_wrapper .top_label .gfield_label {font-weight:500; }

.ignitiondeck .gform_wrapper div.validation_error {
    color: #fc8924;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 25px;
    border-top: 0px solid #790000;
    border-bottom: 0px solid #790000;
    padding: 16px 0;
    clear: both;
    width: 100%;
    text-align: center;
}

.ignitiondeck .gform_wrapper .gfield_required {color:#333 !important; }


.ignitiondeck .gform_wrapper .gfield_error .gfield_label, .ignitiondeck .gform_wrapper .validation_message {
    color: #fc8924;

}

.ignitiondeck .gform_wrapper li.gfield.gfield_error, .ignitiondeck .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background-color: transparent;
    margin-bottom: 6px!important;
    border-top: 0px solid #C89797;
    border-bottom: 0px solid #C89797;
    padding-bottom: 6px;
    padding-top: 8px;
    box-sizing: border-box;
}

.ignitiondeck .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.ignitiondeck .gform_wrapper li.gfield_error textarea {
    border: 1px solid #fc8924;
}






@media screen and (min-width: 1000px) {

.footer .cell:first-child {width:37%;}

}
.mailHead {font-size:15px;font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-weight:700; color:#fff;  text-transform: uppercase; margin-bottom:18px; }
.mc-field-group input {border-radius: 0px; font-size:15px;font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  color:#333; }
#mce-error-response {margin-bottom:12px; }
#mc_embed_signup div.mce_inline_error {background-color:transparent !important;}
input#mc-embedded-subscribe {text-align:right; float:right; background:transparent; border:1px solid white;font-size:15px; font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-weight:700; color:#fff;  text-transform: uppercase; 
	
	 text-transform: uppercase;
    color: #fff;
    border: 1px #fff solid;
    padding: 6px 17px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 4px;
	
}
#mc_embed_signup {max-width:304px; }
#slider ul {margin-bottom:0px; }


#slider ul li {width:100%; display:block; min-height:412px; background-position: center center; background-size: cover; float:left; position:relative; }

.slideSlogan h2, .slideSlogan h3 {color:#fff; text-align:left; vertical-align:middle; }




.slideSlogan {
 position: relative;
     width: 100%; max-width:1170px;
    margin:0 auto; 
        margin-top: 170px;z-index:100;

}





.slideSlogan h3 {
font-family: "open sans", "helvetica neue", helvetica, arial, sans-serif; font-weight: 800;
font-size: 50px;
line-height: 60px;
max-width:650px; 
margin-bottom:0px;

/* text-shadow: 1px 2px 2px rgba(0,0,0,0.1); */

}



.slideBtnBox {position:absolute; bottom:0px; 
    margin-top:0px; width:100%;z-index:100;
}
.slideBtnBox span {max-width:1170px; margin-left:auto; margin-right:auto; display:block;}
.flexslider .slideButton {
        color: #fff;
    background: #07b0f2;
    display: inline-block;
    text-align: center;
    margin: 20px auto 20px auto;
    padding: 10px;
    border-radius: 4px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}
.flexslider a.slideButton:hover {color:#fff !important; }


.flexslider .slideButton.whiteBtn {background:#ffffff; color:#07b0f2; padding-left:26px; position:relative; margin-left:16px; }
.flexslider .slideButton.whiteBtn:hover { color:#07b0f2 !important;}
.flexslider .slideButton.whiteBtn:before {position:absolute; top:14px; left:10px; background:url("../images/video-play-icon.svg");     background-size: 75% 100%;
    width: 15px;
    height: 15px;
    display: block;
    content: "";
    background-repeat: no-repeat;}

.slideSlogan h2 {font-family: "open sans", "helvetica neue", helvetica, arial, sans-serif; font-weight: 800;
max-width:500px; 
font-size: 29px;
line-height: 37px;
margin-bottom:0px; 
/* text-shadow: 1px 2px 2px rgba(0,0,0,0.1); */

}





#headerBan {width:100%; height:109px; background:#79ba2f; margin-top:0px; position:relative;-webkit-box-shadow: 0px 3px 5px 0px rgba(102,102,102,0.5);
-moz-box-shadow: 0px 3px 5px 0px rgba(102,102,102,0.5);
box-shadow: 0px 3px 5px 0px rgba(102,102,102,0.5);}
.interContent {width:100%;}

.interContent .interWrap {max-width:1020px; margin:0 auto; height:410px;  }

.interContent .interWrap .contentCol.col1 {float:left; width:64%; }
.interContent .interWrap .contentCol.col2 {float:left; width:34%; position:relative; }


.interContent .interWrap .contentCol.col2 img{margin-top:40px; position:absolute; max-width:fit-content;  }



.interContent .interWrap .contentCol p {}
.interContent .interWrap .contentCol h3{
    margin-bottom: 30px;
    padding-top: 50px;
    color: #77247e;
    margin: 0;
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding-bottom: .5em;
    font-weight: 300;
    
    font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif;
    letter-spacing: -0.03em;
}


.interContent .footerWrap {max-width:1200px; min-height:580px; margin:0 auto; position:relative; }

.interContent .footerWrap .contentCol.col1 {float:left; width:34%; }
.interContent .footerWrap .contentCol.col2 {float:right; width:62%; position:relative; padding-bottom:108px; padding-right:100px; }
.interContent .footerWrap .contentCol.col1 img{    bottom: -60px;
    position: absolute;
    margin-left: 0px; max-width:350px;  }


.interContent .footerWrap .contentCol.col1 .vidEmbed img{    bottom: -220px;
    position: absolute;
    margin-left: -10px; max-width:350px;  }



.interContent .footerWrap .contentCol.col1 .vidEmbed img {width:100%;    border-radius: 4px; }

.interContent .footerWrap .contentCol p {padding-bottom:10px; }
.interContent .footerWrap .contentCol h3{
    margin-bottom: 30px;
    padding-top: 77px;
    color: #77247e;
    margin: 0;
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding-bottom: .5em;
    font-weight: 300;
    
    font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif;
    letter-spacing: -0.03em;
}

.interContent .footerWrap .vidPlayerHome {position:relative; margin-left:80px; margin-top:80px; }



.interContent .footerWrap .contentCol.col2 a{color:#fff; background:#07b0f2; display:block; text-align: center; width:140px; margin:20px auto 0 auto; padding:10px; border-radius:4px;    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
   font-weight: 600;text-transform:uppercase; }


.interContent .footerWrap .contentCol h3:after, .interContent .interWrap .contentCol h3:after  {
    content: "";
    display: block;
    height: 3px;
    width: 60px;
    margin-top: .3em;
    background: #8ec742;
}


.interContent .orangeWrap {max-width:100%; margin:0 auto;  background: #fc8924; padding-top:30px; -webkit-box-shadow: 0px 3px 5px 0px rgba(102,102,102,0.5);
-moz-box-shadow: 0px 3px 5px 0px rgba(102,102,102,0.5);
box-shadow: 0px 3px 5px 0px rgba(102,102,102,0.5);}
.interContent .orangeWrap .centerWrap {max-width:1100px; margin:0 auto;  }

.interContent .orangeWrap .centerWrap .contentCol {width:33%; float:left; color:#ffffff;  }
.interContent .clear {clear:both;}
.interContent .orangeWrap .centerWrap .contentCol a{color:#fff; background:#07b0f2; display:block; text-align: center; width:140px; margin:0 auto; padding:10px; border-radius:4px;     font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
   font-weight: 600;text-transform:uppercase;}

 .contentCol.col1 a{color:#fff; background:#07b0f2; display:block; text-align: center; width:140px; margin:20px auto 0 auto; padding:10px; border-radius:4px;    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
   font-weight: 600; text-transform:uppercase; }



.interContent .orangeWrap .centerWrap .contentCol h3 {font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif; font-weight:400; font-size:28px; margin-bottom:0px; text-align: center;}
.interContent .orangeWrap .centerWrap .contentCol p {font-family:  "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif; font-weight:400; font-size:16px; margin-top:10px; padding:0px; margin-bottom:22px; }

.interContent .orangeWrap .centerWrap .contentCol { min-height:300px;
	margin-top:40px; margin-bottom:50px;
	padding:0px 40px 0px 40px; 
}
.interContent .orangeWrap .centerWrap .contentCol:nth-child(1){border-right:1px solid white; }
.interContent .orangeWrap .centerWrap .contentCol:nth-child(2){border-right:1px solid white; }



#headerBan .headerWrap {max-width:1060px; margin:0 auto;  }
#headerBan .headerWrap .btnCol {float:left; width:33%; margin-top:25px; }
#headerBan .headerWrap .btnCol a{margin:0 20px; background: #07b0f2; display:block; color:#ffffff; text-align: center; padding:15px 0px; }

#headerBan .headerWrap .btnCol a h3 {margin:0px; padding:0px; font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif; font-size:32px; line-height:1; font-weight:300;}
#headerBan .headerWrap .btnCol a p {margin:5px 0px 0px 0px; padding:0px;font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;  font-size:16px;line-height:1; text-transform: uppercase;}






li.page_item.page-item-2052, li.page_item.page-item-2051 , li.page_item.page-item-2053 {display:none;}



a.crowdLink {    display: inline-block; 
    position: relative;float:left; 
    left: calc(50% - 211px);
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    margin-top: 7px;
    
    font-size: 1rem;
letter-spacing: .7px;
text-transform: uppercase;
color: #ffffff;
    
    }


#utility-header {padding:5px 0 6px 0 !important; }
#utility-header .outline {display:inline-block; margin-top:4px; }


.footer-wrap {position:relative; }

.footer-questions {position:fixed; text-indent:-99999px; right:50px; bottom:50px; background:#77247E; border-radius:50%; width:62px; height:62px;
	background-image:url(/wp-content/themes/coopschool/library/images/hello_icon.svg); background-repeat:no-repeat;    z-index: 12000;
	 }
	 
.footer-questions-traveler {position:absolute; text-indent:-99999px; right:-30px; bottom:-70px; background:#77247E; border-radius:50%; width:62px; height:62px;
	background-image:url(/wp-content/themes/coopschool/library/images/hello_icon.svg); background-repeat:no-repeat; display:none;
	 }
.footer-questions-traveler.desktop-only {display:none;}	 	 
.footer-questions-box.enabled .footer-questions-traveler {display:block;}

.footer-questions.active {display:none !important; }
	 
.footer-questions-box {position:fixed; bottom:120px; text-align:center; background-color:#77247E; width:375px; height:auto; right:80px;     font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700; z-index:90999999;border-radius: 4px;
}


.footer-questions-box.enabled {position:fixed; bottom:auto;}

.mobile-questions a{position:fixed; text-indent:-99999px !important; z-index:99999999 !important;  right:10px !important; top:444px !important; background-color:#77247E !important; border-radius:50% !important; width:62px !important; height:62px !important; display:none !important; 
		background-image:url(/wp-content/themes/coopschool/library/images/hello_icon.svg) !important; background-repeat:no-repeat !important;

	
}


.footer-questions-box.enabled h4 {    margin-top: 60px;
}

.btnCol3 {position:relative; }

.footer-questions-box { }
.footer-questions-box.enabled { }
.footer-questions-box .close-question-box {position:absolute; color:#fff; font: normal normal 600 16px/22px Open Sans; font-weight:600 !important;
letter-spacing: 0px; right:25px; top:25px; 
	cursor:pointer; 
}




.pum-theme-3298 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
    font: normal normal 600 16px/22px Open Sans;
    font-weight:600 !important;
    font-size: 16px;
    line-height: 22px;
    border: 0px none #ffffff;
    border-radius: 0px;
    box-shadow: none;
    text-shadow: none;
    background-color: transparent;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-right:30px; 
}


.pum-theme-3298 .pum-content + .pum-close:before, .pum-theme-default-theme .pum-content + .pum-close:before {
	display:inline-block; content:' '; background-image:url(../images/close-icon.svg); width:14px; height:14px; 
	position:absolute; right:8px; top:9px; 
} 



.footer-questions-box ul li{position:relative; text-align: left; color:#fff; font: normal normal normal 16px/24px Open Sans;
 margin-bottom:16px;  }
.footer-questions-box ul li span{display:inline-block; width:56px; height:56px; border-radius:50%; background:#fff;  position:absolute; top:0px; left:0px; }

.footer-questions-box ul li span img {width:56px; height:56px; object-fit:contain; border-radius:50%; margin-top:0px;}
.footer-questions-box .emailItems {margin-top:20px; margin-left:0px; margin-right:0px; }
.footer-questions-box h4 {font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size:32px; line-height:36px; color:#ffffff;}
.footer-questions-box p.desc {color:#fff; font: normal normal normal 16px/24px Merriweather;
letter-spacing: 0px; }


.footer-questions-box .qq-questionContent {padding:0px 46px 46px 46px;}

.vidPlayerHome .vidEmbed a.mobile-only {display:none; }

.footer-questions-box .emailItems p {display:block; width:100%; padding-left:70px; font: normal normal normal 16px/24px Open Sans;}
.footer-questions-box .emailItems p a {color: #fff;
    background: #07b0f2;
    display: inline-block;
    text-align: center;
    width: auto;
    margin: 22px auto 0 auto;
    padding: 5px 8px;
    border-radius: 4px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}


.footer-questions-box.slim-enabled {display:none; }






@media screen and (max-width: 1360px) {

.footer-questions {right:0px; }
.footer-questions-box {right:20px; }

}


@media screen and (max-width: 1080px) {
.interContent .interWrap {
    max-width: 100%;
    padding:0 30px; 
}

}



@media screen and (max-width: 1000px) {
.interContent .orangeWrap .centerWrap .contentCol:nth-child(1), .interContent .orangeWrap .centerWrap .contentCol:nth-child(2) , .interContent .orangeWrap .centerWrap .contentCol:nth-child(3){
    width: 100%;
    float: left;
    color: #ffffff;
    border-right:0px; 
}
.interContent .footerWrap .contentCol.col1 img {max-width:350px; margin-left:-20px;}
.interContent .footerWrap .contentCol.col2 {padding-bottom:0px; }
footer.footer {margin-top:0px; }
.interContent .footerWrap .contentCol.col1 img {bottom:-30px; }


.interContent .interWrap .contentCol.col2 img {
    margin-top: 98px;
}
.interContent .interWrap {
    height: 468px;
}
}


@media screen and (max-width: 968px) {

a.crowdLink span{display:none; }

}
@media screen and (min-width: 769px) {

.mobile-only {display:none; }
.desktop-only {display:block; }



/* width */

.footer-questions-box.enabled {top:93px;}
.footer-questions-box .emailItems {margin-top:20px; margin-left:-46px; margin-right:-46px; height:315px; overflow-y:scroll;  }
.footer-questions-box .emailItems ul {margin-left:46px; margin-right:46px;}


.footer-questions-box .emailItems::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.footer-questions-box .emailItems::-webkit-scrollbar-track {
  background: #77247E;
}

/* Handle */
.footer-questions-box .emailItems::-webkit-scrollbar-thumb {
  background: #07b0f2;
}

/* Handle on hover */
.footer-questions-box .emailItems::-webkit-scrollbar-thumb:hover {
  background: #07b0f2;
}




}

@media screen and (max-width: 767.9px) {
	

.vidPlayerHome .vidEmbed a.mobile-only {display:block; }

/* width */
.footer-questions-box::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.footer-questions-box::-webkit-scrollbar-track {
  background: #77247E;
}

/* Handle */
.footer-questions-box::-webkit-scrollbar-thumb {
  background: #07b0f2;
}

/* Handle on hover */
.footer-questions-box::-webkit-scrollbar-thumb:hover {
  background: #07b0f2;
}

 .footer-questions-box.slim-enabled{  height:98%;overflow-y:scroll; }






.interContent .footerWrap .contentCol.col1 .vidEmbed img {
    position: relative;
    margin-left: auto;
    margin-right:auto;
    max-width: 100%;
    bottom:auto; 
}
	
	
.interContent .footerWrap  img.col-foot-image.mobile-only	{max-width:100%; margin-bottom:-70px;    max-width: 75%;
    margin-top: 50px;}
	
	
.page-id-55 .tourButton {display:none; }
.mobile-questions a {display:block !important; }
  .footer-questions-box.enabled,  .footer-questions-box.slim-enabled{  display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index:9999999999999; 
    height: 100%;
    padding-bottom:100px; 
}






.admin-bar .footer-questions-box.enabled,  .admin-bar .footer-questions-box.slim-enabled {top:45px;}


.footer-questions-box.enabled .qq-questionContent {display:block !important;}
.footer-questions-box.slim-enabled .qq-questionContent {display:block !important;}



.gvCol.column-form-text {float:left; width:100%; margin-right:0px;  }
.gvCol.column-form-code {float:left; width:100%; }



 .nav li.current-menu-item li a, .nav li.current_page_item li a, .nav li.current_page_ancestor li a{text-decoration: none;}
.nav li ul.sub-menu li a:hover, .nav li ul.sub-menu li a:focus, .nav li ul.children li a:hover, .nav li ul.children li a:focus {color:#fff; text-decoration:underline; }

.nav > .menu-item-has-children > a:after {
    content: '\002B';padding-left:6px; 
    display: inline-block;
transition: all 0.5s ease-out;}


.nav > .menu-item-has-children > a.clicked:after {
    content: '\00D7';
transition: all 0.5s ease-out;}



.nav li a:hover, .nav li a:focus, .nav li.current-menu-item a, .nav li.current_page_item a, .nav li.current_page_ancestor a{color:#fff; text-decoration:underline; }
.nav li ul.sub-menu, .nav li ul.children{
    background-color: #07b0f2;
}


.nav {
    background-color: #07b0f2 !important;
}



.nav li a {color:#fff; }
nav > a#pull {height:87px;}

nav a#pull:after {
    content: "";
    background: url(../images/menu-icon.png) no-repeat center right;
    display: inline-block;
    background-size: 35px 29px;
    width: 35px;
    height: 29px;
	margin-right:28px; margin-top:28px; 

}


@media screen and (max-width: 767.1px) {


.page-id-2854 .gform_column_count_3_wrapper ul.gform_fields, .page-id-2854 .gform_page_column_count_3 ul.gform_fields {width:100%; clear:both;  }

#headerBan .headerWrap .btnCol.btnCol0 {display:block;
	
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    top: 10px;
    font-size: .75rem;
letter-spacing: .7px;
text-transform: uppercase;
color: #ffffff;
}

#headerBan .headerWrap .btnCol {margin-top:0px;}


}


.page-template-default .header {background:transparent; }
.page-template-default #main-nav {background:#07b0f2; height:87px;}
.page-template-default #menu-main-menu {position:absolute; width:100%; height:auto; top:87px; }

.page-template-default #header-image {
    min-height: 156px;
    background: top center no-repeat;
    background-size: 250%;
    clear: both;
}



ul#menu-main-menu {padding-top:80px; }
#headerBan .headerWrap .btnCol {width:100%;}
#headerBan .headerWrap .btnCol a {margin:0px; }

#headerBan .headerWrap .btnCol1.btnCol a{background:#fc8924}
#headerBan .headerWrap .btnCol2.btnCol a{background:#79ba2f}
#headerBan .headerWrap .btnCol3.btnCol a{background:#bdd982}
.header {background-color:#07b0f2; }
#logo-header img {left:auto; }
#logo-header img {
    height: 155px;
}
#logo-header {
    width: 106px;
}
#main-nav {background-color:#07b0f2;}

#tagline-header, #utility-header{display:none; }
.mobile-only {display:block; }
.desktop-only {display:none; }
	
	.interContent .footerWrap .contentCol h3 {
    padding-top: 50px;

}
.interContent .interWrap {height:auto !important;}


.interContent .interWrap .contentCol.col1, .interContent .interWrap .contentCol.col2 {    width: 100%;
}

.interContent .interWrap .contentCol.col2 img {
    margin-top: 20px;
    width: 100% !important;
    position:relative; 
}
.interContent .orangeWrap {
    margin-top: -83px;
    }
    
.interContent .footerWrap .contentCol.col2 {padding-bottom:40px; }
	.interContent .footerWrap .contentCol.col1 img {
    margin-top: 115px;
	max-width:44%; 
}
	
	
.interContent .orangeWrap .centerWrap .contentCol {
    border-right: 0px solid white !important;
}
.interContent .orangeWrap {
	border:0px; 
    -webkit-box-shadow: 0px 0px 0px 0px rgba(102,102,102,0) !important;
    -moz-box-shadow: 0px 0px 0px 0px rgba(102,102,102,0) !important;
    box-shadow: 0px 0px 0px 0px rgba(102,102,102,0) !important;
}
.interContent .orangeWrap .centerWrap .contentCol {
    width: 100%;
    float: left;
    color: #ffffff;
}


.interContent .orangeWrap .centerWrap .contentCol {
    /* min-height: 300px; */
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 0px 40px 0px 40px;
}


.interContent .interWrap {
    max-width: 100%;
    margin: 0 auto;
    height: 620px;
    padding:0 20px; 
}

#headerBan .headerWrap .btnCol

#headerBan .headerWrap .btnCol a h3 {
    font-size: 16px;
    font-weight:700; 
}


#headerBan .headerWrap .btnCol a p {
    font-size: 12px;
}


#home-header-image {
   clear:both;
 }

.flexslider {    min-height:400px;    max-height: 400px;
    }





.interContent .footerWrap .contentCol.col1 img {
    position: relative;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    margin: 20px 0px 0px 0px;
}

.interContent .footerWrap .contentCol.col1 {
    width: 100%;
}

.interContent .footerWrap .contentCol.col2 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

}



@media screen and (max-width: 820px) and (min-width:768px) {
.interContent .footerWrap .vidPlayerHome {
    margin-left: 10px;
}

}

@media screen and (max-width: 414px) {
	
	.interContent .footerWrap .vidPlayerHome {
    width: calc(100% - 30px);}

	
	
.interContent .orangeWrap .centerWrap .contentCol:nth-child(3){padding-bottom:30px; }
	nav a#pull:after {    content: "";
    background: url(../images/menu-icon.png) no-repeat center right;
    display: inline-block;
    background-size: 35px 29px;
    width: 35px;
    height: 29px;
    margin-top: 28px;margin-right:28px; }
	

	
	
	.single-title, .page-title, .entry-title,.interContent .interWrap .contentCol h3, .interContent .footerWrap .contentCol h3 {
    font-size: 1.5rem;line-height:1.8rem;
    }
	
#headerBan {
    height: 63px;background-color:#07b0f2; 
    }
#headerBan .headerWrap .btnCol a {width:100%; }

#headerBan .headerWrap .btnCol {margin-top:0px; }
}

@media screen and (max-width: 414px) {

.nav li ul.sub-menu, .nav li ul.children, .nav {background-color:#07b0f2; }
.nav li a {color:#fff; }
.nav li a:hover, .nav li a:focus, .nav li.current-menu-item a, .nav li.current_page_item a, .nav li.current_page_ancestor a{color:#fff; text-decoration:underline; }
#headerBan .headerWrap .btnCol a {margin:0px; }

.slideSlogan h2 {font-size:40px;}
#slider ul li {min-height:340px; }
.flexslider {min-height:340px; max-height:340px; }
.interContent .orangeWrap{margin-top:-62px;}
.interContent .interWrap .contentCol.col1 {width:100%;}
.interContent .interWrap .contentCol.col2 {width:100%;}
.interContent .interWrap  {height:auto;}
.interContent .interWrap .contentCol.col2 img {position:relative; margin-top:20px; width:100%;}

.interContent .footerWrap .contentCol.col1 {width:100%;}
.interContent .footerWrap .contentCol.col1 img{position:relative; margin-top:20px; width:100%; max-width:100%; margin:20px 0px 0px 0px; }
.interContent .footerWrap .contentCol.col2 {width:100%; padding-left:20px; padding-right:20px; }
}




@media screen and (max-width: 375px) {

.page-template-default #menu-main-menu {top:64px;}


nav a#pull:after {margin-top:18px;}
.page-template-default #main-nav, nav > a#pull {
    height: 64px;
}


ul#menu-main-menu {padding-top:80px; }

.interContent .orangeWrap{margin-top:-59px;}

	#logo-header img {height:145px; }
#logo-header {
    width: 70px;
}


}

@media screen and (max-width: 320px) {
.interContent .orangeWrap{margin-top:-50px;}
#slider ul li {min-height:280px; }
.flexslider {min-height:280px; max-height:280px; }


ul#menu-main-menu {
    padding-top: 50px;
}

}
/* Global Custom CSS */

.footer-box h3 {
    text-transform: none;
}
li.page_item.page-item-2432 {display:none;}

.page-id-2360 {
    
    #sidebar-tagline {display:none;}
    #sidebar-aside {background-color:#ffffff; color:#000000;
        
        h3 {    color: #8ec742;
    text-transform: uppercase;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 0;}
    p {margin-top:0px; }
        
    }
    
    .entry-content.cf {
        h3 {    color: #8ec742;
    text-transform: uppercase;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 0;}
        
    }
    
    
    
    
}

.post-2504 .entry-content.cf img {max-width:300px;}
.page-id-2504 #sidebar-aside {background:transparent;}
.page-id-2504 #sidebar-nav ul.pages {list-style-type:none;}
.page-id-2504 #sidebar-aside h2:after {border:none; background:transparent;}


@media all and (max-width: 768px){
.post-2504 .entry-content.cf img:after {clear:both; content:" "; display:block;}
.post-2504 .entry-content.cf img {width:100%; display:block;}
.post-2504 .entry-content.cf img {max-width:100%;}

.page-id-2360  #sidebar1 {display:none;}

}

#main p a, #main p a:visited, #sidebar-nav .current_page_item a, #sidebar-nav .current-cat a, #sidebar-nav a:hover, #sidebar1 .textwidget p a, #sidebar1 .textwidget p a:visited, 
#main li a{
    color: #09b0f3;
}

#main p.header-category a {color:#ffffff;}

.post-2504 .entry-content.cf h2 {clear:both;}

.post-2504 .entry-content.cf p:after, .page-id-2964 .entry-content.cf p:after {clear:both; content:" "; display:block;}

.gform_wrapper .top_label .gfield_label {
    font-size: 13px;
    color: #777;
}

.gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month, .gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_year {
    color: #777;
}

.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title, .gform_wrapper h3.gform_title {
    font-weight: 500 !important;
    font-size: 1.25em;
    color: #77247e;
}

.gform_wrapper .gform_card_icon_container {
    margin: 8px 0 6px;
    height: 32px;
    display: none;
}


.ignitiondeck form h1, .ignitiondeck form h2, .ignitiondeck form h3, .ignitiondeck form h4, .ignitiondeck form h5, .ignitiondeck form h6, .ignitiondeck form .form-level {
    border-bottom: 3px solid rgb(141, 199, 65);
}

.gvCol.column-form-code .tax-deduct-gift {
    text-align: center;
    display: block;
    margin-bottom: -10px !important;
}

select {
    -webkit-appearance: none;
    background-image: none;
}


.gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month, .gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_year {
    font-weight: 300;
    font-size: 13px;
    color: #333;
}

.gform_wrapper.gf_browser_chrome .ginput_complex .ginput_right select, .gform_wrapper.gf_browser_chrome .ginput_complex select {
    text-indent: 5px !important;
    line-height: 1.5em;
    margin-bottom: 5px;
    margin-top: 2px;
}

.gform_wrapper .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon {
    display: none !important;
}

.gform_wrapper .ginput_complex .ginput_cardinfo_right input.ginput_card_security_code {
    max-width: 40%!important;
}

.gform_wrapper .ginput_complex .ginput_cardinfo_right {
    padding-top: 5px;
}

.gform_wrapper span.ginput_product_price {
    color: #777 !important;
    font-size: 13px;
}

.gform_wrapper span.ginput_product_price_label {
    font-size: 13px;
}

.gform_wrapper span.ginput_quantity_label {
    font-size: 13px;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    font-size: 13px !important;
    color: #777 !important;
    font-weight: 300;
    font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif;
}

.ignitiondeck .gform_wrapper div.validation_error {
    font-size: 13px !important;
    font-weight: 500;
}

.gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input[type=submit]:hover, .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input[type=submit]:hover{background-color:#07b0f2;}

.gform_wrapper span.ginput_total {
    color: #07b0f2 !important;
    font-size: 13px;
}

.button {
    color: #ffffff !important;
    cursor: pointer;
    background: #07b0f2; 
    text-align: center;
    width: 120px;
    margin: 20px auto 0 auto;
    padding: 10px;
    border-radius: 4px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}


/* More Grevity Form Styles */
.ginput_left.address_city {float:left; }
.ginput_left.address_state {float:left; }
ginput_left.address_zip {clear:both; width:100%;}

*:focus {outline:none;}

.gform_wrapper .gfield_radio li label div {display:block; padding-bottom:20px; }

.pum-container .pum-content>:last-child, .pum-form__message:last-child {
    line-height: 1.7;
    hyphens: none;
}


.page-template .StripeElement {
    background-color: #eaedf2;
    height: 40px;
    padding: 10px;
    border-radius: 0px;
    border: 0px solid #bbb; 
    box-shadow: none;
}




.product-template-default .product .byline.vcard {display:none; }

.product-template-default #header-image {}


.product-template-default #sidebar1 {display:none; }
.product-template-default .product_meta  {display:none; }
.product-template-default .product .addtoany_list {display:none; }

.theme-coopschool.woocommerce a.button,.theme-coopschool.woocommerce-cart a.button, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton{    color: #fff;
    background: #07b0f2;
    display: block;
    text-align: center;
    width: auto !important;
    margin: 20px auto 0 auto;
    padding: 10px;
    border-radius: 4px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;}

.woocommerce-info , .woocommerce-message{
    border-top-color: #09b0f3;
}

.theme-coopschool .woocommerce-cart-form button {width:auto;}

.theme-coopschool.woocommerce div.product form.cart .reset_variations, .woocommerce .product a, .woocommerce .product a:visited , .woocommerce-info::before, .woocommerce-message::before, .theme-coopschool.woocommerce-cart .product-name a, .woocommerce .woocommerce-info a, .woocommerce .woocommerce-info a:visited{color:#09b0f3;}
.theme-coopschool.woocommerce div.product form.cart .button{    color: #fff;
    background: #07b0f2;
    display: block;
    text-align: center;
    width: auto;
    margin: 0px auto 0 auto;
    padding: 10px;
    border-radius: 4px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;}
    
   .theme-coopschool.woocommerce-cart button.button, .woocommerce button.button.alt{    color: #fff;
    background: #07b0f2;
    display: block;
    text-align: center;
    width: auto;
    margin: 0px auto 0 auto;
    padding: 10px;
    border-radius: 4px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;}


    
    .theme-coopschool .woocommerce #payment #place_order, .woocommerce-page #payment #place_order {float:none;    }
    
.theme-coopschool .cart-tray {display:inline-block; width:30px;  position:relative; }

.cartIcon {display:block; background-image:url(../images/coop-cartSymbol.png); width:17px; height:15px; background-size:17px 15px; top: -11px;
    position: absolute; cursor:pointer; }



.gform_wrapper ul.gform_fields li.gfield.contactInfo-gf {margin-top:20px !important; }


.gform_wrapper.campaignForm-GF_wrapper .gform_footer input.button, .gform_wrapper.campaignForm-GF_wrapper .gform_footer input[type=submit] {position: absolute;
    bottom: 0px;
    left: calc(50% - 38px);}
.gform_wrapper.campaignForm-GF_wrapper .gform_footer {position:relative; }


.gform_wrapper.campaignForm-GF_wrapper .giftType {margin-top:20px !important; }
.gform_wrapper.campaignForm-GF_wrapper .giftType label {font-weight:800 !important; }
body .gform_wrapper ul li.field_description_below.giftType div.ginput_container_radio{margin-top:0px !important; }
body .gform_wrapper ul li.field_description_below.giftType div.ginput_container_radio label {font-weight:normal !important; }



li.page_item.page-item-2432 {
  display: none;
}
.page-id-2360 #sidebar-tagline {
  display: none;
}
.page-id-2360 #sidebar-aside {
  background-color: #ffffff;
  color: #000000;
}
.page-id-2360 #sidebar-aside h3 {
  color: #8ec742;
  text-transform: uppercase;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0;
}
.page-id-2360 #sidebar-aside p {
  margin-top: 0px;
}
.page-id-2360 .entry-content.cf h3 {
  color: #8ec742;
  text-transform: uppercase;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0;
}
.post-2504 .entry-content.cf img {
  max-width: 300px;
}
.page-id-2504 #sidebar-aside {
  background: transparent;
}
.page-id-2504 #sidebar-nav ul.pages {
  list-style-type: none;
}
.page-id-2504 #sidebar-aside h2:after {
  border: none;
  background: transparent;
}
@media (max-width: 768px) {
  .post-2504 .entry-content.cf img:after {
    clear: both;
    content: " ";
    display: block;
  }
  .post-2504 .entry-content.cf img {
    width: 100%;
    display: block;
  }
  .post-2504 .entry-content.cf img {
    max-width: 100%;
  }
  .page-id-2360 #sidebar1 {
    display: none;
  }
}
#main p a, #main p a:visited, #sidebar-nav .current_page_item a, #sidebar-nav .current-cat a, #sidebar-nav a:hover, #sidebar1 .textwidget p a, #sidebar1 .textwidget p a:visited, #main li a {
  color: #09b0f3;
}
#main p.header-category a {
  color: #ffffff;
}
.post-2504 .entry-content.cf h2 {
  clear: both;
}
.post-2504 .entry-content.cf p:after, .page-id-2964 .entry-content.cf p:after {
  clear: both;
  content: " ";
  display: block;
}
.gform_wrapper .top_label .gfield_label {
  font-size: 13px;
  color: #777;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month, .gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_year {
  color: #777;
}
.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title, .gform_wrapper h3.gform_title {
  font-weight: 500 !important;
  font-size: 1.25em;
  color: #77247e;
}
.gform_wrapper .gform_card_icon_container {
  margin: 8px 0 6px;
  height: 32px;
  display: none;
}
.ignitiondeck form h1, .ignitiondeck form h2, .ignitiondeck form h3, .ignitiondeck form h4, .ignitiondeck form h5, .ignitiondeck form h6, .ignitiondeck form .form-level {
  border-bottom: 3px solid #8dc741;
}
.gvCol.column-form-code .tax-deduct-gift {
  text-align: center;
  display: block;
  margin-bottom: -10px !important;
}
select {
  -webkit-appearance: none;
  background-image: none;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month, .gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_year {
  font-weight: 300;
  font-size: 13px;
  color: #333;
}
.gform_wrapper.gf_browser_chrome .ginput_complex .ginput_right select, .gform_wrapper.gf_browser_chrome .ginput_complex select {
  text-indent: 5px !important;
  line-height: 1.5em;
  margin-bottom: 5px;
  margin-top: 2px;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon {
  display: none !important;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_right input.ginput_card_security_code {
  max-width: 40% !important;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_right {
  padding-top: 5px;
}
.gform_wrapper span.ginput_product_price {
  color: #777 !important;
  font-size: 13px;
}
.gform_wrapper span.ginput_product_price_label {
  font-size: 13px;
}
.gform_wrapper span.ginput_quantity_label {
  font-size: 13px;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  font-size: 13px !important;
  color: #777 !important;
  font-weight: 300;
  font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif;
}
.ignitiondeck .gform_wrapper div.validation_error {
  font-size: 13px !important;
  font-weight: 500;
}
.gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input[type=submit]:hover, .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input[type=submit]:hover {
  background-color: #07b0f2;
}
.gform_wrapper span.ginput_total {
  color: #07b0f2 !important;
  font-size: 13px;
}
.button {
  color: #ffffff !important;
  cursor: pointer;
  background: #07b0f2;
  text-align: center;
  width: 120px;
  margin: 20px auto 0 auto;
  padding: 10px;
  border-radius: 4px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
/* More Grevity Form Styles */
.ginput_left.address_city {
  float: left;
}
.ginput_left.address_state {
  float: left;
}
ginput_left.address_zip {
  clear: both;
  width: 100%;
}
*:focus {
  outline: none;
}
.gform_wrapper .gfield_radio li label div {
  display: block;
  padding-bottom: 20px;
}
.pum-container .pum-content > :last-child, .pum-form__message:last-child {
  line-height: 1.7;
  hyphens: none;
}
.page-template .StripeElement {
  background-color: #eaedf2;
  height: 40px;
  padding: 10px;
  border-radius: 0px;
  border: 0px solid #bbb;
  box-shadow: none;
}





/* New Contact Form CSS */
.page-template-page-contactinfo-php .contact-form .gform_wrapper .top_label .gfield_label{font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}



.footer-box .gform_wrapper label{display:none !important; }
.footer-box .gform_wrapper input {margin-bottom:0px !important; }



.footer-box .gform_legacy_markup_wrapper .gform_footer input.button, .footer-box .gform_legacy_markup_wrapper .gform_footer input[type=submit], .footer-box .gform_legacy_markup_wrapper .gform_page_footer input.button, .footer-box .gform_legacy_markup_wrapper .gform_page_footer input[type=submit] {
    background: transparent !important;
    border: 1px solid white !important;
    font-size: 15px !important;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    text-transform: uppercase !important;
    color: #fff !important;
    border: 1px #fff solid !important;
    padding: 6px 17px !important;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    border-radius: 4px !important;    margin-top:3px;
}

.footer-box .gform_validation_errors>h2, .footer-box .gform_validation_errors>ol a, .footer-box .gform_legacy_markup_wrapper .validation_message{
    color: #ffffff;    background: none !important;
    border: none !important;
}
.footer-box .gform_legacy_markup_wrapper div.validation_error {background:none !important; box-shadow:none !important; border:0px !important; text-align:left !important;}
.footer-box .gform_validation_errors>h2:before {display:none !important; }
.footer-box .gform_legacy_markup_wrapper .gform-icon.gform-icon--close {display:none !important;}


.footer-box .gform_legacy_markup_wrapper li.gfield.gfield_error,.footer-box  .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {border: none !important;
    background: none !important;}
.footer-box .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
    padding-right: 0px !important; margin-right:12px !important; 
}
.footer-box .gform_legacy_markup_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {width:100% !important; }



.footer-box .gform_legacy_markup_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.footer-box .gform_legacy_markup_wrapper li.gfield_error textarea {border:none !important; }


.footer-box #gform_2,
.footer-box #gform_40 {display:flex; }


.footer-box .gform_validation_error .gform_footer input.button {}
.footer-box .gform-body input {width:100% !important; }
.footer-box .gform_legacy_markup_wrapper .gform_footer {margin-top:8px; }

.footer-box  .gform_legacy_markup_wrapper .top_label div.ginput_container, .footer-box .gform-body ul, .footer-box .gform-body li, .footer-box .gform-body 
, .footer-box .gform_legacy_markup_wrapper li.gfield.gfield_error,.footer-box  .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning, body .footer-box  .gform_legacy_markup_wrapper ul li.gfield, .footer-box .gform_legacy_markup_wrapper .gform_footer
{padding-top:0px; margin-top:0px; }

@media (max-width: 1220px) {

.slideSlogan, .slideBtnBox span {margin-left:24px; margin-right:24px; }


}


@media (max-width: 1200px) and (min-width:500px) {

.cell.newsletter-col {min-width:420px; max-width:420px; }
}


.tourButton {display:none;}

@media (max-width: 767px) {

header.header {position:relative; }
.tourButton {display:inline-block; border-radius:3px; position:absolute; top:26px; left:16px; text-transform: uppercase; border:1px solid #ffffff; text-align:center; padding:8px 10px; color:#fff; line-height:1; font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight:600; 
}

.footer-wrap .footer-questions {display:none; }

.slideBtnBox {display:none;}

.flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: 150px;
    text-align: right;
    z-index: 2;
    right: 12px;
}

.flex-control-nav li {
    margin: 0 6px 3px 0px;
    zoom: 1;
    display: block;
}
.slideSlogan {position: absolute;
    bottom: 20px;}
.slideSlogan h2 {    font-size: 27px;
    line-height: 1.2; max-width: calc(100% - 40px);}
.slideSlogan h3  {    font-size: 36px;
    line-height: 1.2; max-width: calc(100% - 40px);}


.home #headerBan .headerWrap .btnCol0 {display:none !important;}
.flexslider .slideButton {padding:8px; font-size:16px; }

.flexslider .slideButton.whiteBtn {margin-left:0px; }
.flexslider .slideButton:not(.whiteBtn) {margin-top:12px; }
.flexslider .slideButton {margin-bottom:0px; }
.flexslider .slideButton.whiteBtn {margin-top:5px; margin-bottom:0px; }
.interContent .footerWrap .vidPlayerHome {margin-left:auto; margin-right:auto; margin-top:20px; }
}

@media (max-width: 500px) {
.cell.newsletter-col .footer-box {padding-right:0px !important; }
.slideSlogan {margin-top:72px;}

.footer-box .gform_legacy_markup_wrapper .gform_footer input.button, .footer-box .gform_legacy_markup_wrapper .gform_footer input[type=submit], .footer-box .gform_legacy_markup_wrapper .gform_page_footer input.button, .footer-box .gform_legacy_markup_wrapper .gform_page_footer input[type=submit] {text-align:center !important; float:none !important; clear:both; display:block; margin-top:-20px !important;}


.slideSlogan h2 {    font-size: 22px;}
.slideSlogan h3  {    font-size: 33px;}


.page-template-page-staff #header-image {
	min-height: 156px;
    background: top center no-repeat;
    background-size: 250%;
    clear: both;
}



}


.staffGrid {display:block; margin:0px; margin-top:20px; }

.staffGrid .row {display:grid; margin-bottom:25px; grid-template-columns: 1fr 1fr 1fr;column-gap: 8px;}
.staffGrid .bioWrap {background:#f4f3f4; position:relative; padding:40px 20px 30px 20px; margin-bottom:8px; margin-top:-25px; width:100%;  }

	.staffGrid .content-tiles {}
	.staffGrid .staffBio {display:none; }   
    .staffGrid .content-tiles img {width:100%;  margin-bottom:0px;  }

 .staffGrid .staffItem figure {display:block; background:#fff;  }
 
 .staffGrid .staffItem figure .staffBio {padding:12px 12px 12px 0px;}

 .staffGrid .staffContent {padding:12px 18px 12px 12px; position:relative; width:100%; margin-top:0px;}

 .staffGrid .staffContent .staffName:hover {color:#09b0f3;}
 .staffGrid .staffContent .staffName ,  .staffGrid .staffItem{cursor:pointer; }
 .staffGrid .staffContent {font-size:14px; line-height:21px; }
 .staffGrid .staffContent.active .staffBio {display:block; padding-top:20px; padding-bottom:40px; }   
 .staffGrid .staffContent.active .staffBio .bioClose,  .staffGrid .bioWrap .bioClose{display:block; width:50px; height:50px; position:absolute; top:0px; right:0px;  cursor:pointer;   }



.contact-form .gform_wrapper .gfield_required {color:#333333;}

.page-template-page-contactinfo-php .contact-form input[type="checkbox"] { border:0px !important; }
.orangeWrap span img {text-align:center; max-width:220px; margin-left:auto; margin-right:auto; display:block; }

@media (max-width: 800px) and (min-width:767px){

}

@media (max-width: 500px) {
.staffGrid .row {display:grid; margin-bottom:25px; grid-template-columns: 1fr;column-gap: 10px;}

.staffGrid .bioWrap {margin-top:0px; }


}
/* Contact Checkbox */
body {
    line-height: 24px;
    font-size: 16px;
    box-sizing: border-box;
}

.checkbox input[type="checkbox"] {
    opacity: 0;
}

.checkbox label {
    position: relative;
    display: inline-block;
    
    /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
    padding-left: 22px;
}

.checkbox label::before,
.checkbox label::after {
    position: absolute;
    content: "";
    
    /*Needed for the line-height to take effect*/
    display: inline-block;
}

/*Outer box of the fake checkbox*/
.checkbox label::before{
    height: 16px;
    width: 16px;
    
    border: 1px solid;
    left: 0px;
    
    /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
     *to vertically center it.
     */
    top: 3px;
}

/*Checkmark of the fake checkbox*/
.checkbox label::after {
    height: 5px;
    width: 9px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    
    transform: rotate(-45deg);
    
    left: 4px;
    top: 7px;
}

/*Hide the checkmark by default*/
.checkbox input[type="checkbox"] + label::after {
    content: none;
}

/*Unhide on the checked state*/
.checkbox input[type="checkbox"]:checked + label::after {
    content: "";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.checkbox input[type="checkbox"]:focus + label::before {
    outline: rgb(59, 153, 252) auto 5px;
}












/***************END**************/


.gfield_checkbox .gchoice input[type="checkbox"] {
    opacity: 0;
    margin-left:-15px; 
}

.gfield_checkbox .gchoice label {
    position: relative;
    display: inline-block;
    
    /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
    padding-left: 22px;
}

.gfield_checkbox .gchoice label::before,
.gfield_checkbox .gchoice label::after {
    position: absolute;
    content: "";
    
    /*Needed for the line-height to take effect*/
    display: inline-block;
}

/*Outer box of the fake checkbox*/
.gfield_checkbox .gchoice label::before{
    height: 13px;
    width: 13px;
    
    border: 0px solid;
    left: 0px;
    background:#ffffff; 
    /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
     *to vertically center it.
     */
    top: 3px;
}

/*Checkmark of the fake checkbox*/
.gfield_checkbox .gchoice label::after {
    height: 3px;
    width: 7px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid  #fff;
    
    transform: rotate(-45deg);
    
    left: 2px;
    top: 6px;
}

/*Hide the checkmark by default*/
.gfield_checkbox .gchoice input[type="checkbox"] + label::after {
    content: none;
}

/*Unhide on the checked state*/
.gfield_checkbox .gchoice input[type="checkbox"]:checked + label::after {
    content: "";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.gfield_checkbox .gchoice input[type="checkbox"]:focus + label::before {
}


.gfield_checkbox .gchoice input[type="checkbox"]:checked + label::before {

background:#07b0f2;
}

.flexslider .slides li {display:block !important;}
.flexslider {overflow:hidden; max-height:412px; }
.flexslider .slides li .bgImage {
position:absolute; 
  background-position: center;
  height: 100%;
  width: 100%;
  transition: transform 4s ease-in-out;
  -webkit-backface-visibility: hidden;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index: 1;
}

.flexslider .slides li.flex-active-slide .bgImage {
  /* transform: scale(1.2); */
}

#menu-item-4196 {display:none !important;}


@media (max-width: 767px) {
#menu-item-4196 {display:block !important;}

.footer-box #gform_2, .footer-box #gform_40 {display:block; }
.footer-box .gform_legacy_markup_wrapper .gform_footer input.button, .footer-box .gform_legacy_markup_wrapper .gform_footer input[type=submit], .footer-box .gform_legacy_markup_wrapper .gform_page_footer input.button, .footer-box .gform_legacy_markup_wrapper .gform_page_footer input[type=submit] {margin-top:12px !important;    width: calc(100% - 12px);}

.footer-box .gform_legacy_markup_wrapper {max-width:100%; }


.staffGrid .staffContent.active .staffBio .bioClose, .staffGrid .bioWrap .bioClose {top:-20px; }


}

@media (max-width: 375px) {
.page-template-page-coophome #slider.flexslider {margin-top:20px;}
.tourButton {
    top: 15px;}

}

@media (min-width: 768px) {

#headerBan .headerWrap .btnCol.btnCol0 {display:none;}

}








/* GDPR Overrides */


#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
background-color:#09b0f3; 
border-top: 0px solid #fff;
position:relative; 
}


#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    max-width: 1312px;
    width: 100%;
    }
    
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
    justify-content: space-between;
    max-width: 970px;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content span.change-settings-button:hover {color:#fff !important; }

 #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
    color: #fff;
    background: #07b0f2;
    display: block;
    text-align: center;
    width: auto !important;
    margin: 20px auto 0 auto;
    padding: 10px;
    border-radius: 4px;
    border:1px solid #fff; 
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}



#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a:hover {
    justify-content: space-between;
    max-width: 970px;
}





/* Ele Styles */






/* Overrides 11-29-23 */
.slideSlogan h3 { max-width: 850px; }
.slideSlogan h2 { max-width: 550px; }

@media (max-width: 767px) {
.slideSlogan h3, .slideSlogan h2 {max-width:calc(100% - 40px); }
}



.coop-footer-logos {
	margin-bottom: 20px;
    display: grid;
    grid-template-columns: 152px 152px 146px;
    grid-gap: 40px;
    align-items: end;
	img{max-width:152px; }
}

@media (max-width: 767px) {
	.coop-footer-logos {     grid-template-columns: 152px 152px; grid-gap:30px; 

	}
}
