/*====================
======================
BASE CSS
======================
====================*/
/*---------- COLORS ----------*/
/*---------- END COLORS ----------*/
/*---------- FONTS ----------*/
/*---------- END FONTS ----------*/
/*---------- HEADER HEIGHTS ----------*/
/*---------- END HEADER HEIGHTS ----------*/
body {
  font-family: 'EB Garamond', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #686868;
  line-height: 1em;
  background: #FFFFFF;
}
@media only screen and (min-width: 992px) {
  body.active-user {
    padding-bottom: 54px;
  }
}
h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  margin-bottom: 10px;
}
a:hover {
  text-decoration: none;
}
.btn {
  display: inline-block;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #FFFFFF !important;
  text-transform: uppercase;
  line-height: 1em;
  padding: 1em 1.75em;
  background: #36b3a8;
  border: none;
  border-radius: 45px;
  white-space: normal;
  letter-spacing: 2px;
}
.btn.disabled {
  background: #C3C3C3;
}
.btn:focus {
  outline: none;
}
@media only screen and (max-width: 640px) {
  .btn {
    width: 100%;
    margin: 0;
  }
}
.clear-both {
  clear: both !important;
  height: 0;
  overflow: hidden;
}
.input-wrapper {
  margin-bottom: 20px;
}
.input-wrapper label {
  font-family: 'EB Garamond', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #464646;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.input-wrapper input[type='text'],
.input-wrapper input[type='password'],
.input-wrapper input[type='email'],
.input-wrapper input[type='number'],
.input-wrapper textarea {
  width: 100%;
  height: 55px;
  font-family: 'EB Garamond', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #999999 !important;
  color: #464646;
  padding: 0 15px;
  background-color: #DFDFDF;
  border: none;
  border-radius: 5px;
  border: 1px solid #DFDFDF;
  outline: none !important;
}
.input-wrapper textarea {
  height: 300px;
  resize: none;
  padding: 25px;
}
.input-wrapper.error input[type='text'],
.input-wrapper.error input[type='password'],
.input-wrapper.error input[type='email'],
.input-wrapper.error input[type='number'],
.input-wrapper.error textarea {
  border: 1px solid #F64747;
}
@media only screen and (min-width: 768px) {
  .input-wrapper.parallel-button input[type='text'],
  .input-wrapper.parallel-button input[type='password'],
  .input-wrapper.parallel-button input[type='email'],
  .input-wrapper.parallel-button input[type='number'] {
    float: left;
    width: calc(100% - 180px);
    margin-right: 30px;
  }
  .input-wrapper.parallel-button .btn {
    float: left;
    width: 150px;
    height: 55px !important;
  }
}
@media only screen and (max-width: 767px) {
  .input-wrapper.parallel-button input[type='text'],
  .input-wrapper.parallel-button input[type='password'],
  .input-wrapper.parallel-button input[type='email'],
  .input-wrapper.parallel-button input[type='number'] {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .input-wrapper.parallel-button .btn {
    width: auto;
  }
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #999999 !important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #999999 !important;
}
:-ms-input-placeholder {
  /* IE 10+ */
  font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #999999 !important;
}
:-moz-placeholder {
  /* Firefox 18- */
  font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #999999 !important;
}
::placeholder {
  /* Chrome/Opera/Safari */
  font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #999999 !important;
}
.error-wrapper,
.success-wrapper {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 15px;
  background-color: #F64747;
}
.error-wrapper h3,
.success-wrapper h3 {
  font-size: 18px !important;
  line-height: 1em !important;
  color: #FFFFFF !important;
  margin: 0 !important;
}
.success-wrapper {
  background-color: #36b3a8;
}
.alert {
  background-image: none !important;
}
.alert p {
  line-height: 1.3em !important;
  margin: 0 !important;
}
.alert ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.alert ul li {
  line-height: 1.3em !important;
}
.alert.alert-success p,
.alert.alert-success ul li {
  color: #3C763D !important;
}
.alert.alert-info p,
.alert.alert-info ul li {
  color: #31708F !important;
}
.alert.alert-danger p,
.alert.alert-danger ul li {
  color: #A94442 !important;
}
ul.errorlist {
  padding-left: 18px;
  margin-bottom: 4px;
}
ul.errorlist li {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #F64747;
}
.divider {
  float: left;
  clear: both;
  width: 100%;
  height: 2px;
  background: #D7D7D7;
}
.pointer {
  cursor: pointer;
}
/*---------- BOOTSTRAP OVERRIDES ----------*/
html {
  /* spinning icons */
}
html .modal-title {
  font-family: 'EB Garamond', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #464646;
  text-align: center;
}
html .modal-header {
  border-bottom: none;
}
html .modal-footer {
  border-top: none;
}
html .form-group label.required:after {
  content: ' *';
}
html .form-control {
  margin: 6px 0 4px;
  border: 1px solid #CCCCCC;
  border-radius: 0;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  background-color: #FAFAFA;
}
html .form-control:focus {
  background-color: #FFFFFF;
  outline: none;
  box-shadow: none;
  border-color: #CCCCCC;
}
html .form-control[type='checkbox'] {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: auto;
  display: inline-block;
  height: 14px;
  margin-right: 8px;
}
html .form-control[type='file'] {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  padding: 0;
}
html textarea.form-control {
  max-height: 126px;
}
html .glyphicon.spinning {
  animation: spin 1s infinite linear;
  -webkit-animation: spin2 1s infinite linear;
}
@keyframes spin {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes spin2 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
/*---------- HEADER ----------*/
#header-wrapper {
  background-color: #212121;
}
#header-wrapper #header {
  height: 248px;
  padding: 0 20px;
}
#header-wrapper #header a {
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1em;
}
#header-wrapper #header #header-logo {
  float: left;
  position: relative;
}
#header-wrapper #header #header-logo h1 {
  text-align: left;
  width: 135px;
  margin-top: 20px;
}
#header-wrapper #header #header-logo h1 a {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #FFFFFF;
}
#header-wrapper #header #header-nav {
  float: right;
  text-align: right;
  line-height: 248px;
  white-space: nowrap;
}
#header-wrapper #header #header-nav a {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 300px;
  padding: 1em 1.5em;
  -webkit-transition: background-color 0.1s 0s ease-in-out, color 0.1s 0s ease-in-out;
  -moz-transition: background-color 0.1s 0s ease-in-out, color 0.1s 0s ease-in-out;
  -ms-transition: background-color 0.1s 0s ease-in-out, color 0.1s 0s ease-in-out;
  -o-transition: background-color 0.1s 0s ease-in-out, color 0.1s 0s ease-in-out;
  transition: background-color 0.1s 0s ease-in-out, color 0.1s 0s ease-in-out;
}
#header-wrapper #header #header-nav a:hover {
  background-color: #FFFFFF;
  color: #212121;
}
@media only screen and (max-width: 640px) {
  #header-wrapper #header #header-nav {
    display: none;
  }
}
#header-wrapper #header #header-user {
  position: absolute;
  right: 20px;
  top: 20px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #686868;
}
#header-wrapper #header #header-user a {
  color: #686868;
  text-transform: none;
  letter-spacing: normal;
}
#header-wrapper #header #header-user a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 640px) {
  #header-wrapper #header #header-user {
    display: none;
  }
}
@media only screen and (max-width: 927px) {
  #header-wrapper #header {
    height: 248px;
  }
}
@media only screen and (max-width: 640px) {
  #header-wrapper #header {
    height: 62px;
  }
  #header-wrapper #header #header-logo h1 {
    width: auto;
    margin-top: 5px;
  }
  #header-wrapper #header #header-logo h1 a {
    font-size: 16px;
  }
}
/*---------- END HEADER ----------*/
/*---------- CONTENT ----------*/
#content-wrapper {
  margin: 96px 0;
  background-color: #FFFFFF;
}
#content-wrapper .intro-copy {
  width: 100%;
  max-width: 620px;
  text-align: center;
  margin-top: 70px;
  margin: 70px auto 55px auto;
}
#content-wrapper .intro-copy .rule {
  display: block;
  width: 80%;
  height: 2px;
  background: #D7D7D7;
  margin: 55px auto 0 auto;
}
#content-wrapper h1 {
  font-family: 'EB Garamond', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #464646;
}
#content-wrapper .section {
  margin: 20px 0;
}
#content-wrapper #sections {
  position: relative;
  z-index: 20;
  float: left;
  clear: both;
  width: 100%;
}
#content-wrapper #sections a {
  color: #0B6192;
}
#content-wrapper #sections .section-wrapper {
  position: relative;
  float: left;
  clear: both;
  width: 100%;
  padding: 60px 0;
}
#content-wrapper #sections .section-wrapper.dark {
  background-color: #EBEBEB;
}
#content-wrapper #sections .section-wrapper.grey {
  background-color: #E6E6E6;
}
#content-wrapper #sections .section-wrapper .intro-text {
  margin-bottom: 40px;
}
#content-wrapper #sections .section-wrapper .intro-text.center {
  text-align: center;
}
#content-wrapper #sections .section-wrapper .border-top {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 70px;
  border-top: 1px solid #BDBDBD;
}
#content-wrapper #sections .section-wrapper h2 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #464646;
  line-height: 1.1em;
  margin: 0 0 15px 0;
}
#content-wrapper #sections .section-wrapper h3 {
  font-family: 'EB Garamond', sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #464646;
  line-height: 1.1em;
  margin: 0 0 15px 0;
}
#content-wrapper #sections .section-wrapper p {
  font-family: 'EB Garamond', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #333333;
  line-height: 1.8em;
  margin-bottom: 20px;
}
#content-wrapper #sections .section-wrapper ul {
  margin-bottom: 20px;
  margin-left: 30px;
  padding-left: 18px;
}
#content-wrapper #sections .section-wrapper ul.no-bullets {
  list-style: none;
  padding-left: 0;
}
#content-wrapper #sections .section-wrapper ul.no-bullets li {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#content-wrapper #sections .section-wrapper ul li {
  font-family: 'EB Garamond', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #333333;
  line-height: 1.6em;
}
#content-wrapper #sections .section-wrapper .feature .text-block {
  max-width: 900px;
  margin: 0 auto;
}
#content-wrapper #sections .section-wrapper .course-block .book-preview {
  width: 100% !important;
  height: auto !important;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper .course-block .book-preview {
    display: none;
  }
}
#content-wrapper #sections .section-wrapper .course-block .course-teaser {
  padding: 10px;
}
#content-wrapper #sections .section-wrapper .course-block .course-teaser h3 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #464646;
  text-transform: uppercase;
  line-height: 1.2em;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D7D7D7;
}
#content-wrapper #sections .section-wrapper .course-block .course-teaser h5 {
  font-family: 'EB Garamond', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0B6192;
  text-transform: uppercase;
  line-height: 24px;
  margin-bottom: 5px;
}
#content-wrapper #sections .section-wrapper .course-block .course-teaser h5 img {
  float: left;
  margin-right: 10px;
}
#content-wrapper #sections .section-wrapper .faq-section {
  margin: 40px 0px;
}
#content-wrapper #sections .section-wrapper .faq-section h3 {
  font-family: 'EB Garamond', sans-serif;
  font-size: 23px;
  font-weight: 400;
  color: #464646;
  line-height: 24px;
  margin-bottom: 15px;
  padding-left: 32px;
  background: url('/static/images/faq_speech_icon.png') left center no-repeat;
}
#content-wrapper #sections .section-wrapper .faq-section p {
  font-family: 'EB Garamond', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #333333;
  line-height: 1.6em;
  padding-left: 32px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #content-wrapper #sections .section-wrapper .faq-section {
    margin: 0px;
  }
  #content-wrapper #sections .section-wrapper .faq-section h3 {
    line-height: 1.6em;
    background: none;
  }
  #content-wrapper #sections .section-wrapper .faq-section p {
    border-bottom: 2px solid #EBEBEB;
  }
  #content-wrapper #sections .section-wrapper .faq-section p:last-child {
    border-bottom: none;
    margin-bottom: 5px;
  }
  #content-wrapper #sections .section-wrapper .faq-section h3,
  #content-wrapper #sections .section-wrapper .faq-section p {
    padding-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  #content-wrapper #sections .section-wrapper p {
    font-family: 'EB Garamond', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #333333;
  }
}
@media only screen and (min-width: 768px) {
  #content-wrapper #sections.content-gutter {
    padding-top: 50px;
  }
}
#content-wrapper .table-style {
  float: left;
  width: 100%;
  margin-bottom: 40px;
}
#content-wrapper .table-style .table-row {
  padding-top: 15px;
  padding-bottom: 15px;
}
#content-wrapper .table-style .table-row.light {
  background: #DDDDDD;
}
#content-wrapper .table-style .table-row.dark {
  background: #CCCCCC;
}
#content-wrapper .table-style .table-row .code-cell {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #464646;
  margin-top: 15px;
}
@media only screen and (max-width: 991px) {
  #content-wrapper .table-style .table-row .email-cell {
    margin-top: 15px;
  }
}
#content-wrapper .form-wrapper {
  margin-bottom: 100px;
}
#content-wrapper .form-wrapper.small {
  max-width: 300px;
}
#content-wrapper .form-wrapper .error-wrapper {
  width: 100%;
  color: #FFFFFF;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #91111A;
}
#content-wrapper .form-wrapper .error-wrapper ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
#content-wrapper .form-wrapper .error-wrapper ul li {
  font-size: 16px;
  color: #FFFFFF !important;
}
#content-wrapper .form-wrapper .form-links {
  margin-top: 20px;
}
#content-wrapper .form-wrapper .form-links .form-link {
  display: block;
  float: left;
  clear: both;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0B6192;
  text-transform: uppercase;
  margin-bottom: 5px;
}
/*=====
DIALOG
=====*/
.dialog-mask {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  opacity: 0.95;
}
.dialog-wrapper {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 50%;
  left: -100%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  width: 100%;
  height: auto;
  max-height: 100%;
  margin: auto;
  border-radius: 0;
  overflow: auto;
}
.dialog-wrapper .dialog-content {
  padding: 20px 0;
}
.dialog-wrapper .dialog-content .responsive-video {
  margin-bottom: 20px;
}
.dialog-wrapper .dialog-content h2 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 400;
  font-weight: 26px;
  color: #464646;
}
.dialog-wrapper .dialog-content p {
  line-height: 1.4em !important;
  margin-bottom: 20px;
}
.dialog-wrapper .dialog-content button {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .dialog-wrapper {
    width: 100%;
  }
}
/*=====
END DIALOG
=====*/
/*---------- END CONTENT ----------*/
/*---------- FULL FOOTER ----------*/
#pre-footer {
  float: left;
  clear: both;
  width: 100%;
  background-color: #333333;
}
#pre-footer #pre-footer-inner {
  padding: 32px 32px;
  float: left;
  position: relative;
  width: 100%;
}
#pre-footer #pre-footer-inner .copyright {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
  font-size: 10px;
  color: #FFF;
  font-weight: 500;
  letter-spacing: 0.28em;
  float: right;
  position: relative;
  right: 0;
  text-transform: uppercase;
  opacity: 0.7;
}
#pre-footer #pre-footer-inner .copyright a {
  color: #FFF;
}
#pre-footer #pre-footer-inner #social-icons {
  float: left;
  position: relative;
}
#pre-footer #pre-footer-inner #social-icons a {
  display: block;
  width: 26px;
  height: 26px;
  float: left;
  background-color: #FFFFFF;
  border-radius: 18px;
  margin: 0 5px;
}
#pre-footer #pre-footer-inner #social-icons a svg path {
  fill: #333333;
}
#pre-footer #pre-footer-inner #social-icons:hover > a {
  background-color: rgba(255, 255, 255, 0.4);
}
#pre-footer #pre-footer-inner #social-icons:hover > a:hover {
  background-color: #FFFFFF;
}
#footer-wrapper {
  background-color: #212121;
  width: 100%;
  height: 196px;
  clear: both;
}
@media only screen and (max-width: 767px) {
  #footer-wrapper {
    margin-top: 142px;
  }
}
#active-user #footer-wrapper {
  margin-bottom: 50px;
}
/*---------- END FULL FOOTER ----------*/
/*---------- IN PLACE EDIT OVERRIDES ----------*/
.inplaceedit.enable:hover {
  background: none !important;
  outline: 2px solid #0B6192;
  outline-style: outset;
  outline-offset: 10px;
}
.inplaceedit.enable:hover img {
  outline: none !important;
}
/*---------- END IN PLACE EDIT OVERRIDES ----------*/
/*---------- ADMIN USER ACTIONS OVERRIDES ----------*/
#user-actions-menu {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}
/*---------- ADMIN USER ACTIONS OVERRIDES ----------*/
/*====================
======================
END BASE CSS
======================
====================*/
/*====================
======================
NAV CSS
======================
====================*/
/*========== MOBILE NAV ==========*/
.hamburger {
  display: none;
  float: right;
  position: relative;
  top: -40px;
  right: 20px;
  width: 23px;
  height: 20px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 6px;
  background-color: #FFFFFF;
}
.hamburger span.last {
  margin-bottom: 0;
}
.hamburger span.first,
.hamburger span.second,
.hamburger span.third {
  transition: all 0.35s linear;
  transform: rotate(0deg);
  transform-origin: 0% 50%;
}
.hamburger.open span.first {
  transform: rotate(45deg);
}
.hamburger.open span.third {
  transform: rotate(-45deg);
}
.hamburger.open span.second {
  width: 0;
  opacity: 0;
}
@media only screen and (max-width: 640px) {
  .hamburger {
    display: block;
  }
}
#mobile-nav-wrapper {
  position: fixed;
  z-index: 150;
  top: 283px;
  right: -320px;
  width: 320px;
  height: 100%;
  height: calc(100% - 248px);
  padding: 0;
  background-color: #333333;
}
#mobile-nav-wrapper a {
  display: block;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1em;
  padding: 24px 0 10px 36px;
}
#mobile-nav-wrapper #mobile-nav-transparency {
  position: absolute;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #074163;
  opacity: 0.92;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav {
  float: left;
  width: 100%;
  list-style: none;
  padding: 0 0 20px 0;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li {
  float: left;
  width: 100%;
  padding: 0 15px;
  -webkit-transition: background 250ms linear;
  -moz-transition: background 250ms linear;
  -o-transition: background 250ms linear;
  -ms-transition: background 250ms linear;
  transition: background 250ms linear;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li:hover {
  background: #074163;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li a {
  float: left;
  width: 100%;
  font-family: 'Lato';
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 15px 0;
  border-bottom: 1px solid #FFFFFF;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li a:hover {
  text-decoration: none;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li a.last {
  border-bottom: none;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li.links a.top-level {
  width: calc(100% - 51px);
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li.links.open a.top-level,
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li.links.open span.drop-arrow {
  border-bottom: none !important;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li span.drop-arrow {
  float: right;
  width: 51px;
  height: 51px;
  background: url('/static/images/nav/down_arrow.png') center no-repeat;
  border-bottom: 1px solid #8A6592;
  cursor: pointer;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li span.drop-arrow:hover {
  background-color: #074163;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li .sub-level-wrapper {
  float: left;
  width: 100%;
  height: 0;
  overflow: hidden;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li .sub-level-wrapper ul.sub-level {
  float: left;
  list-style: none;
  padding: 0;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li .sub-level-wrapper a.sub-level {
  float: left;
}
#mobile-nav-wrapper #mobile-nav-scroll-buffer #mobile-nav li .sub-level-wrapper a.sub-level .last {
  width: 100%;
  margin-left: 0;
  margin-bottom: 10px;
}
@media only screen and (max-width: 640px) {
  #mobile-nav-wrapper {
    top: 62px;
    height: calc(100% - 62px);
  }
}
@media only screen and (min-width: 641px) {
  body {
    overflow: visible !important;
  }
  #mobile-nav-wrapper {
    display: none !important;
  }
}
/*========== END MOBILE NAV ==========*/
/*====================
======================
END NAV CSS
======================
====================*/
/*====================
======================
HOME CSS
======================
====================*/
#home_instructions {
  font-family: 'EB Garamond', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #686868;
}
#map_search {
  padding-top: 20px;
}
#map_search button[type="submit"] {
  width: 100%;
  padding: 12px;
}
@media only screen and (max-width: 767px) {
  #map_search button[type="submit"] {
    margin-top: 10px;
  }
}
#map {
  height: 600px;
  margin-bottom: 40px;
}
#map .gm-style-iw h3 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #686868;
}
#map .gm-style-iw a {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #3d9991;
}
#map .gm-style-iw a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 640px) {
  #map {
    height: 400px;
  }
}
table#pantry-results {
  width: 100%;
}
table#pantry-results tr {
  border-bottom: 1px solid #CCCCCC;
}
table#pantry-results tr td {
  padding: 10px 0;
}
/*====================
======================
END HOME CSS
======================
====================*/
/*====================
======================
DETAIL CSS
======================
====================*/
#content-wrapper a {
  color: #0B6192;
}
#content-wrapper #cover-image {
  position: relative;
  height: 217px;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #F3F3F3;
}
#content-wrapper #cover-image .container {
  position: relative;
  z-index: 100;
  text-align: center;
}
#content-wrapper #cover-image .container.cover-content {
  max-width: 520px;
}
#content-wrapper #cover-image .container.availabilty-wrapper {
  margin-top: 20px;
}
#content-wrapper #cover-image .container.availabilty-wrapper img {
  display: inline-block;
  margin: 0 20px 20px 0;
}
#content-wrapper #cover-image .container.availabilty-wrapper img.last {
  margin-right: 0;
}
#content-wrapper #cover-image .container h1 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #464646;
  margin-top: 55px;
}
#content-wrapper #cover-image .container h4 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #484848;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #cover-image .container.availabilty-wrapper img {
    margin: 0 0 10px 0;
  }
  #content-wrapper #cover-image .container h1 {
    font-size: 32px;
  }
}
#content-wrapper #cover-image.dark .cover-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/static/images/transparent_overlay.png');
}
#content-wrapper #cover-image.dark .container h1 {
  color: #FFFFFF;
}
#content-wrapper #sections.detail-sections .section-wrapper {
  padding: 20px 0 0 0;
}
#content-wrapper #sections.detail-sections .section-wrapper.grey {
  padding-top: 80px;
}
#content-wrapper #sections.detail-sections .section-wrapper .feature {
  float: none;
  margin: 0 auto;
}
#content-wrapper #sections.detail-sections .section-wrapper .feature.top .feature-image {
  margin-bottom: 60px;
}
#content-wrapper #sections.detail-sections .section-wrapper .feature .feature-image {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin: 0 auto;
}
#content-wrapper #sections.detail-sections .section-wrapper .course-navigation {
  float: left;
  clear: both;
  width: 100%;
  margin: 20px 0 120px 0;
  padding-top: 40px;
  border-top: 1px solid #EBEBEB;
}
#content-wrapper #sections.detail-sections #contact-form .input-wrapper input[type="submit"] {
  margin: 30px 0;
}
/*---------- PAGE OVERRIDES ----------*/
#page-pantry-detail table {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 30px;
}
#page-pantry-detail table tr {
  border-bottom: 1px solid #CCCCCC;
}
#page-pantry-detail table tr td {
  padding: 16px 20px 16px 0;
  vertical-align: top;
  word-wrap: break-word;
}
#page-pantry-detail table tr td:first-child {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #3d9991;
  text-transform: uppercase;
  width: 200px;
}
#page-pantry-detail img.pantry-img {
  width: 100%;
  margin-bottom: 30px;
}
#page-pantry-detail h1.top-header {
  margin-bottom: 30px;
}
#page-pantry-detail .bottom-btn {
  margin-top: 10px;
}
#page-pantry-detail .edit-btn {
  margin-bottom: 30px;
}
#page-pantry-detail #map {
  height: 300px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 640px) {
  #page-pantry-detail #map {
    height: 200px;
  }
}
/*---------- END PAGE OVERRIDES ----------*/
/*====================
======================
END DETAIL CSS
======================
====================*/
