/*============================================
	TABLE OF CONTENTS BASESHOP4
	Copyright Expedient B.V.
==============================================
	1. Imports
	2. Colours / variables
	3. Typography
    4. Buttons
    5. Icons
	6. Header / navigation
    7. General / Content styling
	8. Footer styling
    9. iForm
	10. Categories
	11.1. Carousel
	11.2. Detail pagina Slider
	12. Breadcrumb
	13. Search
	14. iEntity list/details
	15. iEntity news
    16. Shopping cart
    17. Dealermodule
    18. Resets / Base classes
	19. SSCSS (ShameSCSS)
============================================*/
/*============================================
	1. Imports
============================================*/
/* MIXINS */
/* Custom Mixins */
/* Other mixins */
@import url(https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap);
/*================================================
    2. Colours / variables
================================================*/
/* == Color variables == */
/* == Bootstrap color variables resets  == */
/* == Typography variables == */
/* == Margin / Padding variables == */
/* == Bootstrap variables == */
/*================================================
    3. Typography
================================================*/
html {
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
}

html, body {
  font-family: "Asap", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #2E2E2E;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Asap", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #2E2E2E;
  margin: 0 0 22px 0;
}

h1 {
  font-size: 30px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 27px;
  }
}

h2 {
  font-size: 27px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 21px;
  }
}

h4, h5, h6 {
  font-size: 18px;
}
@media (max-width: 767px) {
  h4, h5, h6 {
    font-size: 15px;
  }
}

p {
  margin: 0 0 15px 0;
}

a {
  color: #005D9F;
}
a:hover, a:focus {
  color: #003f6c;
  cursor: pointer;
  text-decoration: none;
}

.link-block {
  display: block;
  padding: 15px;
  border: 1px solid #cccccc;
  color: #2E2E2E;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.link-block:hover, .link-block:focus {
  color: #2E2E2E;
  border: 1px solid #005D9F;
}

img {
  max-width: 100%;
}

hr.hr-lighter {
  border-top: 1px solid #e6e6e6;
}

.text-small {
  font-size: 0.85em;
}

.text-large {
  font-size: 1.4em;
}

.font-normal {
  font-weight: normal;
}

.divider {
  content: " ";
  display: inline-block;
  padding-right: 5px;
  margin-right: 5px;
  border-right: 1px solid #cccccc;
  height: 11px;
}

.text-line-limit {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.title-limit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 18px; /* fallback */
  height: 35px; /* fallback */
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
}

.list-style-checklist, .footer .ModiLocalizationHTMLC ul, .contentpane-checklist .ModiLocalizationHTMLC ul, .header-checklist .ModiLocalizationHTMLC ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.list-style-checklist li, .footer .ModiLocalizationHTMLC ul li, .contentpane-checklist .ModiLocalizationHTMLC ul li, .header-checklist .ModiLocalizationHTMLC ul li {
  padding-left: 20px;
  position: relative;
}
.list-style-checklist li:before, .footer .ModiLocalizationHTMLC ul li:before, .contentpane-checklist .ModiLocalizationHTMLC ul li:before, .header-checklist .ModiLocalizationHTMLC ul li:before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 0px;
  top: 1px;
}

.header-checklist .ModiLocalizationHTMLC ul {
  font-size: 12px;
}
.header-checklist .ModiLocalizationHTMLC ul li {
  display: inline-block;
  font-size: 13px;
  margin-right: 12px;
  color: #fff;
}
.header-checklist .ModiLocalizationHTMLC ul li:before {
  color: #fff;
}

.contentpane-checklist .ModiLocalizationHTMLC ul {
  font-size: 12px;
}
.contentpane-checklist .ModiLocalizationHTMLC ul li {
  display: inline-block;
  font-size: 13px;
  margin-right: 12px;
  color: #2E2E2E;
}
.contentpane-checklist .ModiLocalizationHTMLC ul li:before {
  color: #8BD41D;
}

.row-flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 100%;
}

.col-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .col-flex {
    width: 100%;
  }
}

.col-v-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.col-v-align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.col-auto {
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-positive: 0;
      flex-grow: 0;
}

@media (min-width: 480px) {
  .col-flex-xs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .col-xs {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
  }
  .col-xs-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex-positive: 0;
        flex-grow: 0;
  }
}
@media (min-width: 768px) {
  .col-flex-sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex-positive: 0;
        flex-grow: 0;
  }
}
@media (min-width: 992px) {
  .col-flex-md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex-positive: 0;
        flex-grow: 0;
  }
}
@media (min-width: 1200px) {
  .col-flex-lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex-positive: 0;
        flex-grow: 0;
  }
}
.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  -ms-grid-row-align: end !important;
      align-self: end !important;
}

.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*================================================
    4. Buttons
================================================*/
.btn, .carousel-content a, .main-cat-list .rtUL a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.15) inset !important;
          box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.15) inset !important;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 0px solid transparent;
  white-space: normal;
  margin-bottom: 0;
  padding: 6px 25px 7px;
  font-size: 19px;
  font-family: "Asap", sans-serif;
  font-weight: 700;
  line-height: 1.42857;
  border-radius: 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0px !important;
}
@media (max-width: 1199px) {
  .btn, .carousel-content a, .main-cat-list .rtUL a {
    font-size: 17px;
    font-weight: 500;
    padding-left: 20px;
    padding-left: 20px;
  }
}
.btn:hover, .carousel-content a:hover, .main-cat-list .rtUL a:hover, .btn:focus, .carousel-content a:focus, .main-cat-list .rtUL a:focus, .btn:active, .carousel-content a:active, .main-cat-list .rtUL a:active, .btn:active:focus {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 3px 0px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 3px 0px;
  outline: none;
}

.btn-default {
  text-shadow: rgba(0, 0, 0, 0) 0px 1px 2px;
  color: #005D9F;
  background: #ffffff;
  border: 1px solid #005D9F;
}
.btn-default:hover, .btn-default:focus, .btn-default:active {
  color: #fff;
  background: #005D9F;
  border: 1px solid #005D9F;
}

.btn-primary {
  color: #ffffff;
  background: #005D9F;
  border: 1px solid #005D9F;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: #006cb9;
}

.btn-secondary, .main-cat-list .rtUL a {
  color: #ffffff;
  background: #E5AB28;
  border: 1px solid #c28e18;
}
.btn-secondary:hover, .main-cat-list .rtUL a:hover, .btn-secondary:focus, .main-cat-list .rtUL a:focus, .btn-secondary:active, .main-cat-list .rtUL a:active {
  background: #e8b43f;
  color: #ffffff;
}

.btn-cta, .carousel-content a {
  color: #ffffff;
  background: #8BD41D;
}
.btn-cta:hover, .carousel-content a:hover, .btn-cta:focus, .carousel-content a:focus, .btn-cta:active, .carousel-content a:active {
  background: #98e229;
  color: #ffffff;
}

.btn-large,
.btn-big {
  padding: 9px 30px 10px;
}
@media (min-width: 992px) {
  .btn-large,
  .btn-big {
    font-size: 18px;
  }
}

.btn-small {
  padding: 3px 11px 4px;
}

.control-small {
  padding: 3px 11px 4px;
  width: initial;
}

/*================================================
    5. Icons
================================================*/
.icon-color-secondary:before {
  color: #E5AB28 !important;
}

.icon-prev:before {
  font-family: FontAwesome;
  content: "\f104";
  margin-right: 10px;
  font-size: 16px;
  line-height: 20px;
}

.icon-next:after {
  font-family: FontAwesome;
  content: "\f105";
  margin-left: 10px;
  font-size: 16px;
  line-height: 20px;
}

.icon-cart-add:before {
  font-family: FontAwesome;
  content: "\f067";
  margin-right: 10px;
  font-size: 14px;
  line-height: 20px;
}

.icon-zoom {
  position: relative;
}
.icon-zoom:after {
  content: "\f002";
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 15px;
  pointer-events: none;
}

.icon-remove:before {
  font-family: FontAwesome;
  content: "\f00d";
  font-size: 16px;
  line-height: 20px;
}

.icon-phone:before {
  font-family: FontAwesome;
  content: "\f095";
  font-size: 16px;
  line-height: 20px;
}

.icon-mail:before {
  font-family: FontAwesome;
  content: "\f0e0";
  font-size: 16px;
  line-height: 20px;
}

.icon-download:before {
  font-family: FontAwesome;
  content: "\f019";
  font-size: 16px;
  line-height: 20px;
}

.icon-facebook:before {
  font-family: FontAwesome;
  content: "\f082";
  font-size: 16px;
  line-height: 20px;
}

/*============================================
	6. Header / navigation
============================================*/
.header-wrapper {
  background-color: #005D9F;
}

.header-top {
  position: relative;
  z-index: 5;
  font-size: 13px;
  padding: 7.5px 0;
}
.header-top i,
.header-top a {
  color: #2E2E2E;
}

.header-middle {
  position: relative;
  z-index: 4;
}
.header-middle .header-middle-container {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .header-middle .header-middle-container {
    border-radius: 6px;
  }
}

.logo {
  display: block;
}
.logo img {
  height: 60px;
}
@media (max-width: 1199px) {
  .logo img {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .logo {
    vertical-align: middle;
    display: table-cell;
  }
  .logo img {
    max-width: 100%;
  }
}

.menu li a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  font-family: "Asap", sans-serif;
  padding: 0;
  margin: 0 10px;
  border-bottom: 1px solid transparent;
}
.menu li.active > a,
.menu li a.active {
  background: none;
  color: #fff;
  border-color: #fff;
}
.menu li a:hover,
.menu li a:focus, .menu li.open > a, .menu li.open a:hover, .menu li.open a:focus, .menu li.active a:hover, .menu li.active a:focus {
  background: none;
  color: #E5AB28;
}
.menu li i {
  display: inline-block;
  margin-left: 5px;
}
.menu li:last-child a {
  margin-right: 0;
}
.menu li .dropdown-menu a {
  color: #005D9F;
}

.loginGroup {
  display: inline-block;
}

.request-password {
  text-decoration: underline;
}
.request-password:hover, .request-password:focus {
  text-decoration: underline;
}

#dnn_ctr_SendPassword_plUsername_pnlHelp {
  display: none !important;
  visibility: hidden !important;
}

.btn-mobile {
  background-color: #005D9F;
  padding: 6px 15px;
  border-radius: 6px;
  border: 1px solid #fff;
}
.btn-mobile:before {
  font-family: FontAwesome;
  content: "\f0c9";
  font-size: 20px;
  color: #ffffff;
}
.btn-mobile:hover, .btn-mobile:active {
  text-decoration: none;
}

#menu-mobile:not(.mm-menu) {
  display: none;
}

.language-object {
  margin-left: 40px;
}
.language-object span {
  margin-left: 5px;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
.language-object span:first-child {
  margin-left: 0;
}
.language-object span img {
  height: 15px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.language-object span.selected,
.language-object span:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.btn-cart {
  display: inline-block;
  position: relative;
}
.btn-cart a {
  border-radius: 6px;
  padding: 7px 10px;
  display: inline-block;
  color: #fff;
  background-color: #8BD41D;
  -webkit-box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.15) inset !important;
          box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.15) inset !important;
}
@media (max-width: 767px) {
  .btn-cart a {
    padding: 3px 10px;
  }
}
.btn-cart a:before {
  font-family: FontAwesome;
  content: "\f291";
  font-size: 16px;
  margin-right: 7px;
}
.btn-cart a:hover {
  background-color: #98e229;
  text-decoration: none;
}
.btn-cart a:active {
  background-position: 6px 6px;
  -webkit-box-shadow: inset 0px 0px 0pc 1px #5f9114;
          box-shadow: inset 0px 0px 0pc 1px #5f9114;
}
.btn-cart .cart-price {
  font-weight: 400;
  position: relative;
  margin-right: 5px;
}
.btn-cart .cart-count {
  display: inline-block;
  position: relative;
  bottom: 1px;
  padding: 3px 5px;
  font-size: 11px;
  line-height: 10px;
  text-align: center;
  background-color: #5f9114;
  border-radius: 8px;
}

.btn-next:before {
  font-family: FontAwesome;
  content: "\f105";
  font-size: 16px;
  margin-right: 7px;
}

.header-image-wrapper {
  background-color: #054B91;
  min-height: 20px;
}
@media (min-width: 768px) {
  .header-image-wrapper {
    margin-top: -44px;
    min-height: 80px;
  }
}
.header-image-wrapper .dnnActionMenu {
  top: 100px !important;
}

/*================================================
    7. General / Content styling
================================================*/
@media (min-width: 1410px) {
  .container-wide {
    width: 1350px;
  }
}

.wrapper-content-cta-top .content-cta-top-container {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .wrapper-content-cta-top .content-cta-top-container {
    margin-top: -20px;
    border-radius: 6px;
  }
}

.wrapper-content {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .wrapper-content {
    padding: 30px 0;
  }
}

.header-image--wrapper {
  background-size: cover;
  background-position: center center;
}
.header-image--wrapper .header-image--content {
  height: 200px;
}
.header-image--wrapper .header-image--content:empty {
  height: auto;
}
@media (max-width: 767px) {
  .header-image--wrapper .header-image--content {
    height: 130px;
  }
}
.header-image--wrapper .header-image--content .Normal img {
  display: none;
}

#modal-added {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #modal-added:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
}
#modal-added .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
#modal-added .modal-content {
  padding: 20px;
}
#modal-added .modal-content h4 {
  margin-top: 0;
  margin-bottom: 20px;
}
#modal-added .divider-text {
  display: inline-block;
  margin: 0 6px;
}
@media screen and (max-width: 767px) {
  #modal-added .divider-text .divider-text {
    display: block;
    margin: 0;
  }
}

/*============================================
	8. Footer styling
============================================*/
.footer-top {
  content: url(img/footer-background-top.svg);
  width: 100%;
  margin-top: 60px;
}

.footer {
  background-color: #054B91;
  padding: 60px 0 120px;
  position: relative;
}
.footer:before {
  content: url(img/footer-logo-beeldmerk.svg);
  position: absolute;
  left: 20px;
  bottom: 5px;
}
@media (max-width: 991px) {
  .footer:before {
    right: 20px;
    left: inherit;
    -webkit-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
.footer .ModiLocalizationHTMLC h2, .footer .ModiLocalizationHTMLC h3, .footer .ModiLocalizationHTMLC h4, .footer .ModiLocalizationHTMLC h5, .footer .ModiLocalizationHTMLC h6 {
  color: #E5AB28;
  margin-bottom: 10px;
  font-size: 18px;
}
.footer .ModiLocalizationHTMLC p, .footer .ModiLocalizationHTMLC a, .footer .ModiLocalizationHTMLC ul {
  color: #fff;
}
.footer .ModiLocalizationHTMLC a {
  text-decoration: underline;
}
.subfooter {
  background: #fff;
  color: #5d6893;
  font-size: 12px;
}

.footer-menu-wrapper ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.footer-menu-wrapper ul a {
  color: #fff;
  text-decoration: underline;
}

/*=======================================================
    9. iForm / basic fields
=======================================================*/
label.required:after {
  content: " *";
}

.form-row {
  margin-bottom: 5px;
}

.form-row input, .form-row button, .form-row select, .form-row textarea {
  width: 100%;
  margin-bottom: 10px;
}

.form-group {
  position: relative;
}
.form-group textarea {
  margin-bottom: 20px;
  min-height: 100px;
  max-width: 100%;
  min-width: 100%;
}

.form-group textarea {
  margin-bottom: 0;
}

.form-group input[type=checkbox] + label {
  margin-left: 5px;
}

.input-group-addon {
  background: #fff;
}
.input-group-addon i {
  width: 15px;
}

.form-validation,
.form-control-validator {
  color: white;
  font-weight: normal;
  background: #d9534f;
  padding: 7px 15px;
  position: relative;
  border-radius: 5px;
}
.form-validation:before,
.form-control-validator:before {
  content: " ";
  position: absolute;
  z-index: 3;
  top: -5px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #d9534f;
}

.form-validation[style*="display: inline;"],
.form-control-validator[style*="display: inline;"] {
  display: inline-block !important;
}

.control-checkbox-label input[type=checkbox] {
  margin-right: 5px;
}

label a {
  text-decoration: underline;
}

.form-captcha {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px 15px 15px;
}
.form-captcha img {
  margin-top: 5px;
  float: left;
  margin-right: 15px;
}
@media (max-width: 991px) {
  .form-captcha img {
    float: none;
  }
}

.form-radio label {
  padding-right: 15px;
  padding-left: 5px;
}

.form-date {
  margin-right: 10px;
  width: 30% !important;
  min-width: 80px;
  display: inline-block;
}
.form-date:last-child {
  margin-right: 0;
}

/*============================================
	10. Categories
============================================*/
.main-cat-list .rtUL {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-cat-list .rtUL li {
  display: inline-block;
  position: relative;
}
.main-cat-list .rtUL a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .main-cat-list .rtUL a {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }
}
.main-cat-list .rtUL .rtSelected a {
  color: #fff;
}

#categories {
  margin-bottom: 30px;
  border: 1px solid #e6e6e6;
}
#categories h2 {
  font-size: 18px;
  margin: 0;
  padding: 10px 15px;
  background-color: #005D9F;
  color: #fff;
}
#categories h2:before {
  color: #fff;
  margin: 0 10px 0 0;
  font-family: FontAwesome;
  content: "\f0c9";
  font-size: 17px;
  font-weight: normal;
}
#categories h2:hover {
  cursor: pointer;
}
#categories .rtUL .rtUL {
  background-color: #fff;
}
#categories .rtUL .rtUL li a {
  padding-left: 20px;
}
#categories ul,
#categories li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#categories a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid #e6e6e6;
  font-family: "Asap", sans-serif;
}
#categories a:hover {
  background-color: #ececec;
}
@media (min-width: 768px) {
  #categories .rtFirst > .rtTop a {
    background-color: #005D9F;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
  }
}
#categories .rtLast .rtLast a {
  border-bottom: 0;
}
#categories .rtSelected a {
  background-color: #005D9F;
  font-weight: 500;
  color: #fff;
  border: none;
}
#categories ul ul {
  border-bottom: 0;
}
#categories ul ul .rtSelected a {
  background-color: #005D9F;
  font-weight: bold;
  color: #fff;
  border-bottom: 1px solid #e6e6e6;
}
@media (min-width: 768px) {
  #categories ul ul .rtSelected a {
    background-color: transparent;
    color: #005D9F;
  }
}
@media (max-width: 767px) {
  #categories > .RadTreeView {
    display: none;
  }
}

/*================================================
    11.1. Carousel
================================================*/
.caroufredsel_wrapper {
  width: 100% !important;
}

#carousel-wrapper {
  -webkit-box-shadow: inset rgba(0, 0, 0, 0.5) 0px 0px 8px 0px;
  box-shadow: inset rgba(0, 0, 0, 0.5) 0px 0px 8px 0px;
  height: 100%;
  position: relative;
  max-height: 450px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  #carousel-wrapper {
    min-height: 225px;
  }
}
@media (min-width: 1400px) {
  #carousel-wrapper {
    min-height: 270px;
  }
}
@media (min-width: 1500px) {
  #carousel-wrapper {
    min-height: 315px;
  }
}
@media (min-width: 1600px) {
  #carousel-wrapper {
    min-height: 360px;
  }
}
@media (min-width: 1700px) {
  #carousel-wrapper {
    min-height: 360px;
  }
}

#carousel-wrapper:hover .carousel-btn,
#carousel-wrapper:hover .carousel-pagination {
  opacity: 1;
}

.carousel-image {
  position: relative;
  width: 0;
  float: left;
}
.carousel-image:hover {
  cursor: default !important;
}
.carousel-image img {
  width: 100%;
}

.carousel-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 2px;
  font-size: 100px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  font-size: 75px;
  color: #ffffff;
  opacity: 0;
}
@media (max-width: 768px) {
  .carousel-btn {
    display: none !important;
  }
}
.carousel-btn:hover, .carousel-btn:focus {
  color: #ffffff;
}

.carousel-btn-prev {
  left: 20px;
}

.carousel-btn-next {
  right: 20px;
}

.carousel-pagination {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-left: 0px;
  margin-bottom: 0;
  position: absolute;
  bottom: 15px;
  width: 100%;
  z-index: 1100;
  opacity: 0;
}
.carousel-pagination a {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  display: inline-block;
  margin: 7px;
}
.carousel-pagination .selected {
  background: #005D9F;
}
.carousel-pagination span {
  display: none;
}

.carousel-content {
  color: #fff;
  position: absolute;
  display: block;
  padding: 50px 0;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 100%;
  font-style: italic;
}
.carousel-content h1, .carousel-content h2, .carousel-content h3, .carousel-content h4, .carousel-content h5, .carousel-content h6 {
  text-shadow: rgba(0, 0, 0, 0.5) 2px 4px 4px;
  color: #ffffff;
  font-size: 84px;
}
@media (max-width: 991px) {
  .carousel-content h1, .carousel-content h2, .carousel-content h3, .carousel-content h4, .carousel-content h5, .carousel-content h6 {
    font-size: 40px;
  }
}
.carousel-content p {
  color: #ffffff;
}
.carousel-content a {
  text-shadow: rgba(0, 0, 0, 0) 0px 1px 2px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px 0px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px 0px;
}
@media (max-width: 768px) {
  .carousel-content {
    display: none;
  }
}
.carousel-content:empty {
  display: none;
}

/* FOUC fix */
.loading-images {
  position: relative;
}
.loading-images img {
  opacity: 0;
}
.loading-images:before {
  content: "";
  z-index: 2;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  position: absolute;
  background: #fff url(img/loading.gif) no-repeat center 100px;
}

/*============================================
	11.2. Detail pagina Slider
============================================*/
.slider-items {
  position: relative;
  float: left;
}
.slider-items img {
  display: block;
  max-width: 100%;
  height: auto;
}

.slider-prev,
.slider-next {
  display: none !important;
}

.pagination-wrapper {
  margin-top: 5px;
}
.pagination-wrapper .thumbs-container {
  display: block;
}
.pagination-wrapper .slider-thumnail-items {
  width: 16.65%;
}
.pagination-wrapper .slider-thumnail-items a {
  display: block;
  padding: 5px;
}
.pagination-wrapper .slider-thumnail-items.selected {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* FOUC fix, requires loading images script */
.loading-images {
  position: relative;
}
.loading-images img {
  opacity: 0;
}
.loading-images:before {
  content: "";
  z-index: 2;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  position: absolute;
  background: #fff url(img/loading.gif) no-repeat center 100px;
}

/*============================================
	12. Breadcrumb
============================================*/
.breadcrumb {
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
  background-color: transparent;
  border-radius: none;
}
.breadcrumb a {
  color: #555555;
}
.breadcrumb > li + li:before {
  content: "\f105"; /* big f054 :  small f105 : arrow f061 : */
  font-family: FontAwesome;
  margin-right: 2px;
  color: #999;
}
.breadcrumb li:first-child:before {
  content: "\f015";
  font-family: FontAwesome;
  margin-right: 5px;
}
.breadcrumb li:last-child a {
  font-weight: bold;
  text-decoration: none;
}

.breadcrumb > .active {
  color: #005D9F;
  text-decoration: underline;
}

/*============================================
	13. Search
============================================*/
.search {
  display: inline-block;
}
@media (min-width: 1200px) {
  .search {
    width: 320px;
  }
}
@media (max-width: 991px) {
  .search {
    width: 100%;
  }
}
.search .SearchTextBox {
  border: 0;
  border-radius: 6px;
  padding: 0 45px 0 10px;
  font-size: 14px;
  height: 40px;
  color: #555555;
  width: 100%;
}
@media (max-width: 767px) {
  .search .SearchTextBox {
    height: 30px;
  }
}
.search .SearchTextBox:focus {
  background-color: #FFF;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.search .SearchContainer {
  position: relative;
  border: 1px solid #cccccc;
  border-radius: 6px;
}
.search .SearchButton {
  font-size: 14px;
  padding: 0 12px;
  height: 42px;
  position: absolute;
  top: -1px;
  right: -1px;
  line-height: 35px;
  text-decoration: none;
  background-color: #005D9F;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0 6px 6px 0;
  -webkit-transition: all background-color 0.2s ease-in-out;
  transition: all background-color 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .search .SearchButton {
    height: 32px;
    line-height: 27px;
  }
}
.search .SearchButton:hover {
  background-color: #006cb9;
}
.search .SearchButton:after {
  content: "\f002";
  color: #fff;
  font-family: FontAwesome;
  font-weight: normal;
  display: block;
  margin-top: 3px;
}

/*	Searchresults page */
.dnnSearchResults > h2 {
  font-size: 18px;
}
.dnnSearchResults span.searchquery {
  color: #005D9F;
}
.dnnSearchResults .SearchNumber {
  padding: 0;
  margin: 0 20px;
  display: inline-block;
  width: 30px;
  text-align: center;
  height: 30px;
  background: #FFF;
  line-height: 30px;
  color: #222;
  border: 1px solid #BBB;
  border-radius: 100%;
}
.dnnSearchResults table h2 a {
  font-size: 16px;
  color: #005D9F;
}
.dnnSearchResults table h2 a:hover {
  color: #E5AB28;
  text-decoration: none;
}
.dnnSearchResults table p a {
  color: #005D9F;
}
.dnnSearchResults table p a:hover {
  color: #E5AB28;
}
.dnnSearchResults table .dnnGridAltItem {
  border-top: 1px solid #BBB;
  border-bottom: 1px solid #BBB;
}

/*============================================
	14. iEntity list/details
============================================*/
@media (min-width: 992px) {
  #page55 .prod-col-hp,
  #page90 .prod-col-hp,
  #page91 .prod-col-hp {
    width: 25%;
  }
}

.item {
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.item--list {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.item--grid {
  margin-bottom: 30px;
  padding: 15px;
  background-color: #F3FAFF;
}
@media (max-width: 767px) {
  .item--grid {
    max-width: 300px;
    margin: 0 auto 30px;
  }
}

.item-img {
  position: relative;
}
.item-img .item-on-sale {
  display: block;
  position: absolute;
  z-index: 3;
  background-color: #005D9F;
  padding: 5px 10px;
  top: 1px;
  right: -6px;
  text-align: center;
  color: #fff;
  font-family: "Asap", sans-serif;
  font-size: 14px;
  -webkit-transform: rotate(15deg);
      -ms-transform: rotate(15deg);
          transform: rotate(15deg);
}

.item-img--list {
  overflow: hidden;
  border-bottom: 1px solid #cccccc;
}
.item-img--list .item-on-sale {
  width: 50px;
  height: 50px;
}

.item-content h1, .item-content h2, .item-content h3, .item-content h4, .item-content h5, .item-content h6 {
  margin-bottom: 0;
  font-size: 16px;
  color: #2E2E2E;
}
.item-content .product-price {
  color: #2E2E2E;
  text-align: center;
  margin-top: 15px;
}
.item-content .product-price .product-price-from {
  display: none;
  margin-left: 15px;
  color: #cccccc;
  text-decoration: line-through;
}

.item-content--grid {
  position: relative;
  z-index: 2;
  padding: 30px 15px 15px;
  text-align: center;
}
.product-view-grid .item-content--grid {
  min-height: 93px;
}

.item--category h1, .item--category h2, .item--category h3, .item--category h4, .item--category h5, .item--category h6 {
  color: #005D9F;
  font-size: 21px;
}

.btn-absolute {
  position: absolute;
  bottom: 10px;
  width: 200px;
  left: 50%;
  margin-left: -100px;
  z-index: 2;
}

.product-view-actions--top {
  padding: 15px 0;
  margin: 30px 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.product-view-actions--bottom {
  padding: 15px 0;
  border-top: 1px solid #cccccc;
}

.product-view-toggle .product-view-action-grid,
.product-view-toggle .product-view-action-list {
  text-decoration: none;
}
.product-view-toggle .product-view-action-grid:before,
.product-view-toggle .product-view-action-list:before {
  color: #cccccc;
  margin: 0 3px;
  font-size: 23px;
  line-height: 23px;
  content: "\f03a";
  font-family: FontAwesome;
  font-weight: normal;
}
.product-view-toggle .product-view-action-grid.active:before, .product-view-toggle .product-view-action-grid:hover:before,
.product-view-toggle .product-view-action-list.active:before,
.product-view-toggle .product-view-action-list:hover:before {
  color: #0e0e0e;
}
.product-view-toggle .product-view-action-grid:before {
  content: "\f009";
}

.product-sorting select {
  margin-left: 5px;
  float: left;
  margin-top: 11px;
}
.product-sorting .dropdown-toggle {
  background-color: #fff;
  border: 1px solid #cccccc;
}
.product-sorting .dropdown-menu {
  border: 1px solid #cccccc;
}

.product-view-title {
  line-height: 42px;
  float: left;
}
@media (max-width: 500px) {
  .product-view-title {
    line-height: 22px;
    display: block;
  }
}

.pagination__center {
  text-align: center;
}

.pagination,
.item-view-pagination {
  width: 100%;
  margin: 0px;
}
.pagination .RadDataPager,
.item-view-pagination .RadDataPager {
  display: inline-block;
}
.pagination .RadDataPager .rdpWrap,
.item-view-pagination .RadDataPager .rdpWrap {
  float: left;
}
.pagination .RadDataPager .rdpWrap .rdpPagePrev,
.item-view-pagination .RadDataPager .rdpWrap .rdpPagePrev {
  margin-right: 15px;
}
.pagination .RadDataPager .rdpWrap .rdpPageNext,
.item-view-pagination .RadDataPager .rdpWrap .rdpPageNext {
  margin-left: 15px;
}
.pagination .RadDataPager .rdpNumPart a,
.item-view-pagination .RadDataPager .rdpNumPart a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  width: 25px;
  display: inline-block;
  padding: 6px 0;
  font-size: 13px;
  margin: 0px 3px;
  border: 1px solid #DDD;
  text-decoration: none;
  font-weight: normal;
}
.pagination .RadDataPager .rdpNumPart a:hover,
.item-view-pagination .RadDataPager .rdpNumPart a:hover {
  border-color: #005D9F;
  background-color: transparent;
}
.pagination .RadDataPager .rdpNumPart a.more,
.item-view-pagination .RadDataPager .rdpNumPart a.more {
  border: 0;
}
.pagination .RadDataPager .rdpNumPart a.rdpCurrentPage,
.item-view-pagination .RadDataPager .rdpNumPart a.rdpCurrentPage {
  background-color: #005D9F;
  border-color: #005D9F;
  color: #FFF;
}
.pagination .RadDataPager .rdpWrap input,
.item-view-pagination .RadDataPager .rdpWrap input {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 0;
  border: 1px solid #e6e6e6;
  display: block;
  height: 34px;
  width: 22px !important;
  padding: 0px !important;
}
.pagination .RadDataPager .rdpWrap input:hover,
.item-view-pagination .RadDataPager .rdpWrap input:hover {
  border: 1px solid #005D9F;
}
.pagination .RadDataPager .rdpWrap input:focus,
.item-view-pagination .RadDataPager .rdpWrap input:focus {
  outline: none;
}
.pagination .RadDataPager .rdpPageFirst,
.pagination .RadDataPager .rdpPagePrev,
.pagination .RadDataPager .rdpPageNext,
.pagination .RadDataPager .rdpPageLast,
.item-view-pagination .RadDataPager .rdpPageFirst,
.item-view-pagination .RadDataPager .rdpPagePrev,
.item-view-pagination .RadDataPager .rdpPageNext,
.item-view-pagination .RadDataPager .rdpPageLast {
  background: url(./img/Pager-sprite.png) top left no-repeat;
}
.pagination .RadDataPager .rdpPagePrev,
.item-view-pagination .RadDataPager .rdpPagePrev {
  margin-right: 5px !important;
  margin-left: 0px !important;
  background-position: -23px 0px;
}
.pagination .RadDataPager .rdpPageNext,
.item-view-pagination .RadDataPager .rdpPageNext {
  margin-left: 5px !important;
  margin-right: 0px !important;
  background-position: -45px 0px;
}
.pagination .RadDataPager .rdpPageLast,
.item-view-pagination .RadDataPager .rdpPageLast {
  background-position: -66px 0px;
}

.stock-notification {
  /*display: block;
  padding: 10px;
  border: 1px solid $brand-primary;
  text-align: center;
  */
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold;
}

.RadDropDownList.RadDropDownList_Expedient {
  outline: none;
  margin-left: 5px;
}
.RadDropDownList.RadDropDownList_Expedient .rddlInner {
  position: relative;
  padding: 5px 10px;
  padding-right: 32px;
  height: auto;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 6px;
}
.RadDropDownList.RadDropDownList_Expedient .rddlFakeInput {
  margin-top: 5px;
  height: auto;
  text-overflow: ellipsis;
}
.RadDropDownList.RadDropDownList_Expedient .rddlIcon {
  background: #fff;
  top: 0px;
  bottom: 0px;
  height: auto;
  width: auto;
  padding: 8px 7px;
  border-left: 1px solid #cccccc;
}
.RadDropDownList.RadDropDownList_Expedient .rddlIcon:after {
  content: "\f0d7";
  display: block;
  font-family: FontAwesome;
}

.rddlSlide .rddlPopup_Expedient {
  margin-top: -1px;
  background: #fff;
  padding: 0;
  border: 1px solid #cccccc;
  border-radius: 6px;
}
.rddlSlide .rddlPopup_Expedient .rddlItem {
  padding: 5px 10px;
  border-bottom: 1px solid #cccccc;
}
.rddlSlide .rddlPopup_Expedient .rddlItem:last-child {
  border: 0;
}
.rddlSlide .rddlPopup_Expedient .rddlItemHovered {
  background: #e6e6e6;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.rddlSlide .rddlPopup_Expedient .rddlItemSelected {
  background: #1e90ff;
  color: #fff;
}

.category-details--wrapper {
  position: relative;
  min-height: 200px;
  max-height: 200px;
  background-color: #e6e6e6;
  overflow: hidden;
  background-size: cover;
  background-repeat: none;
}
@media (max-width: 991px) {
  .category-details--wrapper {
    min-height: 100px;
  }
}
.category-details--wrapper .category-details--title {
  text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .category-details--wrapper .category-details--title {
    top: calc(50% + 22px);
  }
}
.category-details--wrapper img {
  min-height: 100px;
  max-width: none;
}

.order-history--table {
  overflow-x: scroll;
}
.order-history--table .table {
  min-width: 500px;
}

/*============================================
	15. iEntity news
============================================*/
.ientity-news-list-item {
  display: block;
  border-top: 1px solid #cccccc;
  padding-top: 15px;
  margin-top: 15px;
  color: #0e0e0e;
}
.ientity-news-list-item h3 {
  margin: 0 0 10px 0;
}
.ientity-news-list-item:focus, .ientity-news-list-item:hover {
  color: #0e0e0e;
}
.ientity-news-list-item:focus .btn, .ientity-news-list-item:focus .main-cat-list .rtUL a, .main-cat-list .rtUL .ientity-news-list-item:focus a, .ientity-news-list-item:focus .carousel-content a, .carousel-content .ientity-news-list-item:focus a, .ientity-news-list-item:hover .btn, .ientity-news-list-item:hover .main-cat-list .rtUL a, .main-cat-list .rtUL .ientity-news-list-item:hover a, .ientity-news-list-item:hover .carousel-content a, .carousel-content .ientity-news-list-item:hover a {
  background-color: #005D9F !important;
  color: #fff;
}

.date {
  font-style: italic;
  color: #666;
  margin-bottom: 10px;
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  color: #FFF;
  background-color: #005D9F;
  border-radius: 3px;
}

/*=======================================================
    16. Shopping cart
=======================================================*/
.item--cart {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.item--cart__header {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .item--cart__header {
    border-top: 1px solid #cccccc;
    padding: 8px 0;
  }
}

.radiobuttonlist-fix label {
  font-weight: normal;
  margin-left: 5px;
}

.wizard ol {
  margin: 0;
  padding: 0;
}
.wizard li {
  padding: 0px 25px;
  background-color: #EEE;
  line-height: 42px;
  display: inline-block;
  color: #AFAFAF;
  position: relative;
  margin-left: 35px;
}
@media (max-width: 767px) {
  .wizard li {
    margin-left: 0;
    font-size: 12px;
    line-height: 24px;
    padding: 0 5px;
    margin-right: 5px;
  }
  .wizard li:before, .wizard li:after {
    display: none;
  }
}
.wizard li:first-child, .wizard li.wizard-step-single {
  margin-left: 0px;
  border-radius: 6px 0 0 6px;
}
.wizard li:first-child:before, .wizard li.wizard-step-single:before {
  border: none;
}
.wizard li:before {
  content: " ";
  width: 30px;
  height: 0;
  border-bottom: 0px solid transparent;
  border-top: 42px solid transparent;
  position: absolute;
  top: 0px;
  left: -30px;
  border-right: 30px solid #eee;
}
.wizard li:after {
  content: " ";
  width: 30px;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 42px solid transparent;
  position: absolute;
  top: 0px;
  right: -30px;
  border-left: 30px solid #eee;
}
.wizard li.active {
  background-color: #005D9F;
  text-decoration: none;
  color: #fff;
}
.wizard li.active:before {
  border-right: 30px solid #005D9F;
}
.wizard li.active:after {
  border-left: 30px solid #005D9F;
}
.wizard li.done {
  background-color: #3b8fcb;
  text-decoration: none;
  color: #fff;
}
.wizard li.done:before {
  border-right: 30px solid #3b8fcb;
}
.wizard li.done:after {
  border-left: 30px solid #3b8fcb;
}
.wizard li.disabled {
  background-color: #ececec;
  color: #b4b4b4;
}
.wizard li.disabled:before {
  border-right: 30px solid #ececec;
}
.wizard li.disabled:after {
  border-left: 30px solid #ececec;
}

/*=======================================================
    17. Dealermodule
=======================================================*/
.height-dealer {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .height-dealer {
    height: 170px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .height-dealer {
    height: 170px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .height-dealer {
    height: 170px;
  }
}

/*=======================================================
    18. Resets / Base classes
=======================================================*/
/* Additional alerts */
.alert-default {
  background: #f7f7f7;
  border: 1px solid #ccc;
}

/* Margin
------------------ */
.margin {
  margin: 15px !important;
}

.margin-top {
  margin-top: 15px !important;
}

.margin-bottom {
  margin-bottom: 15px !important;
}

.margin-left {
  margin-left: 15px !important;
}

.margin-right {
  margin-right: 15px !important;
}

.margin-double {
  margin: 30px !important;
}

.margin-top-double {
  margin-top: 30px !important;
}

.margin-bottom-double {
  margin-bottom: 30px !important;
}

.margin-left-double {
  margin-left: 30px !important;
}

.margin-right-double {
  margin-right: 30px !important;
}

.margin-half {
  margin: 8px !important;
}

.margin-top-half {
  margin-top: 8px !important;
}

.margin-bottom-half {
  margin-bottom: 8px !important;
}

.margin-left-half {
  margin-left: 8px !important;
}

.margin-right-half {
  margin-right: 8px !important;
}

.margin-reset {
  margin: 0 !important;
}

.margin-top-reset {
  margin-top: 0 !important;
}

.margin-bottom-reset {
  margin-bottom: 0 !important;
}

/* padding
------------------ */
.padding {
  padding: 15px !important;
}

.padding-top {
  padding-top: 15px !important;
}

.padding-bottom {
  padding-bottom: 15px !important;
}

.padding-left {
  padding-left: 15px !important;
}

.padding-right {
  padding-right: 15px !important;
}

.padding-double {
  padding: 30px !important;
}

.padding-top-double {
  padding-top: 30px !important;
}

.padding-bottom-double {
  padding-bottom: 30px !important;
}

.padding-left-double {
  padding-left: 30px !important;
}

.padding-right-double {
  padding-right: 30px !important;
}

.padding-half {
  padding: 8px !important;
}

.padding-top-half {
  padding-top: 8px !important;
}

.padding-bottom-half {
  padding-bottom: 8px !important;
}

.padding-left-half {
  padding-left: 8px !important;
}

.padding-right-half {
  padding-right: 8px !important;
}

.padding-reset {
  padding: 0 !important;
}

.padding-top-reset {
  padding-top: 0 !important;
}

.padding-bottom-reset {
  padding-bottom: 0 !important;
}

@media (max-width: 767px) {
  .padding-top-xs {
    padding-top: 15px !important;
  }
  .padding-bottom-xs {
    padding-bottom: 15px !important;
  }
  .margin-top-xs {
    margin-top: 15px !important;
  }
  .margin-bottom-xs {
    margin-bottom: 15px !important;
  }
  .text-center-xs {
    text-align: center !important;
  }
  .text-left-xs {
    text-align: left !important;
  }
  .text-right-xs {
    text-align: right !important;
  }
  .pull-left-xs {
    float: left !important;
  }
  .pull-right-xs {
    float: right !important;
  }
  .clear-xs {
    float: none !important;
  }
  .display-table-xs {
    display: table;
    width: 100%;
  }
  .display-table-xs > .col-lg-1, .display-table-xs > .col-lg-10, .display-table-xs > .col-lg-11, .display-table-xs > .col-lg-12, .display-table-xs > .col-lg-2, .display-table-xs > .col-lg-3, .display-table-xs > .col-lg-4, .display-table-xs > .col-lg-5, .display-table-xs > .col-lg-6, .display-table-xs > .col-lg-7, .display-table-xs > .col-lg-8, .display-table-xs > .col-lg-9,
  .display-table-xs > .col-md-1, .display-table-xs > .col-md-10, .display-table-xs > .col-md-11, .display-table-xs > .col-md-12, .display-table-xs > .col-md-2, .display-table-xs > .col-md-3, .display-table-xs > .col-md-4, .display-table-xs > .col-md-5, .display-table-xs > .col-md-6, .display-table-xs > .col-md-7, .display-table-xs > .col-md-8, .display-table-xs > .col-md-9,
  .display-table-xs > .col-sm-1, .display-table-xs > .col-sm-10, .display-table-xs > .col-sm-11, .display-table-xs > .col-sm-12, .display-table-xs > .col-sm-2, .display-table-xs > .col-sm-3, .display-table-xs > .col-sm-4, .display-table-xs > .col-sm-5, .display-table-xs > .col-sm-6, .display-table-xs > .col-sm-7, .display-table-xs > .col-sm-8, .display-table-xs > .col-sm-9,
  .display-table-xs > .col-xs-1, .display-table-xs > .col-xs-10, .display-table-xs > .col-xs-11, .display-table-xs > .col-xs-12, .display-table-xs > .col-xs-2, .display-table-xs > .col-xs-3, .display-table-xs > .col-xs-4, .display-table-xs > .col-xs-5, .display-table-xs > .col-xs-6, .display-table-xs > .col-xs-7, .display-table-xs > .col-xs-8, .display-table-xs > .col-xs-9 {
    float: none;
    display: table-cell;
    vertical-align: top;
  }
  .seperator-row-xs {
    margin-left: -30px;
    margin-right: -30px;
  }
  .seperator-row-xs > .col-lg-1, .seperator-row-xs > .col-lg-10, .seperator-row-xs > .col-lg-11, .seperator-row-xs > .col-lg-12, .seperator-row-xs > .col-lg-2, .seperator-row-xs > .col-lg-3, .seperator-row-xs > .col-lg-4, .seperator-row-xs > .col-lg-5, .seperator-row-xs > .col-lg-6, .seperator-row-xs > .col-lg-7, .seperator-row-xs > .col-lg-8, .seperator-row-xs > .col-lg-9,
  .seperator-row-xs > .col-md-1, .seperator-row-xs > .col-md-10, .seperator-row-xs > .col-md-11, .seperator-row-xs > .col-md-12, .seperator-row-xs > .col-md-2, .seperator-row-xs > .col-md-3, .seperator-row-xs > .col-md-4, .seperator-row-xs > .col-md-5, .seperator-row-xs > .col-md-6, .seperator-row-xs > .col-md-7, .seperator-row-xs > .col-md-8, .seperator-row-xs > .col-md-9,
  .seperator-row-xs > .col-sm-1, .seperator-row-xs > .col-sm-10, .seperator-row-xs > .col-sm-11, .seperator-row-xs > .col-sm-12, .seperator-row-xs > .col-sm-2, .seperator-row-xs > .col-sm-3, .seperator-row-xs > .col-sm-4, .seperator-row-xs > .col-sm-5, .seperator-row-xs > .col-sm-6, .seperator-row-xs > .col-sm-7, .seperator-row-xs > .col-sm-8, .seperator-row-xs > .col-sm-9,
  .seperator-row-xs > .col-xs-1, .seperator-row-xs > .col-xs-10, .seperator-row-xs > .col-xs-11, .seperator-row-xs > .col-xs-12, .seperator-row-xs > .col-xs-2, .seperator-row-xs > .col-xs-3, .seperator-row-xs > .col-xs-4, .seperator-row-xs > .col-xs-5, .seperator-row-xs > .col-xs-6, .seperator-row-xs > .col-xs-7, .seperator-row-xs > .col-xs-8, .seperator-row-xs > .col-xs-9 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .seperator-row-xs > .col-lg-1:first-child, .seperator-row-xs > .col-lg-10:first-child, .seperator-row-xs > .col-lg-11:first-child, .seperator-row-xs > .col-lg-12:first-child, .seperator-row-xs > .col-lg-2:first-child, .seperator-row-xs > .col-lg-3:first-child, .seperator-row-xs > .col-lg-4:first-child, .seperator-row-xs > .col-lg-5:first-child, .seperator-row-xs > .col-lg-6:first-child, .seperator-row-xs > .col-lg-7:first-child, .seperator-row-xs > .col-lg-8:first-child, .seperator-row-xs > .col-lg-9:first-child,
  .seperator-row-xs > .col-md-1:first-child, .seperator-row-xs > .col-md-10:first-child, .seperator-row-xs > .col-md-11:first-child, .seperator-row-xs > .col-md-12:first-child, .seperator-row-xs > .col-md-2:first-child, .seperator-row-xs > .col-md-3:first-child, .seperator-row-xs > .col-md-4:first-child, .seperator-row-xs > .col-md-5:first-child, .seperator-row-xs > .col-md-6:first-child, .seperator-row-xs > .col-md-7:first-child, .seperator-row-xs > .col-md-8:first-child, .seperator-row-xs > .col-md-9:first-child,
  .seperator-row-xs > .col-sm-1:first-child, .seperator-row-xs > .col-sm-10:first-child, .seperator-row-xs > .col-sm-11:first-child, .seperator-row-xs > .col-sm-12:first-child, .seperator-row-xs > .col-sm-2:first-child, .seperator-row-xs > .col-sm-3:first-child, .seperator-row-xs > .col-sm-4:first-child, .seperator-row-xs > .col-sm-5:first-child, .seperator-row-xs > .col-sm-6:first-child, .seperator-row-xs > .col-sm-7:first-child, .seperator-row-xs > .col-sm-8:first-child, .seperator-row-xs > .col-sm-9:first-child,
  .seperator-row-xs > .col-xs-1:first-child, .seperator-row-xs > .col-xs-10:first-child, .seperator-row-xs > .col-xs-11:first-child, .seperator-row-xs > .col-xs-12:first-child, .seperator-row-xs > .col-xs-2:first-child, .seperator-row-xs > .col-xs-3:first-child, .seperator-row-xs > .col-xs-4:first-child, .seperator-row-xs > .col-xs-5:first-child, .seperator-row-xs > .col-xs-6:first-child, .seperator-row-xs > .col-xs-7:first-child, .seperator-row-xs > .col-xs-8:first-child, .seperator-row-xs > .col-xs-9:first-child {
    border-right: 1px solid #cccccc;
  }
  .border-top-xs {
    border-top: 1px solid #cccccc !important;
  }
  .border-right-xs {
    border-right: 1px solid #cccccc !important;
  }
  .border-bottom-xs {
    border-bottom: 1px solid #cccccc !important;
  }
  .border-left-xs {
    border-left: 1px solid #cccccc !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .padding-top-sm {
    padding-top: 15px !important;
  }
  .padding-bottom-sm {
    padding-bottom: 15px !important;
  }
  .margin-top-sm {
    margin-top: 15px !important;
  }
  .margin-bottom-sm {
    margin-bottom: 15px !important;
  }
  .text-center-sm {
    text-align: center !important;
  }
  .text-left-sm {
    text-align: left !important;
  }
  .text-right-sm {
    text-align: right !important;
  }
  .pull-left-sm {
    float: left !important;
  }
  .pull-right-sm {
    float: right !important;
  }
  .clear-sm {
    float: none !important;
  }
  .display-table-sm {
    display: table;
    width: 100%;
  }
  .display-table-sm > .col-lg-1, .display-table-sm > .col-lg-10, .display-table-sm > .col-lg-11, .display-table-sm > .col-lg-12, .display-table-sm > .col-lg-2, .display-table-sm > .col-lg-3, .display-table-sm > .col-lg-4, .display-table-sm > .col-lg-5, .display-table-sm > .col-lg-6, .display-table-sm > .col-lg-7, .display-table-sm > .col-lg-8, .display-table-sm > .col-lg-9,
  .display-table-sm > .col-md-1, .display-table-sm > .col-md-10, .display-table-sm > .col-md-11, .display-table-sm > .col-md-12, .display-table-sm > .col-md-2, .display-table-sm > .col-md-3, .display-table-sm > .col-md-4, .display-table-sm > .col-md-5, .display-table-sm > .col-md-6, .display-table-sm > .col-md-7, .display-table-sm > .col-md-8, .display-table-sm > .col-md-9,
  .display-table-sm > .col-sm-1, .display-table-sm > .col-sm-10, .display-table-sm > .col-sm-11, .display-table-sm > .col-sm-12, .display-table-sm > .col-sm-2, .display-table-sm > .col-sm-3, .display-table-sm > .col-sm-4, .display-table-sm > .col-sm-5, .display-table-sm > .col-sm-6, .display-table-sm > .col-sm-7, .display-table-sm > .col-sm-8, .display-table-sm > .col-sm-9,
  .display-table-sm > .col-xs-1, .display-table-sm > .col-xs-10, .display-table-sm > .col-xs-11, .display-table-sm > .col-xs-12, .display-table-sm > .col-xs-2, .display-table-sm > .col-xs-3, .display-table-sm > .col-xs-4, .display-table-sm > .col-xs-5, .display-table-sm > .col-xs-6, .display-table-sm > .col-xs-7, .display-table-sm > .col-xs-8, .display-table-sm > .col-xs-9 {
    float: none;
    display: table-cell;
    vertical-align: top;
  }
  .seperator-row-sm {
    margin-left: -30px;
    margin-right: -30px;
  }
  .seperator-row-sm > .col-lg-1, .seperator-row-sm > .col-lg-10, .seperator-row-sm > .col-lg-11, .seperator-row-sm > .col-lg-12, .seperator-row-sm > .col-lg-2, .seperator-row-sm > .col-lg-3, .seperator-row-sm > .col-lg-4, .seperator-row-sm > .col-lg-5, .seperator-row-sm > .col-lg-6, .seperator-row-sm > .col-lg-7, .seperator-row-sm > .col-lg-8, .seperator-row-sm > .col-lg-9,
  .seperator-row-sm > .col-md-1, .seperator-row-sm > .col-md-10, .seperator-row-sm > .col-md-11, .seperator-row-sm > .col-md-12, .seperator-row-sm > .col-md-2, .seperator-row-sm > .col-md-3, .seperator-row-sm > .col-md-4, .seperator-row-sm > .col-md-5, .seperator-row-sm > .col-md-6, .seperator-row-sm > .col-md-7, .seperator-row-sm > .col-md-8, .seperator-row-sm > .col-md-9,
  .seperator-row-sm > .col-sm-1, .seperator-row-sm > .col-sm-10, .seperator-row-sm > .col-sm-11, .seperator-row-sm > .col-sm-12, .seperator-row-sm > .col-sm-2, .seperator-row-sm > .col-sm-3, .seperator-row-sm > .col-sm-4, .seperator-row-sm > .col-sm-5, .seperator-row-sm > .col-sm-6, .seperator-row-sm > .col-sm-7, .seperator-row-sm > .col-sm-8, .seperator-row-sm > .col-sm-9,
  .seperator-row-sm > .col-xs-1, .seperator-row-sm > .col-xs-10, .seperator-row-sm > .col-xs-11, .seperator-row-sm > .col-xs-12, .seperator-row-sm > .col-xs-2, .seperator-row-sm > .col-xs-3, .seperator-row-sm > .col-xs-4, .seperator-row-sm > .col-xs-5, .seperator-row-sm > .col-xs-6, .seperator-row-sm > .col-xs-7, .seperator-row-sm > .col-xs-8, .seperator-row-sm > .col-xs-9 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .seperator-row-sm > .col-lg-1:first-child, .seperator-row-sm > .col-lg-10:first-child, .seperator-row-sm > .col-lg-11:first-child, .seperator-row-sm > .col-lg-12:first-child, .seperator-row-sm > .col-lg-2:first-child, .seperator-row-sm > .col-lg-3:first-child, .seperator-row-sm > .col-lg-4:first-child, .seperator-row-sm > .col-lg-5:first-child, .seperator-row-sm > .col-lg-6:first-child, .seperator-row-sm > .col-lg-7:first-child, .seperator-row-sm > .col-lg-8:first-child, .seperator-row-sm > .col-lg-9:first-child,
  .seperator-row-sm > .col-md-1:first-child, .seperator-row-sm > .col-md-10:first-child, .seperator-row-sm > .col-md-11:first-child, .seperator-row-sm > .col-md-12:first-child, .seperator-row-sm > .col-md-2:first-child, .seperator-row-sm > .col-md-3:first-child, .seperator-row-sm > .col-md-4:first-child, .seperator-row-sm > .col-md-5:first-child, .seperator-row-sm > .col-md-6:first-child, .seperator-row-sm > .col-md-7:first-child, .seperator-row-sm > .col-md-8:first-child, .seperator-row-sm > .col-md-9:first-child,
  .seperator-row-sm > .col-sm-1:first-child, .seperator-row-sm > .col-sm-10:first-child, .seperator-row-sm > .col-sm-11:first-child, .seperator-row-sm > .col-sm-12:first-child, .seperator-row-sm > .col-sm-2:first-child, .seperator-row-sm > .col-sm-3:first-child, .seperator-row-sm > .col-sm-4:first-child, .seperator-row-sm > .col-sm-5:first-child, .seperator-row-sm > .col-sm-6:first-child, .seperator-row-sm > .col-sm-7:first-child, .seperator-row-sm > .col-sm-8:first-child, .seperator-row-sm > .col-sm-9:first-child,
  .seperator-row-sm > .col-xs-1:first-child, .seperator-row-sm > .col-xs-10:first-child, .seperator-row-sm > .col-xs-11:first-child, .seperator-row-sm > .col-xs-12:first-child, .seperator-row-sm > .col-xs-2:first-child, .seperator-row-sm > .col-xs-3:first-child, .seperator-row-sm > .col-xs-4:first-child, .seperator-row-sm > .col-xs-5:first-child, .seperator-row-sm > .col-xs-6:first-child, .seperator-row-sm > .col-xs-7:first-child, .seperator-row-sm > .col-xs-8:first-child, .seperator-row-sm > .col-xs-9:first-child {
    border-right: 1px solid #cccccc;
  }
  .border-top-sm {
    border-top: 1px solid #cccccc !important;
  }
  .border-right-sm {
    border-right: 1px solid #cccccc !important;
  }
  .border-bottom-sm {
    border-bottom: 1px solid #cccccc !important;
  }
  .border-left-sm {
    border-left: 1px solid #cccccc !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .padding-top-md {
    padding-top: 15px !important;
  }
  .padding-bottom-md {
    padding-bottom: 15px !important;
  }
  .margin-top-md {
    margin-top: 15px !important;
  }
  .margin-bottom-md {
    margin-bottom: 15px !important;
  }
  .text-center-md {
    text-align: center !important;
  }
  .text-left-md {
    text-align: left !important;
  }
  .text-right-md {
    text-align: right !important;
  }
  .pull-left-md {
    float: left !important;
  }
  .pull-right-md {
    float: right !important;
  }
  .clear-md {
    float: none !important;
  }
  .display-table-md {
    display: table;
    width: 100%;
  }
  .display-table-md > .col-lg-1, .display-table-md > .col-lg-10, .display-table-md > .col-lg-11, .display-table-md > .col-lg-12, .display-table-md > .col-lg-2, .display-table-md > .col-lg-3, .display-table-md > .col-lg-4, .display-table-md > .col-lg-5, .display-table-md > .col-lg-6, .display-table-md > .col-lg-7, .display-table-md > .col-lg-8, .display-table-md > .col-lg-9,
  .display-table-md > .col-md-1, .display-table-md > .col-md-10, .display-table-md > .col-md-11, .display-table-md > .col-md-12, .display-table-md > .col-md-2, .display-table-md > .col-md-3, .display-table-md > .col-md-4, .display-table-md > .col-md-5, .display-table-md > .col-md-6, .display-table-md > .col-md-7, .display-table-md > .col-md-8, .display-table-md > .col-md-9,
  .display-table-md > .col-sm-1, .display-table-md > .col-sm-10, .display-table-md > .col-sm-11, .display-table-md > .col-sm-12, .display-table-md > .col-sm-2, .display-table-md > .col-sm-3, .display-table-md > .col-sm-4, .display-table-md > .col-sm-5, .display-table-md > .col-sm-6, .display-table-md > .col-sm-7, .display-table-md > .col-sm-8, .display-table-md > .col-sm-9,
  .display-table-md > .col-xs-1, .display-table-md > .col-xs-10, .display-table-md > .col-xs-11, .display-table-md > .col-xs-12, .display-table-md > .col-xs-2, .display-table-md > .col-xs-3, .display-table-md > .col-xs-4, .display-table-md > .col-xs-5, .display-table-md > .col-xs-6, .display-table-md > .col-xs-7, .display-table-md > .col-xs-8, .display-table-md > .col-xs-9 {
    float: none;
    display: table-cell;
    vertical-align: top;
  }
  .seperator-row-md {
    margin-left: -30px;
    margin-right: -30px;
  }
  .seperator-row-md > .col-lg-1, .seperator-row-md > .col-lg-10, .seperator-row-md > .col-lg-11, .seperator-row-md > .col-lg-12, .seperator-row-md > .col-lg-2, .seperator-row-md > .col-lg-3, .seperator-row-md > .col-lg-4, .seperator-row-md > .col-lg-5, .seperator-row-md > .col-lg-6, .seperator-row-md > .col-lg-7, .seperator-row-md > .col-lg-8, .seperator-row-md > .col-lg-9,
  .seperator-row-md > .col-md-1, .seperator-row-md > .col-md-10, .seperator-row-md > .col-md-11, .seperator-row-md > .col-md-12, .seperator-row-md > .col-md-2, .seperator-row-md > .col-md-3, .seperator-row-md > .col-md-4, .seperator-row-md > .col-md-5, .seperator-row-md > .col-md-6, .seperator-row-md > .col-md-7, .seperator-row-md > .col-md-8, .seperator-row-md > .col-md-9,
  .seperator-row-md > .col-sm-1, .seperator-row-md > .col-sm-10, .seperator-row-md > .col-sm-11, .seperator-row-md > .col-sm-12, .seperator-row-md > .col-sm-2, .seperator-row-md > .col-sm-3, .seperator-row-md > .col-sm-4, .seperator-row-md > .col-sm-5, .seperator-row-md > .col-sm-6, .seperator-row-md > .col-sm-7, .seperator-row-md > .col-sm-8, .seperator-row-md > .col-sm-9,
  .seperator-row-md > .col-xs-1, .seperator-row-md > .col-xs-10, .seperator-row-md > .col-xs-11, .seperator-row-md > .col-xs-12, .seperator-row-md > .col-xs-2, .seperator-row-md > .col-xs-3, .seperator-row-md > .col-xs-4, .seperator-row-md > .col-xs-5, .seperator-row-md > .col-xs-6, .seperator-row-md > .col-xs-7, .seperator-row-md > .col-xs-8, .seperator-row-md > .col-xs-9 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .seperator-row-md > .col-lg-1:first-child, .seperator-row-md > .col-lg-10:first-child, .seperator-row-md > .col-lg-11:first-child, .seperator-row-md > .col-lg-12:first-child, .seperator-row-md > .col-lg-2:first-child, .seperator-row-md > .col-lg-3:first-child, .seperator-row-md > .col-lg-4:first-child, .seperator-row-md > .col-lg-5:first-child, .seperator-row-md > .col-lg-6:first-child, .seperator-row-md > .col-lg-7:first-child, .seperator-row-md > .col-lg-8:first-child, .seperator-row-md > .col-lg-9:first-child,
  .seperator-row-md > .col-md-1:first-child, .seperator-row-md > .col-md-10:first-child, .seperator-row-md > .col-md-11:first-child, .seperator-row-md > .col-md-12:first-child, .seperator-row-md > .col-md-2:first-child, .seperator-row-md > .col-md-3:first-child, .seperator-row-md > .col-md-4:first-child, .seperator-row-md > .col-md-5:first-child, .seperator-row-md > .col-md-6:first-child, .seperator-row-md > .col-md-7:first-child, .seperator-row-md > .col-md-8:first-child, .seperator-row-md > .col-md-9:first-child,
  .seperator-row-md > .col-sm-1:first-child, .seperator-row-md > .col-sm-10:first-child, .seperator-row-md > .col-sm-11:first-child, .seperator-row-md > .col-sm-12:first-child, .seperator-row-md > .col-sm-2:first-child, .seperator-row-md > .col-sm-3:first-child, .seperator-row-md > .col-sm-4:first-child, .seperator-row-md > .col-sm-5:first-child, .seperator-row-md > .col-sm-6:first-child, .seperator-row-md > .col-sm-7:first-child, .seperator-row-md > .col-sm-8:first-child, .seperator-row-md > .col-sm-9:first-child,
  .seperator-row-md > .col-xs-1:first-child, .seperator-row-md > .col-xs-10:first-child, .seperator-row-md > .col-xs-11:first-child, .seperator-row-md > .col-xs-12:first-child, .seperator-row-md > .col-xs-2:first-child, .seperator-row-md > .col-xs-3:first-child, .seperator-row-md > .col-xs-4:first-child, .seperator-row-md > .col-xs-5:first-child, .seperator-row-md > .col-xs-6:first-child, .seperator-row-md > .col-xs-7:first-child, .seperator-row-md > .col-xs-8:first-child, .seperator-row-md > .col-xs-9:first-child {
    border-right: 1px solid #cccccc;
  }
  .border-top-md {
    border-top: 1px solid #cccccc !important;
  }
  .border-right-md {
    border-right: 1px solid #cccccc !important;
  }
  .border-bottom-md {
    border-bottom: 1px solid #cccccc !important;
  }
  .border-left-md {
    border-left: 1px solid #cccccc !important;
  }
}
@media (min-width: 1200px) {
  .padding-top-lg {
    padding-top: 15px !important;
  }
  .padding-bottom-lg {
    padding-bottom: 15px !important;
  }
  .margin-top-lg {
    margin-top: 15px !important;
  }
  .margin-bottom-lg {
    margin-bottom: 15px !important;
  }
  .text-center-lg {
    text-align: center !important;
  }
  .text-left-lg {
    text-align: left !important;
  }
  .text-right-lg {
    text-align: right !important;
  }
  .pull-left-lg {
    float: left !important;
  }
  .pull-right-lg {
    float: right !important;
  }
  .clear-lg {
    float: none !important;
  }
  .display-table-lg {
    display: table;
    width: 100%;
  }
  .display-table-lg > .col-lg-1, .display-table-lg > .col-lg-10, .display-table-lg > .col-lg-11, .display-table-lg > .col-lg-12, .display-table-lg > .col-lg-2, .display-table-lg > .col-lg-3, .display-table-lg > .col-lg-4, .display-table-lg > .col-lg-5, .display-table-lg > .col-lg-6, .display-table-lg > .col-lg-7, .display-table-lg > .col-lg-8, .display-table-lg > .col-lg-9,
  .display-table-lg > .col-md-1, .display-table-lg > .col-md-10, .display-table-lg > .col-md-11, .display-table-lg > .col-md-12, .display-table-lg > .col-md-2, .display-table-lg > .col-md-3, .display-table-lg > .col-md-4, .display-table-lg > .col-md-5, .display-table-lg > .col-md-6, .display-table-lg > .col-md-7, .display-table-lg > .col-md-8, .display-table-lg > .col-md-9,
  .display-table-lg > .col-sm-1, .display-table-lg > .col-sm-10, .display-table-lg > .col-sm-11, .display-table-lg > .col-sm-12, .display-table-lg > .col-sm-2, .display-table-lg > .col-sm-3, .display-table-lg > .col-sm-4, .display-table-lg > .col-sm-5, .display-table-lg > .col-sm-6, .display-table-lg > .col-sm-7, .display-table-lg > .col-sm-8, .display-table-lg > .col-sm-9,
  .display-table-lg > .col-xs-1, .display-table-lg > .col-xs-10, .display-table-lg > .col-xs-11, .display-table-lg > .col-xs-12, .display-table-lg > .col-xs-2, .display-table-lg > .col-xs-3, .display-table-lg > .col-xs-4, .display-table-lg > .col-xs-5, .display-table-lg > .col-xs-6, .display-table-lg > .col-xs-7, .display-table-lg > .col-xs-8, .display-table-lg > .col-xs-9 {
    float: none;
    display: table-cell;
    vertical-align: top;
  }
  .seperator-row-lg {
    margin-left: -30px;
    margin-right: -30px;
  }
  .seperator-row-lg > .col-lg-1, .seperator-row-lg > .col-lg-10, .seperator-row-lg > .col-lg-11, .seperator-row-lg > .col-lg-12, .seperator-row-lg > .col-lg-2, .seperator-row-lg > .col-lg-3, .seperator-row-lg > .col-lg-4, .seperator-row-lg > .col-lg-5, .seperator-row-lg > .col-lg-6, .seperator-row-lg > .col-lg-7, .seperator-row-lg > .col-lg-8, .seperator-row-lg > .col-lg-9,
  .seperator-row-lg > .col-md-1, .seperator-row-lg > .col-md-10, .seperator-row-lg > .col-md-11, .seperator-row-lg > .col-md-12, .seperator-row-lg > .col-md-2, .seperator-row-lg > .col-md-3, .seperator-row-lg > .col-md-4, .seperator-row-lg > .col-md-5, .seperator-row-lg > .col-md-6, .seperator-row-lg > .col-md-7, .seperator-row-lg > .col-md-8, .seperator-row-lg > .col-md-9,
  .seperator-row-lg > .col-sm-1, .seperator-row-lg > .col-sm-10, .seperator-row-lg > .col-sm-11, .seperator-row-lg > .col-sm-12, .seperator-row-lg > .col-sm-2, .seperator-row-lg > .col-sm-3, .seperator-row-lg > .col-sm-4, .seperator-row-lg > .col-sm-5, .seperator-row-lg > .col-sm-6, .seperator-row-lg > .col-sm-7, .seperator-row-lg > .col-sm-8, .seperator-row-lg > .col-sm-9,
  .seperator-row-lg > .col-xs-1, .seperator-row-lg > .col-xs-10, .seperator-row-lg > .col-xs-11, .seperator-row-lg > .col-xs-12, .seperator-row-lg > .col-xs-2, .seperator-row-lg > .col-xs-3, .seperator-row-lg > .col-xs-4, .seperator-row-lg > .col-xs-5, .seperator-row-lg > .col-xs-6, .seperator-row-lg > .col-xs-7, .seperator-row-lg > .col-xs-8, .seperator-row-lg > .col-xs-9 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .seperator-row-lg > .col-lg-1:first-child, .seperator-row-lg > .col-lg-10:first-child, .seperator-row-lg > .col-lg-11:first-child, .seperator-row-lg > .col-lg-12:first-child, .seperator-row-lg > .col-lg-2:first-child, .seperator-row-lg > .col-lg-3:first-child, .seperator-row-lg > .col-lg-4:first-child, .seperator-row-lg > .col-lg-5:first-child, .seperator-row-lg > .col-lg-6:first-child, .seperator-row-lg > .col-lg-7:first-child, .seperator-row-lg > .col-lg-8:first-child, .seperator-row-lg > .col-lg-9:first-child,
  .seperator-row-lg > .col-md-1:first-child, .seperator-row-lg > .col-md-10:first-child, .seperator-row-lg > .col-md-11:first-child, .seperator-row-lg > .col-md-12:first-child, .seperator-row-lg > .col-md-2:first-child, .seperator-row-lg > .col-md-3:first-child, .seperator-row-lg > .col-md-4:first-child, .seperator-row-lg > .col-md-5:first-child, .seperator-row-lg > .col-md-6:first-child, .seperator-row-lg > .col-md-7:first-child, .seperator-row-lg > .col-md-8:first-child, .seperator-row-lg > .col-md-9:first-child,
  .seperator-row-lg > .col-sm-1:first-child, .seperator-row-lg > .col-sm-10:first-child, .seperator-row-lg > .col-sm-11:first-child, .seperator-row-lg > .col-sm-12:first-child, .seperator-row-lg > .col-sm-2:first-child, .seperator-row-lg > .col-sm-3:first-child, .seperator-row-lg > .col-sm-4:first-child, .seperator-row-lg > .col-sm-5:first-child, .seperator-row-lg > .col-sm-6:first-child, .seperator-row-lg > .col-sm-7:first-child, .seperator-row-lg > .col-sm-8:first-child, .seperator-row-lg > .col-sm-9:first-child,
  .seperator-row-lg > .col-xs-1:first-child, .seperator-row-lg > .col-xs-10:first-child, .seperator-row-lg > .col-xs-11:first-child, .seperator-row-lg > .col-xs-12:first-child, .seperator-row-lg > .col-xs-2:first-child, .seperator-row-lg > .col-xs-3:first-child, .seperator-row-lg > .col-xs-4:first-child, .seperator-row-lg > .col-xs-5:first-child, .seperator-row-lg > .col-xs-6:first-child, .seperator-row-lg > .col-xs-7:first-child, .seperator-row-lg > .col-xs-8:first-child, .seperator-row-lg > .col-xs-9:first-child {
    border-right: 1px solid #cccccc;
  }
  .border-top-lg {
    border-top: 1px solid #cccccc !important;
  }
  .border-right-lg {
    border-right: 1px solid #cccccc !important;
  }
  .border-bottom-lg {
    border-bottom: 1px solid #cccccc !important;
  }
  .border-left-lg {
    border-left: 1px solid #cccccc !important;
  }
}
.color-secondary {
  color: #E5AB28 !important;
}

.border {
  border: 1px solid #cccccc;
}

.border-top, hr {
  border-top: 1px solid #cccccc;
}

.border-left {
  border-left: 1px solid #cccccc;
}

.border-bottom {
  border-bottom: 1px solid #cccccc;
}

.border-right {
  border-right: 1px solid #cccccc;
}

.position-relative {
  position: relative !important;
}

.block,
.display-block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
  width: auto;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^=col-],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

.background-primary {
  background-color: #005D9F;
}

.background-secondary {
  background-color: #005D9F;
}

.background-white {
  background-color: #ffffff;
}

.background-gray {
  background-color: #555555;
}

.background-gray-light {
  background-color: #cccccc;
}

.background-gray-dark {
  background-color: #333333;
}

.background-cta {
  background-color: #005D9F;
}

.display-table {
  display: table;
  width: 100%;
}
.display-table > .col-lg-1, .display-table > .col-lg-10, .display-table > .col-lg-11, .display-table > .col-lg-12, .display-table > .col-lg-2, .display-table > .col-lg-3, .display-table > .col-lg-4, .display-table > .col-lg-5, .display-table > .col-lg-6, .display-table > .col-lg-7, .display-table > .col-lg-8, .display-table > .col-lg-9,
.display-table > .col-md-1, .display-table > .col-md-10, .display-table > .col-md-11, .display-table > .col-md-12, .display-table > .col-md-2, .display-table > .col-md-3, .display-table > .col-md-4, .display-table > .col-md-5, .display-table > .col-md-6, .display-table > .col-md-7, .display-table > .col-md-8, .display-table > .col-md-9,
.display-table > .col-sm-1, .display-table > .col-sm-10, .display-table > .col-sm-11, .display-table > .col-sm-12, .display-table > .col-sm-2, .display-table > .col-sm-3, .display-table > .col-sm-4, .display-table > .col-sm-5, .display-table > .col-sm-6, .display-table > .col-sm-7, .display-table > .col-sm-8, .display-table > .col-sm-9,
.display-table > .col-xs-1, .display-table > .col-xs-10, .display-table > .col-xs-11, .display-table > .col-xs-12, .display-table > .col-xs-2, .display-table > .col-xs-3, .display-table > .col-xs-4, .display-table > .col-xs-5, .display-table > .col-xs-6, .display-table > .col-xs-7, .display-table > .col-xs-8, .display-table > .col-xs-9 {
  float: none;
  display: table-cell;
  vertical-align: top;
  min-height: none;
}

/* == DNN resets  == */
.controlpanel header {
  margin-top: 86px;
}

.controlpanel .topbar {
  margin-top: 40px;
}

.dnnSendPassword {
  max-width: 400px;
  margin: 0 auto;
}

.DnnModule-Authentication .dnnFormValidationSummary {
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebcccc;
}

/*============================================
	19. SSCSS (ShameSCSS)
============================================*/
.alert-fix {
  float: left;
}

/*============================================
	Expedient helper classes
============================================*/
.padding {
  padding: 15px !important;
}

.padding-top {
  padding-top: 15px !important;
}

.padding-bottom {
  padding-bottom: 15px !important;
}

.padding-left {
  padding-left: 15px !important;
}

.padding-right {
  padding-right: 15px !important;
}

.padding-reset {
  padding: 0 !important;
}

.padding-top-reset {
  padding-top: 0 !important;
}

.padding-bottom-reset {
  padding-bottom: 0 !important;
}

.padding-left-reset {
  padding-left: 0 !important;
}

.padding-right-reset {
  padding-right: 0 !important;
}

.padding-double {
  padding: 30px !important;
}

.padding-top-double {
  padding-top: 30px !important;
}

.padding-bottom-double {
  padding-bottom: 30px !important;
}

.padding-left-double {
  padding-left: 30px !important;
}

.padding-right-double {
  padding-right: 30px !important;
}

.padding-half {
  padding: 8px !important;
}

.padding-top-half {
  padding-top: 8px !important;
}

.padding-bottom-half {
  padding-bottom: 8px !important;
}

.padding-left-half {
  padding-left: 8px !important;
}

.padding-right-half {
  padding-right: 8px !important;
}

.margin {
  margin: 15px !important;
}

.margin-top {
  margin-top: 15px !important;
}

.margin-bottom {
  margin-bottom: 15px !important;
}

.margin-left {
  margin-left: 15px !important;
}

.margin-right {
  margin-right: 15px !important;
}

.margin-reset {
  margin: 0 !important;
}

.margin-top-reset {
  margin-top: 0 !important;
}

.margin-bottom-reset {
  margin-bottom: 0 !important;
}

.margin-left-reset {
  margin-left: 0 !important;
}

.margin-right-reset {
  margin-right: 0 !important;
}

.margin-double {
  margin: 30px !important;
}

.margin-top-double {
  margin-top: 30px !important;
}

.margin-bottom-double {
  margin-bottom: 30px !important;
}

.margin-left-double {
  margin-left: 30px !important;
}

.margin-right-double {
  margin-right: 30px !important;
}

.margin-half {
  margin: 8px !important;
}

.margin-top-half {
  margin-top: 8px !important;
}

.margin-bottom-half {
  margin-bottom: 8px !important;
}

.margin-left-half {
  margin-left: 8px !important;
}

.margin-right-half {
  margin-right: 8px !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.pull-left {
  float: left !important;
}

.pull-right {
  float: right !important;
}

.clear {
  float: none !important;
}

.border {
  border: 1px solid #e6e6e6;
}

.border-top, hr {
  border-top: 1px solid #e6e6e6;
}

.border-bottom {
  border-bottom: 1px solid #e6e6e6;
}

.border-left {
  border-left: 1px solid #e6e6e6;
}

.border-right {
  border-right: 1px solid #e6e6e6;
}

.border-reset {
  border: 0 !important;
}

.border-top-reset {
  border-top: 0 !important;
}

.border-bottom-reset {
  border-bottom: 0 !important;
}

.border-left-reset {
  border-left: 0 !important;
}

.border-right-reset {
  border-right: 0 !important;
}

.background-primary {
  background-color: #005D9F;
}

.background-secondary {
  background-color: #E5AB28;
}

.background-tertiary {
  background-color: #C3C3C3;
}

.background-white {
  background-color: #ffffff;
}

.background-black {
  background-color: #0e0e0e;
}

.background-gray {
  background-color: #555555;
}

.background-gray-light {
  background-color: #cccccc;
}

.background-gray-lighter {
  background-color: #e6e6e6;
}

.background-gray-dark {
  background-color: #333333;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.display-table {
  display: table;
  width: 100%;
}
.display-table > .col-lg-1, .display-table > .col-lg-10, .display-table > .col-lg-11, .display-table > .col-lg-12, .display-table > .col-lg-2, .display-table > .col-lg-3, .display-table > .col-lg-4, .display-table > .col-lg-5, .display-table > .col-lg-6, .display-table > .col-lg-7, .display-table > .col-lg-8, .display-table > .col-lg-9,
.display-table > .col-md-1, .display-table > .col-md-10, .display-table > .col-md-11, .display-table > .col-md-12, .display-table > .col-md-2, .display-table > .col-md-3, .display-table > .col-md-4, .display-table > .col-md-5, .display-table > .col-md-6, .display-table > .col-md-7, .display-table > .col-md-8, .display-table > .col-md-9,
.display-table > .col-sm-1, .display-table > .col-sm-10, .display-table > .col-sm-11, .display-table > .col-sm-12, .display-table > .col-sm-2, .display-table > .col-sm-3, .display-table > .col-sm-4, .display-table > .col-sm-5, .display-table > .col-sm-6, .display-table > .col-sm-7, .display-table > .col-sm-8, .display-table > .col-sm-9,
.display-table > .col-xs-1, .display-table > .col-xs-10, .display-table > .col-xs-11, .display-table > .col-xs-12, .display-table > .col-xs-2, .display-table > .col-xs-3, .display-table > .col-xs-4, .display-table > .col-xs-5, .display-table > .col-xs-6, .display-table > .col-xs-7, .display-table > .col-xs-8, .display-table > .col-xs-9 {
  float: none;
  display: table-cell;
  vertical-align: top;
}

.seperator-row {
  margin-left: -30px;
  margin-right: -30px;
}
.seperator-row > .col-lg-1, .seperator-row > .col-lg-10, .seperator-row > .col-lg-11, .seperator-row > .col-lg-12, .seperator-row > .col-lg-2, .seperator-row > .col-lg-3, .seperator-row > .col-lg-4, .seperator-row > .col-lg-5, .seperator-row > .col-lg-6, .seperator-row > .col-lg-7, .seperator-row > .col-lg-8, .seperator-row > .col-lg-9,
.seperator-row > .col-md-1, .seperator-row > .col-md-10, .seperator-row > .col-md-11, .seperator-row > .col-md-12, .seperator-row > .col-md-2, .seperator-row > .col-md-3, .seperator-row > .col-md-4, .seperator-row > .col-md-5, .seperator-row > .col-md-6, .seperator-row > .col-md-7, .seperator-row > .col-md-8, .seperator-row > .col-md-9,
.seperator-row > .col-sm-1, .seperator-row > .col-sm-10, .seperator-row > .col-sm-11, .seperator-row > .col-sm-12, .seperator-row > .col-sm-2, .seperator-row > .col-sm-3, .seperator-row > .col-sm-4, .seperator-row > .col-sm-5, .seperator-row > .col-sm-6, .seperator-row > .col-sm-7, .seperator-row > .col-sm-8, .seperator-row > .col-sm-9,
.seperator-row > .col-xs-1, .seperator-row > .col-xs-10, .seperator-row > .col-xs-11, .seperator-row > .col-xs-12, .seperator-row > .col-xs-2, .seperator-row > .col-xs-3, .seperator-row > .col-xs-4, .seperator-row > .col-xs-5, .seperator-row > .col-xs-6, .seperator-row > .col-xs-7, .seperator-row > .col-xs-8, .seperator-row > .col-xs-9 {
  padding-left: 30px;
  padding-right: 30px;
}
.seperator-row > .col-lg-1:first-child, .seperator-row > .col-lg-10:first-child, .seperator-row > .col-lg-11:first-child, .seperator-row > .col-lg-12:first-child, .seperator-row > .col-lg-2:first-child, .seperator-row > .col-lg-3:first-child, .seperator-row > .col-lg-4:first-child, .seperator-row > .col-lg-5:first-child, .seperator-row > .col-lg-6:first-child, .seperator-row > .col-lg-7:first-child, .seperator-row > .col-lg-8:first-child, .seperator-row > .col-lg-9:first-child,
.seperator-row > .col-md-1:first-child, .seperator-row > .col-md-10:first-child, .seperator-row > .col-md-11:first-child, .seperator-row > .col-md-12:first-child, .seperator-row > .col-md-2:first-child, .seperator-row > .col-md-3:first-child, .seperator-row > .col-md-4:first-child, .seperator-row > .col-md-5:first-child, .seperator-row > .col-md-6:first-child, .seperator-row > .col-md-7:first-child, .seperator-row > .col-md-8:first-child, .seperator-row > .col-md-9:first-child,
.seperator-row > .col-sm-1:first-child, .seperator-row > .col-sm-10:first-child, .seperator-row > .col-sm-11:first-child, .seperator-row > .col-sm-12:first-child, .seperator-row > .col-sm-2:first-child, .seperator-row > .col-sm-3:first-child, .seperator-row > .col-sm-4:first-child, .seperator-row > .col-sm-5:first-child, .seperator-row > .col-sm-6:first-child, .seperator-row > .col-sm-7:first-child, .seperator-row > .col-sm-8:first-child, .seperator-row > .col-sm-9:first-child,
.seperator-row > .col-xs-1:first-child, .seperator-row > .col-xs-10:first-child, .seperator-row > .col-xs-11:first-child, .seperator-row > .col-xs-12:first-child, .seperator-row > .col-xs-2:first-child, .seperator-row > .col-xs-3:first-child, .seperator-row > .col-xs-4:first-child, .seperator-row > .col-xs-5:first-child, .seperator-row > .col-xs-6:first-child, .seperator-row > .col-xs-7:first-child, .seperator-row > .col-xs-8:first-child, .seperator-row > .col-xs-9:first-child {
  border-right: 1px solid #e6e6e6;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^=col-],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

.row.half-gutters {
  margin-right: -8px;
  margin-left: -8px;
}

.row.half-gutters > [class^=col-],
.row.half-gutters > [class*=" col-"] {
  padding-right: 8px;
  padding-left: 8px;
}

.col-20p {
  width: 20%;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 767px) {
  .padding-xs {
    padding: 15px !important;
  }
  .padding-top-xs {
    padding-top: 15px !important;
  }
  .padding-bottom-xs {
    padding-bottom: 15px !important;
  }
  .padding-left-xs {
    padding-left: 15px !important;
  }
  .padding-right-xs {
    padding-right: 15px !important;
  }
  .padding-reset-xs {
    padding: 0 !important;
  }
  .padding-top-reset-xs {
    padding-top: 0 !important;
  }
  .padding-bottom-reset-xs {
    padding-bottom: 0 !important;
  }
  .padding-left-reset-xs {
    padding-left: 0 !important;
  }
  .padding-right-reset-xs {
    padding-right: 0 !important;
  }
  .padding-double-xs {
    padding: 30px !important;
  }
  .padding-top-double-xs {
    padding-top: 30px !important;
  }
  .padding-bottom-double-xs {
    padding-bottom: 30px !important;
  }
  .padding-left-double-xs {
    padding-left: 30px !important;
  }
  .padding-right-double-xs {
    padding-right: 30px !important;
  }
  .padding-half-xs {
    padding: 8px !important;
  }
  .padding-top-half-xs {
    padding-top: 8px !important;
  }
  .padding-bottom-half-xs {
    padding-bottom: 8px !important;
  }
  .padding-left-half-xs {
    padding-left: 8px !important;
  }
  .padding-right-half-xs {
    padding-right: 8px !important;
  }
  .margin-xs {
    margin: 15px !important;
  }
  .margin-top-xs {
    margin-top: 15px !important;
  }
  .margin-bottom-xs {
    margin-bottom: 15px !important;
  }
  .margin-left-xs {
    margin-left: 15px !important;
  }
  .margin-right-xs {
    margin-right: 15px !important;
  }
  .margin-reset-xs {
    margin: 0 !important;
  }
  .margin-top-reset-xs {
    margin-top: 0 !important;
  }
  .margin-bottom-reset-xs {
    margin-bottom: 0 !important;
  }
  .margin-left-reset-xs {
    margin-left: 0 !important;
  }
  .margin-right-reset-xs {
    margin-right: 0 !important;
  }
  .margin-double-xs {
    margin: 30px !important;
  }
  .margin-top-double-xs {
    margin-top: 30px !important;
  }
  .margin-bottom-double-xs {
    margin-bottom: 30px !important;
  }
  .margin-left-double-xs {
    margin-left: 30px !important;
  }
  .margin-right-double-xs {
    margin-right: 30px !important;
  }
  .margin-half-xs {
    margin: 8px !important;
  }
  .margin-top-half-xs {
    margin-top: 8px !important;
  }
  .margin-bottom-half-xs {
    margin-bottom: 8px !important;
  }
  .margin-left-half-xs {
    margin-left: 8px !important;
  }
  .margin-right-half-xs {
    margin-right: 8px !important;
  }
  .text-center-xs {
    text-align: center !important;
  }
  .text-left-xs {
    text-align: left !important;
  }
  .text-right-xs {
    text-align: right !important;
  }
  .pull-left-xs {
    float: left !important;
  }
  .pull-right-xs {
    float: right !important;
  }
  .clear-xs {
    float: none !important;
  }
  .border-xs {
    border: 1px solid #e6e6e6;
  }
  .border-top-xs {
    border-top: 1px solid #e6e6e6;
  }
  .border-bottom-xs {
    border-bottom: 1px solid #e6e6e6;
  }
  .border-left-xs {
    border-left: 1px solid #e6e6e6;
  }
  .border-right-xs {
    border-right: 1px solid #e6e6e6;
  }
  .border-reset-xs {
    border: 0 !important;
  }
  .border-top-reset-xs {
    border-top: 0 !important;
  }
  .border-bottom-reset-xs {
    border-bottom: 0 !important;
  }
  .border-left-reset-xs {
    border-left: 0 !important;
  }
  .border-right-reset-xs {
    border-right: 0 !important;
  }
  .background-primary-xs {
    background-color: #005D9F;
  }
  .background-secondary-xs {
    background-color: #E5AB28;
  }
  .background-tertiary-xs {
    background-color: #C3C3C3;
  }
  .background-white-xs {
    background-color: #ffffff;
  }
  .background-black-xs {
    background-color: #0e0e0e;
  }
  .background-gray-xs {
    background-color: #555555;
  }
  .background-gray-light-xs {
    background-color: #cccccc;
  }
  .background-gray-lighter-xs {
    background-color: #e6e6e6;
  }
  .background-gray-dark-xs {
    background-color: #333333;
  }
  .block-xs {
    display: block !important;
  }
  .inline-block-xs {
    display: inline-block !important;
  }
  .display-table-xs {
    display: table;
    width: 100%;
  }
  .display-table-xs > .col-lg-1, .display-table-xs > .col-lg-10, .display-table-xs > .col-lg-11, .display-table-xs > .col-lg-12, .display-table-xs > .col-lg-2, .display-table-xs > .col-lg-3, .display-table-xs > .col-lg-4, .display-table-xs > .col-lg-5, .display-table-xs > .col-lg-6, .display-table-xs > .col-lg-7, .display-table-xs > .col-lg-8, .display-table-xs > .col-lg-9,
  .display-table-xs > .col-md-1, .display-table-xs > .col-md-10, .display-table-xs > .col-md-11, .display-table-xs > .col-md-12, .display-table-xs > .col-md-2, .display-table-xs > .col-md-3, .display-table-xs > .col-md-4, .display-table-xs > .col-md-5, .display-table-xs > .col-md-6, .display-table-xs > .col-md-7, .display-table-xs > .col-md-8, .display-table-xs > .col-md-9,
  .display-table-xs > .col-sm-1, .display-table-xs > .col-sm-10, .display-table-xs > .col-sm-11, .display-table-xs > .col-sm-12, .display-table-xs > .col-sm-2, .display-table-xs > .col-sm-3, .display-table-xs > .col-sm-4, .display-table-xs > .col-sm-5, .display-table-xs > .col-sm-6, .display-table-xs > .col-sm-7, .display-table-xs > .col-sm-8, .display-table-xs > .col-sm-9,
  .display-table-xs > .col-xs-1, .display-table-xs > .col-xs-10, .display-table-xs > .col-xs-11, .display-table-xs > .col-xs-12, .display-table-xs > .col-xs-2, .display-table-xs > .col-xs-3, .display-table-xs > .col-xs-4, .display-table-xs > .col-xs-5, .display-table-xs > .col-xs-6, .display-table-xs > .col-xs-7, .display-table-xs > .col-xs-8, .display-table-xs > .col-xs-9 {
    float: none;
    display: table-cell;
    vertical-align: top;
  }
  .seperator-row-xs {
    margin-left: -30px;
    margin-right: -30px;
  }
  .seperator-row-xs > .col-lg-1, .seperator-row-xs > .col-lg-10, .seperator-row-xs > .col-lg-11, .seperator-row-xs > .col-lg-12, .seperator-row-xs > .col-lg-2, .seperator-row-xs > .col-lg-3, .seperator-row-xs > .col-lg-4, .seperator-row-xs > .col-lg-5, .seperator-row-xs > .col-lg-6, .seperator-row-xs > .col-lg-7, .seperator-row-xs > .col-lg-8, .seperator-row-xs > .col-lg-9,
  .seperator-row-xs > .col-md-1, .seperator-row-xs > .col-md-10, .seperator-row-xs > .col-md-11, .seperator-row-xs > .col-md-12, .seperator-row-xs > .col-md-2, .seperator-row-xs > .col-md-3, .seperator-row-xs > .col-md-4, .seperator-row-xs > .col-md-5, .seperator-row-xs > .col-md-6, .seperator-row-xs > .col-md-7, .seperator-row-xs > .col-md-8, .seperator-row-xs > .col-md-9,
  .seperator-row-xs > .col-sm-1, .seperator-row-xs > .col-sm-10, .seperator-row-xs > .col-sm-11, .seperator-row-xs > .col-sm-12, .seperator-row-xs > .col-sm-2, .seperator-row-xs > .col-sm-3, .seperator-row-xs > .col-sm-4, .seperator-row-xs > .col-sm-5, .seperator-row-xs > .col-sm-6, .seperator-row-xs > .col-sm-7, .seperator-row-xs > .col-sm-8, .seperator-row-xs > .col-sm-9,
  .seperator-row-xs > .col-xs-1, .seperator-row-xs > .col-xs-10, .seperator-row-xs > .col-xs-11, .seperator-row-xs > .col-xs-12, .seperator-row-xs > .col-xs-2, .seperator-row-xs > .col-xs-3, .seperator-row-xs > .col-xs-4, .seperator-row-xs > .col-xs-5, .seperator-row-xs > .col-xs-6, .seperator-row-xs > .col-xs-7, .seperator-row-xs > .col-xs-8, .seperator-row-xs > .col-xs-9 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .seperator-row-xs > .col-lg-1:first-child, .seperator-row-xs > .col-lg-10:first-child, .seperator-row-xs > .col-lg-11:first-child, .seperator-row-xs > .col-lg-12:first-child, .seperator-row-xs > .col-lg-2:first-child, .seperator-row-xs > .col-lg-3:first-child, .seperator-row-xs > .col-lg-4:first-child, .seperator-row-xs > .col-lg-5:first-child, .seperator-row-xs > .col-lg-6:first-child, .seperator-row-xs > .col-lg-7:first-child, .seperator-row-xs > .col-lg-8:first-child, .seperator-row-xs > .col-lg-9:first-child,
  .seperator-row-xs > .col-md-1:first-child, .seperator-row-xs > .col-md-10:first-child, .seperator-row-xs > .col-md-11:first-child, .seperator-row-xs > .col-md-12:first-child, .seperator-row-xs > .col-md-2:first-child, .seperator-row-xs > .col-md-3:first-child, .seperator-row-xs > .col-md-4:first-child, .seperator-row-xs > .col-md-5:first-child, .seperator-row-xs > .col-md-6:first-child, .seperator-row-xs > .col-md-7:first-child, .seperator-row-xs > .col-md-8:first-child, .seperator-row-xs > .col-md-9:first-child,
  .seperator-row-xs > .col-sm-1:first-child, .seperator-row-xs > .col-sm-10:first-child, .seperator-row-xs > .col-sm-11:first-child, .seperator-row-xs > .col-sm-12:first-child, .seperator-row-xs > .col-sm-2:first-child, .seperator-row-xs > .col-sm-3:first-child, .seperator-row-xs > .col-sm-4:first-child, .seperator-row-xs > .col-sm-5:first-child, .seperator-row-xs > .col-sm-6:first-child, .seperator-row-xs > .col-sm-7:first-child, .seperator-row-xs > .col-sm-8:first-child, .seperator-row-xs > .col-sm-9:first-child,
  .seperator-row-xs > .col-xs-1:first-child, .seperator-row-xs > .col-xs-10:first-child, .seperator-row-xs > .col-xs-11:first-child, .seperator-row-xs > .col-xs-12:first-child, .seperator-row-xs > .col-xs-2:first-child, .seperator-row-xs > .col-xs-3:first-child, .seperator-row-xs > .col-xs-4:first-child, .seperator-row-xs > .col-xs-5:first-child, .seperator-row-xs > .col-xs-6:first-child, .seperator-row-xs > .col-xs-7:first-child, .seperator-row-xs > .col-xs-8:first-child, .seperator-row-xs > .col-xs-9:first-child {
    border-right: 1px solid #e6e6e6;
  }
  .row.no-gutter-xss {
    margin-right: 0;
    margin-left: 0;
  }
  .row.no-gutters-xs > [class^=col-],
  .row.no-gutters-xs > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
  }
  .row.half-gutters-xs {
    margin-right: -8px;
    margin-left: -8px;
  }
  .row.half-gutters-xs > [class^=col-],
  .row.half-gutters-xs > [class*=" col-"] {
    padding-right: 8px;
    padding-left: 8px;
  }
  .col-20p-xs {
    width: 20%;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .padding-sm {
    padding: 15px !important;
  }
  .padding-top-sm {
    padding-top: 15px !important;
  }
  .padding-bottom-sm {
    padding-bottom: 15px !important;
  }
  .padding-left-sm {
    padding-left: 15px !important;
  }
  .padding-right-sm {
    padding-right: 15px !important;
  }
  .padding-reset-sm {
    padding: 0 !important;
  }
  .padding-top-reset-sm {
    padding-top: 0 !important;
  }
  .padding-bottom-reset-sm {
    padding-bottom: 0 !important;
  }
  .padding-left-reset-sm {
    padding-left: 0 !important;
  }
  .padding-right-reset-sm {
    padding-right: 0 !important;
  }
  .padding-double-sm {
    padding: 30px !important;
  }
  .padding-top-double-sm {
    padding-top: 30px !important;
  }
  .padding-bottom-double-sm {
    padding-bottom: 30px !important;
  }
  .padding-left-double-sm {
    padding-left: 30px !important;
  }
  .padding-right-double-sm {
    padding-right: 30px !important;
  }
  .padding-half-sm {
    padding: 8px !important;
  }
  .padding-top-half-sm {
    padding-top: 8px !important;
  }
  .padding-bottom-half-sm {
    padding-bottom: 8px !important;
  }
  .padding-left-half-sm {
    padding-left: 8px !important;
  }
  .padding-right-half-sm {
    padding-right: 8px !important;
  }
  .margin-sm {
    margin: 15px !important;
  }
  .margin-top-sm {
    margin-top: 15px !important;
  }
  .margin-bottom-sm {
    margin-bottom: 15px !important;
  }
  .margin-left-sm {
    margin-left: 15px !important;
  }
  .margin-right-sm {
    margin-right: 15px !important;
  }
  .margin-reset-sm {
    margin: 0 !important;
  }
  .margin-top-reset-sm {
    margin-top: 0 !important;
  }
  .margin-bottom-reset-sm {
    margin-bottom: 0 !important;
  }
  .margin-left-reset-sm {
    margin-left: 0 !important;
  }
  .margin-right-reset-sm {
    margin-right: 0 !important;
  }
  .margin-double-sm {
    margin: 30px !important;
  }
  .margin-top-double-sm {
    margin-top: 30px !important;
  }
  .margin-bottom-double-sm {
    margin-bottom: 30px !important;
  }
  .margin-left-double-sm {
    margin-left: 30px !important;
  }
  .margin-right-double-sm {
    margin-right: 30px !important;
  }
  .margin-half-sm {
    margin: 8px !important;
  }
  .margin-top-half-sm {
    margin-top: 8px !important;
  }
  .margin-bottom-half-sm {
    margin-bottom: 8px !important;
  }
  .margin-left-half-sm {
    margin-left: 8px !important;
  }
  .margin-right-half-sm {
    margin-right: 8px !important;
  }
  .text-center-sm {
    text-align: center !important;
  }
  .text-left-sm {
    text-align: left !important;
  }
  .text-right-sm {
    text-align: right !important;
  }
  .pull-left-sm {
    float: left !important;
  }
  .pull-right-sm {
    float: right !important;
  }
  .clear-sm {
    float: none !important;
  }
  .border-sm {
    border: 1px solid #e6e6e6;
  }
  .border-top-sm {
    border-top: 1px solid #e6e6e6;
  }
  .border-bottom-sm {
    border-bottom: 1px solid #e6e6e6;
  }
  .border-left-sm {
    border-left: 1px solid #e6e6e6;
  }
  .border-right-sm {
    border-right: 1px solid #e6e6e6;
  }
  .border-reset-sm {
    border: 0 !important;
  }
  .border-top-reset-sm {
    border-top: 0 !important;
  }
  .border-bottom-reset-sm {
    border-bottom: 0 !important;
  }
  .border-left-reset-sm {
    border-left: 0 !important;
  }
  .border-right-reset-sm {
    border-right: 0 !important;
  }
  .background-primary-sm {
    background-color: #005D9F;
  }
  .background-secondary-sm {
    background-color: #E5AB28;
  }
  .background-tertiary-sm {
    background-color: #C3C3C3;
  }
  .background-white-sm {
    background-color: #ffffff;
  }
  .background-black-sm {
    background-color: #0e0e0e;
  }
  .background-gray-sm {
    background-color: #555555;
  }
  .background-gray-light-sm {
    background-color: #cccccc;
  }
  .background-gray-lighter-sm {
    background-color: #e6e6e6;
  }
  .background-gray-dark-sm {
    background-color: #333333;
  }
  .block-sm {
    display: block !important;
  }
  .inline-block-sm {
    display: inline-block !important;
  }
  .display-table-sm {
    display: table;
    width: 100%;
  }
  .display-table-sm > .col-lg-1, .display-table-sm > .col-lg-10, .display-table-sm > .col-lg-11, .display-table-sm > .col-lg-12, .display-table-sm > .col-lg-2, .display-table-sm > .col-lg-3, .display-table-sm > .col-lg-4, .display-table-sm > .col-lg-5, .display-table-sm > .col-lg-6, .display-table-sm > .col-lg-7, .display-table-sm > .col-lg-8, .display-table-sm > .col-lg-9,
  .display-table-sm > .col-md-1, .display-table-sm > .col-md-10, .display-table-sm > .col-md-11, .display-table-sm > .col-md-12, .display-table-sm > .col-md-2, .display-table-sm > .col-md-3, .display-table-sm > .col-md-4, .display-table-sm > .col-md-5, .display-table-sm > .col-md-6, .display-table-sm > .col-md-7, .display-table-sm > .col-md-8, .display-table-sm > .col-md-9,
  .display-table-sm > .col-sm-1, .display-table-sm > .col-sm-10, .display-table-sm > .col-sm-11, .display-table-sm > .col-sm-12, .display-table-sm > .col-sm-2, .display-table-sm > .col-sm-3, .display-table-sm > .col-sm-4, .display-table-sm > .col-sm-5, .display-table-sm > .col-sm-6, .display-table-sm > .col-sm-7, .display-table-sm > .col-sm-8, .display-table-sm > .col-sm-9,
  .display-table-sm > .col-xs-1, .display-table-sm > .col-xs-10, .display-table-sm > .col-xs-11, .display-table-sm > .col-xs-12, .display-table-sm > .col-xs-2, .display-table-sm > .col-xs-3, .display-table-sm > .col-xs-4, .display-table-sm > .col-xs-5, .display-table-sm > .col-xs-6, .display-table-sm > .col-xs-7, .display-table-sm > .col-xs-8, .display-table-sm > .col-xs-9 {
    float: none;
    display: table-cell;
    vertical-align: top;
  }
  .seperator-row-sm {
    margin-left: -30px;
    margin-right: -30px;
  }
  .seperator-row-sm > .col-lg-1, .seperator-row-sm > .col-lg-10, .seperator-row-sm > .col-lg-11, .seperator-row-sm > .col-lg-12, .seperator-row-sm > .col-lg-2, .seperator-row-sm > .col-lg-3, .seperator-row-sm > .col-lg-4, .seperator-row-sm > .col-lg-5, .seperator-row-sm > .col-lg-6, .seperator-row-sm > .col-lg-7, .seperator-row-sm > .col-lg-8, .seperator-row-sm > .col-lg-9,
  .seperator-row-sm > .col-md-1, .seperator-row-sm > .col-md-10, .seperator-row-sm > .col-md-11, .seperator-row-sm > .col-md-12, .seperator-row-sm > .col-md-2, .seperator-row-sm > .col-md-3, .seperator-row-sm > .col-md-4, .seperator-row-sm > .col-md-5, .seperator-row-sm > .col-md-6, .seperator-row-sm > .col-md-7, .seperator-row-sm > .col-md-8, .seperator-row-sm > .col-md-9,
  .seperator-row-sm > .col-sm-1, .seperator-row-sm > .col-sm-10, .seperator-row-sm > .col-sm-11, .seperator-row-sm > .col-sm-12, .seperator-row-sm > .col-sm-2, .seperator-row-sm > .col-sm-3, .seperator-row-sm > .col-sm-4, .seperator-row-sm > .col-sm-5, .seperator-row-sm > .col-sm-6, .seperator-row-sm > .col-sm-7, .seperator-row-sm > .col-sm-8, .seperator-row-sm > .col-sm-9,
  .seperator-row-sm > .col-xs-1, .seperator-row-sm > .col-xs-10, .seperator-row-sm > .col-xs-11, .seperator-row-sm > .col-xs-12, .seperator-row-sm > .col-xs-2, .seperator-row-sm > .col-xs-3, .seperator-row-sm > .col-xs-4, .seperator-row-sm > .col-xs-5, .seperator-row-sm > .col-xs-6, .seperator-row-sm > .col-xs-7, .seperator-row-sm > .col-xs-8, .seperator-row-sm > .col-xs-9 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .seperator-row-sm > .col-lg-1:first-child, .seperator-row-sm > .col-lg-10:first-child, .seperator-row-sm > .col-lg-11:first-child, .seperator-row-sm > .col-lg-12:first-child, .seperator-row-sm > .col-lg-2:first-child, .seperator-row-sm > .col-lg-3:first-child, .seperator-row-sm > .col-lg-4:first-child, .seperator-row-sm > .col-lg-5:first-child, .seperator-row-sm > .col-lg-6:first-child, .seperator-row-sm > .col-lg-7:first-child, .seperator-row-sm > .col-lg-8:first-child, .seperator-row-sm > .col-lg-9:first-child,
  .seperator-row-sm > .col-md-1:first-child, .seperator-row-sm > .col-md-10:first-child, .seperator-row-sm > .col-md-11:first-child, .seperator-row-sm > .col-md-12:first-child, .seperator-row-sm > .col-md-2:first-child, .seperator-row-sm > .col-md-3:first-child, .seperator-row-sm > .col-md-4:first-child, .seperator-row-sm > .col-md-5:first-child, .seperator-row-sm > .col-md-6:first-child, .seperator-row-sm > .col-md-7:first-child, .seperator-row-sm > .col-md-8:first-child, .seperator-row-sm > .col-md-9:first-child,
  .seperator-row-sm > .col-sm-1:first-child, .seperator-row-sm > .col-sm-10:first-child, .seperator-row-sm > .col-sm-11:first-child, .seperator-row-sm > .col-sm-12:first-child, .seperator-row-sm > .col-sm-2:first-child, .seperator-row-sm > .col-sm-3:first-child, .seperator-row-sm > .col-sm-4:first-child, .seperator-row-sm > .col-sm-5:first-child, .seperator-row-sm > .col-sm-6:first-child, .seperator-row-sm > .col-sm-7:first-child, .seperator-row-sm > .col-sm-8:first-child, .seperator-row-sm > .col-sm-9:first-child,
  .seperator-row-sm > .col-xs-1:first-child, .seperator-row-sm > .col-xs-10:first-child, .seperator-row-sm > .col-xs-11:first-child, .seperator-row-sm > .col-xs-12:first-child, .seperator-row-sm > .col-xs-2:first-child, .seperator-row-sm > .col-xs-3:first-child, .seperator-row-sm > .col-xs-4:first-child, .seperator-row-sm > .col-xs-5:first-child, .seperator-row-sm > .col-xs-6:first-child, .seperator-row-sm > .col-xs-7:first-child, .seperator-row-sm > .col-xs-8:first-child, .seperator-row-sm > .col-xs-9:first-child {
    border-right: 1px solid #e6e6e6;
  }
  .row.no-gutter-sms {
    margin-right: 0;
    margin-left: 0;
  }
  .row.no-gutters-sm > [class^=col-],
  .row.no-gutters-sm > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
  }
  .row.half-gutters-sm {
    margin-right: -8px;
    margin-left: -8px;
  }
  .row.half-gutters-sm > [class^=col-],
  .row.half-gutters-sm > [class*=" col-"] {
    padding-right: 8px;
    padding-left: 8px;
  }
  .col-20p-sm {
    width: 20%;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .padding-md {
    padding: 15px !important;
  }
  .padding-top-md {
    padding-top: 15px !important;
  }
  .padding-bottom-md {
    padding-bottom: 15px !important;
  }
  .padding-left-md {
    padding-left: 15px !important;
  }
  .padding-right-md {
    padding-right: 15px !important;
  }
  .padding-reset-md {
    padding: 0 !important;
  }
  .padding-top-reset-md {
    padding-top: 0 !important;
  }
  .padding-bottom-reset-md {
    padding-bottom: 0 !important;
  }
  .padding-left-reset-md {
    padding-left: 0 !important;
  }
  .padding-right-reset-md {
    padding-right: 0 !important;
  }
  .padding-double-md {
    padding: 30px !important;
  }
  .padding-top-double-md {
    padding-top: 30px !important;
  }
  .padding-bottom-double-md {
    padding-bottom: 30px !important;
  }
  .padding-left-double-md {
    padding-left: 30px !important;
  }
  .padding-right-double-md {
    padding-right: 30px !important;
  }
  .padding-half-md {
    padding: 8px !important;
  }
  .padding-top-half-md {
    padding-top: 8px !important;
  }
  .padding-bottom-half-md {
    padding-bottom: 8px !important;
  }
  .padding-left-half-md {
    padding-left: 8px !important;
  }
  .padding-right-half-md {
    padding-right: 8px !important;
  }
  .margin-md {
    margin: 15px !important;
  }
  .margin-top-md {
    margin-top: 15px !important;
  }
  .margin-bottom-md {
    margin-bottom: 15px !important;
  }
  .margin-left-md {
    margin-left: 15px !important;
  }
  .margin-right-md {
    margin-right: 15px !important;
  }
  .margin-reset-md {
    margin: 0 !important;
  }
  .margin-top-reset-md {
    margin-top: 0 !important;
  }
  .margin-bottom-reset-md {
    margin-bottom: 0 !important;
  }
  .margin-left-reset-md {
    margin-left: 0 !important;
  }
  .margin-right-reset-md {
    margin-right: 0 !important;
  }
  .margin-double-md {
    margin: 30px !important;
  }
  .margin-top-double-md {
    margin-top: 30px !important;
  }
  .margin-bottom-double-md {
    margin-bottom: 30px !important;
  }
  .margin-left-double-md {
    margin-left: 30px !important;
  }
  .margin-right-double-md {
    margin-right: 30px !important;
  }
  .margin-half-md {
    margin: 8px !important;
  }
  .margin-top-half-md {
    margin-top: 8px !important;
  }
  .margin-bottom-half-md {
    margin-bottom: 8px !important;
  }
  .margin-left-half-md {
    margin-left: 8px !important;
  }
  .margin-right-half-md {
    margin-right: 8px !important;
  }
  .text-center-md {
    text-align: center !important;
  }
  .text-left-md {
    text-align: left !important;
  }
  .text-right-md {
    text-align: right !important;
  }
  .pull-left-md {
    float: left !important;
  }
  .pull-right-md {
    float: right !important;
  }
  .clear-md {
    float: none !important;
  }
  .border-md {
    border: 1px solid #e6e6e6;
  }
  .border-top-md {
    border-top: 1px solid #e6e6e6;
  }
  .border-bottom-md {
    border-bottom: 1px solid #e6e6e6;
  }
  .border-left-md {
    border-left: 1px solid #e6e6e6;
  }
  .border-right-md {
    border-right: 1px solid #e6e6e6;
  }
  .border-reset-md {
    border: 0 !important;
  }
  .border-top-reset-md {
    border-top: 0 !important;
  }
  .border-bottom-reset-md {
    border-bottom: 0 !important;
  }
  .border-left-reset-md {
    border-left: 0 !important;
  }
  .border-right-reset-md {
    border-right: 0 !important;
  }
  .background-primary-md {
    background-color: #005D9F;
  }
  .background-secondary-md {
    background-color: #E5AB28;
  }
  .background-tertiary-md {
    background-color: #C3C3C3;
  }
  .background-white-md {
    background-color: #ffffff;
  }
  .background-black-md {
    background-color: #0e0e0e;
  }
  .background-gray-md {
    background-color: #555555;
  }
  .background-gray-light-md {
    background-color: #cccccc;
  }
  .background-gray-lighter-md {
    background-color: #e6e6e6;
  }
  .background-gray-dark-md {
    background-color: #333333;
  }
  .block-md {
    display: block !important;
  }
  .inline-block-md {
    display: inline-block !important;
  }
  .display-table-md {
    display: table;
    width: 100%;
  }
  .display-table-md > .col-lg-1, .display-table-md > .col-lg-10, .display-table-md > .col-lg-11, .display-table-md > .col-lg-12, .display-table-md > .col-lg-2, .display-table-md > .col-lg-3, .display-table-md > .col-lg-4, .display-table-md > .col-lg-5, .display-table-md > .col-lg-6, .display-table-md > .col-lg-7, .display-table-md > .col-lg-8, .display-table-md > .col-lg-9,
  .display-table-md > .col-md-1, .display-table-md > .col-md-10, .display-table-md > .col-md-11, .display-table-md > .col-md-12, .display-table-md > .col-md-2, .display-table-md > .col-md-3, .display-table-md > .col-md-4, .display-table-md > .col-md-5, .display-table-md > .col-md-6, .display-table-md > .col-md-7, .display-table-md > .col-md-8, .display-table-md > .col-md-9,
  .display-table-md > .col-sm-1, .display-table-md > .col-sm-10, .display-table-md > .col-sm-11, .display-table-md > .col-sm-12, .display-table-md > .col-sm-2, .display-table-md > .col-sm-3, .display-table-md > .col-sm-4, .display-table-md > .col-sm-5, .display-table-md > .col-sm-6, .display-table-md > .col-sm-7, .display-table-md > .col-sm-8, .display-table-md > .col-sm-9,
  .display-table-md > .col-xs-1, .display-table-md > .col-xs-10, .display-table-md > .col-xs-11, .display-table-md > .col-xs-12, .display-table-md > .col-xs-2, .display-table-md > .col-xs-3, .display-table-md > .col-xs-4, .display-table-md > .col-xs-5, .display-table-md > .col-xs-6, .display-table-md > .col-xs-7, .display-table-md > .col-xs-8, .display-table-md > .col-xs-9 {
    float: none;
    display: table-cell;
    vertical-align: top;
  }
  .seperator-row-md {
    margin-left: -30px;
    margin-right: -30px;
  }
  .seperator-row-md > .col-lg-1, .seperator-row-md > .col-lg-10, .seperator-row-md > .col-lg-11, .seperator-row-md > .col-lg-12, .seperator-row-md > .col-lg-2, .seperator-row-md > .col-lg-3, .seperator-row-md > .col-lg-4, .seperator-row-md > .col-lg-5, .seperator-row-md > .col-lg-6, .seperator-row-md > .col-lg-7, .seperator-row-md > .col-lg-8, .seperator-row-md > .col-lg-9,
  .seperator-row-md > .col-md-1, .seperator-row-md > .col-md-10, .seperator-row-md > .col-md-11, .seperator-row-md > .col-md-12, .seperator-row-md > .col-md-2, .seperator-row-md > .col-md-3, .seperator-row-md > .col-md-4, .seperator-row-md > .col-md-5, .seperator-row-md > .col-md-6, .seperator-row-md > .col-md-7, .seperator-row-md > .col-md-8, .seperator-row-md > .col-md-9,
  .seperator-row-md > .col-sm-1, .seperator-row-md > .col-sm-10, .seperator-row-md > .col-sm-11, .seperator-row-md > .col-sm-12, .seperator-row-md > .col-sm-2, .seperator-row-md > .col-sm-3, .seperator-row-md > .col-sm-4, .seperator-row-md > .col-sm-5, .seperator-row-md > .col-sm-6, .seperator-row-md > .col-sm-7, .seperator-row-md > .col-sm-8, .seperator-row-md > .col-sm-9,
  .seperator-row-md > .col-xs-1, .seperator-row-md > .col-xs-10, .seperator-row-md > .col-xs-11, .seperator-row-md > .col-xs-12, .seperator-row-md > .col-xs-2, .seperator-row-md > .col-xs-3, .seperator-row-md > .col-xs-4, .seperator-row-md > .col-xs-5, .seperator-row-md > .col-xs-6, .seperator-row-md > .col-xs-7, .seperator-row-md > .col-xs-8, .seperator-row-md > .col-xs-9 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .seperator-row-md > .col-lg-1:first-child, .seperator-row-md > .col-lg-10:first-child, .seperator-row-md > .col-lg-11:first-child, .seperator-row-md > .col-lg-12:first-child, .seperator-row-md > .col-lg-2:first-child, .seperator-row-md > .col-lg-3:first-child, .seperator-row-md > .col-lg-4:first-child, .seperator-row-md > .col-lg-5:first-child, .seperator-row-md > .col-lg-6:first-child, .seperator-row-md > .col-lg-7:first-child, .seperator-row-md > .col-lg-8:first-child, .seperator-row-md > .col-lg-9:first-child,
  .seperator-row-md > .col-md-1:first-child, .seperator-row-md > .col-md-10:first-child, .seperator-row-md > .col-md-11:first-child, .seperator-row-md > .col-md-12:first-child, .seperator-row-md > .col-md-2:first-child, .seperator-row-md > .col-md-3:first-child, .seperator-row-md > .col-md-4:first-child, .seperator-row-md > .col-md-5:first-child, .seperator-row-md > .col-md-6:first-child, .seperator-row-md > .col-md-7:first-child, .seperator-row-md > .col-md-8:first-child, .seperator-row-md > .col-md-9:first-child,
  .seperator-row-md > .col-sm-1:first-child, .seperator-row-md > .col-sm-10:first-child, .seperator-row-md > .col-sm-11:first-child, .seperator-row-md > .col-sm-12:first-child, .seperator-row-md > .col-sm-2:first-child, .seperator-row-md > .col-sm-3:first-child, .seperator-row-md > .col-sm-4:first-child, .seperator-row-md > .col-sm-5:first-child, .seperator-row-md > .col-sm-6:first-child, .seperator-row-md > .col-sm-7:first-child, .seperator-row-md > .col-sm-8:first-child, .seperator-row-md > .col-sm-9:first-child,
  .seperator-row-md > .col-xs-1:first-child, .seperator-row-md > .col-xs-10:first-child, .seperator-row-md > .col-xs-11:first-child, .seperator-row-md > .col-xs-12:first-child, .seperator-row-md > .col-xs-2:first-child, .seperator-row-md > .col-xs-3:first-child, .seperator-row-md > .col-xs-4:first-child, .seperator-row-md > .col-xs-5:first-child, .seperator-row-md > .col-xs-6:first-child, .seperator-row-md > .col-xs-7:first-child, .seperator-row-md > .col-xs-8:first-child, .seperator-row-md > .col-xs-9:first-child {
    border-right: 1px solid #e6e6e6;
  }
  .row.no-gutter-mds {
    margin-right: 0;
    margin-left: 0;
  }
  .row.no-gutters-md > [class^=col-],
  .row.no-gutters-md > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
  }
  .row.half-gutters-md {
    margin-right: -8px;
    margin-left: -8px;
  }
  .row.half-gutters-md > [class^=col-],
  .row.half-gutters-md > [class*=" col-"] {
    padding-right: 8px;
    padding-left: 8px;
  }
  .col-20p-md {
    width: 20%;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .padding-lg {
    padding: 15px !important;
  }
  .padding-top-lg {
    padding-top: 15px !important;
  }
  .padding-bottom-lg {
    padding-bottom: 15px !important;
  }
  .padding-left-lg {
    padding-left: 15px !important;
  }
  .padding-right-lg {
    padding-right: 15px !important;
  }
  .padding-reset-lg {
    padding: 0 !important;
  }
  .padding-top-reset-lg {
    padding-top: 0 !important;
  }
  .padding-bottom-reset-lg {
    padding-bottom: 0 !important;
  }
  .padding-left-reset-lg {
    padding-left: 0 !important;
  }
  .padding-right-reset-lg {
    padding-right: 0 !important;
  }
  .padding-double-lg {
    padding: 30px !important;
  }
  .padding-top-double-lg {
    padding-top: 30px !important;
  }
  .padding-bottom-double-lg {
    padding-bottom: 30px !important;
  }
  .padding-left-double-lg {
    padding-left: 30px !important;
  }
  .padding-right-double-lg {
    padding-right: 30px !important;
  }
  .padding-half-lg {
    padding: 8px !important;
  }
  .padding-top-half-lg {
    padding-top: 8px !important;
  }
  .padding-bottom-half-lg {
    padding-bottom: 8px !important;
  }
  .padding-left-half-lg {
    padding-left: 8px !important;
  }
  .padding-right-half-lg {
    padding-right: 8px !important;
  }
  .margin-lg {
    margin: 15px !important;
  }
  .margin-top-lg {
    margin-top: 15px !important;
  }
  .margin-bottom-lg {
    margin-bottom: 15px !important;
  }
  .margin-left-lg {
    margin-left: 15px !important;
  }
  .margin-right-lg {
    margin-right: 15px !important;
  }
  .margin-reset-lg {
    margin: 0 !important;
  }
  .margin-top-reset-lg {
    margin-top: 0 !important;
  }
  .margin-bottom-reset-lg {
    margin-bottom: 0 !important;
  }
  .margin-left-reset-lg {
    margin-left: 0 !important;
  }
  .margin-right-reset-lg {
    margin-right: 0 !important;
  }
  .margin-double-lg {
    margin: 30px !important;
  }
  .margin-top-double-lg {
    margin-top: 30px !important;
  }
  .margin-bottom-double-lg {
    margin-bottom: 30px !important;
  }
  .margin-left-double-lg {
    margin-left: 30px !important;
  }
  .margin-right-double-lg {
    margin-right: 30px !important;
  }
  .margin-half-lg {
    margin: 8px !important;
  }
  .margin-top-half-lg {
    margin-top: 8px !important;
  }
  .margin-bottom-half-lg {
    margin-bottom: 8px !important;
  }
  .margin-left-half-lg {
    margin-left: 8px !important;
  }
  .margin-right-half-lg {
    margin-right: 8px !important;
  }
  .text-center-lg {
    text-align: center !important;
  }
  .text-left-lg {
    text-align: left !important;
  }
  .text-right-lg {
    text-align: right !important;
  }
  .pull-left-lg {
    float: left !important;
  }
  .pull-right-lg {
    float: right !important;
  }
  .clear-lg {
    float: none !important;
  }
  .border-lg {
    border: 1px solid #e6e6e6;
  }
  .border-top-lg {
    border-top: 1px solid #e6e6e6;
  }
  .border-bottom-lg {
    border-bottom: 1px solid #e6e6e6;
  }
  .border-left-lg {
    border-left: 1px solid #e6e6e6;
  }
  .border-right-lg {
    border-right: 1px solid #e6e6e6;
  }
  .border-reset-lg {
    border: 0 !important;
  }
  .border-top-reset-lg {
    border-top: 0 !important;
  }
  .border-bottom-reset-lg {
    border-bottom: 0 !important;
  }
  .border-left-reset-lg {
    border-left: 0 !important;
  }
  .border-right-reset-lg {
    border-right: 0 !important;
  }
  .background-primary-lg {
    background-color: #005D9F;
  }
  .background-secondary-lg {
    background-color: #E5AB28;
  }
  .background-tertiary-lg {
    background-color: #C3C3C3;
  }
  .background-white-lg {
    background-color: #ffffff;
  }
  .background-black-lg {
    background-color: #0e0e0e;
  }
  .background-gray-lg {
    background-color: #555555;
  }
  .background-gray-light-lg {
    background-color: #cccccc;
  }
  .background-gray-lighter-lg {
    background-color: #e6e6e6;
  }
  .background-gray-dark-lg {
    background-color: #333333;
  }
  .block-lg {
    display: block !important;
  }
  .inline-block-lg {
    display: inline-block !important;
  }
  .display-table-lg {
    display: table;
    width: 100%;
  }
  .display-table-lg > .col-lg-1, .display-table-lg > .col-lg-10, .display-table-lg > .col-lg-11, .display-table-lg > .col-lg-12, .display-table-lg > .col-lg-2, .display-table-lg > .col-lg-3, .display-table-lg > .col-lg-4, .display-table-lg > .col-lg-5, .display-table-lg > .col-lg-6, .display-table-lg > .col-lg-7, .display-table-lg > .col-lg-8, .display-table-lg > .col-lg-9,
  .display-table-lg > .col-md-1, .display-table-lg > .col-md-10, .display-table-lg > .col-md-11, .display-table-lg > .col-md-12, .display-table-lg > .col-md-2, .display-table-lg > .col-md-3, .display-table-lg > .col-md-4, .display-table-lg > .col-md-5, .display-table-lg > .col-md-6, .display-table-lg > .col-md-7, .display-table-lg > .col-md-8, .display-table-lg > .col-md-9,
  .display-table-lg > .col-sm-1, .display-table-lg > .col-sm-10, .display-table-lg > .col-sm-11, .display-table-lg > .col-sm-12, .display-table-lg > .col-sm-2, .display-table-lg > .col-sm-3, .display-table-lg > .col-sm-4, .display-table-lg > .col-sm-5, .display-table-lg > .col-sm-6, .display-table-lg > .col-sm-7, .display-table-lg > .col-sm-8, .display-table-lg > .col-sm-9,
  .display-table-lg > .col-xs-1, .display-table-lg > .col-xs-10, .display-table-lg > .col-xs-11, .display-table-lg > .col-xs-12, .display-table-lg > .col-xs-2, .display-table-lg > .col-xs-3, .display-table-lg > .col-xs-4, .display-table-lg > .col-xs-5, .display-table-lg > .col-xs-6, .display-table-lg > .col-xs-7, .display-table-lg > .col-xs-8, .display-table-lg > .col-xs-9 {
    float: none;
    display: table-cell;
    vertical-align: top;
  }
  .seperator-row-lg {
    margin-left: -30px;
    margin-right: -30px;
  }
  .seperator-row-lg > .col-lg-1, .seperator-row-lg > .col-lg-10, .seperator-row-lg > .col-lg-11, .seperator-row-lg > .col-lg-12, .seperator-row-lg > .col-lg-2, .seperator-row-lg > .col-lg-3, .seperator-row-lg > .col-lg-4, .seperator-row-lg > .col-lg-5, .seperator-row-lg > .col-lg-6, .seperator-row-lg > .col-lg-7, .seperator-row-lg > .col-lg-8, .seperator-row-lg > .col-lg-9,
  .seperator-row-lg > .col-md-1, .seperator-row-lg > .col-md-10, .seperator-row-lg > .col-md-11, .seperator-row-lg > .col-md-12, .seperator-row-lg > .col-md-2, .seperator-row-lg > .col-md-3, .seperator-row-lg > .col-md-4, .seperator-row-lg > .col-md-5, .seperator-row-lg > .col-md-6, .seperator-row-lg > .col-md-7, .seperator-row-lg > .col-md-8, .seperator-row-lg > .col-md-9,
  .seperator-row-lg > .col-sm-1, .seperator-row-lg > .col-sm-10, .seperator-row-lg > .col-sm-11, .seperator-row-lg > .col-sm-12, .seperator-row-lg > .col-sm-2, .seperator-row-lg > .col-sm-3, .seperator-row-lg > .col-sm-4, .seperator-row-lg > .col-sm-5, .seperator-row-lg > .col-sm-6, .seperator-row-lg > .col-sm-7, .seperator-row-lg > .col-sm-8, .seperator-row-lg > .col-sm-9,
  .seperator-row-lg > .col-xs-1, .seperator-row-lg > .col-xs-10, .seperator-row-lg > .col-xs-11, .seperator-row-lg > .col-xs-12, .seperator-row-lg > .col-xs-2, .seperator-row-lg > .col-xs-3, .seperator-row-lg > .col-xs-4, .seperator-row-lg > .col-xs-5, .seperator-row-lg > .col-xs-6, .seperator-row-lg > .col-xs-7, .seperator-row-lg > .col-xs-8, .seperator-row-lg > .col-xs-9 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .seperator-row-lg > .col-lg-1:first-child, .seperator-row-lg > .col-lg-10:first-child, .seperator-row-lg > .col-lg-11:first-child, .seperator-row-lg > .col-lg-12:first-child, .seperator-row-lg > .col-lg-2:first-child, .seperator-row-lg > .col-lg-3:first-child, .seperator-row-lg > .col-lg-4:first-child, .seperator-row-lg > .col-lg-5:first-child, .seperator-row-lg > .col-lg-6:first-child, .seperator-row-lg > .col-lg-7:first-child, .seperator-row-lg > .col-lg-8:first-child, .seperator-row-lg > .col-lg-9:first-child,
  .seperator-row-lg > .col-md-1:first-child, .seperator-row-lg > .col-md-10:first-child, .seperator-row-lg > .col-md-11:first-child, .seperator-row-lg > .col-md-12:first-child, .seperator-row-lg > .col-md-2:first-child, .seperator-row-lg > .col-md-3:first-child, .seperator-row-lg > .col-md-4:first-child, .seperator-row-lg > .col-md-5:first-child, .seperator-row-lg > .col-md-6:first-child, .seperator-row-lg > .col-md-7:first-child, .seperator-row-lg > .col-md-8:first-child, .seperator-row-lg > .col-md-9:first-child,
  .seperator-row-lg > .col-sm-1:first-child, .seperator-row-lg > .col-sm-10:first-child, .seperator-row-lg > .col-sm-11:first-child, .seperator-row-lg > .col-sm-12:first-child, .seperator-row-lg > .col-sm-2:first-child, .seperator-row-lg > .col-sm-3:first-child, .seperator-row-lg > .col-sm-4:first-child, .seperator-row-lg > .col-sm-5:first-child, .seperator-row-lg > .col-sm-6:first-child, .seperator-row-lg > .col-sm-7:first-child, .seperator-row-lg > .col-sm-8:first-child, .seperator-row-lg > .col-sm-9:first-child,
  .seperator-row-lg > .col-xs-1:first-child, .seperator-row-lg > .col-xs-10:first-child, .seperator-row-lg > .col-xs-11:first-child, .seperator-row-lg > .col-xs-12:first-child, .seperator-row-lg > .col-xs-2:first-child, .seperator-row-lg > .col-xs-3:first-child, .seperator-row-lg > .col-xs-4:first-child, .seperator-row-lg > .col-xs-5:first-child, .seperator-row-lg > .col-xs-6:first-child, .seperator-row-lg > .col-xs-7:first-child, .seperator-row-lg > .col-xs-8:first-child, .seperator-row-lg > .col-xs-9:first-child {
    border-right: 1px solid #e6e6e6;
  }
  .row.no-gutter-lgs {
    margin-right: 0;
    margin-left: 0;
  }
  .row.no-gutters-lg > [class^=col-],
  .row.no-gutters-lg > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
  }
  .row.half-gutters-lg {
    margin-right: -8px;
    margin-left: -8px;
  }
  .row.half-gutters-lg > [class^=col-],
  .row.half-gutters-lg > [class*=" col-"] {
    padding-right: 8px;
    padding-left: 8px;
  }
  .col-20p-lg {
    width: 20%;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
/*# sourceMappingURL=skin.css.map */