/* =========================

App: CraftDump
Version: 1.0
Author: Hardik Manktala
Contact:
	- http://www.hardikmanktala.com
	- chat@hardikmanktala.com
	- Skype: hardik.manktala

========================= */
/* ======================

root.css - Main Stylesheet

======================= */
/* === FONTS === */
/* === COLOURS === */
/* === OTHER === */
@import url("https://fonts.googleapis.com/css?family=Cherry+Swash|Raleway:300,400,700|Roboto");
/* =========
GENERAL
======== */
body, html {
  width: 100%;
  overflow-x: hidden; }

body {
  background: #f4f4f4;
  padding: 0px !important; }

::-moz-selection {
  /* Code for Firefox */
  color: white;
  background: rgba(181, 65, 65, 0.4);
  padding: 10px; }

::selection {
  color: white;
  background: rgba(181, 65, 65, 0.4);
  padding: 10px; }

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.include-flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }

.flex-wrap {
  flex-wrap: wrap; }

.align-self-center {
  align-self: center; }

.justify-content-center {
  justify-content: center; }

.padding-top {
  padding-top: 80px; }

.padding-bottom {
  padding-bottom: 80px; }

.preloader {
  position: fixed;
  z-index: 9999999;
  background: white;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  width: 100vw;
  height: 100vh;
  justify-content: center; }
  .preloader .preloader-gif {
    align-self: center; }
    .preloader .preloader-gif img {
      width: 100px; }
  .preloader .text {
    color: #b94141;
    text-align: center;
    font-size: 3em;
    letter-spacing: 2px;
    font-family: "Raleway", sans-serif; }

.modalOutput {
  background: #32C2B1;
  text-align: center;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1.3px;
  color: white;
  border-radius: 3px;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 0.9em;
  -webkit-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease; }
  .modalOutput.margin-none {
    margin: none; }
  .modalOutput.direct {
    position: absolute;
    top: 0;
    z-index: 999999999;
    width: 100%; }

.modal {
  z-index: 9999999 !important; }

.modal-backdrop {
  z-index: 999999; }

#globalAlert {
  position: absolute;
  top: 75px;
  background: #32C2B1;
  color: white;
  padding: 15px;
  font-family: "Raleway", sans-serif;
  text-align: center;
  letter-spacing: 1.3px;
  left: 0;
  width: 100%;
  z-index: 100; }

.comment-para {
  font-family: "Raleway", sans-serif;
  letter-spacing: 1.2px; }
  .comment-para a {
    color: #b94141; }

.content-panel {
  background: white;
  border-radius: 6px;
  width: 100%;
  -webkit-box-shadow: -1px 2px 126px -35px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: -1px 2px 126px -35px rgba(0, 0, 0, 0.14);
  box-shadow: -1px 2px 126px -35px rgba(0, 0, 0, 0.14); }
  .content-panel .panel-header {
    padding: 20px;
    text-align: center;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #212121;
    font-size: 1.1em;
    opacity: 0.6;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 20px; }
    .content-panel .panel-header p {
      margin: 0px;
      letter-spacing: 1.3px; }
    .content-panel .panel-header .tagline {
      font-size: 0.75em;
      text-transform: none;
      font-weight: normal;
      margin-top: 10px; }
  .content-panel .panel-body {
    padding: 20px; }

.uploadLabel {
  border-radius: 3px;
  border: none;
  padding: 12px 20px 12px 20px;
  background: #b94141;
  margin: none;
  -webkit-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  cursor: pointer;
  color: white;
  border: 2px solid transparent; }
  .uploadLabel input[type="file"] {
    opacity: 0; }
  .uploadLabel:hover {
    opacity: 0.5; }
  .uploadLabel:invalid + span {
    color: white;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1.2px; }
  .uploadLabel:valid, .uploadLabel:active {
    border: 2px solid #b94141;
    color: #b94141;
    background: transparent; }
  .uploadLabel:valid + span {
    color: #b94141; }

.btn.btn-primary {
  border-radius: 3px;
  background: #b94141;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1.3px;
  padding: 12px 20px 12px 20px;
  border: none;
  -webkit-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  font-size: 0.85em; }
  .btn.btn-primary:hover {
    opacity: 0.5; }

.control-label {
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.84em;
  opacity: 0.4;
  letter-spacing: 1.2px; }

.form-control {
  box-shadow: none !important;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1.25px;
  height: 50px; }
  .form-control:focus {
    border: 1px solid #b94141; }

#notificationDropdown {
  word-wrap: break-word; }
  #notificationDropdown .no-not a {
    opacity: 0.5;
    font-weight: 100;
    font-size: 0.8em;
    text-align: center;
    cursor: default;
    background: transparent !important; }
  #notificationDropdown .notification-li a {
    word-wrap: break-work; }
    #notificationDropdown .notification-li a .title {
      font-size: 0.9em;
      font-weight: bold;
      display: block;
      margin-bottom: 3px;
      opacity: 1;
      height: 17px;
      color: #b94141; }
    #notificationDropdown .notification-li a .body {
      font-size: 0.85em;
      font-weight: normal;
      opacity: 1; }

#primary-nav {
  background: white;
  height: 75px;
  border: none;
  border-radius: none;
  margin: 0px;
  z-index: 999999; }
  #primary-nav .navbar-brand {
    height: 75px;
    line-height: 45px;
    color: #212121;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.3em;
    -webkit-transition: 1s ease;
    -ms-transition: 1s ease;
    -moz-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease; }
    #primary-nav .navbar-brand span {
      color: #C3C3C3;
      -webkit-transition: 0.2s ease;
      -ms-transition: 0.2s ease;
      -moz-transition: 0.2s ease;
      -o-transition: 0.2s ease;
      transition: 0.2s ease; }
    #primary-nav .navbar-brand:hover span {
      color: #b94141; }
  #primary-nav .nav-avatar {
    width: 30px;
    border-radius: 3px;
    margin-right: 10px; }
  #primary-nav .dropdown-caret {
    margin-left: 10px; }
  #primary-nav .navbar-nav li a {
    height: 75px;
    outline: none;
    line-height: 45px;
    font-family: "Raleway", sans-serif;
    color: #C3C3C3;
    letter-spacing: 1.2px;
    font-size: 0.9em;
    -webkit-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    font-weight: 700; }
    #primary-nav .navbar-nav li a:hover {
      color: #212121;
      background: transparent !important; }
    #primary-nav .navbar-nav li a .special {
      color: #b94141; }
    #primary-nav .navbar-nav li a:focus {
      background: #f7f7f7 !important;
      color: #b94141; }
  #primary-nav .navbar-nav .dropdown-menu {
    margin: 0px;
    padding: 0px;
    border: none; }
    #primary-nav .navbar-nav .dropdown-menu li {
      height: auto; }
      #primary-nav .navbar-nav .dropdown-menu li a {
        height: auto;
        padding: 15px;
        padding-top: 5px;
        padding-bottom: 5px; }
        #primary-nav .navbar-nav .dropdown-menu li a i {
          margin-right: 10px; }
        #primary-nav .navbar-nav .dropdown-menu li a:hover {
          background: #f7f7f7 !important; }
  #primary-nav .navbar-nav .btn-navbar {
    color: white;
    background: #b94141;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: bold;
    font-size: 0.8em; }

.news-strip {
  background: #32C2B1;
  padding: 15px;
  color: white; }
  .news-strip p, .news-strip a {
    display: inline-block;
    vertical-align: middle; }
  .news-strip p {
    margin-bottom: 0px;
    margin-right: 20px;
    color: white;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1.3px; }
    .news-strip p a {
      color: white;
      font-weight: 700; }
  .news-strip .btn-news {
    border: 0px;
    border-radius: 3px;
    background: white;
    color: #32C2B1;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8em;
    margin-left: 20px;
    padding: 10px 20px 10px 20px; }

#notification-nav {
  position: relative; }
  #notification-nav .dropdown-menu {
    max-width: 500px;
    width: 300px; }
  #notification-nav a {
    position: relative;
    font-size: 1.2em !important; }
  #notification-nav .ringer {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #b94141;
    border-radius: 100%;
    top: 25px;
    right: 12px; }
  #notification-nav .dropdown-menu li a {
    font-size: 0.9em !important; }

#hero {
  background: url("../img/hero_bg_1.jpg");
  position: relative;
  background-position: top;
  min-height: 100vh;
  background-size: cover;
  z-index: 2; }
  @media screen and (min-width: 1200px) {
    #hero {
      min-height: 90vh; } }
  #hero .hero-background-overlay {
    position: absolute;
    opacity: 0.5;
    background: #b94141;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    z-index: -1; }
  #hero .hero-float {
    color: white;
    align-self: center; }
  #hero .feat-cat {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px; }
  #hero .product-meta .product-logo {
    position: relative;
    max-width: 450px;
    text-align: center;
    width: 400px;
    margin: 0 auto; }
    #hero .product-meta .product-logo img {
      width: 100%;
      margin: 0 auto; }
  #hero .product-meta .price-badge {
    color: white;
    background: #32C2B1;
    display: block;
    position: absolute;
    top: 0;
    left: -70px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    width: 60px;
    height: 60px;
    border: 3px solid white;
    border-radius: 100%;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    justify-content: center;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg); }
    #hero .product-meta .price-badge span {
      align-self: center;
      font-size: 1em;
      letter-spacing: 1.3px; }
  #hero .product-lil-description {
    margin-top: 35px;
    margin-bottom: 20px; }
    #hero .product-lil-description p {
      font-family: "Raleway", sans-serif;
      margin: 0px;
      letter-spacing: 1.3px;
      font-size: 1.3em; }
  #hero .cta-btns {
    margin-top: 30px; }

.btn-hero {
  padding: 15px 30px 15px 30px;
  min-width: 120px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1.3px;
  border: 2px solid white;
  min-width: 180px;
  -webkit-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease; }
  .btn-hero.btn-hollow {
    background: transparent;
    color: white; }
    .btn-hero.btn-hollow:hover, .btn-hero.btn-hollow:focus {
      border-color: white; }
    .btn-hero.btn-hollow:active {
      border-color: white;
      background: white;
      color: #b94141; }
  .btn-hero.btn-filled {
    background: white;
    color: #b94141; }
    .btn-hero.btn-filled:hover, .btn-hero.btn-filled:focus {
      border-color: white; }
    .btn-hero.btn-filled:active {
      border-color: white;
      background: transparent;
      color: white; }

.product-feature-row {
  max-width: 900px;
  color: white; }
  .product-feature-row img {
    width: 100%; }
  .product-feature-row .feature .icon img {
    width: 30%; }
  .product-feature-row .feature .feature-title {
    margin-top: 15px;
    margin-bottom: 30px;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px; }

#edit-profile {
  background: url("../img/hero_bg_2.jpg");
  background-size: cover;
  position: relative;
  z-index: 2; }
  #edit-profile .overlay {
    position: absolute;
    background: #b94141;
    opacity: 0.4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; }
  #edit-profile .form-holder {
    width: 70%;
    margin: 0 auto;
    text-align: center; }
    @media screen and (max-width: 540px) {
      #edit-profile .form-holder {
        width: 100%; } }
  #edit-profile .avatar-holder {
    position: relative;
    z-index: 2; }
    #edit-profile .avatar-holder img {
      width: 100%; }
    #edit-profile .avatar-holder .user-avatar-label {
      opacity: 0.7;
      position: absolute;
      width: 100%;
      z-index: 2;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      top: 0;
      left: 0;
      cursor: pointer;
      -webkit-transition: 0.5s ease;
      -ms-transition: 0.5s ease;
      -moz-transition: 0.5s ease;
      -o-transition: 0.5s ease;
      transition: 0.5s ease;
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      justify-content: center; }
      #edit-profile .avatar-holder .user-avatar-label input[type="file"] {
        position: absolute;
        left: -999999px; }
      #edit-profile .avatar-holder .user-avatar-label span {
        align-self: center;
        font-size: 1.4em; }
      #edit-profile .avatar-holder .user-avatar-label:hover {
        opacity: 1; }
  #edit-profile .btn.btn-primary {
    margin-top: 10px;
    width: 100%; }
    #edit-profile .btn.btn-primary.short {
      width: 100px; }
  #edit-profile .form-group.inside {
    margin-bottom: 20px;
    text-align: left; }
  #edit-profile .input-group {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    flex: 1; }
    #edit-profile .input-group .btn.btn-primary {
      margin: 0px;
      width: auto; }
    @media screen and (max-width: 540px) {
      #edit-profile .input-group {
        display: block; } }

#product-hero {
  background: url("../img/hero_bg_2.jpg");
  background-size: cover;
  position: relative;
  z-index: 2;
  background-position: top center; }
  #product-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    background: #b94141;
    opacity: 0.5; }
  #product-hero .product-hero-row {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    flex-wrap: wrap;
    flex: 1; }
    #product-hero .product-hero-row [class*="col-"] {
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */ }
  #product-hero .product-preview-img {
    border-radius: 10px;
    -webkit-box-shadow: 2px 0px 98px -32px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 0px 98px -32px rgba(0, 0, 0, 0.75);
    box-shadow: 2px 0px 98px -32px rgba(0, 0, 0, 0.75); }
  #product-hero .product-logo {
    max-width: 50%;
    margin: 0 auto; }
    #product-hero .product-logo img {
      width: 100%; }
  #product-hero .product-meta {
    margin-top: 50px;
    align-self: center; }
    #product-hero .product-meta .cta-btns {
      margin-top: 30px;
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */ }
      #product-hero .product-meta .cta-btns .btn-hero {
        flex-grow: 1;
        flex-basis: 0;
        min-width: 120px;
        font-size: 0.9em; }
      #product-hero .product-meta .cta-btns .btn-filled {
        color: #212121; }
  #product-hero .product-feature-row {
    margin-bottom: 30px; }
  #product-hero .license-strip {
    color: white;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1.2px;
    font-weight: 100; }
    #product-hero .license-strip a {
      color: white;
      font-weight: 700;
      margin-left: 15px;
      padding-left: 15px;
      border-left: 1px solid rgba(255, 255, 255, 0.5); }

#product-desc {
  position: relative;
  z-index: 2; }
  #product-desc h1 {
    font-family: "Raleway", sans-serif;
    letter-spacing: 1.2px;
    font-size: 1em;
    font-weight: bold;
    opacity: 0.8;
    margin-bottom: 20px;
    text-transform: uppercase; }
  #product-desc p {
    margin-bottom: 10px;
    margin-top: 10px;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1.2px;
    opacity: 1;
    line-height: 25px; }
    #product-desc p a {
      color: #b94141; }
  #product-desc .text-desc {
    padding-bottom: 30px;
    border-bottom: 1px solid #e4e4e4; }
  #product-desc .product-meta-desc {
    text-align: center;
    padding-top: 30px; }
    #product-desc .product-meta-desc .meta-block {
      display: inline-block;
      margin-right: 30px;
      font-family: "Roboto", sans-serif;
      letter-spacing: 1.2px;
      opacity: 0.7; }
      #product-desc .product-meta-desc .meta-block:last-child {
        margin-right: 0px; }
      #product-desc .product-meta-desc .meta-block i {
        margin-right: 6px; }

#comments {
  background: #e4e4e4; }
  #comments .comment-reply-form {
    width: 100%; }
  #comments .section-container {
    background: white;
    min-height: 20px;
    position: relative;
    -webkit-box-shadow: -1px 24px 46px -2px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: -1px 24px 46px -2px rgba(0, 0, 0, 0.22);
    box-shadow: -1px 24px 46px -2px rgba(0, 0, 0, 0.22);
    padding: 40px; }
    #comments .section-container h3 {
      font-family: "Raleway", sans-serif;
      color: #212121;
      opacity: 0.7;
      font-weight: bold;
      font-size: 1.3em;
      text-transform: uppercase; }
  #comments .comment-form {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f4f4f4; }
    #comments .comment-form .form-control {
      box-shadow: none;
      outline: none;
      border: 1px solid #e4e4e4;
      border-radius: 3px;
      font-family: "Raleway", sans-serif;
      letter-spacing: 1.3px;
      margin-bottom: 15px; }
    #comments .comment-form .btn-comment {
      background: #b94141;
      color: white;
      text-transform: uppercase;
      letter-spacing: 1.3px;
      padding: 12px 25px 12px 25px;
      font-weight: bold;
      font-family: "Raleway", sans-serif;
      border: 0px;
      border-radius: 3px;
      font-size: 0.8em; }

.comments-holder .comment-hierarchy {
  padding-bottom: 20px;
  border-bottom: 1px solid #f4f4f4; }
.comments-holder .comment-parent {
  display: block;
  width: 100%; }
.comments-holder .comment-reply {
  width: 90%;
  margin-left: auto;
  display: block; }
.comments-holder .comment-parent, .comments-holder .comment-reply {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  padding: 20px; }
.comments-holder .user-avatar, .comments-holder .user-comment {
  position: relative; }
.comments-holder .user-avatar {
  width: 15%;
  text-align: center; }
  .comments-holder .user-avatar img {
    margin: 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 100%; }
.comments-holder .user-comment {
  width: 90%; }
  .comments-holder .user-comment p {
    font-family: "Raleway", sans-serif;
    line-height: 23px;
    letter-spacing: 1.1px;
    margin-bottom: 0px;
    word-wrap: break-word; }
  .comments-holder .user-comment .user-meta {
    margin-bottom: 3px;
    font-size: 0.8em;
    font-weight: bold;
    opacity: 1; }
    .comments-holder .user-comment .user-meta .date {
      opacity: 0.8;
      font-weight: normal;
      margin-left: 10px; }
  .comments-holder .user-comment .reply-btn {
    margin-top: 10px;
    font-size: 0.9em;
    font-weight: bold; }
    .comments-holder .user-comment .reply-btn a {
      color: #b94141;
      opacity: 0.5;
      text-decoration: none; }

#preview-hero {
  background: url("../img/hero_bg_1.jpg");
  background-size: cover;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 100px; }
  #preview-hero .btn.btn-preview {
    margin-top: 40px;
    border: 2px solid transparent;
    min-width: 160px;
    background: #b94141; }
    #preview-hero .btn.btn-preview.btn-inverse {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.2); }
  #preview-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #b94141;
    opacity: 0.5;
    z-index: -1;
    top: 0;
    left: 0; }
  #preview-hero img {
    width: 40%; }
  #preview-hero h3 {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Raleway", sans-serif;
    font-size: 1em;
    letter-spacing: 1.3px;
    margin-top: 50px; }

#dashboard {
  min-height: 60vh;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center; }
  #dashboard .floater {
    align-self: center; }
    #dashboard .floater img {
      width: 300px;
      display: block; }
    #dashboard .floater .btn {
      display: block;
      margin-top: 30px; }

.four-wrapper {
  background: white;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  min-height: 100vh;
  width: 100vw; }
  .four-wrapper .floater {
    align-self: center;
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2; }
    .four-wrapper .floater .four {
      font-size: 16em;
      margin-bottom: 50px;
      font-family: "Raleway", sans-serif;
      color: #212121;
      opacity: 0.1;
      position: absolute;
      z-index: -1;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      display: block; }
    .four-wrapper .floater h1 {
      font-family: "Raleway", sans-serif;
      font-weight: bold;
      margin-bottom: 20px;
      font-size: 5em;
      color: #b94141; }
    .four-wrapper .floater p {
      font-family: "Raleway", sans-serif;
      letter-spacing: 1.3px;
      font-size: 1.2em;
      font-weight: bold;
      margin-bottom: 20px; }
    .four-wrapper .floater a {
      margin: 0 auto;
      text-transform: uppercase;
      background: #b94141;
      padding: 15px 25px 15px 25px;
      color: white;
      font-family: "Raleway", sans-serif;
      font-weight: bold;
      letter-spacing: 1.3px;
      margin-top: 30px;
      display: block;
      text-decoration: none;
      font-size: 0.9em;
      width: 250px;
      border-radius: 3px; }
      .four-wrapper .floater a:hover {
        opacity: 0.5; }

.info-strip {
  background: url("../img/hero_bg_1.jpg");
  background-size: cover;
  color: white;
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 20px; }
  .info-strip p {
    margin: 0px;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1.1px; }
    .info-strip p a {
      color: #b94141;
      margin-left: 10px;
      text-decoration: none;
      padding-bottom: 2px;
      border-bottom: 1px solid #b94141;
      border-bottom-style: dotted; }
      .info-strip p a:hover {
        color: white; }
  .info-strip .info-overlay {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    background: #212121;
    opacity: 0.7;
    width: 100%;
    height: 100%; }

.footer {
  background: #212121;
  padding-bottom: 20px;
  color: white; }
  .footer .legal-links {
    list-style: none;
    margin: 0px;
    padding: 0px;
    padding-top: 20px; }
    .footer .legal-links li {
      display: inline-block;
      padding-right: 15px;
      margin-right: 15px;
      opacity: 0.6;
      border-right: 1px solid rgba(255, 255, 255, 0.3); }
      .footer .legal-links li:last-child {
        padding-right: 0px;
        margin-right: 0px;
        border: none; }
      .footer .legal-links li a {
        color: white;
        font-family: "Raleway", sans-serif;
        font-size: 0.9em;
        text-decoration: none; }
        .footer .legal-links li a:hover {
          border-bottom: 1px solid white;
          border-bottom-style: dotted; }
  .footer .footer-text {
    margin: 0px;
    padding-top: 20px;
    color: white;
    font-family: "Roboto", sans-serif;
    letter-spacing: 1.2px;
    opacity: 0.7;
    font-size: 0.9em; }
  .footer .copyright {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: 15px;
    border-right: 1px solid white; }
  .footer .sign i {
    color: #b94141; }
  .footer .sign a {
    color: #b94141;
    font-weight: bold; }

.footer .contact-block {
  max-width: 550px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center; }
  .footer .contact-block h1 {
    font-family: "Cherry Swash", cursive;
    font-size: 1.7em; }
  .footer .contact-block form {
    margin-top: 20px; }
  .footer .contact-block .form-control {
    margin-bottom: 15px;
    border-radius: 3px;
    min-height: 45px;
    font-family: "Raleway", sans-serif;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    box-shadow: none;
    color: white;
    letter-spacing: 1.3px; }
  .footer .contact-block .btn-submit {
    border-radius: 3px;
    background: transparent;
    border: 2px solid white;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    color: white;
    margin-top: 10px;
    letter-spacing: 1.5px;
    font-weight: 700px;
    min-width: 120px;
    padding: 12px 20px 12px 20px;
    font-size: 0.9em;
    opacity: 0.6;
    -webkit-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease; }
    .footer .contact-block .btn-submit:hover {
      opacity: 1;
      min-width: 150px; }

.modal-open, .modal {
  padding-right: 0px !important; }

.modal .modal-dialog {
  margin-top: 100px; }
.modal .modal-content {
  border-radius: 3px;
  border: 0px; }
.modal .modal-header {
  border: 0px; }
  .modal .modal-header .modal-title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-size: 0.9em; }
.modal .modal-footer {
  border: none;
  text-align: left; }
  .modal .modal-footer p {
    margin: 0px;
    font-family: "Raleway", sans-serif;
    line-height: 30px;
    font-size: 0.9em; }
    .modal .modal-footer p a {
      color: #b94141; }
.modal .form-control {
  box-shadow: none;
  outline: none;
  border: 2px solid #f4f4f4;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1.2px;
  min-height: 45px;
  border-radius: 3px; }
.modal .btn {
  background: #b94141;
  color: white;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 1.2px;
  font-size: 0.9em;
  padding: 12px 20px 12px 20px;
  border: 0px;
  border-radius: 3px;
  outline: none; }
  .modal .btn:active {
    background: #b94141;
    opacity: 0.5;
    outline: none;
    border: 0px; }

#loginModal .modal-dialog, #registerModal .modal-dialog {
  max-width: 500px; }

/*# sourceMappingURL=cd_root.css.map */
