.nFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nFlex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-color {
  color: #404040;
}

.text-white {
  color: #fff;
}

.text-uppercase {
  text-transform: uppercase;
}

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

.text-larger {
  font-size: 1.5em;
}

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

.text-smaller {
  font-size: 0.75em;
}

.bg-black {
  background: #000;
}

.p-top-default {
  padding-top: 80px;
}

.p-bot-default {
  padding-bottom: 80px;
}

.m-top-default {
  margin-top: 80px;
}

.m-bot-default {
  margin-bottom: 80px;
}

.p-top-sml {
  padding-top: 50px;
}

.p-bot-sml {
  padding-bottom: 50px;
}

.m-top-sml {
  margin-top: 50px;
}

.m-bot-sml {
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .flex-col-sm {
    flex-direction: column;
  }
  .flex-col-sm > div {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .flex-col-xs {
    flex-direction: column;
  }
  .flex-col-xs > div {
    width: 100%;
  }
  .p-top-default {
    padding-top: calc(80px / 2);
  }
  .p-bot-default {
    padding-bottom: calc(80px / 2);
  }
  .m-top-default {
    margin-top: calc(80px / 2);
  }
  .m-bot-default {
    margin-bottom: calc(80px / 2);
  }
  .p-top-sml {
    padding-top: calc(50px / 2);
  }
  .p-bot-sml {
    padding-bottom: calc(50px / 2);
  }
  .m-top-sml {
    margin-top: calc(50px / 2);
  }
  .m-bot-sml {
    margin-bottom: calc(50px / 2);
  }
}

.nRel {
  position: relative;
}

.nLinkArea {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.nList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nList li {
  margin: 0;
  padding: 0;
}

.ex-loggedout .nLoggedIn,
.ex-loggedin .nLoggedOut {
  display: none;
}

.nButton {
  font-weight: 600;
  display: inline-block;
  background: #f26522;
  transition: all 0.35s;
  padding: 8px 20px;
  min-width: 220px;
  color: #fff;
  text-align: center;
  border-radius: 22px;
  font-size: 1rem;
  border: 2px solid #f26522;
  line-height: 20px;
}

.nbWhite {
  background: #fff;
  color: #f26522;
  border-color: #fff;
}

.nButton:hover {
  background-color: #fff;
  color: #f26522;
  text-decoration: none;
  border-color: #f26522;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*** End Slick Base***/
/*** Slick Theme ***/
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: sans-serif;
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "<";
}

[dir="rtl"] .slick-prev:before {
  content: ">";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: ">";
}

[dir="rtl"] .slick-next:before {
  content: "<";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: ".";
  width: 20px;
  height: 20px;
  font-family: sans-serif;
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*** End Slick Theme ***/
body > header {
  position: sticky;
  top: 0;
  z-index: 21;
  transition: background 0.35s;
}

body > header.fixedHeader {
  position: fixed;
  width: 100%;
}

body > header.transparentHeader {
  background: transparent;
}

/*** Topbar ***/
.tbLang {
  margin-left: auto;
}

.tbLang span {
  padding: 8px 18px;
  vertical-align: middle;
  padding: 8px 32px 8px 18px;
  background: #000 url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-head-arrow.png") no-repeat right 15px center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}

.tbLang span a {
  color: #fff;
  display: block;
}

.tbLang span + span {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: #202020;
  padding: 0;
  opacity: 0;
}

.tbLang span + span a {
  padding: 8px 0 8px 18px;
}

.tbLang span img {
  vertical-align: middle;
  margin-right: 15px;
}

.tbLang:hover span + span {
  z-index: 1;
  opacity: 1;
}

div#google_translate_element div.goog-te-gadget-simple {
  background-color: #000000;
  border: none;
  padding: 8px 15px;
}

div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span {
  color: white;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}

/*** End Topbar ***/
.menu {
  background: transparent;
}

.menu .catalog-block {
  background: transparent;
  color: #fff;
}

.header-full .vertical-align {
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-full .vertical-align:before, .header-full .vertical-align:after {
  display: none;
}

.header-full .vertical-align > div {
  width: auto;
}

.toolbar .shopping-tools-wrapper {
  flex-direction: row-reverse;
}

.headersection-3 {
  border-top: 1px solid rgba(234, 234, 234, 0.26);
  border-bottom: 1px solid rgba(234, 234, 234, 0.26);
}

/*** Logo ***/
.header-full .logo img {
  width: 100px !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
}

/*** End Logo ***/
/*** Search ***/
.header-full .search_container {
  flex-grow: 1;
}

.header-full .search_container section.search .search-form .form-group input {
  height: 41px;
  border: none;
  border-radius: 20px;
}

.header-full .search_container section.search .search-form .form-group input:focus {
  border-color: #f26522;
}

.header-full .search_container section.search .search-form button[type="submit"] {
  background: url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-head-search.png") no-repeat center left 5px;
  width: 50px;
  height: 40px;
  top: 0;
  right: 0;
}

.header-full .search_container section.search .search-form button[type="submit"] i {
  display: none;
}

/*** End Search ***/
/*** Quick Order ***/
.toolbar .quickordertoggle {
  margin-left: 0;
  min-width: 107px;
}

.toolbar .quickordertoggle i {
  width: 20px;
  height: 28px;
  background: url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-head-quickorder.png") no-repeat center;
}

.toolbar .quickordertoggle i:before {
  display: none;
}

.toolbar .quickordertoggle span {
  font-size: 1em;
  font-weight: 700;
}

.toolbar .quickordertoggle span:after {
  content: "Order Now";
  display: block;
  font-size: 0.82em;
  font-weight: 400;
}

.toolbar .account-btn {
  margin-right: 0 !important;
  margin-left: 20px;
}

.toolbar .account-btn > i {
  width: 26px;
  height: 28px;
  background: url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-head-account.png") no-repeat center;
}

.toolbar .account-btn > i:before {
  display: none;
}

.toolbar .cart-btn {
  margin-left: 0;
}

.toolbar .cart-btn > .btn {
  background: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toolbar .cart-btn > .btn i {
  width: 31px;
  height: 25px;
  margin-right: 15px;
  background: url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-head-cart.png") no-repeat center;
}

.toolbar .cart-btn > .btn i:before {
  display: none;
}

.toolbar .cart-btn > .btn .minicart_count {
  border-radius: 50%;
  background: #fff;
  color: #404040;
  font-weight: 700;
  top: 0px;
  right: unset;
  left: 35px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toolbar .cart-btn > .btn b {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: row-reverse;
  line-height: 1.7;
  background: none;
  color: #fff;
  padding-top: 20px;
  font-size: 0.82rem;
  font-weight: 400;
}

.toolbar .cart-btn > .btn b:before {
  content: "Cart";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

.toolbar .cart-btn > .btn b:after {
  content: "Total:";
  margin-right: 5px;
  font-size: 0.82rem;
  font-weight: 400;
}

.ex-loggedout .account-btn > span .welcome-message {
  font-size: 0;
}

.ex-loggedout .account-btn > span .welcome-message:first-of-type:after {
  content: "My Account";
  font-size: 1rem;
  font-weight: 700;
  display: block;
}

.ex-loggedout .account-btn > span .welcome-message strong:after {
  content: "Login & Register";
  font-size: 0.82rem;
  font-weight: 400;
  display: block;
}

/*** End Quick Order ***/
/*** Menu ***/
.menu .catalog li a {
  font-size: 0.875rem;
  font-weight: 700;
}

/*** end Menu ***/
.product-summary .product-brand img {
  max-width: 250px;
}

/*** Home Hero Banner Slider ***/
.heroBanner {
  position: relative;
}

.heroBanner.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.heroBanner .slick-dots {
  bottom: 20px;
}

.heroBanner:not(.slick-initialized) .bannerSlide:not(:first-of-type) {
  display: none !important;
}

.bannerSlide {
  overflow: hidden;
  min-height: 693px;
  height: 100%;
  display: flex !important;
  align-items: center;
  position: relative;
  padding-top: 190px;
}

.bannerSlide img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  object-fit: cover;
  height: 100%;
  width: 100%;
  transform: scale(1.5);
  filter: grayscale(100%);
}

.bannerSlide a {
  position: relative;
  width: 100%;
  bottom: -100vh;
  justify-content: space-between;
}

.bannerSlide h1 {
  position: relative;
  margin: 0;
  font-size: 2.25em;
  color: #fff;
  left: -100vw;
  max-width: 485px;
  margin: 0 0 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bannerSlide h2 {
  position: relative;
  margin: 0;
  left: -100vw;
  max-width: 485px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.bannerSlide p {
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 18px;
  color: #fff;
  max-width: 570px;
  bottom: -100vh;
  max-width: 485px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bannerSlide .hbButtons {
  max-width: 465px;
  flex-wrap: wrap;
}

.bannerSlide .hbButtons .nButton {
  margin-bottom: 10px;
}

.heroBanner.loaded .bannerSlide.slick-active img {
  transform: scale(1);
  filter: grayscale(0%);
}

.heroBanner.loaded .bannerSlide.slick-active a {
  bottom: 0;
  max-width: 220px;
}

.heroBanner.loaded .bannerSlide.slick-active h1 {
  left: 0;
}

.heroBanner.loaded .bannerSlide.slick-active h2 {
  left: 0;
}

.heroBanner.loaded .bannerSlide.slick-active p {
  bottom: 0;
}

.heroBanner.loaded img {
  transition: all 2s ease, filter 2s ease-in;
}

.heroBanner.loaded a {
  transition: all 1s ease 1.35s, background-color .35s ease, max-width 1s ease 2s, color .35s ease;
}

.heroBanner.loaded h1 {
  transition: all 1s ease 1s;
}

.heroBanner.loaded h2 {
  transition: all 1s ease 1s;
}

.heroBanner.loaded p {
  transition: all 1s ease 1.25s;
}

.heroBanner .slick-dots li {
  width: 8px;
  transition: all .35s ease;
}

.heroBanner .slick-dots li button {
  background: #cac9c9;
  width: 10px;
  height: 10px;
  border-radius: 25px;
  padding: 0;
  transition: all .35s ease;
}

.heroBanner .slick-dots li button::before {
  display: none;
}

.heroBanner .slick-dots li.slick-active {
  width: 45px;
}

.heroBanner .slick-dots li.slick-active button {
  background: #f26522;
  width: 45px;
  border: 1px solid #f26522;
}

@media screen and (max-width: 768px) {
  .heroBanner.loaded .bannerSlide.slick-active h1 {
    font-size: 1.5em;
  }
}

/*** End Home Hero Banner Slider ***/
/*** Home Category Boxes ***/
.catBoxes .nFlex {
  flex-wrap: wrap;
  align-items: stretch;
}

.catBox {
  width: calc(100% / 6 - 16px);
  max-width: 220px;
  display: flex;
  flex-direction: column;
}

.catBox .cbImg {
  /*height:198px;*/
  margin-bottom: 10px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
}

.catBox .cbImg img {
  /*width:100%;
			height:100%;
			background:#f4f4f4;
			object-fit: none;*/
  border-radius: 5px;
}

.catBox h3 {
  margin: 0 0 10px;
  color: #404040;
}

.catBox p {
  margin: auto 0 0;
  color: #f26522;
  font-weight: 500;
}

.catBox p img {
  margin-left: 20px;
  transition: transform 0.35s;
}

.catBox:hover p img {
  transform: translateX(10px);
}

@media screen and (max-width: 991px) {
  .catBox {
    width: 32%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 500px) {
  .catBox {
    width: 49%;
  }
}

/*** End Home Category Boxes ***/
/*** Home Science ***/
.homeScience {
  background: url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-home-science-bg.jpg") no-repeat center;
  background-size: cover;
}

.homeScience .nFlex {
  flex-wrap: wrap;
}

.scienceText {
  width: 50%;
  padding-right: 130px;
}

.scienceText h4 {
  margin: 0 0 10px;
  color: #ffd8c5;
  text-transform: uppercase;
}

.scienceText h1 {
  margin: 0 0 25px;
  color: #fff;
}

.scienceText h3 {
  margin: 0 0 25px;
  color: #f26522;
}

.scienceText p {
  margin: 0 0 30px;
  color: #fff;
}

.scienceText p:last-of-type {
  margin: 0;
}

.scienceText .nButton {
  margin-top: 20px;
}

.scienceForm {
  width: 50%;
}

.scienceBoxes {
  align-items: stretch;
}

.scienceBox {
  position: relative;
  width: 23%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  max-width: 327px;
}

.scienceBox:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  border: 2px solid #f26522;
  position: absolute;
  padding: 2px;
  -webkit-mask-image: linear-gradient(120deg, #404040 0%, rgba(0, 102, 102, 0) 80%);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left top, left bottom;
}

.scienceBox h3 {
  margin: 0 0 10px;
  color: #d4d906;
  text-transform: uppercase;
  text-align: center;
  font-size: 1rem;
}

.scienceBox p {
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .scienceText {
    padding-right: 30px;
  }
}

@media screen and (max-width: 991px) {
  .scienceText {
    width: 100%;
    margin-bottom: 20px;
  }
  .scienceForm {
    width: 100%;
  }
  .scienceBoxes {
    justify-content: center;
    gap: 10px;
  }
  .scienceBox {
    width: 48%;
  }
}

@media screen and (max-width: 430px) {
  .scienceBox {
    width: 100%;
  }
}

.ex-name-wavecelscience .row-breadcrumb {
  display: none;
}

.scienceVideo {
  background: #2c2c2a;
  padding: 50px 0;
}

.scienceVideo h1 {
  text-align: center;
  margin: 0 0 40px;
}

/* mobile view slider */
@media screen and (max-width: 768px) {
  .col-green {
    color: #dae80d;
  }
  .scienceSlide {
    background: #000;
  }
  .scienceSlide > div {
    padding: 15px;
  }
  .scienceSlide > div > img {
    margin: 0 auto 20px;
    width: 90%;
  }
  .scienceSlide h1 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 15px;
  }
  .scienceSlide h2 {
    color: #dae80d;
    font-size: 16px;
    margin: 0 0 15px;
  }
  .scienceSlide p {
    color: #fff;
    font-size: 14px;
    margin: 0 0 20px;
  }
  .scienceSlide p span {
    font-size: 10px;
    color: #f26522;
  }
  .scienceSlide ul {
    margin: 20px 0 0;
  }
  .scienceSlide ul li {
    color: #fff;
    font-size: 14px;
  }
  .scienceSlide ul li.scienceDots {
    background: url("https://us.evocdn.io/dealer/1229/content/media/My_Banners/tpr-science-bullet.png") no-repeat top 13px left;
    padding: 5px 0 5px 15px;
  }
  .scienceSlide .scienceBoxes {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  .scienceSlide .scienceBoxes .scienceBox {
    width: 48%;
    margin-top: 5px;
  }
  .scienceSlider .slick-dots {
    bottom: -35px;
  }
  .scienceSlider .slick-dots li {
    width: 8px;
    transition: all .35s ease;
  }
  .scienceSlider .slick-dots li button {
    background: #cac9c9;
    width: 10px;
    height: 10px;
    border-radius: 25px;
    padding: 0;
    transition: all .35s ease;
  }
  .scienceSlider .slick-dots li button::before {
    display: none;
  }
  .scienceSlider .slick-dots li.slick-active {
    width: 45px;
  }
  .scienceSlider .slick-dots li.slick-active button {
    background: #f26522;
    width: 45px;
    border: 1px solid #f26522;
  }
}

/* end mobile view slider */
/*** Home Science ***/
.homeLowerbanners > .nFlex {
  flex-wrap: wrap;
  align-items: stretch;
}

.lowerBanner {
  width: 48%;
  min-height: 155px;
  padding: 45px;
  border-radius: 5px;
  overflow: hidden;
}

.lowerBanner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lowerBanner .nFlex {
  z-index: 1;
  position: relative;
}

.lowerBanner h1 {
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.lowerBanner p {
  color: #fff;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  .lowerBanner .nFlex {
    flex-wrap: wrap;
  }
  .lowerBanner .nButton {
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .lowerBanner {
    width: 100%;
    margin-bottom: 10px;
  }
}

.recommendedTitle {
  padding: 0 0 20px;
  border-bottom: 1px solid #e6e6e6;
}

.recommendedTitle h1 {
  margin: 0 0 15px;
}

.recommendedTitle h1 span {
  color: #404040;
}

.recommendedTitle p {
  margin: 0;
}

.nCarousel {
  position: relative;
}

.nCarousel .slick-arrow {
  width: 23px;
  height: 23px;
  margin: 0 5px;
  background: url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-arrow-prev.png") no-repeat center;
  border: none;
  transform: none;
}

.nCarousel .slick-arrow.slick-prev {
  top: -70px;
  left: unset;
  right: 60px;
}

.nCarousel .slick-arrow.slick-next {
  background-image: url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-arrow-next.png");
  top: -70px;
  left: unset;
  right: 30px;
}

.nCarousel .slick-arrow:before {
  display: none;
}

.catalog-single.nMerchandising .slick-slide {
  margin: 0 10px;
}

.catalog-single.nMerchandising .slick-list {
  margin: 0 -10px;
}

.merchandisingcontent_container .catalog-single.nMerchandising {
  margin: 35px 0 45px;
  padding: 0;
}

.catalog-single.nMerchandising .brand-label, .catalog-single.nMerchandising .indicators-grid, .catalog-single.nMerchandising .product-compare-action, .catalog-single.nMerchandising .divquickview {
  display: none !important;
}

.catalog-single.nMerchandising .tile {
  margin: 0;
  max-width: none;
  width: 100%;
}

.catalog-single.nMerchandising .tile .footer .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.catalog-single.nMerchandising .tile .footer .uom {
  font-size: 0.75rem;
  color: #aeaeae;
}

.catalog-single.nMerchandising .tile .imgthumbnail {
  height: 245px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f6f6f6;
  border-radius: 5px;
  margin-bottom: 25px;
  position: relative;
}

.catalog-single.nMerchandising .tile .imgthumbnail img {
  max-height: 245px;
  max-width: 100%;
}

.catalog-single.nMerchandising .tile .product-name {
  margin: 0 0 15px;
  min-height: 37px;
  text-align: center;
}

.catalog-single.nMerchandising .tile .product-name a {
  font-size: 1rem;
  color: #404040;
}

.catalog-single.nMerchandising .tile .product-name a:hover {
  color: #f26522;
}

.catalog-single.nMerchandising .tile .product-category {
  text-align: center;
  font-size: 0.875rem;
  color: #aeaeae;
  margin-bottom: 15px;
}

.catalog-single.nMerchandising .tile .product-category a {
  color: #aeaeae;
}

.catalog-single.nMerchandising .tile .product-category a:hover {
  color: #f26522;
}

.catalog-single.nMerchandising .tile .product-category strong {
  font-weight: 400;
}

.catalog-single.nMerchandising .tile .product-sku {
  text-align: center;
  font-size: 0.875rem;
  color: #aeaeae;
}

.catalog-single.nMerchandising .tile .product-sku strong {
  font-weight: 400;
}

.catalog-single.nMerchandising .tile .price-label {
  color: #ca1010;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  margin: auto 0 0;
}

.catalog-single.nMerchandising .tile .buttons.group {
  margin: 20px 0 0;
}

.catalog-single.nMerchandising .tile .buttons.group input {
  display: none;
}

.catalog-single.nMerchandising .tile .buttons.group button {
  font-weight: 600;
  display: inline-block;
  background: #f26522;
  transition: all 0.35s;
  padding: 8px 20px;
  color: #fff;
  text-align: center;
  border-radius: 22px;
  font-size: 1rem;
  border: 2px solid #f26522;
  line-height: 20px;
  margin: 0;
  width: 100%;
}

.catalog-single.nMerchandising .tile .buttons.group button:hover {
  background-color: #fff;
  color: #f26522;
  text-decoration: none;
  border-color: #f26522;
}

.catalog-single.nMerchandising .tile .addtoquicklist-wrapper {
  position: absolute;
  bottom: 6px;
  right: 8px;
  width: 31px;
  height: 31px;
}

.catalog-single.nMerchandising .tile .addtoquicklist-wrapper a {
  font-size: 0;
  width: 31px;
  height: 31px;
  background: #f4f4f4;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-single.nMerchandising .tile .addtoquicklist-wrapper a i {
  font-size: 1rem;
}

footer.footer {
  padding: 0;
  background: url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-home-science-bg.jpg") no-repeat center;
  background-size: cover;
}

/*** Footer Main ***/
footer.footer {
  padding: 80px 0 0;
  margin-bottom: -8px;
}

footer.footer .row .menulinks_container:first-of-type {
  margin-left: 5%;
}

footer.footer .logo {
  padding: 0;
  margin: 0 30px 0 0;
  border: none;
  max-width: 100px;
}

footer.footer .logo img {
  max-width: 100px;
}

footer.footer .infoText h1 {
  text-transform: uppercase;
  margin: 0 0 10px;
}

footer.footer .infoText p {
  margin: 0 0 10px;
}

footer.footer h4.title {
  text-transform: none;
  margin: 0 0 25px;
  font-size: 1rem;
}

footer.footer ul li {
  font-size: 1rem;
  margin: 0 0 15px;
  line-height: 20px;
}

footer.footer .info {
  padding: 0;
}

footer.footer .copyright_container {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
}

.nSocial {
  justify-content: flex-start;
}

.nSocial a {
  margin-right: 5px;
  width: 26px;
  height: 26px;
  background: #f26522;
  border-radius: 50%;
  transition: all 0.35s;
}

.nSocial a:hover {
  border-radius: 5px;
}

.footContact li {
  padding-left: 40px;
  background: url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-foot-tel.png") no-repeat center left;
}

.footContact li.footFax {
  background-image: url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-foot-fax.png");
}

.footContact li.footMail {
  background-image: url("https://us.evocdn.io/dealer/1229/content/media/My_Theme/tpr-foot-mail.png");
}

@media only screen and (max-width: 768px) {
  footer.footer h4 {
    text-align: left;
  }
  footer.footer .footMenu {
    padding-top: 0;
    border-bottom: 1px solid #f26522;
    text-align: left !important;
  }
  footer.footer .footMenu h4 {
    cursor: pointer;
    margin: 0;
    padding: 15px 0;
    font-size: 1em;
  }
  footer.footer .footMenu h4:after {
    content: "+";
    float: right;
  }
  footer.footer .footMenu ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-out;
    padding: 0;
    margin: 0;
  }
  footer.footer .footMenu ul li {
    margin: 0;
    padding: 0;
    border: none;
    display: block;
  }
  footer.footer .footMenu ul li:before {
    display: none;
  }
  footer.footer .footMenu ul li a {
    display: block;
    margin: 5px 0;
    padding: 10px 15px;
    font-size: 16px;
    background: none;
  }
  footer.footer .footMenu.open h4:after {
    content: "-";
  }
  footer.footer .footMenu.open ul {
    height: auto;
    max-height: 300px;
    transition: max-height 1s ease-in-out !important;
  }
  footer.footer .footMenu.fmContact li {
    padding-left: 40px;
    margin: 0 0 15px;
  }
  footer.footer .footMenu.fmContact li a {
    display: inline-block;
    padding: 0;
    margin: 0;
  }
  footer.footer .info {
    margin-bottom: 30px;
  }
  .nSocial {
    justify-content: center;
  }
}

/*** EndFooter Main ***/
/*** Logo slider ***/
.footLogoSlider {
  margin: 60px 0 40px;
}

.footLogoSlider:not(.slick-initialized) {
  display: flex;
  justify-content: space-around;
}

.footLogoSlider .footLogoSlide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 75px;
}

.footLogoSlider .footLogoSlide img {
  max-height: 100%;
}

/*** End Logo slider ***/