/*
// AQUA SCSS
/// Core CSS file for KWVE Redesign.
*/
/* Imports */
@font-face {
  font-family: "gotham";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/gotham-book.eot?#iefix") format("embedded-opentype"), url("../fonts/gotham-book.ttf") format("truetype"); }
@font-face {
  font-family: "gotham";
  font-style: normal;
  font-weight: light;
  src: url("../fonts/gotham-light.eot?#iefix") format("embedded-opentype"), url("../fonts/gotham-light.ttf") format("truetype"); }
@font-face {
  font-family: "gotham";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/gotham-medium.eot?#iefix") format("embedded-opentype"), url("../fonts/gotham-medium.ttf") format("truetype"); }
/* Set Colors */
/* Set Recurring Variables */
/* Set Initial Setup */
* {
  margin: 0;
  padding: 0; }

html, body {
  width: 100%;
  height: 100%; }

body {
  font-family: "gotham";
  font-size: 14px; }

/* Set Core Layout */
.wrap {
  min-height: 100%;
  margin: 0 auto -250px; }

.top-bar--container {
  display: none;
  width: 100%;
  padding: 10px;
  height: 40px;
  box-sizing: border-box;
  background: #035374; }
  .top-bar--container .top-bar--content {
    width: 500px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center; }
    .top-bar--container .top-bar--content a {
      text-decoration: none;
      color: #fff;
      text-transform: uppercase; }
    .top-bar--container .top-bar--content .recent-text {
      color: #21bfdc; }
    .top-bar--container .top-bar--content .recent-title {
      color: #fff; }
  .top-bar--container .live-image {
    vertical-align: sub;
    margin: 0 10px; }

.header--container {
  background: #fff;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 15px;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px; }

@media (max-width: 650px) {
  .logo {
    width: 40%;
    max-width: 100%; }
    .logo img {
      max-width: 100%; } }

.buttons {
  margin-top: 4px;
  box-sizing: border-box; }

@media (max-width: 650px) {
  .button[role="listen"], [role="listen"].blue-button, [role="listen"].dark-button {
    box-sizing: border-box;
    width: 26px;
    height: 21px;
    background: url(../images/listen-icon.png) no-repeat;
    overflow: hidden;
    text-indent: -9999px;
    border: 0;
    vertical-align: middle;
    padding: 5px; }
    .button[role="listen"]:hover, [role="listen"].blue-button:hover, [role="listen"].dark-button:hover {
      background: url(../images/listen-icon.png) no-repeat; } }

@media (max-width: 650px) {
  .button[role="directory"], [role="directory"].blue-button, [role="directory"].dark-button {
    box-sizing: border-box;
    width: 23px;
    height: 29px;
    background: url(../images/e-directory-icon.png) no-repeat;
    overflow: hidden;
    text-indent: -9999px;
    border: 0;
    vertical-align: middle;
    padding: 5px; }
    .button[role="directory"]:hover, [role="directory"].blue-button:hover, [role="directory"].dark-button:hover {
      background: url(../images/e-directory-icon.png) no-repeat; } }

.navi-hamburger {
  display: none;
  box-sizing: border-box;
  width: 28px;
  height: 24px;
  background: url(../images/hamburger.png) no-repeat;
  margin-left: 10px;
  vertical-align: middle;
  cursor: pointer;
  padding: 5px; }
  @media (max-width: 650px) {
    .navi-hamburger {
      display: inline-block; } }

.header-inside--nav {
  -webkit-transition: max-height 0.5s ease;
  -moz-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease; }
  @media (max-width: 650px) {
    .header-inside--nav {
      overflow: hidden;
      max-height: 0; } }
  .header-inside--nav.mobile-show {
    max-height: 1600px; }

.navi {
  margin-top: 50px;
  display: table;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-transition: max-height 0.1s linear;
  -moz-transition: max-height 0.1s linear;
  transition: max-height 0.1s linear; }
  @media (max-width: 650px) {
    .navi {
      -webkit-box-orient: vertical;
      -moz-box-orient: vertical;
      box-orient: vertical;
      -webkit-box-direction: normal;
      -moz-box-direction: normal;
      box-direction: normal;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      flex-direction: column;
      -ms-flex-direction: column; } }

.navi .nav {
  box-sizing: border-box;
  display: table-cell;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-family: "gotham";
  position: relative; }
  .navi .nav:hover .sub-nav {
    display: block; }
  .navi .nav a {
    font-size: 16px;
    color: #828a8f;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: color 0.1s linear;
    -moz-transition: color 0.1s linear;
    transition: color 0.1s linear; }
  .navi .nav:first-child {
    margin-left: 0;
    padding-left: 0; }
  .navi .nav:last-child {
    margin-right: 0;
    padding-right: 0; }
  .navi .nav:hover > a {
    color: #21bfdc; }
  @media (max-width: 650px) {
    .navi .nav {
      margin-top: 10px;
      margin-bottom: 10px;
      display: block;
      text-align: center; } }
  .navi .nav .sub-nav {
    display: none;
    z-index: 50;
    box-sizing: border-box;
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    top: 15px;
    padding-top: 20px;
    width: 100%;
    left: -20%; }
    .navi .nav .sub-nav > a {
      text-align: center;
      box-sizing: border-box;
      display: block;
      width: 95%;
      padding-top: 5px;
      padding-bottom: 5px;
      padding-left: 10px;
      padding-right: 10px; }
      .navi .nav .sub-nav > a:hover {
        color: #21bfdc; }
      @media (max-width: 650px) {
        .navi .nav .sub-nav > a {
          width: 100%;
          padding: 0; } }
    @media (max-width: 650px) {
      .navi .nav .sub-nav {
        display: block;
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        padding: 0;
        margin-top: 12px;
        margin-bottom: -5px; } }

.navi .nav a.current {
  color: #21bfdc; }

/* Set Buttons */
.event-info .button-hold {
  margin-top: 10px; }

.button-hold {
  margin-bottom: 10px;
  text-align: center; }
  .button-hold.right {
    text-align: right; }

.button, .blue-button, .dark-button {
  outline: none;
  background: transparent;
  border: 1px solid transparent;
  box-sizing: border-box;
  padding: 7px 14px 4px;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear; }

.blue-button {
  color: #0DC0DC;
  border-color: #0DC0DC; }
  .blue-button:hover {
    color: #fff;
    background: #0DC0DC; }

.dark-button {
  color: #000;
  border-color: #000; }
  .dark-button:hover {
    color: #fff;
    background: #000; }

/* Set Footer */
.footer, .push {
  height: 250px; }

.footer {
  box-sizing: border-box;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-left: 25px;
  padding-right: 25px;
  background: #231F20;
  color: #828a8f; }
  .footer .foot--left {
    float: left;
    width: 70%;
    max-width: 100%;
    -webkit-columns: 3 1em;
    -moz-columns: 3 1em;
    columns: 3 1em; }
    .footer .foot--left a {
      color: #c4c7c8;
      text-decoration: none; }
    .footer .foot--left .row {
      float: left;
      width: -webkit-calc(100% / 3);
      width: calc(100% / 3); }
      .footer .foot--left .row a {
        display: inline-block;
        margin-bottom: 12.5px;
        text-transform: uppercase;
        font-size: 14px; }
        .footer .foot--left .row a:nth-child(3n+3) {
          margin-bottom: 0; }
    @media (max-width: 650px) {
      .footer .foot--left {
        display: none; } }
  .footer .foot--right {
    float: right;
    width: 30%;
    max-width: 100%; }
    @media (max-width: 650px) {
      .footer .foot--right {
        float: none;
        width: 100%; } }
  .footer .foot-button {
    margin-top: 1px;
    margin-bottom: 10px;
    display: block;
    text-align: center; }
  .footer .social-bar {
    display: table;
    width: 98%;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    box-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: distribute; }
    .footer .social-bar .social-link {
      margin-top: 10px;
      margin-bottom: 10px;
      display: table-cell;
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex; }
      .footer .social-bar .social-link:first-child {
        margin-left: 5px; }
      .footer .social-bar .social-link:last-child {
        margin-right: 0; }
      .footer .social-bar .social-link[role="youtube"] {
        width: 27px;
        height: 24px;
        background: url(../images/youtube-icon.png) no-repeat; }
      .footer .social-bar .social-link[role="facebook"] {
        width: 12px;
        height: 23px;
        background: url(../images/facebook-icon.png) no-repeat; }
      .footer .social-bar .social-link[role="twitter"] {
        width: 25px;
        height: 20px;
        background: url(../images/twitter-icon.png) no-repeat -2px 0; }
      .footer .social-bar .social-link[role="instagram"] {
        width: 23px;
        height: 21px;
        background: url(../images/instagram-icon.png) no-repeat; }
  .footer .foot--copy {
    text-align: center;
    margin-top: 50px;
    text-transform: uppercase; }

/*
// Program Page
///
*/
.program-list--home {
  background: #231F20; }
  .program-list--home h3 {
    text-align: center;
    color: #21bfdc;
    padding-top: 15px;
    padding-bottom: 15px; }

.radio-programs {
  background: #231F20;
  box-sizing: border-box;
  width: 100%; }
  .radio-programs .program--week-hold {
    border-top: 1px solid #DBDBDC;
    border-bottom: 1px solid #DBDBDC; }
  .radio-programs .program--week {
    display: table;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify; }
    .radio-programs .program--week .program-link {
      box-sizing: border-box;
      color: #828a8f;
      text-transform: uppercase;
      padding: 20px;
      display: table-cell;
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-basis: auto;
      -moz-flex-basis: auto;
      flex-basis: auto;
      -ms-flex-preferred-size: auto;
      cursor: pointer;
      font-size: 14px; }
      .radio-programs .program--week .program-link:hover {
        background: #3B3A3C;
        color: #21bfdc; }
      .radio-programs .program--week .program-link.active {
        background: #231F20;
        color: #21bfdc; }

.program-row {
  display: none;
  background: #3B3A3C;
  color: #fff;
  cursor: pointer; }
  .program-row .program-hold {
    box-sizing: border-box;
    width: 100%;
    display: block;
    color: #fff;
    text-decoration: none; }
    .program-row .program-hold:hover, .program-row .program-hold.active {
      background: #231F20;
      color: #21bfdc; }
    .program-row .program-hold .program-info {
      padding-left: 15px;
      padding-right: 15px; }
    .program-row .program-hold .program-info h4 {
      display: inline-block;
      box-sizing: border-box;
      width: -webkit-calc(100% / 3);
      width: calc(100% / 3); }
      @media (max-width: 550px) {
        .program-row .program-hold .program-info h4 {
          width: -webkit-calc(100% / 2);
          width: calc(100% / 2); } }
    .program-row .program-hold .sub-info {
      display: none;
      box-sizing: border-box;
      width: 100%;
      padding-top: 15px;
      padding-bottom: 15px;
      color: #fff;
      cursor: default; }
      .program-row .program-hold .sub-info .float-left, .program-row .program-hold .sub-info .float-right {
        padding-left: 15px;
        padding-right: 15px; }
      .program-row .program-hold .sub-info .radio-image {
        width: 25%;
        max-width: 100%;
        box-sizing: border-box;
        padding-right: 0; }
        .program-row .program-hold .sub-info .radio-image img {
          max-width: 100%; }
        @media (max-width: 500px) {
          .program-row .program-hold .sub-info .radio-image {
            width: 40%; } }
      .program-row .program-hold .sub-info .radio-text {
        width: 70%;
        max-width: 100%;
        box-sizing: border-box; }
        @media (max-width: 500px) {
          .program-row .program-hold .sub-info .radio-text {
            width: 60%; } }
      .program-row .program-hold .sub-info .radio-info {
        margin-bottom: 10px; }
        .program-row .program-hold .sub-info .radio-info .title {
          margin-bottom: 5px; }
      .program-row .program-hold .sub-info .button, .program-row .program-hold .sub-info .blue-button, .program-row .program-hold .sub-info .dark-button {
        margin-top: 10px; }
  .program-row.active {
    display: block; }

/* Inside Program Pages */
.program-info {
  width: 100%;
  box-sizing: border-box;
  padding-top: 15px;
  padding-bottom: 15px; }
  .program-info .program-desc {
    box-sizing: border-box;
    padding: 15px;
    width: 50%;
    max-width: 100%; }
    .program-info .program-desc .program-title {
      margin-bottom: 25px; }
    @media (max-width: 500px) {
      .program-info .program-desc {
        float: none;
        width: 100%; } }
  .program-info .program-image {
    box-sizing: border-box;
    padding: 15px;
    width: 40%;
    max-width: 100%;
    text-align: center; }
    .program-info .program-image img {
      max-width: 100%; }
    @media (max-width: 500px) {
      .program-info .program-image {
        float: none;
        width: 100%; } }

.program-button {
  margin-top: 15px;
  margin-bottom: 15px; }

/*
// Event Page
///
*/
.event-hold {
  background: #231F20;
  box-sizing: border-box;
  width: 100%;
  color: #fff;
  border-top: 1px solid #828a8f; }

.event {
  border-bottom: 1px solid #828a8f;
  box-sizing: border-box;
  background: #231F20;
  color: #fff; }
  .event .event-image {
    float: left;
    box-sizing: border-box;
    padding: 20px;
    width: 25%;
    max-width: 100%; }
    .event .event-image img {
      max-width: 100%; }
    @media (max-width: 500px) {
      .event .event-image {
        width: 35%; } }
  .event .event-info {
    float: left;
    box-sizing: border-box;
    padding: 20px;
    width: 75%;
    max-width: 100%; }
    .event .event-info .event-date {
      color: #21bfdc;
      display: block;
      margin-bottom: 10px; }
    .event .event-info .event-title-time {
      display: block;
      margin-bottom: 10px; }
    .event .event-info h4 {
      line-height: 28px; }
    @media (max-width: 500px) {
      .event .event-info {
        width: 65%; }
        .event .event-info .float-left, .event .event-info .float-right {
          float: none; } }
  .event:last-child {
    border-bottom: 1px solid transparent; }

/*
// Advertising Page
///
*/
.advertiser-hold {
  margin-bottom: 15px;
  box-sizing: border-box; }
  .advertiser-hold .advert-cat-title {
    border-bottom: 1px solid #c4c7c8;
    padding: 15px;
    margin-top: 30px; }
  .advertiser-hold .advert-listing {
    border-bottom: 1px solid #c4c7c8; }
    .advertiser-hold .advert-listing .list-title {
      padding: 15px;
      width: 39%; }
      .advertiser-hold .advert-listing .list-title.number {
        text-align: center; }
    .advertiser-hold .advert-listing a {
      color: #21bfdc;
      text-decoration: none;
      -webkit-transition: all 0.1s linear;
      -moz-transition: all 0.1s linear;
      transition: all 0.1s linear; }
      .advertiser-hold .advert-listing a:hover {
        text-decoration: underline; }

/*
// Video Page
///
*/
.video-hold {
  background: #231F20;
  box-sizing: border-box;
  width: 100%;
  color: #fff;
  border-top: 2px solid #828a8f; }
  .video-hold .content {
    box-sizing: border-box;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 25px; }

.block-hold.blackest {
  background-color: #231F20; }

.video-box {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden; }
  .video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*
// Bumper Sticker & Contact Page
///
*/
/* Bumper Sticker & Contact Page */
.content-box {
  margin-top: 50px; }

.bumper, .contact {
  width: 50%; }
  .bumper h1, .contact h1 {
    width: 80%;
    margin: 0 8% 30px; }
  .bumper input, .bumper textarea, .bumper select, .contact input, .contact textarea, .contact select {
    width: 80%;
    margin: 0 8%;
    height: 35px;
    margin-bottom: 20px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 14px;
    border: 1px solid #3B3A3C;
    box-sizing: border-box;
    -webkit-transition: border-color 0.1s linear;
    -moz-transition: border-color 0.1s linear;
    transition: border-color 0.1s linear; }
    .bumper input.happy, .bumper textarea.happy, .bumper select.happy, .contact input.happy, .contact textarea.happy, .contact select.happy {
      border-color: #56D568; }
    .bumper input.sad, .bumper textarea.sad, .bumper select.sad, .contact input.sad, .contact textarea.sad, .contact select.sad {
      border-color: #D0021B; }
    .bumper input.thirds, .bumper textarea.thirds, .bumper select.thirds, .contact input.thirds, .contact textarea.thirds, .contact select.thirds {
      width: 23%;
      margin-right: 3%;
      float: left; }
      .bumper input.thirds:first-child, .bumper textarea.thirds:first-child, .bumper select.thirds:first-child, .contact input.thirds:first-child, .contact textarea.thirds:first-child, .contact select.thirds:first-child {
        margin-right: -6%; }
    .bumper input.action, .bumper textarea.action, .bumper select.action, .contact input.action, .contact textarea.action, .contact select.action {
      width: 100px;
      text-align: center;
      border: 1px solid #21bfdc;
      color: #21bfdc;
      background: #fff;
      text-transform: uppercase;
      cursor: pointer;
      -webkit-transition: all 0.1s linear;
      -moz-transition: all 0.1s linear;
      transition: all 0.1s linear; }
      .bumper input.action:hover, .bumper textarea.action:hover, .bumper select.action:hover, .contact input.action:hover, .contact textarea.action:hover, .contact select.action:hover {
        color: #fff;
        background: #21bfdc; }
  .bumper .Actions, .contact .Actions {
    text-align: center; }
    @media (max-width: 600px) {
      .bumper .Actions, .contact .Actions {
        width: 100%; } }
    .bumper .Actions input[type="submit"]:disabled, .contact .Actions input[type="submit"]:disabled {
      border: 1px solid #DBDBDC;
      color: #DBDBDC;
      cursor: not-allowed; }
      .bumper .Actions input[type="submit"]:disabled:hover, .contact .Actions input[type="submit"]:disabled:hover {
        background: transparent !important;
        color: #DBDBDC !important; }
  .bumper img, .contact img {
    width: 80%;
    margin: 5% 10%; }
  .bumper select, .contact select {
    background-color: #fff;
    border: 1px solid #3B3A3C; }
    .bumper select.place_holder, .contact select.place_holder {
      color: grey; }
  @media (max-width: 600px) {
    .bumper, .contact {
      width: 100%;
      float: none !important;
      box-sizing: border-box; } }

/*
// Contact Page Specific
///
*/
.contact textarea {
  padding-top: 10px;
  height: 300px; }
.contact h4 {
  margin: 20px 20px 35px 0; }
.contact h6 {
  line-height: 22px;
  margin: 8px 0; }
.contact .Actions {
  width: 80%;
  margin: 0 8% 0 0;
  padding: 0 10px; }
  @media (max-width: 600px) {
    .contact .Actions {
      width: 95%; } }
.contact .inline {
  display: inline; }
.contact .block-text:nth-child(2) {
  margin-top: 30px; }
.contact.contact--text {
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 60px; }

/* Set Typography */
h1 {
  font-size: 35px;
  line-height: 42px; }

h2 {
  font-size: 24px;
  line-height: 29px; }

h3 {
  font-size: 20px;
  line-height: 24px; }

h4 {
  font-size: 18px;
  line-height: 22px; }

h5 {
  font-size: 16px;
  line-height: 19px; }

h6 {
  font-size: 14px;
  line-height: 14px; }

p {
  font-size: 14px;
  line-height: 22px; }

a {
  font-size: 14px;
  line-height: 14px;
  color: #21bfdc; }

@media (max-width: 500px) {
  h1 {
    font-size: 24px; }

  h2 {
    font-zize: 20px; }

  h3 {
    font-size: 16px; }

  h4 {
    font-size: 14px; }

  h5 {
    font-size: 14px; }

  h6 {
    font-size: 14px; }

  p {
    font-size: 14px; } }
input, textarea, select {
  font-family: gotham;
  outline: none;
  -ms-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

select {
  -webkit-appearance: none;
  -webkit-border-radius: 0px; }

.yell {
  text-transform: uppercase; }

.lightblue {
  color: #21bfdc; }

/* Set Core Concepts */
.page-title {
  background: #231F20;
  color: #fff;
  padding-top: 12px;
  padding-bottom: 8px;
  text-align: center;
  text-transform: uppercase; }

/* Non-Specific Pages */
.main-content {
  box-sizing: border-box;
  padding: 15px 0 45px; }

.float-left {
  float: left; }

.float-right {
  float: right; }

.align-middle {
  width: 1100px;
  max-width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  clear: both; }
  .align-middle.flex {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex; }
  .align-middle h1 {
    padding-top: 30px;
    padding-bottom: 15px; }

/* Feature Blocks */
.content-block {
  box-sizing: border-box;
  width: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-left: 25px;
  padding-right: 25px; }
  .content-block:first-child {
    padding-top: 85px; }
  .content-block .content--image {
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    width: 40%; }
    .content-block .content--image img {
      max-width: 100%; }
    @media (max-width: 600px) {
      .content-block .content--image {
        text-align: center;
        width: 100%;
        float: none !important; } }
    .content-block .content--image.left {
      text-align: left; }
    .content-block .content--image.center {
      text-align: center; }
    .content-block .content--image.right {
      text-align: right; }
  .content-block .content--text {
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    width: 60%; }
    @media (max-width: 600px) {
      .content-block .content--text {
        width: 100%;
        float: none !important; } }
    .content-block .content--text h2 {
      margin-bottom: 10px; }
  .content-block.left .content--image {
    float: left;
    margin-bottom: 20px; }
  .content-block.left .content--text {
    float: right; }
  .content-block.right .content--image {
    float: right;
    margin-bottom: 20px; }
  .content-block.right .content--text {
    float: left; }
  .content-block.black {
    background: #231F20;
    color: #fff; }
  .content-block.grey {
    background: #DBDBDC;
    color: #3B3A3C; }
  .content-block.white {
    background: #fff;
    color: #3B3A3C; }

.padding {
  box-sizing: border-box;
  padding: 15px; }

.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after {
  clear: both; }

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
  *zoom: 1; }

.clear {
  clear: both; }

/* Set Font Formatting */
/* Media Query Classes */
@media (max-width: 550px) {
  .media-desktop {
    display: none !important; } }

.wrap.security {
  background: url(../images/beach.jpg) fixed no-repeat center/cover; }

.login-container {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center; }

.login {
  box-sizing: border-box;
  padding: 20px;
  background: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  align-items: center;
  min-height: 30vh;
  min-width: 30vw;
  -webkit-animation: fadeIn 1.5s;
  -moz-animation: fadeIn 1.5s;
  animation: fadeIn 1.5s; }
  .login .site-logo {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    text-align: center;
    margin-bottom: 25px; }
    .login .site-logo img {
      max-width: 100%; }
  .login .site-login {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    box-sizing: border-box; }
    .login .site-login .Actions {
      text-align: center; }
    .login .site-login .form input[type="email"], .login .site-login .form input[type="text"], .login .site-login .form input[type="password"] {
      box-sizing: border-box;
      width: 100%;
      height: 35px;
      margin-top: 10px;
      margin-bottom: 20px;
      padding: 0 10px;
      font-size: 14px;
      line-height: 14px;
      border: 1px solid #ccc; }
      .login .site-login .form input[type="email"]:focus, .login .site-login .form input[type="text"]:focus, .login .site-login .form input[type="password"]:focus {
        border: 1px solid #21bfdc; }
      .login .site-login .form input[type="email"].happy, .login .site-login .form input[type="text"].happy, .login .site-login .form input[type="password"].happy {
        border-color: #56D568; }
      .login .site-login .form input[type="email"].sad, .login .site-login .form input[type="text"].sad, .login .site-login .form input[type="password"].sad {
        border-color: #D0021B; }
    .login .site-login .form input[type="submit"] {
      margin-top: 10px;
      margin-bottom: 10px;
      outline: none;
      box-sizing: border-box;
      padding: 7px 14px 4px;
      text-decoration: none;
      font-size: 14px;
      text-transform: uppercase;
      cursor: pointer;
      display: inline-block;
      width: 100px;
      text-align: center;
      border: 1px solid #21bfdc;
      color: #21bfdc;
      background: transparent;
      text-transform: uppercase;
      -webkit-transition: all 0.1s linear;
      -moz-transition: all 0.1s linear;
      transition: all 0.1s linear; }
      .login .site-login .form input[type="submit"]:hover {
        color: #fff;
        background: #21bfdc; }
      .login .site-login .form input[type="submit"]:active {
        color: #fff;
        background: #025273; }
      .login .site-login .form input[type="submit"]:disabled {
        border: 1px solid #DBDBDC;
        color: #DBDBDC; }
        .login .site-login .form input[type="submit"]:disabled:hover {
          background: transparent !important;
          color: #DBDBDC !important; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
