/*****************************************************************************
***************************Global css start **********************************
******************************************************************************/
/*** Responsive css ***/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(255, 255, 255, 0.01) 0 0 1px;
  -webkit-text-stroke: rgba(255, 255, 255, 0.01) 0.1px;
  -moz-text-size-adjust: 100%;
  -moz-font-smoothing: antialiased;
  -moz-text-shadow: rgba(255, 255, 255, 0.01) 0 0 1px;
  -moz-text-stroke: rgba(255, 255, 255, 0.01) 0.1px;
  text-size-adjust: 100%;
  font-smoothing: antialiased;
  text-shadow: rgba(255, 255, 255, 0.01) 0 0 1px;
  text-stroke: rgba(255, 255, 255, 0.01) 0.1px;
}

iframe#launcher {
  position: fixed !Important;
  bottom: 10px !Important;
  right: 150px !Important;
}

a {
  color: #1965E1;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  margin-bottom: 10px;
}

body {
  font-family: 'Helvetica', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.42;
}

/*** margin css ***/
.m-0 {
  margin: 0px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-28 {
  margin-top: 28px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-t-60 {
  margin-top: 60px;
}

.m-t-70 {
  margin-top: 70px;
}

.m-t-80 {
  margin-top: 80px;
}

.m-t-90 {
  margin-top: 90px;
}

.m-t-100 {
  margin-top: 100px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-b-60 {
  margin-bottom: 60px;
}

.m-b-70 {
  margin-bottom: 70px;
}

.m-b-80 {
  margin-bottom: 80px;
}

.m-b-90 {
  margin-bottom: 90px;
}

.m-b-100 {
  margin-bottom: 100px;
}

.m-r-5 {
  margin-right: 5px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-l-5 {
  margin-left: 5px;
}

.m-l-10 {
  margin-left: 10px;
}

.divider-1 {
  display: block;
  clear: both;
  border-top: 1px solid #9B9B9B;
  margin: 20px 0;
}

.padding-10 {
  padding: 5px 10px;
}

.p-t-40 {
  padding-top: 40px;
}

.padding-15 {
  padding: 15px 25px;
}

.padding-0 {
  padding: 0 !important;
}

/*** arrow link css ***/
.link-arrow {
  font-size: 16px;
  font-weight: 500;
  color: #1965E1;
}

  .link-arrow::after {
    background-image: url(../img/icon-arrow.png);
    content: "";
    display: inline-block;
    height: 11px;
    margin-left: 5px;
    width: 15px;
  }

.link-external {
  font-size: 16px !important;
  font-weight: 500;
  color: #1965E1;
}

  .link-external::after {
    content: '\f08e';
    font-family: FontAwesome;
    margin-left: 5px;
  }

ul.link-arrows li {
  font-size: 14px;
  font-weight: 500;
  margin: 7px 0;
}

/*** Button css ***/
/* light blue btn */
.btn-primary-blue {
  background: #1965E1;
  color: #fff;
  border-radius: 0;
  font-weight: 600;
  min-width: 160px;
}

  .btn-primary-blue:hover {
    color: #fff;
    background: #0250a3;
  }

  .btn-primary-blue.btn-lg {
    font-size: 14px;
    padding: 15px;
  }

  .btn-primary-blue.btn-md {
    font-size: 14px;
    padding: 9px 12px;
  }

  .btn-primary-blue.btn-sm {
    font-size: 13px;
    padding: 6px 12px;
  }

.btn-container .btn {
  min-width: 350px;
}

@media (max-width: 480px) {
  .btn-container .btn {
    min-width: auto;
  }
}

/* light blue border btn */
.btn-blue-border {
  background: #fff;
  color: #1965E1;
  border: 2px solid #1965E1;
  border-radius: 0;
  font-weight: 600;
}

  .btn-blue-border:hover {
    color: #1965E1;
  }

  .btn-blue-border.btn-lg {
    font-size: 14px;
    padding: 15px;
  }

  .btn-blue-border.btn-md {
    font-size: 14px;
    padding: 9px 12px;
  }

  .btn-blue-border.btn-sm {
    font-size: 13px;
    padding: 6px 12px;
  }

/* dark blue btn */
.btn-dark-blue {
  background: #0D2EA0;
  color: #fff;
  border-radius: 2px;
  min-width: 160px;
}

@media (max-width: 767px) {
  .btn-dark-blue {
    min-width: 140px;
  }
}

.btn-dark-blue:hover {
  color: #fff;
  background: #0D2EA0;
}

.btn-dark-blue.btn-lg {
  font-size: 15px;
  padding: 15px;
}

.btn-dark-blue.btn-md {
  font-size: 15px;
  padding: 9px 12px;
}

.btn-dark-blue.btn-sm {
  font-size: 13px;
  padding: 6px 12px;
}

/* dark blue border btn */
.btn-dark-blue-border {
  background: #fff;
  color: #0D2EA0;
  border-radius: 2px;
  border: 1px solid #0D2EA0;
  min-width: 160px;
}

@media (max-width: 767px) {
  .btn-dark-blue-border {
    min-width: 140px;
  }
}

.btn-dark-blue-border:hover {
  color: #0D2EA0;
  background: #fff;
}

.btn-dark-blue-border.btn-lg {
  font-size: 15px;
  padding: 15px;
}

.btn-dark-blue-border.btn-md {
  font-size: 15px;
  padding: 9px 12px;
}

.btn-dark-blue-border.btn-sm {
  font-size: 13px;
  padding: 6px 12px;
}

/* down arrow */
@-moz-keyframes downbounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes downbounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes downbounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.downbounce {
  -moz-animation: downbounce 4s infinite;
  -webkit-animation: downbounce 4s infinite;
  animation: downbounce 4s infinite;
}

/*** gray accordion-panel css ***/
.gray-accordion {
  margin-bottom: 10px;
  border: none;
  box-shadow: none;
}

  .gray-accordion .panel-heading {
    background: #f5f6f8;
    padding: 0;
    border-radius: 0;
    border: none;
  }

    .gray-accordion .panel-heading a {
      display: block;
      font-size: 18px;
      color: #000;
      padding: 8px 15px;
      height: 50px;
      line-height: 35px;
      position: relative;
    }

      .gray-accordion .panel-heading a::after {
        content: "";
        background: url(../img/maximize.png);
        background-repeat: no-repeat;
        position: absolute;
        right: 15px;
        width: 25px;
        height: 25px;
        top: 12px;
      }

      .gray-accordion .panel-heading a[aria-expanded="true"]::after {
        content: "";
        background: url(../img/minimize.png);
        background-repeat: no-repeat;
        position: absolute;
        right: 15px;
        width: 25px;
        height: 25px;
        top: 12px;
      }

  .gray-accordion .panel-body {
    border: none !important;
  }

/** table css **/
.nep-table {
  margin: 5px 0;
  width: 100%;
}

  .nep-table tr:nth-child(even) {
    background: #f3f7fd;
  }

  .nep-table tr td {
    padding: 5px;
    border-bottom: 1px solid #dddddd;
    border-top-color: #dddddd;
  }

/*** form ui css ***/
/** Radio **/
.nep-radio {
  font-size: 16px;
  position: relative;
  margin-bottom: 15px;
}

  .nep-radio label {
    padding-left: 35px;
    position: relative;
    padding-top: 2px;
  }

    .nep-radio label input {
      -webkit-appearance: none;
      -moz-appearance: none;
      width: 25px;
      border: 2px solid #1965E1;
      height: 25px;
      background: #fff;
      margin: 0 !important;
      vertical-align: middle;
      border-radius: 30px;
      position: absolute;
      left: 0;
      top: 0;
      outline: none;
    }

      .nep-radio label input:focus {
        outline: none;
      }

      .nep-radio label input:checked::after {
        content: '';
        background: #1965E1;
        width: 13px;
        height: 13px;
        display: block;
        border-radius: 20px;
        position: absolute;
        left: 4px;
        top: 4px;
        outline: none;
      }

/** Checkbox **/
.nep-checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 25px;
  border: 2px solid #1965E1;
  height: 25px;
  background: #fff;
  margin: 0;
  vertical-align: middle;
  margin-right: 7px;
  position: relative !important;
}

  .nep-checkbox input:checked {
    background: #2d9b00;
  }

    .nep-checkbox input:checked::after {
      content: '';
      position: absolute;
      right: 6px;
      width: 8px;
      height: 14px;
      top: 5px;
      margin-top: -4px;
      border-bottom: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(45deg);
      transition: all .3s ease-in-out;
    }

  .nep-checkbox input:focus {
    outline: none;
  }

.nep-field label {
  font-size: 14px;
  font-weight: normal;
}

  .nep-field label img {
    width: 18px;
  }

  .nep-field label .req {
    color: red;
    font-size: 15px;
    line-height: 6px;
    display: inline-block;
  }

.nep-field .form-control {
  box-shadow: none;
  border-radius: 2px;
  /*min-height: 45px;*/
}

.nep-field .input-group-btn .btn {
  height: 34px;
  border-radius: 0px;
  background: #0D2EA0;
  color: #fff;
  font-size: 14px;
  line-height: 21px;
}

.accept-ter-cond {
  color: #1965E1;
}

body {
  font-family: "Helvetica", sans-serif !important;
}

.nep-btn-blue {
  background: #0D2EA0;
  border: 1px solid #0D2EA0;
  border-radius: 2px;
  color: #fff;
}

  .nep-btn-blue.btn-xl {
    font-size: 16px;
    line-height: 30px;
    padding: 7px 22px;
    min-width: 216px;
  }

.btn .nep-btn-icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 5px;
  width: 21px;
}

.btn .call-p-icon-btn {
  display: inline-block;
  vertical-align: middle;
}

.nep-btn-blue-border {
  background: #fff;
  border: 1px solid #0D2EA0;
  border-radius: 2px;
  color: #0D2EA0;
}

.locator-btn {
  margin-top: 28px;
}

.nep-pdp-call-icon-btn {
  padding: 1px 22px !important;
  margin: 0 0 20px !important;
}

.btn-hw {
  max-width: 232px;
}

.nep-blue-btn {
  background: #1965e1;
  color: #fff;
  border: 1px solid #0250a3;
  border-radius: 0;
  min-width: 350px;
  padding: 15px 15px;
  font-size: 14px;
  font-weight: 700;
}

  .nep-blue-btn:hover, .nep-blue-btn:focus {
    color: #fff;
  }

.nep-btn-contai.btn-secondary {
  border: 2px solid #1965e1;
  border-radius: 0;
  color: #1965e1;
  padding: 14px 13px;
  font-size: 14px;
  font-weight: 700;
}

.nep-coveo-compare input:checked .nep-coveo-card {
  background-color: #e8e7e7;
}

.nep-scrollup a {
  width: 45px;
  height: 45px;
  display: block;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

  .nep-scrollup a img {
    width: 45px;
    background-color: #ffffff;
    border-radius: 50%;
  }

.req {
  color: red;
}

/*** Responsive css ***/
/**** Header css start ****/
.neptune-container {
  background: #0D2EA0;
}

@media (max-width: 767px) {
  .neptune-container .container > .row {
    margin: 0;
  }
}

.neptune-left-col {
  float: left;
}

.neptune-right-col {
  display: flex;
  min-width: 40%;
  float: right;
}

.neptune-logo {
  margin-top: 20px;
  padding-right: 18px;
  margin-bottom: 12px;
  width: 125px;
}

@media (max-width: 767px) {
  .neptune-logo {
    width: 110px;
  }
}

@media (max-width: 374px) {
  .neptune-logo {
    width: 80px;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .neptune-nav-utility {
    position: relative;
    margin-right: -10px;
  }
}

.neptune-nav-utility {
  display: flex;
  width: 100%;
  z-index: 9999;
}

.omnibox,
.omnibox .coveo-search-section {
  display: flex;
  width: 100%;
}

  .omnibox > atomic-external {
    flex-grow: 1;
    align-self: center;
  }

.neptune-nav-utility .neptune-search {
  float: left;
}

  .neptune-nav-utility .neptune-search a {
    display: block;
    padding: 30px 10px 23px 35px;
  }

@media (max-width: 767px) {
  .neptune-nav-utility .neptune-search a {
    padding: 25px 10px 20px 10px;
  }
}

@media (max-width: 991px) {
  .neptune-nav-utility .neptune-search a {
    padding: 30px 0 23px 10px;
  }
}

@media (max-width: 767px) {
  .neptune-nav-utility .neptune-search a {
    padding: 25px 0 23px 10px;
  }
}

.neptune-nav-utility .neptune-search a .search {
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../img/icon-search-white.svg);
  background-size: 20px;
  background-repeat: no-repeat;
}

  .neptune-nav-utility .neptune-search a .search img {
    width: 20px;
  }

.neptune-nav-utility .neptune-search.active a {
  background: #fff;
}

  .neptune-nav-utility .neptune-search.active a .search {
    background-image: url(../img/icon-search-black.svg);
  }

@media (max-width: 479px) {
  .neptune-nav-utility .neptune-search {
    padding: 0;
  }
}

.nep-mobile-trigger {
  float: left;
}

.neptune-lang-drop-down {
  display: inline-block;
  padding: 24px 10px;
}

@media (max-width: 767px) {
  .neptune-lang-drop-down {
    padding: 15px 5px;
    position: absolute;
    left: 0;
    top: 73px;
    background: #ffffff;
    width: 100%;
    z-index: 9999;
  }
}

.neptune-lang-drop-down select.neptune_lang {
  display: block;
  background: transparent;
  color: #fff;
  border: none;
}

  .neptune-lang-drop-down select.neptune_lang option {
    padding: 4px 12px;
    border-bottom: 1px solid #ddd;
    color: #333;
  }

.neptune-lang-drop-down .neptune_lang {
  width: 145px !important;
  min-width: 187px;
  border: 1px solid #314dae;
  padding: 0 7px 0 0;
}

@media (max-width: 767px) {
  .neptune-lang-drop-down .neptune_lang {
    width: 100% !important;
    border-color: #dfdfdf;
  }
}

@media (max-width: 479px) {
  .neptune-lang-drop-down .neptune_lang {
    min-width: auto;
  }
}

.neptune-lang-drop-down .neptune_lang.open .dropdown-toggle {
  background: transparent;
  color: #fff;
}

  .neptune-lang-drop-down .neptune_lang.open .dropdown-toggle:focus {
    outline: none;
    box-shadow: none;
  }

.neptune-lang-drop-down .neptune_lang .btn {
  font-size: 12px;
}

.neptune-lang-drop-down .neptune_lang .dropdown-menu {
  padding: 0;
  border: none;
  border-radius: 0;
}

@media (max-width: 479px) {
  .neptune-lang-drop-down .neptune_lang .dropdown-menu {
    max-height: 462px !important;
  }
}

.neptune-lang-drop-down .neptune_lang .dropdown-menu a {
  padding: 2px 10px;
  /* border-bottom: 1px solid #ddd; */
  font-size: 12px;
  color: #222;
}

  .neptune-lang-drop-down .neptune_lang .dropdown-menu a:hover {
    color: #ffffff !important;
    background-color: #2196F3;
  }

.neptune-lang-drop-down .dropdown-toggle {
  background: transparent;
  color: #fff;
  border: none;
}

  .neptune-lang-drop-down .dropdown-toggle:hover, .neptune-lang-drop-down .dropdown-toggle:focus {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    color: #fff;
    box-shadow: none;
  }

@media (max-width: 767px) {
  .neptune-lang-drop-down .dropdown-toggle:hover, .neptune-lang-drop-down .dropdown-toggle:focus {
    color: #000 !important;
  }
}

@media (max-width: 767px) {
  .neptune-lang-drop-down .dropdown-toggle {
    color: #030303;
  }
}

.neptune-main-header {
  z-index: 50;
  min-height: 78px;
}

@media (max-width: 767px) {
  .neptune-main-header {
    min-height: auto;
    margin: 0 0 69px;
    position: relative;
    z-index: 999;
  }
}

.neptune-nav {
  background: #fff;
  position: relative;
  box-shadow: 0 4px 2px -2px grey;
}

  .neptune-nav.affix {
    position: fixed;
    top: 0;
    width: 100%;
  }

  .neptune-nav .navbar-nav > li > a {
    position: relative;
    display: block;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 15px 13px;
    transition: all .3s ease-in-out;
    border-bottom: 2px solid transparent;
  }

  .neptune-nav .navbar-nav > li.dropdown > a {
    padding-right: 35px;
  }

    .neptune-nav .navbar-nav > li.dropdown > a::after {
      content: "";
      position: absolute;
      right: 5px;
      width: 8px;
      height: 8px;
      top: 50%;
      margin-top: -4px;
      border-bottom: 2px solid #1965E1;
      border-right: 2px solid #1965E1;
      transform: rotate(45deg);
      transition: all .3s ease-in-out;
    }

  .neptune-nav .navbar-nav > li.dropdown.open > a::after {
    transform: rotate(-135deg);
  }

  .neptune-nav .nav .open > a, .neptune-nav .nav .open > a:focus, .neptune-nav .nav .open > a:hover {
    background-color: #fff;
    border-color: #0D2EA0;
  }

  .neptune-nav .nav > li > a:focus, .neptune-nav .nav > li > a:hover {
    text-decoration: none;
    background-color: #fff;
  }

  .neptune-nav .navbar-nav .dropdown-menu li > a {
    padding: 9px 15px;
    line-height: 22px;
    color: #000;
    transition: all .3s ease-in-out;
  }

    .neptune-nav .navbar-nav .dropdown-menu li > a:hover {
      background: #1965E1;
      color: #fff;
    }

/**** Header css end ****/
/*** mega menu css ***/
.nep-mega-menu .navbar-nav {
  width: 100%;
  position: relative;
}

  .nep-mega-menu .navbar-nav .dropdown-menu {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .nep-mega-menu .navbar-nav .megasubmenu {
    position: static;
  }

    .nep-mega-menu .navbar-nav .megasubmenu .dropdown-menu {
      left: 0;
      right: 0;
      width: 100%;
      min-width: 100%;
    }

  .nep-mega-menu .navbar-nav .m-mega-submenu {
    display: table;
    width: 100%;
    vertical-align: top;
  }

    .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-left-col {
      display: table-cell;
      vertical-align: top;
      width: 30%;
      padding: 0px 0;
      box-shadow: -1px 0px 0px #ddd inset;
    }

      .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-left-col h6 {
        font-family: Catamaran;
        line-height: 18px;
        padding: 15px 15px 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        font-size: 18px;
        font-weight: 600;
      }

      .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-left-col .nep-megamentab li a {
        padding: 9px 15px;
        color: #020920;
        display: block;
        font-size: 14px;
        line-height: 20px;
        transition: all .3s ease-in-out;
        border-bottom: 2px solid transparent;
      }

        .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-left-col .nep-megamentab li a:hover {
          background: #1965E1;
          color: #fff;
        }

          .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-left-col .nep-megamentab li a:hover:after {
            border-bottom: 2px solid #fff;
            border-right: 2px solid #fff;
          }

        .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-left-col .nep-megamentab li a:after {
          content: '';
          position: absolute;
          right: 20px;
          width: 8px;
          height: 8px;
          top: 50%;
          margin-top: -4px;
          border-bottom: 2px solid #1965e1;
          border-right: 2px solid #1965e1;
          transform: rotate(-45deg);
          transition: all .3s ease-in-out;
        }

      .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-left-col .nep-megamentab li.active a {
        background: #1965E1;
        color: #fff;
      }

        .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-left-col .nep-megamentab li.active a:after {
          border-bottom: 2px solid #fff;
          border-right: 2px solid #fff;
        }

    .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-right-col {
      display: table-cell;
      vertical-align: top;
      position: relative;
    }

      .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-right-col::after {
        content: "";
        position: absolute;
        right: 30%;
        top: 0;
        bottom: 0;
        border-left: 1px solid #ddd;
      }

      .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-right-col .nep-mega-submenu-block {
        float: left;
        width: 70%;
        position: relative;
      }

      .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-right-col .nep-mmsupplies {
        float: left;
        height: 100%;
        width: 30%;
        padding: 20px;
        font-size: 14px;
        line-height: 20px;
        color: #020920;
      }

        .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-right-col .nep-mmsupplies h4 {
          text-align: center;
          font-size: 15px;
          font-weight: 400;
          font-family: Helvetica;
          margin-bottom: 15px;
        }

      .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-right-col .mm-normal-submenu {
        float: left;
        padding: 15px 0 15px 25px;
        width: 50%;
      }

        .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-right-col .mm-normal-submenu h5 {
          font-size: 14px;
          margin-bottom: 5px;
          font-family: Helvetica-Bold,'Helvetica Bold',Helvetica;
          color: #4d4d4d;
          font-weight: 700;
          line-height: 28px;
        }

        .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-right-col .mm-normal-submenu ul li a {
          padding: 5px 0px;
          font-family: Helvetica;
          font-weight: 400;
          font-style: normal;
          font-size: 14px;
          color: #4d4d4d;
          display: block;
        }

          .nep-mega-menu .navbar-nav .m-mega-submenu .mmega-menu-right-col .mm-normal-submenu ul li a:hover {
            color: #1965E1;
          }

.nep-mobile-trigger a {
  display: block;
}

/*** mobile menu css ***/
.nep-mobil-menu-btn {
  position: relative;
  text-align: center;
  padding: 20px 10px 36px 10px;
  display: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  .nep-mobil-menu-btn {
    padding: 14px 10px 36px 10px;
  }
}

.nep-mobil-menu-btn .nep-mm-bar {
  position: relative;
  transform: translateY(8px);
  background: #fff;
  transition: all 0s .3s;
  width: 25px;
  display: inline-block;
  height: 3px;
  border-radius: 5px;
}

  .nep-mobil-menu-btn .nep-mm-bar::after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    background: #fff;
    transition: top 0.3s 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    width: 25px;
    height: 3px;
    border-radius: 5px;
  }

  .nep-mobil-menu-btn .nep-mm-bar::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    background: #fff;
    transition: bottom 0.3s 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    width: 25px;
    height: 3px;
    border-radius: 5px;
    width: calc(25px / 1.4);
  }

.nep-mobil-menu-btn.active-mobile-menu .nep-mm-bar {
  background: rgba(7, 25, 86, 0);
}

  .nep-mobil-menu-btn.active-mobile-menu .nep-mm-bar::before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    width: 25px;
  }

  .nep-mobil-menu-btn.active-mobile-menu .nep-mm-bar::after {
    top: 0;
    transform: rotate(45deg);
    transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    width: 25px;
  }

.menu-block {
  float: left;
}

.nep-header-social-list {
  float: right;
  margin-top: 10px;
}

  .nep-header-social-list a {
    color: #0d2ea0 !important;
    font-size: 23px !important;
    margin: 0px 15px;
  }

/*** Responsive css ***/
/**** footer css start ****/
.footer {
  background: #0D2EA0;
  padding-bottom: 35px;
  margin-top: 30px;
}

  .footer .footer-content {
    margin-top: 30px;
  }

  .footer .link-container h3.no-top-margin {
    margin-top: 0;
  }

  .footer .link-container h3 {
    color: #84aef1;
    font-size: 18px;
    font-family: Catamaran, sans-serif !important;
    font-weight: 400;
    position: relative;
  }

@media (max-width: 767px) {
  .footer .link-container h3 {
    border-bottom: 1px solid #475fb6;
    color: #a4c8ff;
    margin: 0;
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  .footer .link-container h3:after {
    content: "";
    background: url(../img/down-arrow-iconwhite.svg) center center no-repeat;
    height: 25px;
    width: 25px;
    position: absolute;
    top: 50%;
    display: block;
    float: none;
    right: 15px;
    transform: translateY(-50%);
  }
}

.footer .link-container ul {
  list-style-type: none;
  padding-left: 0;
}

@media (max-width: 767px) {
  .footer .link-container ul {
    display: none;
  }
}

.footer .link-container ul li {
  padding-top: 5px;
}

  .footer .link-container ul li a {
    color: #fff;
    font-weight: 400;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-size: 14px;
  }

.footer .nep-footer-social-list li {
  display: inline-block;
}

  .footer .nep-footer-social-list li a {
    display: block;
    font-size: 25px !important;
    margin-right: 8px;
  }

@media (max-width: 767px) {
  .footer .link-container ul + div {
    display: none;
  }
}

/**** footer css end ****/
/*** support icon and scroll top box css ***/
.support-icon {
  position: fixed;
  bottom: 15px;
  right: 85px;
  z-index: 999;
}

  .support-icon img {
    width: 70px;
  }

.scroll-top-icon {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  display: none;
  z-index: 999;
}

.footer .footer-content .nep-footer-social-list {
  position: relative;
  top: -25px;
  left: 0;
  float: left;
}

@media (max-width: 1199px) {
  .footer .footer-content .nep-footer-social-list {
    right: 92px;
  }
}

@media (max-width: 992px) {
  .footer .footer-content .nep-footer-social-list {
    right: 35px;
  }
}

@media (max-width: 767px) {
  .footer .footer-content .nep-footer-social-list {
    right: inherit;
    left: 15px;
    float: left;
    top: 0;
  }
}

.footer .footer-content .nep-footer-social-list a {
  color: #fff !important;
  margin: 0px 8px 0px 0px;
  margin-right: 8px;
}

  .footer .footer-content .nep-footer-social-list a span {
    width: 30px;
    background: #fff;
    color: #0d2ea0;
    padding: 5px 8px;
    border-radius: 50%;
    font-size: 19px;
  }

/*** Responsive css ***/
/**** hero css start ****/
.nep-home-slider.slick-initialized .slick-slide {
  padding-bottom: 25px;
  outline: none;
}

.neptune-home-hero:not(.left-open) .main-container, .neptune-home-hero:not(.right-open) .main-container {
  height: calc(80vh - 152px);
}

@media (max-width: 767px) {
  .neptune-home-hero:not(.left-open) .main-container, .neptune-home-hero:not(.right-open) .main-container {
    /*height: calc(80vh - 70px);*/
    height: auto;
    overflow: visible !important;
  }
}

.neptune-home-hero .hero-angles {
  position: absolute;
  z-index: 1;
  height: 100%;
}

@media (max-width: 767px) {
  .neptune-home-hero .hero-angles {
    display: none !important;
  }
}

.neptune-home-hero .hero-angles .hero-angle {
  background-color: #fff;
  display: block;
  position: absolute;
  content: '';
  height: 100%;
  left: 0;
  width: 100%;
  top: 0;
  transform: skew(-15deg);
}

  .neptune-home-hero .hero-angles .hero-angle.angle-2 {
    left: 20px;
    opacity: .5;
  }

  .neptune-home-hero .hero-angles .hero-angle.angle-3 {
    left: 40px;
    opacity: .25;
  }

.neptune-home-hero .text-container {
  z-index: 999;
  position: relative;
  width: 80%;
  float: left;
  text-align: left;
}

  .neptune-home-hero .text-container h1, .neptune-home-hero .text-container .slider-title {
    font-size: 42px;
    line-height: 1.1em;
    color: #020920;
    font-weight: 400;
  }

@media (max-width: 767px) {
  .neptune-home-hero .text-container h1, .neptune-home-hero .text-container .slider-title {
    font-size: 28px;
    padding-top: 10px;
  }
}

.neptune-home-hero .text-container h2 {
  line-height: 28px;
  margin-bottom: 25px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: Helvetica,Arial,sans-serif;
  margin-top: 0;
}

.neptune-home-hero.left-open .promo-carousel-container {
  transform: translateX(-100%);
  opacity: 0;
}

.neptune-home-hero.left-open .sliding-container {
  transform: translateX(58%);
  opacity: 1;
}

@media (max-width: 767px) {
  .neptune-home-hero.left-open .sliding-container {
    display: none;
  }
}

.neptune-home-hero.left-open .sliding-container .slider {
  width: 65%;
}

  .neptune-home-hero.left-open .sliding-container .slider.slider-left {
    transform: skew(-11.5deg) translateX(-128%);
  }

  .neptune-home-hero.left-open .sliding-container .slider.slider-center {
    transform: skew(-11.5deg) translateX(-218%);
  }

  .neptune-home-hero.left-open .sliding-container .slider.slider-right {
    transform: skew(-11.5deg) translateX(-1%);
    background: #3469e2;
  }

.neptune-home-hero.left-open .sites {
  position: relative;
}

  .neptune-home-hero.left-open .sites .left-container {
    transform: none;
    width: 100%;
    background-position: center top;
    position: relative;
    height: 100%;
    max-height: 250px;
  }

  .neptune-home-hero.left-open .sites .left-container {
    float: right;
    left: inherit;
    left: 0;
    transform: translateX(51%);
    width: 67%;
    max-height: none;
    max-height: unset;
    position: absolute;
  }

@media (max-width: 767px) {
  .neptune-home-hero.left-open .sites .left-container {
    transform: none;
    width: 100% !important;
    max-height: 250px;
    position: relative !important;
    min-height: 250px;
  }
}

.neptune-home-hero.left-open .sites .right-container {
  width: 0;
}

.neptune-home-hero.left-open .sites .site-name-container {
  transform: translateY(100px) !important;
}

@media (max-width: 767px) {
  .neptune-home-hero.left-open .sites .site-name-container {
    display: none;
  }
}

.neptune-home-hero.left-open .sites .site-name-container .right-label {
  opacity: 1;
}

.neptune-home-hero.left-open .text-container {
  width: 50%;
  height: 100%;
  float: left;
  z-index: 9;
}

@media (max-width: 767px) {
  .neptune-home-hero.left-open .text-container {
    width: 100%;
  }
}

.neptune-home-hero.left-open .text-container .text-content {
  top: 40%;
  transform: translateY(-50%);
}

@media (max-width: 1365px) and (min-width: 992px) {
  .neptune-home-hero.left-open .text-container .text-content {
    left: 30px;
  }
}

@media (max-width: 767px) {
  .neptune-home-hero.left-open .text-container .text-content {
    top: 0;
    transform: none;
  }
}

.neptune-home-hero.left-open .text-container * {
  z-index: 999;
  position: relative;
  width: 82%;
  float: left;
  text-align: left;
}

@media (max-width: 767px) {
  .neptune-home-hero.left-open .text-container * {
    width: 100%;
    text-align: center;
    float: left;
  }
}

.neptune-home-hero.left-open .text-container .btn-primary {
  text-align: center;
  width: auto;
  padding: 15px 25px;
}

@media (max-width: 767px) {
  .neptune-home-hero.left-open .text-container .btn-primary {
    margin: 0 auto;
    float: none;
  }
}

.neptune-home-hero.left-open .text-container:before {
  display: block;
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background: #fff;
  transform: skew(-15deg);
  z-index: 1;
}

@media (max-width: 767px) {
  .neptune-home-hero.left-open .text-container:before {
    display: none;
  }
}

.neptune-home-hero.left-open.right-open .promo-carousel-container {
  transform: translateX(-100%);
  opacity: 0;
}

.neptune-home-hero.left-open.right-open .hero-angles {
  right: 5%;
}

  .neptune-home-hero.left-open.right-open .hero-angles .hero-angle.angle-2 {
    right: 20px;
    left: auto;
  }

  .neptune-home-hero.left-open.right-open .hero-angles .hero-angle.angle-3 {
    right: 40px;
    left: auto;
  }

.neptune-home-hero.left-open.right-open .sliding-container {
  transform: translateX(-88%);
  opacity: 1;
}

  .neptune-home-hero.left-open.right-open .sliding-container .slider {
    width: 65%;
  }

    .neptune-home-hero.left-open.right-open .sliding-container .slider.slider-left {
      transform: skew(-11.5deg) translateX(-128%);
    }

    .neptune-home-hero.left-open.right-open .sliding-container .slider.slider-center {
      transform: skew(-11.5deg) translateX(-218%);
    }

    .neptune-home-hero.left-open.right-open .sliding-container .slider.slider-right {
      transform: skew(-11.5deg) translateX(-1%);
      background: #3469e2;
    }

.neptune-home-hero.left-open.right-open .sites {
  position: relative;
}

  .neptune-home-hero.left-open.right-open .sites .right-container {
    transform: none;
    width: 100%;
    background-position: center top;
    position: relative;
    height: 100%;
    max-height: 250px;
  }

  .neptune-home-hero.left-open.right-open .sites .left-container {
    width: 0;
  }

  .neptune-home-hero.left-open.right-open .sites .site-name-container {
    transform: translateY(100px) !important;
  }

    .neptune-home-hero.left-open.right-open .sites .site-name-container .left-label {
      opacity: 1;
    }

.neptune-home-hero.left-open.right-open .text-container {
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 9;
  float: left;
}

  .neptune-home-hero.left-open.right-open .text-container .text-content {
    top: 40%;
    transform: translateY(-50%);
  }

  .neptune-home-hero.left-open.right-open .text-container * {
    z-index: 999;
    position: relative;
    width: 80%;
    float: right;
    text-align: right;
  }

  .neptune-home-hero.left-open.right-open .text-container .btn-primary {
    text-align: center;
    width: auto;
    padding: 15px 25px;
  }

  .neptune-home-hero.left-open.right-open .text-container:before {
    display: block;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: #fff;
    transform: skew(-15deg);
    z-index: 1;
  }

.neptune-home-hero.left-open .sliding-container {
  position: absolute;
  width: 100%;
  top: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all .8s ease;
  margin: auto;
}

  .neptune-home-hero.left-open .sliding-container .slider {
    height: 100%;
    position: absolute;
    width: 73%;
    transition: all .8s ease;
  }

    .neptune-home-hero.left-open .sliding-container .slider.slider-left {
      transform: skew(-11.5deg) translateX(-32.35%);
      left: 0;
      background: rgba(255, 255, 255, 0.8);
    }

    .neptune-home-hero.left-open .sliding-container .slider.slider-center {
      width: 3%;
      background: rgba(255, 255, 255, 0.5);
      transform: skew(-11.5deg);
      left: 47.9%;
    }

    .neptune-home-hero.left-open .sliding-container .slider.slider-right {
      transform: skew(-11.5deg) translateX(30.65%);
      right: 0;
      background: rgba(52, 105, 226, 0.8);
    }

.neptune-home-hero.left-open .main-container {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.neptune-home-hero.left-open .sites {
  height: 100%;
  position: relative;
  top: 0;
}

  .neptune-home-hero.left-open .sites .site-name-container {
    position: absolute;
    bottom: 200px;
    transform: translateY(500px);
    width: 100%;
    transition: all .8s ease;
    z-index: 2;
  }

    .neptune-home-hero.left-open .sites .site-name-container h2 {
      display: inline-block;
      width: auto;
      padding: 0 15%;
      opacity: 0;
      color: #fff;
    }

    .neptune-home-hero.left-open .sites .site-name-container small {
      color: #fff;
      font-size: 18px;
      float: none;
      clear: both;
      display: block;
      padding-bottom: 15px;
      font-weight: 400;
    }

    .neptune-home-hero.left-open .sites .site-name-container .left-label {
      float: left;
      transition: all .8 ease;
    }

    .neptune-home-hero.left-open .sites .site-name-container .right-label {
      text-align: right;
      float: right;
      transition: all .8 ease;
    }

  .neptune-home-hero.left-open .sites .left-container,
  .neptune-home-hero.left-open .sites .right-container {
    width: 100%;
    float: left;
    position: absolute;
    background-size: cover;
    transition: all .8s ease;
    /*transform: skew(11.5deg);*/
    width: 67%;
    background-position: center right;
  }

    .neptune-home-hero.left-open .sites .left-container .site-item,
    .neptune-home-hero.left-open .sites .right-container .site-item {
      opacity: 0;
      transform: translateX(-100%);
    }

    .neptune-home-hero.left-open .sites .left-container.active .site-item,
    .neptune-home-hero.left-open .sites .right-container.active .site-item {
      opacity: 1;
      transform: translateX(0);
    }

  .neptune-home-hero.left-open .sites .skew-container {
    width: 60%;
    position: absolute;
    height: 100%;
    transform: skew(-11.5deg);
    overflow: hidden;
  }

    .neptune-home-hero.left-open .sites .skew-container.skew-container--left {
      left: -9.5%;
      top: 0;
    }

    .neptune-home-hero.left-open .sites .skew-container.skew-container--right {
      right: -9.5%;
      top: 0;
    }

.neptune-home-hero.left-open .sites-nav-home {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all .8s ease;
}

  .neptune-home-hero.left-open .sites-nav-home.hide {
    transform: translateX(-1000%);
  }

  .neptune-home-hero.left-open .sites-nav-home .left-container,
  .neptune-home-hero.left-open .sites-nav-home .right-container {
    width: 50%;
    float: left;
    position: relative;
    top: 0;
    height: 100%;
  }

    .neptune-home-hero.left-open .sites-nav-home .left-container .full-link-overlay,
    .neptune-home-hero.left-open .sites-nav-home .right-container .full-link-overlay {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
    }

    .neptune-home-hero.left-open .sites-nav-home .left-container .callout-content,
    .neptune-home-hero.left-open .sites-nav-home .right-container .callout-content {
      top: 50%;
      position: relative;
    }

      .neptune-home-hero.left-open .sites-nav-home .left-container .callout-content .label,
      .neptune-home-hero.left-open .sites-nav-home .right-container .callout-content .label {
        color: #0D2EA0;
        font-size: 18px;
        font-weight: normal;
        padding: 0 5px;
      }

      .neptune-home-hero.left-open .sites-nav-home .left-container .callout-content h2,
      .neptune-home-hero.left-open .sites-nav-home .right-container .callout-content h2 {
        margin: 0;
        color: #0D2EA0;
      }

    .neptune-home-hero.left-open .sites-nav-home .left-container .line {
      position: absolute;
      top: 54%;
      left: -15%;
    }

    .neptune-home-hero.left-open .sites-nav-home .left-container .callout-content {
      padding-left: 15px;
    }

  .neptune-home-hero.left-open .sites-nav-home .right-container {
    text-align: right;
  }

    .neptune-home-hero.left-open .sites-nav-home .right-container .line {
      position: absolute;
      top: 54%;
      right: -20%;
    }

    .neptune-home-hero.left-open .sites-nav-home .right-container .callout-content .label {
      color: white;
    }

    .neptune-home-hero.left-open .sites-nav-home .right-container .callout-content h2 {
      color: white;
    }

      .neptune-home-hero.left-open .sites-nav-home .right-container .callout-content h2 a {
        color: white;
        text-decoration: none;
      }

.neptune-home-hero.left-open .promo-carousel-container {
  position: absolute;
  z-index: 3;
  width: 20%;
  margin: 0 auto;
  left: 37%;
  top: 30%;
  transition: all .5s ease;
}

.neptune-home-hero.left-open .site-content {
  height: 100%;
}

  .neptune-home-hero.left-open .site-content .text-container .downbounce {
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    color: #0D2EA0;
  }

@media (max-width: 767px) {
  .neptune-home-hero.left-open .site-content .text-container .downbounce {
    bottom: -25px;
  }
}

.neptune-home-hero.left-open .site-content .text-container .downbounce .fa-angle-down {
  background-image: none;
}

.neptune-home-hero.left-open .site-content .text-container .downbounce i::before {
  font-size: 35px;
}

.neptune-home-hero.left-open .btn-back {
  display: none;
  position: absolute;
  color: #fff;
  top: 150px;
  left: 20px;
  z-index: 99;
}

  .neptune-home-hero.left-open .btn-back.btn-link {
    z-index: 999;
  }

  .neptune-home-hero.left-open .btn-back a {
    color: #fff;
  }

  .neptune-home-hero.left-open .btn-back.active {
    display: none;
  }

  .neptune-home-hero.left-open .btn-back.title {
    top: 85%;
    left: 20%;
  }

    .neptune-home-hero.left-open .btn-back.title h2 {
      font-size: 70px;
      color: #fff;
    }

.neptune-home-hero .slick-prev {
  width: 30px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  border-radius: 0%;
  border: 0px solid #0D2EA0;
  background-color: #fff;
  font-size: 0px;
  background-image: url(../img/left.png);
  background-size: 100%;
  background-position: 50%;
  z-index: 10;
  outline: none;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .neptune-home-hero .slick-prev {
    top: 30%;
  }
}

.neptune-home-hero .slick-next {
  width: 30px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  border-radius: 0%;
  border: 0px solid #0D2EA0;
  background-color: #fff;
  font-size: 0px;
  background-image: url(../img/right.png);
  background-size: 100%;
  background-position: 50%;
  z-index: 10;
  outline: none;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .neptune-home-hero .slick-next {
    top: 30%;
  }
}

.neptune-home-hero .btn-back {
  display: none;
}

/**** hero css end ****/
/*** Responsive css ***/
.neptune-promo-container {
  margin-bottom: 25px;
}

  .neptune-promo-container .nep-promo-img {
    text-align: center;
    margin: 0 auto;
    display: block;
  }

  .neptune-promo-container .neptune-promo-content {
    text-align: center;
    padding: 15px;
  }

    .neptune-promo-container .neptune-promo-content h4 {
      font-size: 20px;
      margin: 10px 0;
    }

      .neptune-promo-container .neptune-promo-content h4 a {
        color: #000000;
      }

    .neptune-promo-container .neptune-promo-content p {
      font-size: 14px;
      line-height: 20px;
      color: #000;
      margin: 0;
    }

.nep-container-cta {
  border: 12px solid #f5f6f8;
  margin-bottom: 25px;
}

  .nep-container-cta .col-l {
    padding: 20px 30px;
  }

    .nep-container-cta .col-l h4 {
      font-size: 24px;
      color: #000;
      line-height: 28px;
    }

    .nep-container-cta .col-l p {
      color: #4d4d4d;
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 10px;
    }

  .nep-container-cta .col-l-1 {
    padding: 15px 25px;
  }

    .nep-container-cta .col-l-1 .link-arrows li {
      margin: 7px 0;
    }

  .nep-container-cta .link-arrow {
    font-size: 16px;
    font-weight: 500;
    color: #1965E1;
    padding: 0px;
  }

/*** Responsive css ***/
.nep-product-grid-container {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -5px 0;
}

  .nep-product-grid-container .nep-products-grid.position-one {
    height: 318px;
  }

  .nep-product-grid-container .nep-products-grid.position-two {
    height: 390px;
  }

  .nep-product-grid-container .nep-products-grid.position-three {
    height: 390px;
    margin-top: -70px;
  }

  .nep-product-grid-container .nep-products-grid.position-four {
    height: 318px;
  }

  .nep-product-grid-container .nep-products-grid {
    margin: 0 5px 10px;
    padding: 0;
    position: relative;
    width: calc(50% - 10px);
  }

@media (max-width: 991px) {
  .nep-product-grid-container .nep-products-grid {
    margin: 0 0 15px 0px !important;
    width: 100%;
    min-height: 175px;
    height: auto !important;
  }
}

.nep-product-grid-container .nep-products-grid .nep-products-block {
  background-position: 100% 100%;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  transition: all .4s ease-out;
  width: 100%;
  cursor: pointer;
}

  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-p-b-img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    z-index: 1;
  }

@media (max-width: 767px) {
  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-p-b-img {
    background-size: contain;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-p-b-img {
    background-size: 85%;
  }
}

.nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-hover {
  position: absolute;
  height: 100%;
  right: -100px;
  transition: all .3s ease-out;
  width: 1000px !important;
  z-index: 0;
}

  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-hover .hover-shape-bottom, .nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-hover .hover-shape-top {
    background-color: #f5f6f8;
    height: 100%;
    position: absolute;
    transform: skew(-25deg);
    top: 0;
    width: 100%;
  }

  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-hover .hover-shape-bottom {
    left: -15px;
    opacity: .4;
  }

@media (max-width: 767px) {
  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-hover .hover-shape-bottom {
    background: transparent;
  }
}

.nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-hover .hover-shape-top {
  left: 15px;
}

@media (max-width: 767px) {
  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-hover .hover-shape-top {
    background: transparent;
  }
}

.nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-detail {
  padding: 30px;
  width: 55%;
  position: relative;
  z-index: 1;
}

  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-detail h4 {
    color: #020920;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
  }

@media (max-width: 991px) {
  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-detail h4 {
    color: #fff;
    font-size: 22px;
  }
}

.nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-detail a {
  color: #4d4d4d;
}

@media (max-width: 991px) {
  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-detail a {
    color: #fff;
  }
}

.nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-detail a::after {
  background-image: url(../img/icon-arrow-base.png);
}

@media (max-width: 991px) {
  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-detail a::after {
    background-image: url(../img/icon-arrow-white.png);
  }
}

.nep-product-grid-container .nep-products-grid .nep-products-block:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  transition: all .7s ease-in;
}

  .nep-product-grid-container .nep-products-grid .nep-products-block:hover .nep-product-hover {
    right: -1200px;
    transition: all .7s ease-in;
  }

  .nep-product-grid-container .nep-products-grid .nep-products-block:hover .nep-product-detail h4 {
    color: #fff;
    transition: all .5s ease-out;
  }

  .nep-product-grid-container .nep-products-grid .nep-products-block:hover .nep-product-detail a {
    color: #fff;
    transition: all .5s ease-out;
  }

    .nep-product-grid-container .nep-products-grid .nep-products-block:hover .nep-product-detail a::after {
      background-image: url(../img/icon-arrow-white.png);
    }

/*** Responsive css ***/
.neptune-billboard-section {
  overflow: visible;
  position: relative;
  width: 100%;
  z-index: 1;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

  .neptune-billboard-section .nep-billboard-img {
    margin-bottom: 20px;
    max-height: 260px;
    overflow: hidden;
  }

    .neptune-billboard-section .nep-billboard-img img {
      position: relative;
      width: 100%;
      height: auto;
      max-height: none;
    }

  .neptune-billboard-section .nep-hero-details h1 {
    font-size: 32px;
    color: #020920;
    line-height: 1.1em;
    font-weight: 400;
  }

@media (max-width: 767px) {
  .neptune-billboard-section .nep-hero-details h1 {
    font-size: 25px;
  }
}

.neptune-billboard-section .nep-hero-details .description h2 {
  font-size: 16px;
  line-height: 28px;
  margin-top: 0;
  font-family: Helvetica,Arial,sans-serif;
  margin-bottom: 15px;
  color: #4d4d4d;
}

/*** Responsive css ***/
.nep-sidekick-container {
  position: relative;
}

  .nep-sidekick-container .sidekick-container .image-container img {
    margin: 0 auto;
  }

  .nep-sidekick-container .text-container h3 {
    font-size: 28px;
    line-height: 1.15em;
    color: #020920;
    font-weight: 400;
  }

@media (max-width: 767px) {
  .nep-sidekick-container .text-container h3 {
    font-size: 22px;
    margin-top: 10px;
  }
}

.nep-sidekick-container .text-container p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

/*** Responsive css ***/
.dealer-from-container {
  background: #f5f6f8;
  padding: 30px 20px;
}

  .dealer-from-container .form-group label {
    font-size: 16px;
    color: #000;
    font-weight: 500;
  }

  .dealer-from-container .form-group .form-control {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 0;
    box-shadow: none;
    height: 52px;
    color: #000;
  }

  .dealer-from-container .ecomm-btn-wrapp .btn-primary-blue.btn-md {
    padding: 4px 19px;
    min-width: 120px;
    border-radius: 15px;
  }

/**** search results page css ****/
.nep-search-tabs {
  margin-bottom: 15px;
}

  .nep-search-tabs .nav {
    display: flex;
    width: 100%;
    border-bottom: 0px;
  }

    .nep-search-tabs .nav li {
      width: 30%;
      margin-right: 34px;
      text-align: center;
    }

@media (max-width: 767px) {
  .nep-search-tabs .nav li {
    width: 34%;
    margin-right: 10px;
  }
}

.nep-search-tabs .nav li:last-child {
  margin-right: 0px;
  margin-bottom: 0px;
}

.nep-search-tabs .nav li a {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  background: #f5f6f8;
  border-radius: 0px;
  min-height: 60px;
  position: relative;
  padding-top: 20px;
}

@media (max-width: 767px) {
  .nep-search-tabs .nav li a {
    font-size: 14px;
    padding: 20px 7px 10px;
  }
}

@media (max-width: 480px) {
  .nep-search-tabs .nav li a {
    min-height: 72px;
  }
}

.nep-search-tabs .nav li a span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

@media (max-width: 767px) {
  .nep-search-tabs .nav li a span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .nep-search-tabs .nav li a span {
    display: none;
  }
}

.nep-search-tabs .nav li a:hover {
  background-color: #fff;
  border: 1px solid #d7d7d7;
  border-bottom: 4px solid #ff620e;
}

.nep-search-tabs .nav .active a {
  background-color: #fff;
  border: 1px solid #d7d7d7;
  border-bottom: 4px solid #ff620e;
}

.nep-search-tabs .nav .active:after {
  content: '';
  background: #fff;
  height: 5px;
  /*width: 100%;*/
  position: absolute;
  bottom: -4px;
  left: 1px;
  right: 3px;
}

.nep-search-tabs .nav:last-child a {
  line-height: 37px;
}

.nep-search-tabs .tab-content {
  padding: 15px;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 586px;
  overflow-y: scroll;
  margin-top: 20px;
}

.nep-deal-raido .nep-radio {
  display: inline-block;
  margin-bottom: 10px;
}

  .nep-deal-raido .nep-radio label {
    padding-top: 0;
    padding-left: 28px;
    margin-right: 10px;
    font-size: 15px;
  }

  .nep-deal-raido .nep-radio input {
    width: 20px;
    height: 20px;
  }

    .nep-deal-raido .nep-radio input:checked::after {
      width: 10px;
      height: 10px;
      left: 3px;
      top: 3px;
    }

.nep-dealer-add-wrap {
  display: flex;
  flex-wrap: wrap;
}

  .nep-dealer-add-wrap::after {
    content: "";
    display: block;
    clear: both;
  }

  .nep-dealer-add-wrap .nep-deal-addres-block {
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    width: 50%;
    float: left;
    border-right: 1px solid #ddd;
    padding: 8px 0;
  }

@media (max-width: 767px) {
  .nep-dealer-add-wrap .nep-deal-addres-block {
    width: 100%;
    border-right: none;
  }
}

.nep-dealer-add-wrap .nep-deal-addres-block:nth-of-type(2n) {
  border-right: none;
  padding-left: 8px;
}

@media (max-width: 767px) {
  .nep-dealer-add-wrap .nep-deal-addres-block:nth-of-type(2n) {
    padding-left: 0;
  }
}

.nep-dealer-add-wrap .nep-deal-addres-block .nep-d-addr-icon {
  float: left;
  width: 28px;
  padding-top: 3px;
}

  .nep-dealer-add-wrap .nep-deal-addres-block .nep-d-addr-icon .fa {
    font-size: 31px;
    color: darkorange;
  }

.nep-dealer-add-wrap .nep-deal-addres-block .nep-d-addr-content {
  overflow: hidden;
}

  .nep-dealer-add-wrap .nep-deal-addres-block .nep-d-addr-content h2 {
    margin: 3px 0;
    font-weight: 600;
    color: #1965e1;
    font-size: 1.4rem;
    font-size: 14px;
    text-transform: uppercase;
  }

  .nep-dealer-add-wrap .nep-deal-addres-block .nep-d-addr-content h3 {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0;
    padding: 2px 0 8px 0;
    color: #071956;
    font-weight: 600;
    display: block;
  }

  .nep-dealer-add-wrap .nep-deal-addres-block .nep-d-addr-content .nep-d-addr-list {
    font-size: 14px;
    line-height: 24px;
  }

    .nep-dealer-add-wrap .nep-deal-addres-block .nep-d-addr-content .nep-d-addr-list li {
      position: relative;
      padding-left: 25px;
    }

      .nep-dealer-add-wrap .nep-deal-addres-block .nep-d-addr-content .nep-d-addr-list li .fa {
        font-size: 15px;
        width: 20px;
        text-align: center;
        color: #666;
        margin-right: 5px;
        position: absolute;
        left: 0;
        top: 4px;
      }

.ecommerce-btn-wrapp {
  background: #f5f6f8;
  padding: 76px 20px 61px 20px;
}

@media (max-width: 1200px) {
  .ecommerce-btn-wrapp {
    padding: 76px 20px 37px 20px;
  }
}

.ecommerce-btn-wrapp h4 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 15px;
}

.ecommerce-btn-wrapp i {
  font-size: 30px;
  margin-left: 10px;
  color: #1965e1;
  display: block;
  text-align: center;
  margin: 20px 0px;
}

.ecommerce-btn-wrapp p {
  font-size: 16px;
  text-align: center;
}

.ecommerce-btn-wrapp .ecomm-btn {
  background-color: transparent;
  border: 2px solid #1965e1;
  padding: 10px 8px;
  color: #1965e1;
  min-width: 240px;
  font-size: 15px;
}

.buscar-btn-wrapp {
  margin-top: 28px;
}

.nap-dealer-section .nep-hero-details h1, .nap-dealer-section .nep-hero-details .dealer-locator-title {
  font-size: 44px;
  color: #071956;
  line-height: 1.1em;
  font-weight: 400;
}

/*-------For--Search_Result_page------------*/
/*-------For--Search_Result_page-END-----------*/
/*-------For--check-box------------*/
.janus-coveo-checkbox {
  margin-bottom: 10px;
  display: inline-block;
  margin-right: 10px;
}

  .janus-coveo-checkbox label {
    position: relative;
    display: block;
    font-size: 15px;
  }

    .janus-coveo-checkbox label input {
      opacity: 0;
      z-index: 1;
    }

  .janus-coveo-checkbox .janus-label-text {
    font-size: 14px;
    font-weight: 400;
    margin-left: 15px;
  }

  .janus-coveo-checkbox .janus-checkmark {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    border: 2px solid #0D2EA0;
    display: inline-block;
  }

  .janus-coveo-checkbox input:checked ~ .janus-checkmark {
    border: 2px solid #0D2EA0;
    background: #0D2EA0;
  }

    .janus-coveo-checkbox input:checked ~ .janus-checkmark:after {
      content: "";
      width: 20px;
      height: 20px;
      background: url(../img/check.png) no-repeat;
      background-size: 80%;
      position: absolute;
      top: 1px;
    }

/*** Responsive css ***/
.nep-pdp-container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .nep-pdp-container {
    padding: 15px 15px;
  }
}

.nep-pdp-container .nep-pdp-row {
  position: relative;
}

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l {
    float: left;
    width: 55%;
    padding: 0px 15px;
  }

@media (max-width: 767px) {
  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l {
    width: 100%;
  }
}

.nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-wrapper {
  padding: 40px 0 20px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-wrapper {
    padding: 0px 0 0px 0px;
  }
}

.nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-thumb {
  width: 100px;
  float: left;
}

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-thumb .slick-track {
    text-align: center;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-thumb .slick-prev {
    background: url(../img/pdp-up-arro-icon.svg);
    background-position: center 4px;
    background-repeat: no-repeat;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-thumb .slick-arrow {
    border: none;
    text-indent: -500px;
    overflow: hidden;
    width: 100%;
    padding: 0;
    height: 20px;
    outline: none;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-thumb .slick-slide {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 1px;
    margin: 7px 0px;
    text-align: center;
    cursor: pointer;
    max-width: 100px;
    float: none;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-thumb .slick-current {
    border: 1px solid #0D2EA0;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-thumb .slick-slide img {
    display: inline-block;
    height: 56px;
  }

.nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content {
  overflow: hidden;
  margin-bottom: 20px;
  visibility: hidden;
  min-height: 355px;
}

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content.slick-initialized {
    visibility: visible;
    width: calc(100% - 100px);
    float: right;
    padding-left: 20px;
  }

@media (max-width: 767px) {
  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content.slick-initialized {
    min-height: auto;
  }
}

@media (max-width: 992px) {
  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-list {
    padding: 0 40px;
  }
}

.nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-arrow {
  display: none !important;
  border: none;
  width: 37px;
  height: 37px;
  padding: 0;
  overflow: hidden;
  text-indent: 200px;
  outline: none;
  z-index: 15;
}

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-arrow.slick-prev {
    background: url(../img/slide-arro-prev.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-arrow.slick-next {
    background: url(../img/slide-arro-next.svg);
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }

.nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-slide {
  text-align: center;
}

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-slide img {
    display: inline-block;
  }

@media (max-width: 767px) {
  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-slide img {
    max-width: 85%;
  }
}

@media (max-width: 992px) {
  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-slide img {
    max-height: 330px;
    padding: 0 40px;
  }
}

.nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-slide {
  outline: none;
}

.nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-dots {
  display: none !important;
  position: absolute;
  bottom: 0;
  text-align: center;
  left: 0;
  right: 0;
}

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-dots li {
    display: inline-block;
    margin: 0 3px;
    vertical-align: middle;
    height: auto;
    width: auto;
    overflow: hidden;
  }

    .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-dots li.slick-active button {
      width: 12px;
      height: 12px;
      background: #054FA6;
    }

    .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-dots li button {
      background: #333;
      border: none;
      width: 8px;
      height: 8px;
      overflow: hidden;
      text-indent: -100px;
      border-radius: 60px;
      display: block;
      cursor: pointer;
      padding: 0;
      outline: none;
    }

.nep-pdp-container .nep-pdp-row .nep-pdp-col-r {
  overflow: hidden;
  padding: 0px 15px;
}

@media (max-width: 767px) {
  .nep-pdp-container .nep-pdp-row .nep-pdp-col-r {
    overflow: inherit;
  }
}

.nep-pdp-container .nep-pdp-row .nep-pdp-col-r .nep-product-detail-container {
  padding: 40px 0 10px 0;
}

.nep-product-meta .nep-model-number {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  font-family: Helvetica, Arial, sans-serif !important;
  color: #1965E1;
  margin: 0;
}

.nep-product-meta .nep-product-title {
  font-size: 25px;
  line-height: 38px;
  font-family: Helvetica, Arial, sans-serif !important;
  font-weight: normal;
  margin: 0 0 5px 0;
}

.nep-product-meta .nep-product-category {
  font-size: 17px;
  line-height: 25px;
  margin: 0;
  font-family: Helvetica,Arial,sans-serif;
  color: #4A4A4A;
}

.nep-product-features ul {
  list-style-type: disc;
  list-style-position: outside;
  padding: 12px 0 12px 25px;
}

  .nep-product-features ul li {
    font-size: 16px;
    line-height: 24px;
    color: #000;
  }

@media (max-width: 767px) {
  .nep-prdouct-features-icon {
    text-align: center;
  }
}

.nep-prdouct-features-icon .nep-pr-f-icons li {
  display: inline-block;
  border: 1px solid #ddd;
  max-width: 65px;
  margin: 0 12px 10px 0;
  padding: 10px;
}

  .nep-prdouct-features-icon .nep-pr-f-icons li img {
    max-width: 100%;
  }

.nep-produc-tabs-wrap {
  min-height: 67px;
}

@media (max-width: 767px) {
  .nep-produc-tabs-wrap {
    min-height: auto;
    margin: 0;
  }

    .nep-produc-tabs-wrap .nep-product-tabs {
      visibility: hidden;
      height: 1px;
      overflow: hidden;
    }

      .nep-produc-tabs-wrap .nep-product-tabs.affix {
        visibility: inherit;
        min-height: 50px;
        height: auto;
        overflow: visible;
      }
}

.nep-product-tabs {
  border-top: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
  position: relative;
  background: #FFF;
}

@media (max-width: 767px) {
  .nep-product-tabs .dropdown.open .dropdown-menu {
    display: block;
    z-index: 999;
  }
}

.nep-product-tabs .dropdown.open .dropdown-menu li {
  display: block;
}

.nep-product-tabs #nep-pr-tbas {
  display: none;
  position: absolute;
  background: transparent;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 99;
  width: 50px;
  height: 40px;
  border: none;
  outline: none;
  z-index: 1000;
}

  .nep-product-tabs #nep-pr-tbas .caret {
    position: absolute;
    right: 18px;
    top: 17px;
    border-top: 10px dashed #666;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
  }

@media (max-width: 767px) {
  .nep-product-tabs #nep-pr-tbas {
    display: block;
    position: absolute;
    float: right;
  }
}

.nep-product-tabs .nav {
  border: none;
  padding-left: 20px;
}

  .nep-product-tabs .nav.active a:after {
    content: "";
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d2ea0;
    border-radius: 10px;
  }

.nep-product-tabs .dropdown-menu {
  display: block;
  position: relative;
  padding: 0 0 0 20px;
  margin: 0;
  box-shadow: none;
  z-index: 10;
}

@media (max-width: 767px) {
  .nep-product-tabs .dropdown-menu {
    display: block;
    position: relative;
    padding: 0 15px;
    width: 100%;
  }
}

.nep-product-tabs .dropdown-menu li {
  margin-right: 30px;
  padding: 14px 0;
  float: left;
}

@media (max-width: 767px) {
  .nep-product-tabs .dropdown-menu li {
    float: none;
    margin: 0;
    padding: 0;
    display: none;
  }
}

.nep-product-tabs .dropdown-menu li a {
  color: #000;
  font-size: 18px;
  padding: 6px 0px;
  display: block;
  position: relative;
}

@media (max-width: 767px) {
  .nep-product-tabs .dropdown-menu li a {
    font-size: 17px;
    padding: 11px 0;
  }
}

.nep-product-tabs .dropdown-menu li a:hover {
  background: transparent;
}

.nep-product-tabs .dropdown-menu li.active {
  display: block;
}

.nep-product-tabs .dropdown-menu .active a {
  background: none;
  border: none;
  font-weight: 600;
  color: #000;
}

  .nep-product-tabs .dropdown-menu .active a::after {
    content: "";
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0D2EA0;
    border-radius: 10px;
  }

@media (max-width: 767px) {
  .nep-product-tabs .dropdown-menu .active a::after {
    content: none;
  }
}

.nep-product-tabs .dropdown-menu .support-link a {
  color: #1965E1 !important;
  padding-right: 28px !important;
}

  .nep-product-tabs .dropdown-menu .support-link a::before {
    content: "";
    background: url(../img/icon-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    position: absolute;
    right: 0;
    width: 20px;
    height: 12px;
    top: 13px;
  }

.nep-product-tabs.affix {
  position: fixed;
  width: 100%;
  z-index: 5;
  top: 50px;
  margin: 0;
}

@media (max-width: 767px) {
  .nep-product-tabs.affix {
    top: 0;
  }
}

@media (max-width: 991px) {
  .nep-product-tabs.affix {
    top: 0;
  }
}

.nep-pdp-left-col .nep-pdp-title2 {
  font-size: 21px;
  color: #000;
  overflow: hidden;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .nep-pdp-left-col .nep-pdp-title2 {
    margin: 0;
    padding-bottom: 15px;
    font-size: 18px;
  }
}

.nep-pdp-left-col .nep-pdp-title2 span {
  display: block;
  padding-top: 160px;
  margin-top: -160px;
}

.nep-pdp-content-sect {
  position: relative;
}

  .nep-pdp-content-sect p {
    font-size: 16px;
    line-height: 24px;
  }

  .nep-pdp-content-sect blockquote {
    padding: 20px 20px;
    margin: 0 0 20px;
    font-size: 16px;
    border-left: none;
    background: #e6e6e6;
  }

    .nep-pdp-content-sect blockquote ul {
      list-style-type: disc;
      list-style-position: outside;
      line-height: 24px;
      font-size: 16px;
      padding-left: 12px;
    }

      .nep-pdp-content-sect blockquote ul li {
        margin: 15px 5px;
      }

.nep-view-more-btn {
  border: 1px solid #0D2EA0;
  min-width: 255px;
  border-radius: 4px;
  font-size: 16px;
  color: #0D2EA0;
  padding: 10px 15px;
  line-height: 34px;
  position: relative;
}

@media (max-width: 767px) {
  .nep-view-more-btn {
    min-width: 190px;
    font-size: 14px;
    padding: 5px 15px;
    line-height: 33px;
  }
}

.nep-view-more-btn::before {
  content: "";
  background: url(../img/down-arrow-icon.svg);
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  background-size: 13px;
  background-repeat: no-repeat;
  left: 35px;
  top: 17px;
}

@media (max-width: 767px) {
  .nep-view-more-btn::before {
    left: 15px;
    top: 13px;
  }
}

.nep-view-more-btn::after {
  content: "";
  background: url(../img/down-arrow-icon.svg);
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  background-size: 13px;
  background-repeat: no-repeat;
  right: 35px;
  top: 17px;
}

@media (max-width: 767px) {
  .nep-view-more-btn::after {
    right: 15px;
    top: 13px;
  }
}

/*** accordion-panel css ***/
.accordion-panel {
  margin-bottom: 10px;
  border: none;
  box-shadow: none;
}

  .accordion-panel .panel-heading {
    padding: 0;
    border-radius: 0;
    border: none;
  }

    .accordion-panel .panel-heading a {
      display: block;
      font-size: 18px;
      color: #fff;
      padding: 8px 20px;
      height: 60px;
      line-height: 44px;
      position: relative;
      background: #0D2EA0;
    }

@media (max-width: 767px) {
  .accordion-panel .panel-heading a {
    font-size: 16px;
    padding: 3px 15px;
    height: 50px;
  }
}

.accordion-panel .panel-heading a[aria-expanded="true"]::after {
  content: "";
  background: url(../img/accordion-arrow-up-icons.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  width: 25px;
  height: 25px;
  top: 17px;
}

@media (max-width: 767px) {
  .accordion-panel .panel-heading a[aria-expanded="true"]::after {
    right: 12px;
    width: 22px;
    height: 22px;
    top: 14px;
    background-size: 22px;
  }
}

.accordion-panel .panel-heading a::after {
  content: "";
  background: url(../img/accordion-arrow-down-icons.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  width: 25px;
  height: 25px;
  top: 17px;
}

@media (max-width: 767px) {
  .accordion-panel .panel-heading a::after {
    right: 12px;
    width: 22px;
    height: 22px;
    top: 14px;
    background-size: 22px;
  }
}

.pdp-table {
  font-size: 16px;
  color: #000;
}

@media (max-width: 479px) {
  .pdp-table {
    overflow: auto;
    display: block;
    font-size: 14px;
  }
}

.pdp-table tr:nth-child(odd) {
  background: #E6EAF5;
}

.pdp-table tr th {
  border-right: 1px solid #979797;
}

.pdp-table > tbody > tr > td,
.pdp-table > tbody > tr > th,
.pdp-table > tfoot > tr > td,
.pdp-table > tfoot > tr > th,
.pdp-table > thead > tr > td,
.pdp-table > thead > tr > th {
  padding: 10px 15px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: none;
  width: 50%;
}

.nep-pdp-supplies-card {
  position: relative;
  border: 1px solid #979797;
  margin-bottom: 20px;
}

  .nep-pdp-supplies-card::after {
    display: table;
    clear: both;
    content: "";
  }

  .nep-pdp-supplies-card .nep-pdp-supp-col-1 {
    padding: 20px 12px 20px 12px;
  }

@media (max-width: 767px) {
  .nep-pdp-supplies-card .nep-pdp-supp-col-1 {
    padding: 12px 12px 12px 12px;
  }
}

.nep-pdp-supplies-card .nep-pdp-supp-col-1 .nep-pdp-supp-img {
  width: 100px;
  display: block;
  float: left;
  height: auto;
  margin-right: 12px;
  padding: 10px 0;
}

@media (max-width: 767px) {
  .nep-pdp-supplies-card .nep-pdp-supp-col-1 .nep-pdp-supp-img {
    width: 80px;
  }
}

.nep-pdp-supplies-card .nep-pdp-supp-col-1 h2 {
  font-size: 16px;
  line-height: 16px;
  padding-bottom: 5px;
  margin: 0;
}

@media (max-width: 767px) {
  .nep-pdp-supplies-card .nep-pdp-supp-col-1 h2 {
    font-size: 14px;
  }
}

.nep-pdp-supplies-card .nep-pdp-supp-col-1 h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

@media (max-width: 767px) {
  .nep-pdp-supplies-card .nep-pdp-supp-col-1 h3 {
    font-size: 16px;
    line-height: 20px;
  }
}

.nep-pdp-supplies-card .nep-pdp-supp-col-1 h3 a {
  color: #000;
}

.pdp-btn-links-2 {
  color: #0D2EA0;
  font-size: 16px;
  display: inline-block;
  padding: 0px 35px 0px 0px;
  position: relative;
  font-weight: 600;
}

  .pdp-btn-links-2::after {
    content: "";
    background: url(../img/right-arrow-1.svg);
    background-repeat: no-repeat;
    background-size: 17px;
    position: absolute;
    right: 0;
    width: 20px;
    height: 15px;
    top: 5px;
  }

.janus-pdp-widget-panel {
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

  .janus-pdp-widget-panel .panel-heading {
    border-bottom: 1px solid #cccc;
    font-size: 18px !important;
    font-weight: 500;
    padding: 15px 20px;
    line-height: 29px;
  }

.nep-pdp-widgets-block {
  /*display: table;*/
  vertical-align: top;
  width: 100%;
}

  .nep-pdp-widgets-block::after {
    content: "";
    display: block;
    clear: both;
  }

  .nep-pdp-widgets-block .nep-pdp-widget-col {
    /*display: table-cell;*/
    border-right: 0px solid #ccc;
    padding: 20px;
    width: 50%;
    float: left;
  }

@media (max-width: 767px) {
  .nep-pdp-widgets-block .nep-pdp-widget-col {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}

.nep-pdp-widgets-block .nep-pdp-widget-col:last-child {
  border: none;
  border-left: 1px solid #ccc;
}

.nep-pdp-widgets-block .nep-pdp-widget-col .btn-dark-blue.btn-md {
  font-size: 14px;
}

@media (max-width: 992px) {
  .nep-pdp-widgets-block .nep-pdp-widget-col {
    white-space: normal;
  }
}

.nep-pdp-widgets-block .nep-pdp-widget-col p {
  width: 100% !important;
}

.nep-pdp-widgets-block .nep-pdp-suppor-widget strong {
  font-size: 16px;
  display: block;
  line-height: 24px;
}

.nep-pdp-widgets-block .nep-pdp-suppor-widget ul {
  list-style-type: disc;
  font-size: 16px;
  line-height: 24px;
  padding-left: 16px;
  min-height: 144px;
}

@media (max-width: 767px) {
  .nep-pdp-widgets-block .nep-pdp-suppor-widget ul {
    min-height: auto;
  }
}

.nep-pdp-widgets-block .nep-pdp-suppor-widget ul span {
  background-color: transparent !important;
}

.nep-pdp-right-col .nep-sidebar-widgets:first-child {
  margin-top: 50px;
}

.nep-sidebar-widgets {
  border: 1px solid #9B9B9B;
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
  border-radius: 2px;
}

  .nep-sidebar-widgets .nep-widge-head {
    color: #0D2EA0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .nep-sidebar-widgets .nep-card-link-list li {
    position: relative;
    display: table;
    width: 100%;
    margin-bottom: 8px;
  }

    .nep-sidebar-widgets .nep-card-link-list li .nep-card-l-icon {
      width: 35px;
      height: 35px;
      display: table-cell;
      vertical-align: top;
      padding: 2px 0 3px 0;
    }

      .nep-sidebar-widgets .nep-card-link-list li .nep-card-l-icon .nep-card-l-icon img {
        width: 22px;
      }

    .nep-sidebar-widgets .nep-card-link-list li .nep-s-p-link {
      display: table-cell;
    }

    .nep-sidebar-widgets .nep-card-link-list li a {
      font-size: 18px;
      line-height: 27px;
      color: #0D2EA0;
      margin-bottom: 10px;
      display: block;
    }

  .nep-sidebar-widgets .nep-list-style-1 {
    font-size: 16px;
    color: #000;
    list-style-type: disc;
    line-height: 24px;
    padding-left: 15px;
  }

.nep-sidebar-widget-ads li {
  list-style: none;
}

  .nep-sidebar-widget-ads li img {
    display: inline-block;
  }

.modal-backdrop.in {
  background: #fff;
  opacity: .92;
}

.suppor-popup-sect {
  position: fixed;
  bottom: 0 !important;
  right: 45px;
  left: inherit;
  top: inherit;
  padding: 0 20px;
  z-index: 1111050;
}

@media (min-width: 768px) and (max-width: 992px) {
  .suppor-popup-sect {
    right: 0;
  }
}

@media (max-width: 767px) {
  .suppor-popup-sect {
    right: 0;
    bottom: 0;
    padding: 0;
  }
}

.suppor-popup-sect .modal-dialog {
  width: 830px;
  margin: 15px auto;
}

@media (max-width: 767px) {
  .suppor-popup-sect .modal-dialog {
    width: 90%;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .suppor-popup-sect .modal-dialog {
    width: 730px;
  }
}

.suppor-popup-sect .modal-dialog .modal-content {
  border-radius: 0;
}

.suppor-popup-sect .modal-header {
  padding: 15px !important;
  border-bottom: 1px solid #e5e5e5 !important;
}

.suppor-popup-sect .modal-title {
  font-size: 18px;
  font-weight: 500 !important;
  text-transform: uppercase;
}

.suppor-popup-sect .support-model-close {
  position: absolute;
  width: 35px;
  right: 10px;
  background: #d8d8d8;
  height: 35px;
  border-radius: 50px;
  padding: 11px;
  top: 11px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .suppor-popup-sect .nep-pdp-widgets-block {
    height: 75vh;
    overflow-y: auto;
  }
}

.npe-towl-col-ads {
  width: 100%;
  vertical-align: top;
}

  .npe-towl-col-ads li {
    vertical-align: top;
  }

    .npe-towl-col-ads li:first-child {
      padding-right: 10px;
    }

    .npe-towl-col-ads li:last-child {
      padding-left: 10px;
    }

    .npe-towl-col-ads li img {
      max-width: 130px;
    }

    .npe-towl-col-ads li .nep-sid-ads-box img {
      max-width: 98px;
    }

/*** Responsive css ***/
/*** Header search block css ***/
.nep-head-search-sect {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 2px -2px #aaa;
  width: 100%;
  transition: all .5s ease;
  display: none;
}

  .nep-head-search-sect.open {
    display: block;
    z-index: 999;
  }

  .nep-head-search-sect .nep-search-inner {
    padding: 20px;
    width: 70%;
    margin: 0 auto;
  }

@media (max-width: 767px) {
  .nep-head-search-sect .nep-search-inner {
    width: 100%;
    padding: 20px 0;
  }
}

.nep-head-search-sect .nep-search-inner .input-group .form-control {
  border: 1px solid #bcc3ca;
  box-shadow: none;
  border-radius: 0px;
  min-height: 47px;
}

@media (max-width: 767px) {
  .nep-head-search-sect .nep-search-inner .input-group .form-control {
    min-height: 40px;
  }
}

.nep-head-search-sect .nep-search-inner .input-group .input-group-btn .btn {
  background: #80848f;
  width: 45px;
  height: 47px;
  font-size: 22px;
  border-radius: 0px;
  color: #fff;
}

@media (max-width: 767px) {
  .nep-head-search-sect .nep-search-inner .input-group .input-group-btn .btn {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}

.nep-head-search-sect .nep-search-inner .input-group .input-group-btn .btn:focus {
  outline: none;
}

.neptune-main-header .search-input {
  position: absolute;
  left: 0px;
  right: 0px;
  background: white;
  box-shadow: #aaaaaa 0px 4px 2px -2px;
  width: 100%;
  transition: all 0.5s ease 0s;
  z-index: 9999;
}

.neptune-main-header .search-input-container {
  padding: 20px;
  display: block;
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.neptune-main-header .coveo-search-box-container {
  width: 70%;
  margin: 0 auto;
}

  .neptune-main-header .coveo-search-box-container input {
    width: 100%;
    border: 1px solid #bcc3ca;
    box-shadow: none;
    border-radius: 0px;
    min-height: 47px;
    background: transparent;
    font-size: 14px;
  }

    .neptune-main-header .coveo-search-box-container input:focus {
      outline: none;
    }

  .neptune-main-header .coveo-search-box-container .magic-box-hasFocus {
    width: 100%;
  }

  .neptune-main-header .coveo-search-box-container .magic-box-notEmpty {
    width: 100%;
  }

  .neptune-main-header .coveo-search-box-container .magic-box-underlay {
    display: none;
  }

  .neptune-main-header .coveo-search-box-container .CoveoSearchButton {
    background-color: #80848f;
    width: 45px;
    height: 50px;
    font-size: 0px;
    border-radius: 0px;
    color: #fff;
    background-image: url(../img/icon-search-white.svg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: 10px 12px;
  }

    .neptune-main-header .coveo-search-box-container .CoveoSearchButton .coveo-icon {
      display: none;
    }

/*** Responsive css ***/
.nep-background-centered-promo {
  background-size: cover;
  position: relative;
  display: table;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  padding: 30px;
  min-height: 400px;
}

  .nep-background-centered-promo .text-container-outer {
    display: table-cell;
    vertical-align: middle;
  }

    .nep-background-centered-promo .text-container-outer .pos-rel {
      background: rgba(255, 255, 255, 0.9);
      display: table;
      margin: auto;
      min-height: 280px;
      width: 800px;
    }

@media (min-width: 768px) and (max-width: 991px) {
  .nep-background-centered-promo .text-container-outer .pos-rel {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .nep-background-centered-promo .text-container-outer .pos-rel {
    width: 100%;
  }
}

.nep-background-centered-promo .text-container-outer .pos-rel .promo-center-text-container {
  display: table-cell;
  vertical-align: middle;
  padding: 30px;
  text-align: center;
  width: 100%;
}

/*** Responsive css ***/
/*** Support page css ***/
.nep-product-search-wrap {
  background: #f5f6f8;
  padding: 45px 30px;
}

  .nep-product-search-wrap .nep-produc-s-inner {
    max-width: 900px;
    margin: 0 auto;
  }

    .nep-product-search-wrap .nep-produc-s-inner h3 {
      font-size: 28px;
      font-family: catamaran;
      color: #020920;
      font-weight: 400;
      margin-top: 0;
    }

    .nep-product-search-wrap .nep-produc-s-inner .form-control {
      height: 52px;
      box-shadow: none;
      border: 1px solid #ccc;
      border-radius: 0px;
      font-size: 16px;
      font-weight: 600;
    }

    .nep-product-search-wrap .nep-produc-s-inner .btn {
      background: #2d9b00;
      color: #fff;
      padding: 14px 20px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 0;
    }

/*** Responsive css ***/
.breadcrumbs-container {
  background: #f5f6f8;
}

.breadcrumb-wrap {
  padding: 15px 0;
  position: relative;
}

@media (max-width: 767px) {
  .breadcrumb-wrap {
    padding: 10px 5px;
  }
}

.breadcrumb-wrap:before {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background: #979797;
  position: absolute;
  left: -101.5%;
  top: 50%;
}

.breadcrumb-wrap .crumbs {
  color: #4d4d4d;
}

  .breadcrumb-wrap .crumbs ul {
    margin-bottom: 0;
  }

  .breadcrumb-wrap .crumbs .crumb {
    color: #4d4d4d;
    padding: 0 3px;
    font-size: 12px;
    line-height: 14px;
    display: inline-block;
  }

    .breadcrumb-wrap .crumbs .crumb:last-child {
      padding-left: 0;
    }

    .breadcrumb-wrap .crumbs .crumb a {
      color: #4d4d4d;
      border-bottom: 1px solid #4d4d4d;
      font-size: 12px;
      font-family: Helvetica,Verdana,Tahoma,sans-serif !important;
    }

/*** Responsive css ***/
/**** filter css ****/
.nep-filter-sect {
  position: relative;
}

  .nep-filter-sect > h2 {
    font-size: 14px;
    color: #4d4d4d;
    font-weight: 600;
    margin: 15px 0 30px 0;
  }

.nep-filter-wrap {
  position: relative;
  background: #f5f6f8;
  padding: 25px 15px 15px 15px;
  display: inline-block;
  width: 100%;
}

.nep-filter-head h5 {
  font-size: 24px;
  display: inline-block;
  margin: 0;
}

.nep-fil-collapse-icon {
  background: url(../img/minimize.png);
  width: 25px;
  height: 25px;
  display: block;
  float: right;
}

  .nep-fil-collapse-icon.collapsed {
    background: url(../img/maximize.png);
    width: 25px;
    height: 25px;
    display: block;
    float: right;
  }

.nep-filter-head {
  margin-bottom: 20px;
}

.nep-collapse-widget {
  position: relative;
  margin-bottom: 15px;
}

.nep-collapse-head h4 {
  font-weight: 600;
  font-size: 16px;
  color: #4d4d4d;
  display: inline-block;
  margin: 0;
}

.nep-collapse-head {
  margin-bottom: 12px;
}

.nep-collapse-arrow {
  border: solid #000;
  border-width: 3px 3px 0 0;
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 8px;
  padding: 5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.nep-collapse-value-lsit li {
  padding: 5px 5px 5px 0;
}

  .nep-collapse-value-lsit li label {
    display: block;
    font-size: 14px;
    font-weight: 400;
  }

    .nep-collapse-value-lsit li label input {
      -webkit-appearance: none;
      -moz-appearance: none;
      width: 20px;
      border: 2px solid #979797;
      height: 20px;
      background: #fff;
      margin: 0;
      vertical-align: middle;
      margin-right: 7px;
    }

.nep-filter-count {
  float: right;
  font-weight: 600;
  font-size: 15px;
}

/*** coveo listing css ***/
.nep-coveo-card {
  padding: 25px;
  text-align: center;
  transition: all .4s ease;
}

  .nep-coveo-card:hover {
    box-shadow: 0 0 12px #4d4d4d;
  }

  .nep-coveo-card .nep-coveo-compare {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
  }

    .nep-coveo-card .nep-coveo-compare input {
      -webkit-appearance: none;
      -moz-appearance: none;
      width: 25px;
      border: 2px solid #1965e1;
      height: 25px;
      background: #fff;
      margin: 0;
      vertical-align: middle;
      margin-right: 7px;
      position: relative;
    }

      .nep-coveo-card .nep-coveo-compare input:checked {
        background: #2d9b00;
      }

        .nep-coveo-card .nep-coveo-compare input:checked::after {
          content: none;
          position: absolute;
          right: 6px;
          width: 8px;
          height: 14px;
          top: 5px;
          margin-top: -4px;
          border-bottom: 2px solid #fff;
          border-right: 2px solid #fff;
          transform: rotate(45deg);
          transition: all .3s ease-in-out;
        }

  .nep-coveo-card .nep-coveo-meta {
    text-align: left;
  }

    .nep-coveo-card .nep-coveo-meta h3 {
      font-size: 15px;
      font-weight: 600;
      margin: 0;
    }

    .nep-coveo-card .nep-coveo-meta .model-number {
      min-height: 21px;
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 600;
    }

@media (max-width: 479px) {
  .nep-coveo-card .nep-coveo-meta .model-number {
    min-height: auto;
  }
}

.nep-coveo-card .nep-coveo-meta .model-number a {
  color: #071956;
}

.nep-coveo-card .nep-coveo-meta .category {
  font-size: 12px;
  padding: 5px 0;
}

.nep-coveo-card .nep-coveo-meta .features {
  padding-left: 15px;
  list-style: outside;
  font-size: 12px;
  margin-bottom: 20px;
  line-height: 17px;
  font-family: Helvetica,Arial,sans-serif;
  line-height: 1.428571429;
  font-weight: 400;
  height: 100px !important;
  overflow: hidden;
}

@media (max-width: 479px) {
  .nep-coveo-card .nep-coveo-meta .features {
    height: auto !important;
  }
}

@media (max-width: 767px) {
  .nep-coveo-card {
    padding: 12px;
  }
}

.nep-coveo-wrap {
  height: 100%;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .nep-coveo-wrap {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .nep-coveo-wrap {
    width: 100%;
  }
}

.nep-wheretobuy-btn {
  background: #fff;
  border: 1px solid #0d2ea0;
  color: #0d2ea0 !important;
  display: block;
  text-align: center;
  border-radius: 2px;
  font-size: 16px;
  text-transform: uppercase;
  padding: 14px 13px;
}

@media (max-width: 1200px) {
  .nep-wheretobuy-btn {
    font-size: 14px;
    padding: 14px 5px;
  }
}

.nep-wheretobuy-btn:hover {
  box-shadow: -1px 3px 5px grey;
  text-decoration: none;
}

.nep-view-detaillink {
  color: #000 !important;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  border-bottom: 1px solid #000;
  line-height: 12px;
}

.nep-coveo-thumbnail {
  min-height: 180px;
  padding-top: 30px;
  position: relative;
}

  .nep-coveo-thumbnail img {
    max-width: 100%;
  }

.new-product-logo, .top-seller-logo {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 160px;
  right: 0;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .new-product-logo, .top-seller-logo {
    height: 30px;
  }
}

@media (min-width: 490px) {
  .coveo-result-list-container .coveo-list-layout .nep-coveo-wrap .nep-coveo-thumbnail img {
    height: 170px;
    max-height: 170px;
    margin: 0 auto 15px;
  }
}

.nep-coveo-main-title {
  text-align: center;
  font-size: 25px;
  font-family: Catamaran;
  color: #020920;
  font-weight: 300;
}

  .nep-coveo-main-title strong {
    text-transform: capitalize;
  }

.nep-product-label {
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/*------------------ PLP-PAGE_START------------*/
.coveo-result-list-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

  .coveo-result-list-container .coveo-list-layout {
    position: relative;
    float: left;
    width: 50%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    padding: 0;
  }

@media (max-width: 991px) and (min-width: 768px) {
  .coveo-result-list-container .coveo-list-layout {
    width: 50% !important;
  }
}

@media (min-width: 768px) {
  .coveo-result-list-container .coveo-list-layout {
    width: 33.33%;
  }
}

@media (max-width: 479px) {
  .coveo-result-list-container .coveo-list-layout {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .coveo-result-list-container .coveo-list-layout .nep-coveo-wrap {
    width: 100%;
  }
}

.coveo-facet-header-title {
  font-weight: 600;
  font-size: 16px;
  color: #4d4d4d;
  display: inline-block;
  margin: 0;
}

.nep-filter-body .custom-facet {
  padding: 0px 0px;
}

.coveo-facet-value-label-wrapper {
  position: relative;
}

.coveo-facet-value-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

label.coveo-facet-value-label {
  width: 100%;
}

.coveo-facet-value-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  width: 20px;
  border: 2px solid #979797;
  height: 20px;
  background: #fff;
  margin: 0;
  vertical-align: middle;
  margin-right: 7px;
}

.coveo-facet-value input[type=checkbox]:checked + .coveo-facet-value-checkbox:after {
  display: inline-block;
  position: absolute;
  background-color: #1965e1;
  border-color: #1965e1;
  background-image: url(../img/icon-check.svg);
  background-position: 3px 5px;
  height: 20px;
  width: 20px;
  top: -2px;
  left: -2px;
  background-repeat: no-repeat;
  content: "";
}

.nep-plp-wrap .coveo-list-layout.CoveoResult {
  margin: 20px 0px 20px 0;
  border-bottom: 0;
}

/*------------------ PLP-PAGE_END------------*/
/*** Responsive css ***/
.mega-nav {
  z-index: 998;
}

  .mega-nav .navbar {
    margin-bottom: 0;
    min-height: auto;
    border: none;
    border-radius: 0;
  }

.menu-wrap {
  position: relative;
}

  .menu-wrap > .container {
    padding-left: 0;
  }

  .menu-wrap ul {
    list-style: none;
    margin: 0;
  }

    .menu-wrap ul li {
      transition: all .3s ease-in-out;
    }

      .menu-wrap ul li.has-dropdown > a {
        padding-right: 35px;
      }

      .menu-wrap ul li.has-dropdown.open .sub-menu {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
      }

      .menu-wrap ul li.has-dropdown:hover > a:after {
        transform: rotate(-135deg);
      }

      .menu-wrap ul li > a {
        position: relative;
        display: block;
        color: #020920;
        font-size: 14px;
        line-height: 20px;
        padding: 15px 15px 13px;
        transition: all .3s ease-in-out;
        border-bottom: 2px solid transparent;
      }

  .menu-wrap > .container > ul > li {
    float: left;
  }

    .menu-wrap > .container > ul > li.menu-block-item {
      position: relative;
    }

    .menu-wrap > .container > ul > li.open > a, .menu-wrap > .container > ul > li > a:hover {
      border-bottom-color: #0d2ea0;
      text-decoration: none;
    }

  .menu-wrap .menu-block-item .sub-menu {
    width: 350px;
  }

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: translateY(20px);
  opacity: 0;
  display: none;
  width: 80%;
  min-width: 350px;
}

.menu-wrap .menu-block-item .container {
  padding: 0;
  width: auto;
}

.sub-menu .container {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 0;
  padding-right: 0;
}

.menu-wrap .menu-block-item .sub-menu .special-submenu {
  width: 100%;
  border-right-width: 0;
}

.sub-menu .special-submenu {
  float: left;
  width: 350px;
  padding: 0px 0;
}

  .sub-menu .special-submenu h6 {
    line-height: 20px;
    padding: 12px 15px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 20px;
    margin: 0;
    font-weight: 400;
    font-family: 'Helvetica', sans-serif;
  }

  .sub-menu .special-submenu ul li a {
    padding: 10px 20px 10px 15px;
  }

.menu-wrap ul li.has-dropdown > a {
  padding-right: 35px;
}

.menu-wrap ul li.has-dropdown .special-submenu a::after {
  transform: rotate(-45deg);
}

.menu-wrap ul li.has-dropdown > a::after {
  content: '';
  position: absolute;
  right: 15px;
  width: 8px;
  height: 8px;
  top: 50%;
  margin-top: -4px;
  border-bottom: 2px solid #1965e1;
  border-right: 2px solid #1965e1;
  transform: rotate(45deg);
  transition: all .3s ease-in-out;
}

.menu-wrap ul li.has-dropdown.open .sub-menu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.menu-wrap ul li > a {
  position: relative;
  display: block;
  color: #020920;
  font-size: 14px;
  line-height: 20px;
  padding: 15px 15px 13px;
  transition: all .3s ease-in-out;
  border-bottom: 2px solid transparent;
}

.sub-menu .container {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 0;
  padding-right: 0;
}

.normal-menu-block {
  display: none;
}

  .normal-menu-block .submenu-block {
    float: left;
    width: 32%;
    margin-left: -1px;
  }

    .normal-menu-block .submenu-block:before {
      content: "";
      position: absolute;
      left: 35%;
      top: 0;
      bottom: 0;
      border-left: 1px solid rgba(0, 0, 0, 0.15);
    }

    .normal-menu-block .submenu-block .normal-submenu {
      width: 50%;
    }

      .normal-menu-block .submenu-block .normal-submenu:nth-child(2n+1) {
        clear: left;
      }

      .normal-menu-block .submenu-block .normal-submenu h5 {
        font-size: 14px;
        margin-bottom: 15px;
        font-family: Helvetica-Bold,'Helvetica Bold',Helvetica;
        color: #4d4d4d;
        font-weight: 700;
        line-height: 28px;
      }

      .normal-menu-block .submenu-block .normal-submenu ul li a {
        padding: 7px 10px;
        font-family: Helvetica;
        font-weight: 400;
        font-style: normal;
        font-size: 14px;
        color: #4d4d4d;
      }

  .normal-menu-block .normal-submenu {
    float: left;
    width: 23.5%;
    padding: 20px 0 20px 30px;
  }

.need-supplies {
  float: left;
  height: 100%;
  width: 30%;
  padding: 30px;
  font-size: 14px;
  line-height: 20px;
  color: #020920;
}

  .need-supplies::before {
    content: "";
    position: absolute;
    right: 30%;
    top: 0;
    bottom: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
  }

  .need-supplies h4 {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    font-family: Helvetica;
    margin-bottom: 15px;
  }

  .need-supplies figure img {
    display: block;
    width: 100%;
  }

  .need-supplies p span {
    font-size: 12px;
    font-family: ArialMT,Arial;
    color: #333;
    font-weight: 400;
    padding-top: 15px;
    display: block;
  }

  .need-supplies a {
    color: #1965e1;
    font-size: 12px;
    font-family: ArialMT,Arial;
  }

.normal-menu-block .submenu-block .normal-submenu {
  width: 100%;
}

  .normal-menu-block .submenu-block .normal-submenu:nth-child(2n+1) {
    clear: left;
  }

.normal-submenu {
  float: left;
  width: 23.5%;
  padding: 20px 0 20px 30px;
}

  .normal-submenu h5 {
    font-size: 14px;
    font-weight: 700;
    color: #4d4d4d;
  }

.menu-wrap ul li > a {
  position: relative;
  display: block;
  color: #020920;
  font-size: 14px;
  line-height: 20px;
  padding: 15px 15px 13px;
  transition: all .3s ease-in-out;
  border-bottom: 2px solid transparent;
}

.sub-menu .special-submenu li:hover {
  background: rgba(25, 101, 225, 0.8);
}

.sub-menu .special-submenu li.open, .sub-menu .special-submenu li:hover {
  background: #1965e1;
}

  .sub-menu .special-submenu li.open a, .sub-menu .special-submenu li:hover a {
    color: #fff;
    text-decoration: none;
  }

.menu-wrap ul li.has-dropdown .special-submenu a::after {
  transform: rotate(-45deg);
}

.sub-menu .special-submenu li.open a::after, .sub-menu .special-submenu li:hover a::after {
  border-color: #fff;
}

.normal-menu-block .submenu-block::before {
  content: "";
  position: absolute;
  left: 350px;
  top: 0;
  bottom: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.normal-submenu ul li a {
  padding: 7px 10px;
  font-family: Helvetica;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #4d4d4d;
}

.menu-wrap ul li.has-dropdown.open > a::after {
  transform: rotate(-135deg);
}

.menu-wrap ul li.has-dropdown .special-submenu a::after {
  transform: rotate(-45deg);
}

/*** Responsive css ***/
/*** mobile nav css ***/
.nep-mobile-menu {
  position: fixed;
  top: 70px;
  background: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  display: none;
  z-index: 99;
}

  .nep-mobile-menu.open {
    display: block;
  }

@media (max-width: 767px) {
  .nep-mobile-menu {
    top: 134px;
  }
}

@media (max-width: 767px) {
  body.nav-visible {
    overflow: hidden;
  }
}

/*** mobile menu css start ***/
.mobile-menu {
  position: fixed;
  top: 70px;
  height: calc(100% - 70px);
  left: 0;
  right: 0;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 999;
}

@media (max-width: 767px) {
  .mobile-menu {
    top: 134px;
  }
}

.mobile-menu ul li {
  list-style: none;
}

  .mobile-menu ul li.has-dropdown > a {
    background: #1965e1;
    color: #fff;
    border-bottom: 1px solid #6197e7;
  }

  .mobile-menu ul li a,
  .mobile-menu ul li.prev-item,
  .multi-list h6 {
    position: relative;
    display: block;
    padding: 0 25px;
    font-family: Catamaran-Regular, Catamaran, sans-serif;
    font-size: 17px;
    line-height: 50px;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #4d4d4d;
  }

    .mobile-menu ul li.has-dropdown > a::after,
    .mobile-menu ul li.prev-item::before {
      width: 11px;
      height: 11px;
      right: 15px;
      transform: rotate(-45deg);
      content: '';
      position: absolute;
      top: 50%;
      margin-top: -5px;
      border-bottom: 2px solid #fff;
      border-right: 2px solid #fff;
    }

  .mobile-menu ul li ul {
    position: absolute;
    left: 100%;
    width: 100%;
    background: #fff;
    min-height: 100%;
    top: 0;
    z-index: 1;
    transition: all .3s ease-in-out;
  }

.mobile-menu .multi-list {
  padding-bottom: 30px;
}

  .mobile-menu .multi-list ul {
    position: initial;
    padding-left: 25px;
  }

.mobile-menu ul li.prev-item::before {
  border-color: #1965e1;
  right: auto;
  left: 20px;
  transform: rotate(135deg);
}

.mobile-menu ul li ul.open {
  left: 0;
}

.mobile-menu ul li:hover > a {
  text-decoration: underline;
}

.mobile-menu ul li.prev-item {
  color: #1965e1;
  cursor: pointer;
  padding-left: 40px;
  border-bottom: 1px solid #ddd;
}

/*** Responsive css ***/
/*** registration and contact form css ***/
.nep-form-wrapper .form-title {
  font-size: 20px;
  font-weight: 600;
}

.nep-form-wrapper {
  background: #f5f6f8;
  padding: 20px;
}

  .nep-form-wrapper .nep-form-col-l {
    float: left;
    width: 50%;
    padding-right: 10px;
  }

@media (max-width: 767px) {
  .nep-form-wrapper .nep-form-col-l {
    width: 100%;
    padding: 0;
  }
}

.nep-form-wrapper .nep-form-col-r {
  float: right;
  width: 50%;
  padding-left: 10px;
}

@media (max-width: 767px) {
  .nep-form-wrapper .nep-form-col-r {
    width: 100%;
    padding: 0;
  }
}

.nep-form-wrapper .form-group {
  margin-bottom: 10px;
}

.nep-two-col-wrap {
  display: table;
  width: 100%;
}

  .nep-two-col-wrap .nep-two-col1, .nep-two-col-wrap .nep-two-col2 {
    display: table-cell;
    vertical-align: top;
  }

  .nep-two-col-wrap .nep-two-col1 {
    padding-right: 15px;
  }

  .nep-two-col-wrap .nep-two-col2 {
    width: 18%;
    /*vertical-align: bottom;*/
  }

/*** Responsive css ***/
/*** Socail page css ***/
.nep-socail-m-block {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 20px;
}

  .nep-socail-m-block span {
    width: 35px;
    display: block;
    float: left;
    margin-right: 15px;
  }

    .nep-socail-m-block span img {
      max-width: 100%;
    }

  .nep-socail-m-block h2 {
    margin: 0;
    font-size: 16px;
    padding: 9px 0;
  }

  .nep-socail-m-block .dual-login {
    display: block;
    margin-top: 10px;
    padding-left: 50px;
  }

    .nep-socail-m-block .dual-login a {
      display: block;
      margin-bottom: 12px;
      font-size: 15px;
      color: #000;
    }

      .nep-socail-m-block .dual-login a img {
        margin-right: 10px;
        width: 20px;
        position: relative;
        top: -1px;
      }

/*** Responsive css ***/
/*--------------Security-Solution-css-start-----------------*/
.nap-billboard-hero {
  overflow: visible;
  position: relative;
  width: 100%;
  z-index: 1;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

  .nap-billboard-hero .nap-billboard-hero-img {
    max-height: 400px;
    overflow: hidden;
  }

    .nap-billboard-hero .nap-billboard-hero-img img {
      width: 100%;
      height: auto;
      max-height: none;
    }

.nap-heading h2 {
  font-size: 4rem;
  color: #020920;
  font-weight: 500;
  font-family: 'Helvetica', sans-serif;
  padding: 10px;
}

.nap-heading p {
  font-size: 1.6rem;
  line-height: 28px;
  margin-top: 0;
  font-family: Helvetica,Arial,sans-serif;
  margin-bottom: 25px;
  color: #4d4d4d;
}

.nap-sec-heading h2 {
  font-size: 3rem;
  color: #020920;
  font-weight: 500;
  font-family: 'Helvetica', sans-serif;
}

.nap-sec-heading p {
  font-size: 16px;
  color: #000;
  font-family: 'Helvetica', sans-serif;
}

.nap-feature-content {
  padding-top: 30px;
}

  .nap-feature-content ul {
    padding: 0 0 20px 30px;
  }

    .nap-feature-content ul li {
      font-size: 1.6rem;
      font-weight: 300;
      padding: 5px 0;
      list-style: disc outside none;
      color: #000;
      font-family: 'Helvetica', sans-serif;
    }

.service-img {
  max-width: 100%;
}

.nap-sub-title {
  font-size: 3.4rem;
  line-height: 1.15em;
  color: #020920;
  font-weight: 400;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.nap-partner-left ul {
  padding: 0 0 20px 7px !important;
}

@media (max-width: 767px) {
  .nap-partner-left ul {
    padding: 0 0 20px 30px !important;
  }
}

.nap-partner-left ul li {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  padding: 5px 0;
  list-style: disc outside none;
  color: #000;
}

.nap-service-box h3 {
  font-size: 3rem;
  color: #020920;
  font-weight: 400;
  margin: 20px 0px 10px 0px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.nap-service-box p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #020920;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.billboardhero {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .billboardhero {
    margin-bottom: 0;
  }
}

.nap-feature-section .nap-sec-heading {
  margin-top: 40px;
}

.common-print-solution .nap-feature-section {
  display: inline-block;
  width: 100%;
}

  .common-print-solution .nap-feature-section .nap-sec-heading {
    margin-top: 0px;
  }

.common-print-solution img {
  max-width: 100%;
}

.common-print-solution .background-color-blue.nap-bg-sidekick {
  margin-bottom: 0;
}

/*--------------Security-Solution-css-End-----------------*/
/*** Responsive css ***/
.background-color-slate {
  background: #50738a;
}

.nap-bg-sidekick {
  margin: 20px 0;
  padding: 50px 0;
}

.nap-mob-device-left {
  padding-top: 30px;
}

  .nap-mob-device-left .nap-sub-title {
    color: #ffffff;
  }

  .nap-mob-device-left p {
    color: #ffffff;
  }

  .nap-mob-device-left ul {
    padding: 0 0 20px 30px;
  }

    .nap-mob-device-left ul li {
      font-size: 1.6rem;
      font-weight: 300;
      padding: 5px 0;
      list-style: disc outside none;
      color: #ffffff;
    }

/*** Responsive css ***/
.nap-card-box {
  margin-bottom: 30px;
}

  .nap-card-box .nap-card-img {
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
    max-height: 290px;
  }

  .nap-card-box img {
    max-width: 100%;
    max-height: 290px;
  }

  .nap-card-box .nap-card-title h4 {
    font-size: 16px;
    font-weight: 600;
    font-family: Catamaran,sans-serif;
  }

  .nap-card-box .nap-card-descrition {
    margin-bottom: 10px;
  }

.nap-text-inner h3 {
  font-family: Catamaran,sans-serif;
  font-size: 3.4rem;
}

.nap-text-inner p {
  font-size: 16px;
  margin-bottom: 20px;
}

.nap-ps-left {
  position: relative;
  top: 120px;
}

.background-color-orange {
  background: #eb7200;
}

.background-color-green {
  background: #6dc498;
}

.background-color-yellow {
  background: #ffbf00;
}

.background-color-pink {
  background: #d81d7e;
}

.background-color-blue {
  background: #54bfd4;
}

.background-color-green .nap-mob-device-left .nap-sub-title {
  color: #020920;
}

.background-color-green .nap-mob-device-left p {
  color: #020920;
}

.background-color-yellow .nap-mob-device-left .nap-sub-title {
  color: #020920;
}

.background-color-yellow .nap-mob-device-left p {
  color: #020920;
}

.background-color-yellow .nap-mob-device-left li {
  color: #020920;
}

.background-color-blue .nap-mob-device-left .nap-sub-title {
  color: #020920;
}

.background-color-blue .nap-mob-device-left p {
  color: #020920;
}

.background-color-blue .nap-mob-device-left li {
  color: #020920;
}

/*** Responsive css ***/
.nap-mc {
  padding-top: 10px;
}

@media (max-width: 1199px) {
  .nap-ps-left {
    position: relative;
    top: 0px;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .nap-feature-img img {
    margin: 0px auto;
  }

  .nap-service-img img {
    margin: 0px auto;
  }

  .nap-service-box {
    text-align: center;
  }

  .nap-heading h2 {
    font-size: 3rem;
  }

  .nap-sec-heading h2 {
    font-size: 2.8rem;
  }

  .nap-service-box h3 {
    font-size: 2.8rem;
  }

  .nap-sub-title {
    font-size: 3rem;
    text-align: center;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content.slick-initialized {
    width: 100%;
    float: none;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-thumb {
    display: none;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-arrow {
    display: block !important;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-dots {
    display: inherit !important;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l {
    float: none;
    width: 100%;
  }

  .nep-prdouct-features-icon .nep-pr-f-icons li {
    max-width: 60px;
    margin: 0 5px 5px 0;
  }

  .nep-product-features ul li {
    font-size: 14px;
    line-height: 21px;
  }

  .nep-product-meta .nep-model-number {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 5px;
  }

  .nep-product-meta .nep-product-title {
    font-size: 18px;
    line-height: 27px;
  }

  .nep-product-meta .nep-product-category {
    font-size: 15px;
    line-height: 23px;
  }

  .nep-prdouct-features-icon {
    margin-bottom: 20px;
  }

  .nep-pdp-col-r .nep-wheretobuy-btn {
    margin: 0px auto;
  }

  .nep-mega-menu {
    display: none;
  }

  .nep-mobil-menu-btn {
    display: block;
  }

  .menu-block {
    float: inherit;
  }

  .nap-res-table-wrapp {
    overflow-x: scroll;
  }
}

@media (max-width: 767px) {
  .btn-container .btn {
    min-width: 100%;
  }

  .neptune-main-header .coveo-search-box-container {
    width: 100%;
    padding: 0px 20px;
  }
}

.nep-blue-btn1 {
  background: #0D2EA0;
  border-radius: 2px;
  font-size: 15px;
  padding: 8px 30px;
  min-width: 160px;
  text-transform: uppercase;
  border-color: #0D2EA0;
  margin: 0 5px;
}

.nep-blue-border {
  background: #fff;
  border-radius: 2px;
  font-size: 15px;
  padding: 8px 30px;
  min-width: 160px;
  text-transform: uppercase;
  border: 1px solid #0D2EA0;
  color: #0D2EA0;
  margin: 0 5px;
}

.nep-d-top-space {
  margin-top: 294px;
}

.nap-reseller-table {
  width: 100%;
}

.ecomm-btn-wrapp {
  display: inline-block;
}

.neptune-home-hero {
  margin-bottom: 90px;
}

  .neptune-home-hero.nap-solution-banner .text-content {
    width: 85%;
  }

.solution-sect .nep-products-grid .nep-products-block .nep-p-b-img {
  background-position: 100% 0px;
}

.nep-product-grid-container .nep-products-grid.position-five {
  width: 100%;
}

.position-five {
  height: 220px;
}

  .position-five.nep-products-grid .nep-products-block .nep-product-hover {
    right: 210px;
  }

.nap-search-r-filters {
  border: 12px solid #f5f6f8;
  padding: 15px;
}

  .nap-search-r-filters h4 {
    font-size: 18px;
    font-weight: 600;
  }

  .nap-search-r-filters .janus-label-text {
    font-size: 15px;
    font-weight: 600;
  }

  .nap-search-r-filters .form-group .form-control {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 0;
    box-shadow: none;
    height: 52px;
    color: #000;
  }

/*------------------ National-reseller-page------------*/
.national-reseller-wrapp {
  max-width: 800px;
  margin: 30px auto 0px auto;
}

  .national-reseller-wrapp .nap-nation-r-logo {
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    min-height: 120px;
  }

    .national-reseller-wrapp .nap-nation-r-logo:last-child {
      margin-bottom: 0px;
    }

/*------------------ Search-page------------*/
.nap-heading h2 {
  font-size: 5rem;
  line-height: 1.1em;
  font-weight: 400;
  margin: 20px 0 10px;
  color: #071956;
  font-family: Catamaran,sans-serif;
}

.nep-search-page-wrap h4 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 2.4rem;
  line-height: 28px;
  font-family: Catamaran,sans-serif;
  font-weight: 400;
  text-transform: capitalize;
}

  .nep-search-page-wrap h4 strong {
    font-family: Catamaran,sans-serif;
    font-weight: 600;
  }

  .nep-search-page-wrap h4 a {
    cursor: pointer !important;
    word-wrap: break-word !important;
  }

    .nep-search-page-wrap h4 a:focus {
      outline: none !important;
    }

.nep-search-page-wrap .facet-header {
  color: #020920;
  text-align: center;
  display: block;
  margin: 20px 0;
}

  .nep-search-page-wrap .facet-header small {
    font-family: Catamaran,sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #4d4d4d;
    line-height: 35px;
  }

    .nep-search-page-wrap .facet-header small strong {
      font-family: Catamaran,sans-serif;
      font-weight: 600;
    }

.nep-search-page-wrap .CoveoSearchbox {
  margin-top: 20px;
  width: 100%;
  margin: 0 auto;
  font-size: 15px;
  color: #373737;
  line-height: 1.428571429;
  font-weight: 400;
}

  .nep-search-page-wrap .CoveoSearchbox .magic-box {
    border: 1px solid #BCC3CA;
    border-radius: 2px;
    position: relative;
    text-align: left;
    color: #212121;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

    .nep-search-page-wrap .CoveoSearchbox .magic-box .magic-box-clear {
      position: relative;
      float: right;
      height: 48px;
      line-height: 48px;
      text-align: center;
      font-size: 24px;
      transition: width 0.3s;
      cursor: pointer;
      background: #fff;
      width: 0;
      overflow: hidden;
      height: 45px;
    }

      .nep-search-page-wrap .CoveoSearchbox .magic-box .magic-box-clear:before {
        content: '';
        border-left: #e0e0e0 1px solid;
        position: absolute;
        top: 15%;
        bottom: 15%;
        left: 0;
        border-left: none;
      }

      .nep-search-page-wrap .CoveoSearchbox .magic-box .magic-box-clear .magic-box-icon:before {
        content: '';
        background-position: -11157px 0px;
        width: 19px;
        height: 19px;
        text-indent: 19px;
      }

@media (max-width: 992px) {
  .nep-search-page-wrap .CoveoSearchbox .magic-box .magic-box-clear .magic-box-icon:before {
    background-position: -1570px 0px;
  }
}

.nep-search-page-wrap .CoveoSearchbox .magic-box .magic-box-input {
  background: #fff;
  height: 48px;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  height: 45px;
}

  .nep-search-page-wrap .CoveoSearchbox .magic-box .magic-box-input .magic-box-underlay {
    text-align: left;
    padding: 12px 0;
    text-indent: 12px;
    font-family: arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    white-space: pre;
    overflow: auto;
    box-sizing: border-box;
    display: block;
    color: transparent;
    overflow: hidden;
  }

  .nep-search-page-wrap .CoveoSearchbox .magic-box .magic-box-input > input {
    color: #67768B;
    background: none;
    border: none;
    resize: none;
    outline: 0;
    text-align: left;
    padding: 12px 0;
    text-indent: 12px;
    font-family: arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    white-space: pre;
    overflow: auto;
    box-sizing: border-box;
    display: block;
  }

.nep-search-page-wrap .CoveoSearchbox .magic-box-notEmpty .magic-box-clear {
  width: 48px;
}

.nep-search-page-wrap .CoveoSearchbox .CoveoSearchButton {
  background-color: #2d9b00;
  float: right;
  z-index: 2;
  position: relative;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  font-size: 1.4rem;
  font-weight: 700;
  width: 110px;
  padding-left: 15px;
  padding-right: 15px;
  height: 47px;
  border-radius: 0;
  transition: all .5s ease;
  color: #fff;
  background: #2d9b00;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  cursor: pointer;
}

  .nep-search-page-wrap .CoveoSearchbox .CoveoSearchButton .coveo-icon {
    background: 0 0;
    display: inline;
    vertical-align: middle;
    animation: none;
  }

  .nep-search-page-wrap .CoveoSearchbox .CoveoSearchButton:before {
    content: '';
    vertical-align: middle;
    height: 100%;
    display: inline-block;
  }

  .nep-search-page-wrap .CoveoSearchbox .CoveoSearchButton:hover {
    box-shadow: -1px 3px 5px grey;
  }

.nep-search-page-wrap .site-search-results-container .coveo-result-list-container {
  margin-left: -15px;
  margin-right: -15px;
}

  .nep-search-page-wrap .site-search-results-container .coveo-result-list-container:after, .nep-search-page-wrap .site-search-results-container .coveo-result-list-container:before {
    content: " ";
    display: table;
  }

  .nep-search-page-wrap .site-search-results-container .coveo-result-list-container:after {
    clear: both;
  }

  .nep-search-page-wrap .site-search-results-container .coveo-result-list-container .coveo-list-layout {
    position: relative;
    float: left;
    width: 100%;
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0;
    border: 0;
  }

@media (min-width: 768px) {
  .nep-search-page-wrap .site-search-results-container .coveo-result-list-container .coveo-list-layout {
    float: left;
    width: 83.3333333333%;
    margin-left: 8.3333333333%;
  }
}

@media (max-width: 767px) {
  .nep-search-page-wrap .site-search-results-container .coveo-result-list-container .coveo-list-layout {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.nep-search-page-wrap .site-search-results-container .coveo-result-list-container .coveo-list-layout .CoveoResultLink:hover, .nep-search-page-wrap .site-search-results-container .coveo-result-list-container .coveo-list-layout .CoveoResultLink :visited {
  text-decoration: none;
  color: #263E55;
}

.nep-search-page-wrap .site-search-results-container .coveo-result-list-container .site-search-result {
  padding: 30px 0;
  border-bottom: 1px solid #979797;
}

.nep-search-page-wrap .logo-wrapper {
  display: none;
}

.btn-primary-blue:focus {
  color: #fff;
  background: #0250a3;
}

.nap-heading h2 {
  margin: 4px 0 10px;
  font-size: 4rem;
  color: #020920;
}

@media (max-width: 992px) {
  .nap-heading h2 {
    font-size: 3rem;
  }
}

.nap-print-section .container {
  display: flex;
  flex-wrap: wrap;
}

  .nap-print-section .container .nap-card-title h3 {
    font-size: 16px;
    font-weight: 600;
    font-family: Catamaran,sans-serif;
    margin-bottom: 10px;
  }

.img-responsive {
  margin: 0 auto;
}

@media (max-width: 992px) {
  .ss-portfolio-img, .mob-img-width100 {
    width: 100%;
  }
}

.nep-plp-wrap .nep-coveo-meta-content {
  min-height: 150px;
}

  .nep-plp-wrap .nep-coveo-meta-content .model-number a {
    color: #000 !important;
    font-size: 15px;
    font-weight: 600;
  }

.custom-facet .coveo-facet-header-settings {
  display: none;
}

.custom-facet .coveo-facet-header-settings {
  display: none;
}

.custom-facet .coveo-facet-header {
  padding: 0 0 0;
  background: transparent;
}

  .custom-facet .coveo-facet-header:hover {
    cursor: pointer;
  }

.coveo-facet-value:hover, .coveo-facet-value.coveo-focused {
  background: transparent;
}

  .coveo-facet-value:hover .coveo-facet-value-caption {
    font-weight: bold;
  }

.custom-facet .CoveoFacet {
  border: 0;
  background: transparent;
  margin: 0;
}

.custom-facet li.coveo-facet-value.coveo-facet-selectable {
  padding: 0;
}

.custom-facet .coveo-facet-header-title {
  font-size: 16px;
  color: #4d4d4d;
  display: inline-block;
  margin: 0;
}

.custom-facet label.coveo-facet-value-label {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.custom-facet .coveo-facet-value-checkbox {
  margin-right: 7px !important;
}

.nep-filter-wrap {
  padding-bottom: 0;
}

.load-more-container {
  background: #f5f6f8;
  width: 100%;
  margin: 30px 0;
  padding: 20px 0;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 10;
}

  .load-more-container strong {
    color: #4d4d4d;
    font-size: 24px;
  }

  .load-more-container:hover {
    box-shadow: 0 0 12px #4d4d4d;
  }

.bootstrap-select .dropdown-toggle .caret {
  right: 0;
}

.nep-custom-coveo .coveo-first-loading-animation .coveo-logo {
  background-image: url(../img/Brother_Logo115r_blue.png);
  background-size: auto;
  display: inline-block;
  height: 47px;
  width: 115px;
}

.nep-custom-coveo .custom-logo {
  background-image: url(/Presentation/Includes/_images/Brother_Logo115r_blue.png);
  background-position: 0 0;
  width: 115px;
  height: 47px;
  text-indent: 178px;
  background-repeat: no-repeat;
  display: inline-block;
}

.coveo-first-loading-animation {
  background: #ffffff !important;
}

  .coveo-first-loading-animation .coveo-logo {
    background-image: url("/Presentation/Neptune/img/Brother_Logo115r_blue.png");
    background-size: auto;
    display: inline-block;
    height: 47px;
    width: 115px;
  }

  .coveo-first-loading-animation .coveo-loading-container {
    margin-top: 0 !important;
  }

.custom-logo {
  background-image: url("/Presentation/Neptune/img/Brother_Logo115r_blue.png");
  background-position: 0px 0px;
  width: 115px;
  height: 47px;
  text-indent: 178px;
  background-repeat: no-repeat;
  display: inline-block;
}

.product-compare-grid {
  overflow-x: hidden;
}

  .product-compare-grid.product-compare-grid--no-results > div {
    padding: 10px;
  }

@media (max-width: 766px) {
  .product-compare-grid.product-compare-grid--no-results > div {
    text-align: center;
  }
}

.product-compare-grid .product-compare-card .product-card, .product-compare-grid .product-compare-card .product-card .product-card-top, .product-compare-grid .product-compare-card .product-card .product-card-bottom {
  display: -ms-flexbox !important;
  display: flex !important;
}

.container-products-compared .compared-row-wrapper {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .container-products-compared .compared-row-wrapper {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 25px;
  }
}

.compared-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.compared-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
}

  .compared-row .logo-image {
    position: absolute;
    top: 0;
    left: 0;
  }

@media (max-width: 766px) {
  .compared-row .wid20 {
    display: none;
  }
}

@media (min-width: 768px) {
  .compared-row .wid20 {
    width: 20%;
  }
}

@media (max-width: 766px) {
  .compared-row {
    width: 138%;
  }
}

@media (max-width: 766px) {
  .compared-row > a {
    position: absolute;
    top: 0;
  }
}

.compared-row .compared-col {
  width: 33.333333%;
}

@media (min-width: 768px) {
  .compared-row .compared-col {
    width: 20%;
  }
}

@media (max-width: 766px) {
  .compared-row .compared-col.link--go-back {
    display: none;
  }
}

@media (min-width: 768px) {
  .compared-row .compared-col.product-compare-card {
    width: 26.66666666666667%;
  }
}

.compared-row .product-compare-card {
  border-left: 1px solid #979797;
  word-wrap: break-word;
}

  .compared-row .product-compare-card:first-of-type {
    border-left: none;
  }

  .compared-row .product-compare-card:nth-of-type(2) {
    border-left: none;
  }

  .compared-row .product-compare-card .product-cards-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 100%;
  }

    .compared-row .product-compare-card .product-cards-container .product-card {
      -ms-flex-positive: 1;
      flex-grow: 1;
      width: 100%;
      padding: 0 15px;
    }

      .compared-row .product-compare-card .product-cards-container .product-card .thumbnail-container {
        margin-bottom: 15px;
      }

@media (min-width: 992px) {
  .compared-row .product-compare-card .product-cards-container .product-card .thumbnail-container .product-compare-image {
    min-height: 250px;
    max-height: 250px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .compared-row .product-compare-card .product-cards-container .product-card .thumbnail-container .product-compare-image {
    min-height: 170px;
    max-height: 170px;
  }
}

@media (max-width: 766px) {
  .compared-row .product-compare-card .product-cards-container .product-card .thumbnail-container .product-compare-image {
    min-height: 140px;
    max-height: 140px;
  }
}

.compared-row .product-compare-card .product-cards-container .product-card .meta-container h4 {
  margin: 0;
  font-size: 16px;
  font-size: 1.6rem;
}

.compared-row .product-compare-card .product-cards-container .product-card .meta-container .model-number {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
}

.compared-row .product-compare-card .product-cards-container .product-card .meta-container .category-link {
  margin-bottom: 0;
}

.compared-row .product-compare-card.add-more-container .inactive {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
}

  .compared-row .product-compare-card.add-more-container .inactive > div {
    width: 100%;
    word-wrap: break-word;
  }

.compared-row .product-compare-card .btn-container {
  margin-top: 15px;
}

.compared-row .add-more-container {
  width: 33.333333%;
  border-left: none;
}

@media (min-width: 768px) {
  .compared-row .add-more-container {
    width: 26.66666666666667%;
  }
}

.compared-row .add-more-container .inactive {
  display: table-cell;
  vertical-align: middle;
  float: none;
  background: #F5F6F8;
  border: 2px solid #1965E1;
  height: 100%;
  padding: 25px;
}

  .compared-row .add-more-container .inactive h6, .compared-row .add-more-container .inactive a {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
    vertical-align: middle;
  }

.compared-row .product-compare-card .btn-container a:after {
  content: "" !important;
}

.compare-accordions .expandable-body .flex-table {
  width: 100%;
}

@media (max-width: 767px) {
  .compare-accordions .expandable-body .flex-table {
    width: 138%;
  }
}

.compared-row {
  width: 100%;
}

  .compared-row .compared-col.product-compare-card {
    width: 33.3%;
  }

@media (max-width: 767px) {
  .compared-row .compared-col.product-compare-card {
    width: 300px;
  }
}

.compared-row .compared-col.product-compare-card .nep-wheretobuy-btn {
  font-size: 14px;
  padding: 14px 6px;
}

@supports (-webkit-overflow-scrolling: touch) {
  .product-cards-container-refactored .coveo-list-layout.CoveoResult .product-card {
    display: block !important;
    height: auto !important;
  }
}

.replacement-products .product-card {
  border-right: none;
}

.product-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
  flex-flow: column;
  position: relative;
  transition: all .4s ease;
  padding: 25px 25px;
  height: 100%;
}

@media (max-width: 766px) {
  .product-card {
    padding: 15px;
  }
}

.product-card .product-card-top,
.product-card .product-card-bottom {
  height: 100%;
}

.product-card .product-card-top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
  flex-flow: column;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.product-card .product-card-bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
  flex-flow: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.product-card.no-hover:hover {
  box-shadow: none;
}

.product-card:hover {
  box-shadow: 0 0 12px #4D4D4D;
}

.product-card .compare-container {
  width: 100%;
  text-align: center;
  padding-bottom: 25px;
}

  .product-card .compare-container input[type='checkbox'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    height: 25px;
    width: 25px;
    stroke: none;
    box-shadow: none;
    outline: none;
    border: 2px solid #1965E1;
  }

.expandable-section.filters .expandable-body strong.label {
  width: 100%;
  margin-bottom: 12px;
  clear: both;
  float: none;
  display: block;
  text-align: left;
}

@media (max-width: 766px) {
  .expandable-section.filters .expandable-body strong.label {
    display: block;
    width: 100%;
    height: 45px;
    font-size: 16px;
    font-size: 1.6rem;
  }

    .expandable-section.filters .expandable-body strong.label:after {
      content: "\f107";
      display: block;
      font-family: FontAwesome;
      float: right;
      margin-top: -2px;
    }
}

@media (max-width: 766px) {
  .expandable-section.filters .expandable-body fieldset {
    display: none;
  }
}

.expandable-section.filters .expandable-body .checkbox {
  width: 100%;
  margin-bottom: 15px;
  clear: both;
  margin-left: 0;
}

.expandable-section.filters .expandable-body .expandable-facet-container {
  margin-right: 15px;
  margin-left: 25px;
  padding-left: 15px;
  padding-right: 15px;
}

.compare-accordions .expandable-body iframe {
  border: none;
}

@media (max-width: 991px) {
  .compare-accordions .expandable-body iframe {
    height: 570px !important;
  }
}

@media (min-width: 992px) {
  .compare-accordions .expandable-body iframe {
    height: 360px !important;
  }
}

.compare-accordions .expandable-body .flex-table {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.expandable-section .expandable-body :last-child {
  margin-bottom: 0;
}

.facet-row-container .facet-accordion-container .facet-accordion i:before {
  position: relative;
  top: 7px;
  right: 7px;
}

.facet-row-container .expandable-body .label {
  color: #333;
}

.facet-row-container .expandable-body fieldset label, .facet-row-container .expandable-body fieldset input {
  display: inline-block;
  float: left;
}

.facet-row-container .expandable-body fieldset label {
  clear: right;
  width: auto;
}

.facet-row-container .expandable-body fieldset input {
  width: 25px;
  clear: left;
}

.compare-accordions .expandable-body .cell {
  background: #fff;
  padding: 25px 20px;
  overflow: hidden;
  -ms-flex-positive: 1;
  flex-grow: 1;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1.6rem;
  word-break: break-word;
}

  .compare-accordions .expandable-body .cell.cell--header {
    background: #f3f7fd;
    width: 26.66666666666667%;
    text-align: center;
    padding: 25px 20px;
  }

@media (min-width: 768px) {
  .compare-accordions .expandable-body .cell.cell--header {
    text-align: left;
  }
}

.compare-accordions .expandable-body .cell.cell--header:first-of-type {
  display: none;
}

@media (min-width: 768px) {
  .compare-accordions .expandable-body .cell.cell--header:first-of-type {
    display: block;
    width: 20%;
  }
}

.compare-accordions .expandable-body .cell.cell--label {
  display: none;
}

@media (min-width: 768px) {
  .compare-accordions .expandable-body .cell.cell--label {
    display: block;
    width: 20%;
  }
}

.compare-accordions .expandable-body .cell.cell--product {
  border-left: 1px solid #979797;
  width: 30%;
  width: 26.66666666666667%;
  text-align: center;
}

@media (min-width: 768px) {
  .compare-accordions .expandable-body .cell.cell--product {
    text-align: left;
  }
}

.compare-accordions .expandable-body .cell.cell--product > strong {
  display: block;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .compare-accordions .expandable-body .cell.cell--product > strong {
    display: none;
  }
}

@media (max-width: 766px) {
  .compare-accordions .expandable-body .cell.cell--label + .cell.cell--product {
    border-left: none !important;
  }
}

.print-page-break {
  display: block !important;
  -webkit-column-break-after: always !important;
  break-after: always !important;
}

.compare-accordions .expandable-body .cell.cell--odd {
  background: #E6EAF5;
}

.print-page-break {
  display: block !important;
  -webkit-column-break-after: always !important;
  break-after: always !important;
}

.compare-accordions .expandable-body .cell.cell--odd {
  background: #F3F7FD;
  padding: 15px 15px;
}

.compare-bar-container {
  transition: all .3s ease;
  transform: translateY(100%);
  display: block;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 9999;
}

  .compare-bar-container.active {
    transform: translateY(0);
  }

  .compare-bar-container .compare-bar .tab-container .compare-bar-tab {
    background-color: #4d4d4d;
    height: 40px;
    width: 155px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

button.no-style {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit !important;
}

.compare-bar-container .compare-bar .tab-container .compare-bar-tab .down {
  display: inline;
  visibility: visible;
  color: #fff;
}

.compare-bar-container .compare-bar .tab-container .compare-bar-tab .up {
  display: none;
  visibility: hidden;
}

.compare-bar-container .compare-bar .tab-container .compare-bar-tab .label, .compare-bar-container .compare-bar .tab-container .compare-bar-tab .number-active {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  padding: 0 0 0 5px;
}

.clearfix:after {
  clear: both;
}

.clearfix:after, .clearfix:before {
  content: " ";
  display: table;
}

:after, :before {
  box-sizing: border-box;
}

.compare-bar-container .compared-items-queue {
  display: -ms-flexbox;
  display: flex !important;
  float: none;
  clear: both;
  background-color: #4d4d4d;
  padding: 12px 0;
}

.pull-full {
  width: 100vw;
  max-width: 100%;
}

@media (min-width: 768px) {
  .compare-bar-container .compared-items-queue {
    display: block !important;
  }
}

.compare-bar-container .compared-items-queue > div {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
}

.container .container {
  width: auto;
}

.compare-bar-container .compared-items-queue > div > div {
  display: -ms-flexbox;
  display: flex;
}

.compare-bar-container .compared-items-queue > div .product {
  width: 240px;
  height: 60px;
  float: left;
  color: #1965e1;
  background: #fff;
  border: 2px solid #fff;
  text-align: center;
  margin-right: 15px;
  overflow: hidden;
  display: table-cell;
  position: relative;
  text-align: left;
  font-size: 1.6rem;
}

  .compare-bar-container .compared-items-queue > div .product img {
    width: 60px;
    height: auto;
    max-height: 60px;
    text-align: left;
    margin: 0 12px;
  }

  .compare-bar-container .compared-items-queue > div .product .logo-thumbnail {
    position: absolute;
    left: 0;
  }

  .compare-bar-container .compared-items-queue > div .product img {
    width: 60px;
    height: auto;
    max-height: 60px;
    text-align: left;
    margin: 0 12px;
  }

  .compare-bar-container .compared-items-queue > div .product .product-name {
    width: 90px;
    text-align: right;
  }

  .compare-bar-container .compared-items-queue > div .product i {
    color: #1965e1;
    vertical-align: top;
    text-align: right;
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 18px;
    font-size: 1.8rem;
  }

.compare-bar-container .mobile-clear * {
  display: inline;
  text-align: center;
}

.fa-close {
  background-image: url(../_images/icons/icon-close-blue.svg);
  display: block;
  height: 15px;
  width: 15px;
  background-repeat: no-repeat;
}

.compare-bar-container .compared-items-queue > div .product.add-more {
  background: 0 0;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  display: table;
  float: none;
}

  .compare-bar-container .compared-items-queue > div .product.add-more span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
  }

.compare-bar-container .compared-items-queue > div .products-selected.mobile-only {
  display: -ms-flexbox;
  display: flex;
}

  .compare-bar-container .compared-items-queue > div .products-selected.mobile-only span {
    margin-right: 4px;
  }

.compare-bar-container .compared-items-queue > div .products-selected {
  display: table;
  vertical-align: middle;
  float: none;
  height: 60px;
}

@media (min-width: 768px) {
  .compare-bar-container .compared-items-queue > div .products-selected.mobile-only {
    display: none;
  }
}

.compare-bar-container .compared-items-queue > div .products-selected p {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}

.compare-bar-container .compared-items-queue > div .btn-container {
  width: 240px;
  height: 60px;
}

  .compare-bar-container .compared-items-queue > div .btn-container .btn.btn-primary {
    background: #1965e1;
  }

.compare-bar .btn-container .btn {
  min-width: auto;
}

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.compare-bar-container .compared-items-queue > div .btn-container.clear-all {
  width: 15%;
  display: none;
}

@media (min-width: 768px) {
  .compare-bar-container .compared-items-queue > div .btn-container.clear-all {
    display: block;
  }
}

.compare-bar-container .compared-items-queue > div .btn-container.clear-all a, .compare-bar-container .compared-items-queue > div .btn-container.clear-all i {
  color: #fff;
  display: block;
  float: left;
}

.btn-container .btn {
  width: 100%;
  max-width: 350px;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 15px;
  border-radius: 0;
  transition: all .5s ease;
  color: #fff;
}

.compare-bar-container .compared-items-queue > div .btn-container.clear-all i {
  position: relative;
  color: #4d4d4d;
  top: -3px;
  left: -5px;
  display: block;
  background: url(../img/icon-close-grey-circle.svg) center no-repeat;
  overflow: visible;
  height: 25px;
  width: 25px;
}

.compare-bar-container .compared-items-queue > div .accordion-trigger.mobile-only {
  display: table;
  height: 60px;
}

@media (min-width: 768px) {
  .compare-bar-container .compared-items-queue > div .accordion-trigger.mobile-only {
    display: none;
  }
}

.compare-bar-container .compared-items-queue > div .accordion-trigger i {
  display: table-cell;
  vertical-align: middle;
}

  .compare-bar-container .compared-items-queue > div .accordion-trigger i:before {
    content: none;
  }

.fa-angle-up {
  background-image: url(../img/icon-angle-down-white.svg);
  display: block;
  height: 15px;
  width: 15px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}

.row:after, .row:before {
  content: " ";
  display: table;
}

.mobile-only {
  display: block;
}

@media (min-width: 992px) {
  hr {
    margin: 45px 0;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

hr {
  border-color: #e5e5e5;
  margin: 25px 0;
}

.compare-bar-container #ComparerMobile {
  display: none;
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  height: 271px;
  float: none;
  clear: both;
  background: #4d4d4d;
}

  .compare-bar-container #ComparerMobile .product {
    width: 80%;
    margin: 5px auto;
    display: block;
    float: none;
    clear: both;
  }

.compare-bar-container .mobile-clear {
  display: inline-block;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  width: 100%;
}

.btn {
  border-radius: 3px;
}

.compare-bar-container .compare-bar .tab-container .compare-bar-tab .down:before {
  content: "\f107";
}

.compare-bar-container .compared-items-queue > div .btn-container.clear-all i:before {
  content: none;
}

.nep-pdp-widgets-block strong .tw-data-text {
  font-size: 16px !important;
  display: block !important;
  line-height: 24px !important;
  color: #000 !important;
  background: none !important;
  width: auto !important;
  margin-bottom: -2px !important;
  font-family: 'Helvetica', sans-serif !important;
}

.CoveoFacet .coveo-facet-header .coveo-facet-header-title-section i.dropdown-button, .CoveoFacetRange .coveo-facet-header .coveo-facet-header-title-section i.dropdown-button {
  border: solid #000;
  border-width: 3px 3px 0 0;
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 8px;
  padding: 5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.coveo-facet-header-eraser.coveo-facet-header-eraser-visible {
  top: 25px;
  margin: 0 0 23px;
}

span.coveo-facet-value-count {
  font-weight: 600;
  font-size: 15px;
}

.CoveoFacet.coveo-facet-collapsed .coveo-facet-header .coveo-facet-header-title-section i.dropdown-button {
  top: 2px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.common-social-media .nap-billboard-hero .nap-billboard-hero-img {
  max-height: 260px;
}

.nep-coveo-card .checkbox label, .nep-coveo-card .checkbox-inline {
  padding-left: 0;
}

.img-vertical-align .slick-track {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.wffm-container {
  margin: 0 15px;
}

  .wffm-container .page-header {
    padding-bottom: 9px;
    margin: 0;
    border-bottom: 0px solid #eee;
  }

  .wffm-container h1 {
    font-size: 32px;
    color: #020920;
    line-height: 1.1em;
    font-weight: 400;
    margin: 20px 0 0;
  }

@media (max-width: 767px) {
  .wffm-container h1 {
    font-size: 25px;
  }
}

.wffm-container fieldset {
  width: 50%;
  float: left;
  padding: 0 20px 0px 20px;
  background: #f5f6f8;
  margin: 20px 0 0;
}

@media (max-width: 767px) {
  .wffm-container fieldset {
    width: 100%;
    margin: 10px 0 0;
  }
}

.wffm-container halfAvailableWidth {
  width: 50%;
  float: left;
  padding: 0 20px 0px 20px;
  background: #f5f6f8;
  margin: 20px 0 0;
}

@media (max-width: 767px) {
  .wffm-container halfAvailableWidth {
    width: 100%;
    margin: 10px 0 0;
  }
}

.wffm-container legend {
  font-size: 20px;
  font-weight: 600;
  border: 0;
}

.wffm-container label {
  font-size: 14px;
  font-weight: normal;
}

.wffm-container input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 25px;
  border: 2px solid #1965E1;
  height: 25px;
  background: #fff;
  margin: 0;
  vertical-align: middle;
  margin-right: 7px;
  position: relative !important;
  line-height: normal;
  margin: 34px 7px 34px 0;
}

@media (max-width: 767px) {
  .wffm-container input[type=checkbox] {
    margin: 0 7px 0 0;
  }
}

.wffm-container input[type=checkbox]:checked {
  background: #2d9b00;
}

  .wffm-container input[type=checkbox]:checked:after {
    content: '';
    position: absolute;
    right: 6px;
    width: 8px;
    height: 14px;
    top: 5px;
    margin-top: -4px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
  }

.wffm-container input[type=file] {
  background: #fff;
  width: 100%;
  padding: 5px 7px;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.wffm-container input.btn.btn-default {
  font-size: 15px;
  padding: 9px 12px;
  background: #0D2EA0;
  color: #fff;
  border-radius: 2px;
  min-width: 160px;
  font-weight: 400;
  line-height: 1.42857143;
  margin: -20px 0 20px;
}

@media (max-width: 767px) {
  .wffm-container input.btn.btn-default {
    margin: 0px 0 20px;
  }
}

.wffm-container .form-submit-border {
  background: #f5f6f8;
  margin: 0 auto;
  text-align: center;
}

.WFFM_Form_Quarter_Width {
  background: #f5f6f8;
  padding: 0 20px 20px;
  width: 64%;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .WFFM_Form_Quarter_Width {
    width: 93%;
  }
}

.WFFM_Form_Quarter_Width h1 {
  margin: 20px -20px 0;
  background: #fff;
  padding-bottom: 20px;
}

.WFFM_Form_Quarter_Width input[type=checkbox] {
  margin: 0 7px 0 0;
}

.WFFM_Form_Quarter_Width input.btn.btn-default {
  margin: 0;
}

@media (max-width: 767px) {
  .billboard-minor-hero {
    text-align: center;
  }
}

.billboard-minor-hero h1 {
  font-size: 5rem;
  line-height: 1.1em;
  font-weight: 400;
  color: #071956;
  font-family: Catamaran,sans-serif;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .billboard-minor-hero h1 {
    font-size: 3rem;
  }
}

.billboard-minor-hero h2 {
  font-size: 16px;
  font-family: Helvetica,Arial,sans-serif;
  color: #4d4d4d;
  line-height: 28px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.embed-responsive {
  position: relative;
  display: block;
  min-height: 423px;
  min-width: 90%;
  padding: 0;
  overflow: hidden;
}

@media (max-width: 992px) {
  .embed-responsive iframe {
    height: 330px !important;
  }
}

.common-dw .nap-feature-section, .common-dmd .nap-feature-section, .common-mobile-cloud .nap-feature-section, .common-dmd .nap-partner-section {
  margin: 0;
}

.common-dmd .nap-feature-content {
  padding-top: 10px;
}

.common-mrcr .nap-partner-left ul {
  padding: 0 0 20px 30px !important;
}

.link-arrow-reverse:before {
  background-image: url(../img/icon-arrow.png);
  content: '';
  display: inline-block;
  height: 11px;
  margin-right: 5px;
  width: 15px;
  transform: rotateY(180deg);
}

.link-arrow-reverse {
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .link-arrow-reverse {
    font-size: 16px;
  }
}

.common-mobile-cloud .nap-partner-left ul {
  padding: 0 0 20px 30px !important;
}

@media (max-width: 767px) {
  .common-mobile-cloud .nap-partner-left ul {
    padding: 0 0 20px 15px !important;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .compare-bar-container .compared-items-queue > div .product.add-more span {
    display: initial;
  }

  .compare-bar-container .compared-items-queue > div .product {
    width: 140px;
    padding-top: 15px;
    text-align: center !important;
  }

    .compare-bar-container .compared-items-queue > div .product img {
      display: none;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .compare-bar-container .compared-items-queue > div .product {
    width: 170px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .compare-bar-container .compared-items-queue > div .btn-container .btn {
    padding-left: 5px;
    padding-right: 5px;
  }

  .compare-bar-container .compared-items-queue > div .btn-container {
    width: 160px;
    padding-left: 0;
  }

  .compare-bar-container .compared-items-queue > div .product.add-more {
    padding-top: 5px;
  }
}

@media (max-width: 991px) {
  .compare-bar-container .compare-bar .tab-container .compare-bar-tab {
    display: none;
  }
}

@media (max-width: 767px) {
  .compare-bar-container .compared-items-queue > div .product.add-more {
    display: none;
  }

  .compare-bar-container .compared-items-queue > div #Comparer {
    display: none;
  }

  .mobile-hide {
    display: none;
  }

  .compare-bar-container .compared-items-queue > div .accordion-trigger.mobile-only {
    width: 30%;
    display: -ms-flexbox;
    display: flex;
  }
}

.body-support .nap-heading {
  margin-top: 30px;
}

.product-compare-card .meta-container {
  text-align: center;
}

.common-social-media .nep-scroll-to-container .col-md-4:nth-child(2) .nep-socail-m-block {
  min-height: 133px;
}

@media (max-width: 991px) {
  .common-social-media .nep-scroll-to-container .col-md-4:nth-child(2) .nep-socail-m-block {
    min-height: auto;
  }
}

.mobile-hide {
  vertical-align: inherit;
}

.product-compare-card .product-card-top .meta-container {
  text-align: center;
}

.compared-row .product-compare-card .product-cards-container .product-card .thumbnail-container {
  margin-bottom: 15px;
  text-align: center;
  padding-top: 35px;
}

.product-card .thumbnail-container {
  position: relative;
}

@media (max-width: 767px) {
  .compared-row .add-more-container {
    width: 300px;
  }
}

h6 {
  font-size: 20px;
  font-size: 2rem;
  color: #020920;
  font-weight: 700;
  line-height: 1.3em;
}

.coveo-loading-spinner {
  position: absolute !important;
  left: 35%;
  bottom: -50px;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .coveo-loading-spinner {
    left: 50%;
  }
}

.site-search-results-container .coveo-loading-spinner {
  left: 50%;
  bottom: 84px;
}

.checkbox {
  padding-left: 20px;
}

.checkbox, .radio {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

  .checkbox.checkbox-inline {
    margin-top: 0;
  }

  .checkbox input[type=checkbox], .checkbox input[type=radio] {
    /* opacity: 0; */
    z-index: 1;
  }

  .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px\9;
  }

  .checkbox label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
  }

  .checkbox label {
    padding-left: 15px !important;
  }

.product-card .compare-container input[type=checkbox] + label {
  padding-left: 15px;
  position: relative;
}

.checkbox label:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0 !important;
  margin-left: -20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  transition: border .15s ease-in-out,color .15s ease-in-out;
}

.checkbox label:after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0 !important;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555;
  z-index: 9;
}

.checkbox .checkbox-danger input[type=radio]:checked + label:before, .checkbox input[type=checkbox]:checked + label:before {
  content: '';
  text-indent: -9999px;
}

.product-card .compare-container input[type=checkbox] + label:before {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  height: 25px;
  width: 25px;
  stroke: none;
  box-shadow: none;
  outline: 0;
  border: 2px solid #1965e1;
}

.product-card .compare-container input[type=checkbox]:checked + label:after, .product-card .compare-container input[type=checkbox]:checked + label:before {
  background-color: #2d9b00;
}

.checkbox input[type=checkbox]:checked + label:after, .checkbox input[type=radio]:checked + label:after {
  background-image: url(../img/icon-checked.png);
  height: 25px;
  width: 25px;
  top: -2px;
  left: 0;
  background-repeat: no-repeat;
  content: '';
}

.checkbox .checkbox-success input[type=radio]:checked + label:after, .checkbox.checkbox-success input[type=checkbox]:checked + label:after {
  background-color: #2d9b00;
  border-color: #2d9b00;
}

.product-card .compare-container input[type=checkbox]:checked + label:after, .product-card .compare-container input[type=checkbox]:checked + label:before {
  background-color: #2d9b00;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.neptune-home-hero .slick-arrow {
  padding: 12px 15px;
}

.breadcrumb-wrap .crumbs li:last-child a {
  font-size: 12px;
  font-style: inherit;
  font-family: Helvetica,Verdana,Tahoma,sans-serif !important;
  border: 0;
}

.menu-wrap ul.menu-block li.has-dropdown:hover .sub-menu {
  transform: translateY(0);
  display: block;
  opacity: 1;
}

.nep-sidekick-container .btn-primary-blue.btn-md {
  margin: 0 0 25px;
}

.Dealer-Container .loader {
  border: 10px solid #f3f3f3;
  border-top: 10px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  margin: 0 auto 20px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .neptune-home-hero.left-open .text-container .text-content {
    left: 25px;
  }
}

@media (max-width: 991px) {
  .compare-accordions .expandable-body .flex-table-container {
    width: 100%;
    overflow-x: scroll;
  }

  .compare-accordions .expandable-body .cell.cell--header:first-of-type {
    width: 19%;
  }
}

.normal-menu-block .submenu-block .normal-submenu > a {
  font-size: 14px;
  margin-bottom: 15px;
  font-family: Helvetica-Bold,'Helvetica Bold',Helvetica;
  color: #4d4d4d;
  font-weight: 700;
  line-height: 28px;
  border-bottom: 1px solid #4d4d4d;
  padding-bottom: 2px;
}

.multi-list h6, .mobile-menu ul li a, .mobile-menu ul li.prev-item {
  line-height: 50px;
  font-weight: 700;
}

.mobile-menu ul li.multi-list ul li a {
  line-height: 40px;
  font-weight: 400;
}

@media (max-width: 568px) {
  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-slide img {
    max-height: initial;
    padding: 0;
    height: 193px !important;
  }

  .nep-pdp-container .nep-pdp-row .nep-pdp-col-l .nep-pdp-slider-content .slick-list {
    padding: 0 20px;
  }

  .embed-responsive iframe {
    height: 193px !important;
  }

  .nep-pdp-slider-content .embed-responsive {
    min-height: 215px !important;
  }
}

@media (max-width: 991px) {
  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-p-b-img {
    background-size: 40% 100%;
    min-height: 175px;
    background-position: 100% 50%;
  }

  .nep-product-grid-container .nep-products-grid {
    margin: 0 0 14px;
    width: 100%;
  }

    .nep-product-grid-container .nep-products-grid .nep-products-block .nep-product-hover {
      right: -1200px;
      transition: all .7s ease-in;
    }
}

@media (max-width: 479px) {
  .nep-product-grid-container .nep-products-grid .nep-products-block .nep-p-b-img {
    background-size: 50% 100%;
  }
}

.product-compare-card .meta-container .model-number {
  display: none;
}

.product-compare-card .meta-container section h4 > a {
  font-family: Helvetica,Arial,sans-serif;
  color: #000;
  font-size: 18px;
}

.product-compare-card .meta-container section h4 {
  margin-bottom: 10px !important;
}

.menu-link-underline {
  font-size: 14px;
  margin-bottom: 15px;
  font-family: Helvetica-Bold,'Helvetica Bold',Helvetica;
  color: #4d4d4d;
  font-weight: 700;
  line-height: 28px;
  border-bottom: 1px solid #4d4d4d;
  padding-bottom: 2px;
  width: fit-content;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: -ms-fit-content;
}

.sitemap ul li {
  margin-bottom: 15px;
}

  .sitemap ul li ul {
    margin-left: 15px;
    margin-bottom: 5px;
  }

    .sitemap ul li ul li {
      margin-bottom: 0;
    }

      .sitemap ul li ul li a.link-arrow, .sitemap ul li ul li p {
        color: #1965e1;
      }

.link {
  background: transparent;
}

.sitemap a.link-arrow, .sitemap p {
  font-size: 14px;
  display: block;
  line-height: 1.2;
  margin-bottom: 6px;
}

.sitemap p, .sitemap ul li a.link-arrow {
  font-weight: 500;
  color: #071956;
}

.link-arrow::after {
  content: none;
}

.link-arrow {
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .link-arrow {
    font-size: 16px;
  }
}

.sitemap ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

  .sitemap ul ul {
    list-style-type: circle;
    margin-block-start: 0px;
    margin-block-end: 0px;
  }

.sitemap ul, .sitemap ol {
  margin: 0;
  padding: 0 !important;
}

.nep-plp-wrap + .load-more-container {
  float: right;
}

@media (min-width: 768px) {
  .nep-plp-wrap + .load-more-container {
    width: 66.66%;
  }
}

@media (min-width: 1200px) {
  .nep-plp-wrap + .load-more-container {
    width: 75%;
  }
}

@media (max-width: 991px) {
  .nap-partner-section img.img-responsive {
    height: auto !important;
    width: 320px !important;
  }
}

@media (max-width: 767px) {
  .logo-responsive {
    height: auto !important;
    width: 250px !important;
    margin: 0 auto !important;
    display: block;
  }
}

.nap-heading.contact-us-wrapper {
  border: 12px solid #f5f6f8;
  margin: 30px 0 0;
  padding: 0 10px;
}

  .nap-heading.contact-us-wrapper h2 {
    margin: 10px 0 0 15px !important;
  }

.contact-us-wrapper .row {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .contact-us-wrapper .row {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .contact-us-wrapper .row {
    display: block;
  }
}

.contact-us-wrapper img {
  width: 100%;
  height: auto;
}

.disclaimers-accordion {
  padding-top: 35px;
}

  .disclaimers-accordion .header-label {
    padding-right: 25px;
    display: inline;
    overflow: hidden;
  }

  .disclaimers-accordion.accordion-table-container .accordion-table .title-accordion-link {
    color: #020920;
    font-weight: 600;
    background-color: #fff;
    font-size: 18px;
    font-size: 1.8rem;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
  }

    .disclaimers-accordion.accordion-table-container .accordion-table .title-accordion-link:before {
      color: #1965e1;
      background-color: #fff;
      background-image: url(../img/minimize.png);
      content: '';
      height: 25px;
      width: 25px;
      display: block;
      float: left;
      margin: 0;
      padding-right: 10px;
    }

    .disclaimers-accordion.accordion-table-container .accordion-table .title-accordion-link.collapsed:before {
      color: #1965e1;
      content: '';
      background-image: url(../img/maximize.png);
    }

    .disclaimers-accordion.accordion-table-container .accordion-table .title-accordion-link span {
      background-color: #fff;
      padding-left: 10px;
      padding-right: 10px;
    }

    .disclaimers-accordion.accordion-table-container .accordion-table .title-accordion-link:after {
      border-top: 2px solid #ddd;
      content: "";
      margin: 0 auto;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      z-index: -1;
    }

  .disclaimers-accordion.accordion-table-container .accordion-table .title-accordion {
    padding: 10px 0 0 30px;
  }

    .disclaimers-accordion.accordion-table-container .accordion-table .title-accordion .accordion-copy {
      font-size: 12px;
      font-size: 1.2rem;
      color: #4d4d4d;
      padding-bottom: 18px;
    }

  .disclaimers-accordion ol.ol-brackets {
    list-style-type: none;
    padding-left: 5px;
  }

    .disclaimers-accordion ol.ol-brackets li {
      counter-increment: disclaimer-counter;
    }

      .disclaimers-accordion ol.ol-brackets li:before {
        content: "[" counter(disclaimer-counter) "]";
        padding-right: 5px;
      }

.footer-copyright {
  background: #131f49;
  color: #fff;
  text-align: center;
  padding: 18px 0;
}

.footer-copyright-inner {
  display: flex;
  justify-content: space-between;
}

  .footer-copyright-inner .link {
    color: #fff;
  }

@media (max-width: 767px) {
  .footer-copyright-inner {
    display: block;
  }

    .footer-copyright-inner .link {
      margin: 10px 0 0;
      display: block;
    }
}

.nep-pdp-right-col ul.nep-pr-f-icons {
  text-align: center;
}

  .nep-pdp-right-col ul.nep-pr-f-icons li {
    margin: 0 0 20px 0;
  }


/* Sticky Social CSS */
.sticky-social-1 {
  position: fixed;
  top: 75%;
  z-index: 999;
  transform: translateY(-50%);
}

  .sticky-social-1 li a {
    display: block;
    margin: 0;
    padding: 10px;
    font-size: 18px;
    color: #ffffff;
    transition: 0.3s;
  }

  .sticky-social-1 .fa-facebook {
    background: #3b5998;
  }

  .sticky-social-1 .fa-linkedin {
    background: #0e76a8;
  }

  .sticky-social-1 .fa-instagram {
    background: #D12D90;
  }

  .sticky-social-1 li a:hover {
    background: #023f80 !important;
  }

  .sticky-social-1.sticky-social-2 {
    top: 30%;
  }

    .sticky-social-1.sticky-social-2 li a {
      background: #0d2ea0 !important;
      margin: 0 0 6px;
      padding: 10px 15px 10px 7px;
      font-size: 18px;
      color: #ffffff;
      border-radius: 0px 30px 30px 0px;
    }

      .sticky-social-1.sticky-social-2 li a:hover span {
        display: block;
      }

      .sticky-social-1.sticky-social-2 li a span {
        display: none;
      }

    .sticky-social-1.sticky-social-2 li a {
      display: flex;
      width: max-content;
    }

      .sticky-social-1.sticky-social-2 li a span {
        margin: 0 3px 0 10px;
        transition: 0.5s;
      }

  .sticky-social-1.sticky-social-3 {
    top: 54%;
  }

.sticky-social-3 button {
  background: #0d2ea0;
  border: 0;
  color: #fff;
  padding: 10px 25px;
  border-radius: 20px;
  font-size: 15px;
  transform: rotate(-90deg) translate(27%, -60%);
}

  .sticky-social-3 button:hover ~ li {
    visibility: visible;
  }

.sticky-social-3 li {
  visibility: hidden;
}

.sticky-social-3 button:focus {
  outline: none;
}

.sticky-social-3 button:hover {
  background: #0c257c;
}

.sticky-social-3 li a {
  min-width: 45px;
  width: fit-content;
  padding: 10px 15px;
  border-bottom: 1px solid #888;
}

.sticky-social-3 li a {
  background: #0D2E9F !important;
}

  .sticky-social-3 li a:hover {
    background: #0c257c !important;
  }

.wffm-container {
  margin: 0 15px;
}

  .wffm-container .page-header {
    padding-bottom: 9px;
    margin: 0;
    border-bottom: 0px solid #eee;
  }

  .wffm-container h1 {
    font-size: 32px;
    color: #020920;
    line-height: 1.1em;
    font-weight: 400;
    margin: 20px 0 0;
  }

.wffm-container {
  padding: 0 20px 0px 20px;
  background: #f5f6f8;
  margin: 20px 0 0;
}

  .wffm-container legend {
    font-size: 20px;
    font-weight: 600;
    border: 0;
  }

  .wffm-container label {
    font-size: 14px;
    font-weight: normal;
  }

  .wffm-container input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 25px;
    border: 2px solid #1965E1;
    height: 25px;
    background: #fff;
    margin: 0;
    vertical-align: middle;
    margin-right: 7px;
    position: relative !important;
    line-height: normal;
    margin: 34px 7px 34px 0;
  }

    .wffm-container input[type=checkbox]:checked {
      background: #2d9b00;
    }

      .wffm-container input[type=checkbox]:checked:after {
        content: '';
        position: absolute;
        right: 6px;
        width: 8px;
        height: 14px;
        top: 5px;
        margin-top: -4px;
        border-bottom: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
        transform: rotate(45deg);
        transition: all .3s ease-in-out;
      }

  .wffm-container input[type=file] {
    background: #fff;
    width: 100%;
    padding: 5px 7px;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  }

  .wffm-container input.btn.btn-default {
    font-size: 15px;
    padding: 9px 12px;
    background: #0D2EA0;
    color: #fff;
    border-radius: 2px;
    min-width: 160px;
    font-weight: 400;
    line-height: 1.42857143;
    margin: -20px 0 20px;
  }

  .wffm-container .form-submit-border {
    background: #f5f6f8;
    margin: 0 auto;
    text-align: center;
  }

.WFFM_Form_Quarter_Width {
  background: #f5f6f8;
  padding: 0 20px 20px;
  width: 64%;
  margin: 0 auto;
}

  .WFFM_Form_Quarter_Width h1 {
    margin: 20px -20px 0;
    background: #fff;
    padding-bottom: 20px;
  }

  .WFFM_Form_Quarter_Width input[type=checkbox] {
    margin: 0 7px 0 0;
  }

  .WFFM_Form_Quarter_Width input.btn.btn-default {
    margin: 0;
  }

.halfAvailableWidth {
  width: 49%;
  float: left;
}

.NeptuneHalf-o {
  width: 49%;
  float: left;
}

.nep-hero-details {
  font-size: 34px;
}


.nep-scroll-to-container {
  border: 1px solid #979797;
  padding: 15px 0 7px;
}

  .nep-scroll-to-container .col-sm-4:last-child {
    margin-left: 16.66666667%;
  }

@media(max-width: 767px) {
  .nep-scroll-to-container .col-sm-4:last-child {
    margin-left: 0;
  }
}

span.glyphicon.form-control-feedback.glyphicon-ok {
  display: none;
}

/* nep-pdp-support-section button */
.nep-pdp-support-section .nep-pdp-widgets-block > .nep-pdp-suppor-widget a.btn-dark-blue, .suppor-popup-sect .nep-pdp-widgets-block > .nep-pdp-suppor-widget a.btn-dark-blue {
  display: inline-block;
  width: auto;
  margin: 0 0 20px !important;
  padding: 10px 27px !important;
}

.nep-pdp-support-section .nep-pdp-widgets-block > .nep-pdp-suppor-widget a.btn-dark-blue {
  display: inline-block;
  width: auto;
  margin: 0 0 20px !important;
  padding: 10px 27px !important;
}

/* IE Hack */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .product-card .product-card-top {
    display: block;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nep-two-col-wrap .nep-two-col2 img {
    width: 100%;
  }
}

.sticky-social-1 {
  position: fixed;
  top: 28%;
  z-index: 999;
  transform: translateY(-50%);
}

  .sticky-social-1 li a {
    display: block;
    margin: 0;
    padding: 10px;
    font-size: 18px;
    color: #ffffff;
    transition: 0.3s;
  }

  .sticky-social-1 .fa-facebook {
    background: #0D2EA0 !important;
  }

  .sticky-social-1 .fa-linkedin {
    background: #0D2EA0;
  }

  .sticky-social-1 .fa-instagram {
    background: #0D2EA0;
  }

  .sticky-social-1 .fa-youtube {
    background: #0D2EA0;
  }

  .sticky-social-1 ul {
    list-style-type: none;
    padding: 0;
  }

  .sticky-social-1 a {
    text-decoration: none;
  }


  /* Mobile Sticky Social CSS */
  .sticky-social-1.sticky-social-mob {
    position: relative;
    display: flex !important;
    width: 100%;
    background: #0D2EA0 !important;
  }

@media(min-width:768px) {
  .sticky-social-1.sticky-social-mob {
    display: none !important;
  }
}

@media(max-width:767px) {
  .sticky-social-1 {
    display: none;
  }
}

@media (max-width: 767px) {

  iframe#launcher {
    height: 58px !Important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding-left: 17px;
    text-align: center !important;
    position: fixed !important;
    bottom: 59px !important;
    right: -3px !important;
    z-index: 99999999;
  }

    iframe#launcher button {
      width: 45px;
      height: 45px;
      padding-left: 13px;
    }

      iframe#launcher button span {
        font-size: 0px;
      }
}
/*--------------Billboard Text Overlay-Component-CSS------------*/


.lac-ban-wrapp {
  min-height: 600px;
  background-size: 100%;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.lac-upper-left {
  transform: translate(-50%);
  position: absolute;
  top: 15%;
  left: 319px;
  max-width: 585px;
  background: rgba(255,255,255,.8);
  padding: 20px 40px;
}

  .lac-upper-left h1 {
    font-size: 42px;
    color: #071956;
    font-weight: 400;
    line-height: 1.1em;
    margin: 20px 0px 10px 0px;
  }

  .lac-upper-left p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .lac-upper-left .btn {
    width: 100%;
    max-width: 350px;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 15px;
    border-radius: 0;
    transition: all .5s ease;
  }

.lac-upper-left-footer {
  display: flex;
}

.lac-upper-left .btn-primary {
  background: #1965e1;
  margin-right: 30px;
}

.lac-upper-left .btn-secondry {
  background: #fff;
  border: 2px solid #1965e1;
  padding: 14px 13px;
  color: #1965e1;
}

.lac-upper-left .btn:hover {
  box-shadow: -1px 3px 5px grey;
  text-decoration: none;
}


@media(max-width: 767px) {
  .lac-upper-left {
    position: static;
    transform: translate(0%);
    background: rgba(255,255,255,1);
  }
}

/*--------------Video-Component-CSS-Start-----------*/


.lac-video-inner-detail {
  background-color: #ffffff;
  margin-left: -30px;
  padding: 30px;
  height: 100%;
}

.lac-video-title {
  font-size: 28px;
}

.video-description {
  font-size: 16px;
  margin-bottom: 0px;
}

.lac-video-img {
  width: 100%;
}

.lac-video-inner-nav {
  padding: 0px 10px;
}

.lac-video-component .slider-nav {
  margin-top: 20px;
}

  .lac-video-component .slider-nav .slick-slide {
    outline: 0px;
    cursor: pointer;
  }

@media(max-width: 991px) {

  .lac-video-inner-detail {
    margin-left: 0px;
    padding: 15px;
  }

  .lac-video-img {
    width: 100%;
  }

  .lac-video-inner-detail {
    height: 100%;
    min-height: 300;
  }
}

@media(max-width: 767px) {

  .lac-video-title {
    font-size: 20px;
  }
}




/*--------------Video-Component-CSS-End-----------*/

/*--------------New-Buy-Button-CSS-Start-----------*/

@media (min-width: 1070px) {
  #NewBuyButton {
    margin-left: 20px;
  }
}
/*--------------New-Buy-Button-CSS-End-----------*/


/*--------------Whereto-Buy-Button-CSS-Start-----------*/
.wtb-bttn {
  display: block;
  border: 1px solid #0d2ea0;
  background: #0d2ea0;
  margin-top: 20px;
  border-radius: 2px;
  min-width: 216px;
  padding: 8px 22px;
  font-family: 'Helvetica', sans-serif;
  line-height: 32px;
  font-size: 20px;
  color: #fff;
  text-shadow: none;
  text-transform: uppercase;
  font-weight: 400;
  touch-action: manipulation;
  cursor: pointer;
  white-space: nowrap;
  font-size: 1.0em;
}

.modal-WTB {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  max-width: unset;
  overflow: unset;
}

.modal-content-WTB {
  background-color: #fefefe;
  margin: 5% auto;
  border: 1px solid #888;
  width: 80%;
  max-width: 950px;
}

.modal-header-container {
  padding: 20px 20px 0 20px;
  border-bottom: 1px solid #ddd;
}

.product-image {
  max-width: 130px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  border: 0;
  width: 25%;
}

.window-title {
  display: inline-block;
  font-weight: bold;
  font-size: 1.5em;
  width: 75%;
  vertical-align: middle;
  text-align: left;
  margin-left: 2%;
  margin-top: 0;
}

.modal-WTB .close {
  /*position: absolute;*/
  right: 0;
  color: #000;
  padding: 20px;
  font-size: 28px;
  font-weight: bold;
  opacity: .7;
}

  .modal-WTB .close:hover,
  .modal-WTB .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

.modal-content-WTB .image-inner {
  text-align: center;
  display: block;
  margin: 0;
  padding-bottom: 20px;
}

.modal-content-WTB .online-retailer {
  background-color: #e1e1e1;
  padding: 0px 20px 0px 20px;
}

.modal-header-container .online-retailers-text {
  display: inline-block;
  text-align: left;
  font-size: 1.2em;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 24px;
  color: #1c369f;
  border-bottom: 2px solid #1c369f;
  margin-bottom: 0;
  font-weight: 700;
  width: 12%;
}

.modal-header-container .label-wrapper {
  display: inline-block;
  float: right;
}

  .modal-header-container .label-wrapper label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
  }

  .modal-header-container .label-wrapper label {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font: inherit;
    margin: 0;
  }

.modal-content-WTB .btn-container {
  text-align: center;
}

.no-retailer-text {
  text-align: center;
  color: red;
  margin: 0 20px 0 20px;
  padding: 20px 0;
}

.modal-content-WTB .retailer-result {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #fefefe;
}

.modal-content-WTB .retailer-logo {
  max-width: 120px;
  max-height: 40px;
  vertical-align: middle;
}

.modal-content-WTB .retailer-bttn {
  float: right;
  /*padding: 10px 40px;*/
  border-radius: 5px;
  color: #333333;
  font-size: 1em;
  font-weight: 700;
  text-shadow: 0px 1px 0px #f9edb4;
  border: 1px solid #f4cb0f;
  background: linear-gradient(0deg, #fdd400 0%, #fde159 100%);
  text-transform: uppercase;
}

.modal-WTB .modal-footer-WTB {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}


.modal-WTB .brother-logo {
  display: block;
  max-width: 120px;
  margin-left: 15px;
}

@media screen and (max-width: 1000px) {
  .window-title {
    text-align: center;
    margin-left: unset;
  }
}

@media screen and (max-width: 992px) {
  .wtb-bttn {
    margin: 0 auto;
    margin-top: 20px;
  }
}

@media screen and (max-width: 800px) {
  .modal-content-WTB .btn-container {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 750px) {
  .window-title {
    font-size: 1.2em;
    margin-top: 10px;
  }

  .modal-header-container .label-wrapper label {
    display: block;
    max-width: 75%;
  }

  .modal-WTB .brother-logo {
    display: block;
    margin: 0 auto;
  }
}

@media screen and (max-width: 500px) {
  .modal-header-container .online-retailers-text {
    width: 35%;
  }

  .modal-header-container .label-wrapper label {
    max-width: unset;
  }

  .modal-content-WTB .retailer-result {
    height: 80px;
  }

  .modal-content-WTB .retailer-logo {
    max-width: 90px;
    vertical-align: -webkit-baseline-middle;
  }

  .modal-content-WTB .retailer-bttn {
    max-width: 120px;
    padding: 0;
  }
  atomic-search-box::part(input) {
    min-width: 10em;
  }
}

@media screen and (max-width: 450px) {
  .modal-content-WTB .retailer-logo {
    max-width: 80px;
  }

  .modal-WTB .brother-logo {
    max-width: 80px;
  }
}

@media screen and (orientation:landscape) and (max-device-width: 870px) {
  .modal-content-WTB {
    margin: 0 auto;
  }

  .modal-WTB {
    overflow: scroll;
  }

    .modal-WTB img {
      max-width: 20%;
    }

    .modal-WTB p:first-of-type {
      margin-bottom: 5px;
    }
}
/*--------------WhereTo-Buy-Button-CSS-End-----------*/

/* --------------Search bar overlap fixes ----------------*/
@media(max-width:767px) {
  .sticky-social-1 {
    transform: translateY(0%);
  }

  .neptune-main-header .search-input-container {
    padding: 15px 0px 15px 5px;
  }
}
/*------------------------------------------------*/
