/*
 * Breakpoint / Media Query Helper
 *
 * This mixin helps to create media queries based on a given query parameter.
 * Various syntaxes may be used for the query paramater.
 *
 * Logic:
 * 1) If the query is a number, assume a min-width media query by default
 * 2) If the query is a list ...
 *    2a) If the first list item is a string, assume a feature/value pair (i.e. max-width 500px)
 *    2b) If both values are numbers, assume a min-width/max-width pair
 * 3) If the query is a map, assume one or more feature/value pairs (i.e. max-width 500px, or min-width 300px and max-width 400px)
 *
 * Examples of Use:
 * @include bp(500px) {...}  =>  min-width: 500px
 * @include bp(min-width 500px) {...}  =>  min-width: 500px
 * @include bp(max-width 500px) {...}  =>  max-width: 500px
 * @include bp(500px 750px) {...}  =>  min-width: 500px, max-width: 750px
 * @include bp((min-width: 500px)) {...}  =>  min-width: 500px
 * @include bp((max-width: 500px)) {...}  =>  max-width: 500px
 * @include bp((min-width: 500px, max-width: 750px)) {...}  =>  max-width: 500px, max-width: 750px
 *
*/
/*
 * Font Conversion Helper
 *
 * This Mixin will conver pixels units to rems.
 *
 */
body, select, input, textarea {
  color: #262627;
  font-weight: 500;
  -webkit-text-size-adjust: none;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 93%;
  line-height: 1.625;
}

@media screen and (min-width: 640px) {
  body, select, input, textarea {
    font-size: 95%;
  }
}

@media screen and (min-width: 960px) {
  body, select, input, textarea {
    font-size: 98%;
  }
}

@media screen and (min-width: 1280px) {
  body, select, input, textarea {
    font-size: 100%;
  }
}

select, input, textarea,
[type="submit"] {
  font-family: "Overpass-Light", sans-serif;
}

body {
  background-color: #fff;
  overflow-x: hidden;
  font-family: "Overpass-Light", sans-serif;
  position: relative;
  width: 100%;
}

::selection {
  color: #fff;
  background: #262627;
}

::-webkit-input-placeholder {
  color: #929b9f;
}

:-moz-placeholder {
  color: #929b9f;
}

::-moz-placeholder {
  color: #929b9f;
}

:-ms-input-placeholder {
  color: #929b9f;
}

*, *:after, *:before {
  box-sizing: border-box;
}

a {
  color: #b0001d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Overpass-Bold", sans-serif;
  font-weight: normal;
  line-height: 1.17;
  margin: 0 0 1.25rem;
}

h1.upper, h2.upper, h3.upper, h4.upper, h5.upper, h6.upper,
.h1.upper, .h2.upper, .h3.upper, .h4.upper, .h5.upper, .h6.upper {
  text-transform: uppercase;
}

h1.center, h2.center, h3.center, h4.center, h5.center, h6.center,
.h1.center, .h2.center, .h3.center, .h4.center, .h5.center, .h6.center {
  text-align: center;
}

h1 sup, h2 sup, h3 sup, h4 sup, h5 sup, h6 sup,
.h1 sup, .h2 sup, .h3 sup, .h4 sup, .h5 sup, .h6 sup {
  font-size: 30%;
  top: -1.7em;
}

h1, .h1 {
  color: #262627;
  font-size: 2.1875rem;
  text-transform: uppercase;
}

h2, .h2 {
  color: #262627;
  font-size: 2rem;
  font-family: "Overpass-Light", sans-serif;
}

h3, .h3 {
  color: #262627;
  font-size: 1.875rem;
}

h4, .h4 {
  color: #262627;
  font-size: 1.5625rem;
}

h5, .h5 {
  color: #262627;
  font-size: 1.375rem;
}

h6, .h6 {
  color: #262627;
  font-size: 1.25rem;
}

@media screen and (min-width: 960px) {
  h1, .h1 {
    font-size: 2.8125rem;
  }
  h2, .h2 {
    font-size: 2rem;
  }
  h3, .h3 {
    font-size: 2rem;
  }
  h4, .h4 {
    font-size: 1.75rem;
  }
  h5, .h5 {
    font-size: 1.5rem;
  }
  h6, .h6 {
    font-size: 1.375rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

@media screen and (min-width: 640px) {
  img {
    display: inline;
  }
}

p {
  margin: 0 0 1rem;
  line-height: 1.5;
}

b, strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

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

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

.no-display {
  display: none;
}

.no-wrap {
  white-space: nowrap;
}

.testing {
  color: red !important;
}

.visually-hidden {
  display: block;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(1px);
  clip-path: inset(1px);
  white-space: nowrap;
  position: absolute;
}

.sr-only,
.screen-reader-text {
  position: absolute;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

.clearfix:before, .grip-product-container:before, .grip-tech-container .grip-tech-tabs:before, .pg-product .product-heading:before,
.clearfix:after,
.grip-product-container:after,
.grip-tech-container .grip-tech-tabs:after,
.pg-product .product-heading:after {
  content: " ";
  display: table;
}


.clearfix:after,
.grip-product-container:after,
.grip-tech-container .grip-tech-tabs:after,
.pg-product .product-heading:after {
  clear: both;
}

.page-wrapper {
  margin: 0 auto;
  max-width: 80rem;
  padding: 0 0.625rem;
}

.page-wrapper.small {
  max-width: 800px;
}

.page-wrapper.medium {
  max-width: 960px;
}

.page-wrapper.large {
  max-width: 1100px;
}

.cookie-confirmation {
  font: normal 12px/1.15 "Overpass-Light", sans-serif;
}

.cookie-confirmation .btn {
  padding: 5px 10px;
  font-size: 12px;
}

@media screen and (min-width: 640px) {
  .cookie-confirmation .btn {
    padding: 8px 15px;
  }
}

@media screen and (max-width: 959px) {
  body {
    padding-top: 0;
  }
}

.header-main > .page-wrapper {
  overflow: hidden;
}

.eyebrow-nav {
  position: relative;
}

.eyebrow-nav .page-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 40px;
}

.eyebrow-nav .cart {
  position: relative;
  margin-right: 12px;
}

.eyebrow-nav .cart a {
  display: block;
  height: 25px;
  width: 25px;
}

.eyebrow-nav .cart svg {
  display: block;
  height: 100%;
  width: 100%;
}

.eyebrow-nav .cart .qty {
  position: absolute;
  top: -5px;
  left: 15px;
  display: block;
  height: 16px;
  min-width: 16px;
  padding-left: 4px;
  padding-right: 4px;
  background: #b0001d;
  border-radius: 8px;
  color: #FFFFFF;
  font: normal 10px/16px "Overpass-Bold", sans-serif;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .eyebrow-nav {
    z-index: 200;
  }
  .eyebrow-nav .page-wrapper {
    min-height: 40px;
  }
}

.eyebrow-nav-menu {
  margin-right: 10px;
  color: #FFFFFF;
}

.eyebrow-nav-menu > li {
  float: left;
  position: relative;
  line-height: 40px;
}

.eyebrow-nav-menu > li li {
  line-height: 34px;
}

.eyebrow-nav-menu a {
  display: inline-block;
  padding-left: 18px;
  padding-right: 18px;
  color: inherit;
  white-space: nowrap;
}

.eyebrow-nav-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: 5px 0 10px 0;
  background: #131315;
}

.eyebrow-nav-menu ul a {
  display: block;
}

.eyebrow-nav-menu .welcome-block {
  margin-right: 10px;
  padding-right: 30px;
}

.eyebrow-nav-menu .welcome-block:after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  height: 16px;
  width: 1px;
  background: #666666;
  content: ' ';
  transform: translateY(-50%);
}

@media screen and (max-width: 959px) {
  .eyebrow-nav-menu .welcome-block {
    margin-right: 0;
    padding-right: 18px;
  }
  .eyebrow-nav-menu .welcome-block:after {
    display: none;
  }
  .eyebrow-nav-menu .eyebrow-nav-dropdown {
    display: none;
  }
}

.mobile-menu-trigger {
  top: 50px;
}

@media screen and (max-width: 359px) {
  .mobile-menu-trigger {
    font-size: 0;
  }
}

@media screen and (max-width: 959px) {
  .mobile-menu-trigger {
    top: 10px;
    display: flex;
    align-items: center;
    color: white;
  }
  .mobile-menu-trigger .hamburger {
    width: 24px;
    margin: 2px 10px 0 0;
  }
  .mobile-menu-trigger .hamburger span {
    background: white;
  }
}

.header-promo {
  background: #064f93;
  color: #FFFFFF;
  font: normal 20px/1 "Overpass-Light", sans-serif;
  text-align: center;
  text-transform: uppercase;
  strong-font-family: "Overpass-Bold", sans-serif;
}

.header-promo a {
  display: block;
  padding: 12px 0;
  color: inherit;
  text-decoration: none;
}

.header-main__bottom {
  position: relative;
}

.header-main__bottom > .page-wrapper {
  display: flex;
  align-items: center;
}

.header-nav {
  margin-left: auto;
}

.header-nav a {
  text-decoration: none;
}

.header-nav a:hover {
  text-decoration: none;
}

.header-nav > ul {
  display: flex;
}

.header-nav > ul > li > .menu-item {
  display: block;
  padding: 0 20px;
  color: #131315;
  font-size: 16px;
  line-height: 70px;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.header-nav > ul > li > .menu-item:hover {
  background-color: #E9E9E9;
}

@media screen and (max-width: 959px) {
  .header-nav {
    display: none;
  }
}

.header-nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  padding: 40px 0 25px 0;
  background: white;
  border-top: 1px solid #6E6E6E;
}

.header-nav__submenu:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
  content: '';
}

.header-nav__submenu .menu-items {
  display: flex;
}

.header-nav__submenu .menu-item--dynamic-image {
  position: relative;
}

.header-nav__submenu .menu-item--dynamic-image a,
.header-nav__submenu .menu-item--dynamic-image img {
  position: relative;
  display: block;
  z-index: 1;
}

.header-nav__submenu .menu-item--dynamic-image .menu-item__img-replacement {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.header-nav__submenu .menu-item--dynamic-image.swapped .menu-item__img-replacement {
  opacity: 1;
}

.header-nav__submenu .menu-item--group {
  flex: 1;
  padding: 20px 25px;
  border-right: solid #F3F3F3 2px;
}

.header-nav__submenu .menu-item--group:first-child {
  padding-left: 0;
}

.header-nav__submenu .menu-item--group:last-child {
  padding-right: 0;
  border-right: 0;
}

.header-nav__submenu .menu-item--image a {
  display: block;
}

.header-nav__submenu .menu-item--image .menu-item__img {
  display: block;
  height: 200px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0;
}

.header-nav__submenu .menu-item--label {
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.header-nav__submenu .menu-item--label a {
  color: inherit;
}

.header-nav__submenu .menu-item--label a:hover {
  color: #B0001D;
}

.header-nav__submenu .menu-item--link a {
  display: flex;
  align-items: center;
  color: inherit;
}

.header-nav__submenu .menu-item--link a:hover {
  color: #B0001D;
  font-weight: bold;
}

.header-nav__submenu .menu-item--link .menu-item__flag {
  position: relative;
  display: block;
  margin-left: 12px;
  padding: 6px 8px;
  color: white;
  font: bold 11px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
  z-index: 1;
}

.header-nav__submenu .menu-item--link .menu-item__flag:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #CCC;
  border: solid 2px #CCC;
  content: '';
  transform: skewX(-12deg);
  z-index: -1;
}

.header-nav__submenu .menu-item--link .menu-item__flag[data-flag="flag-red"]:after {
  background: #B0001D;
  border-color: #B0001D;
}

.header-nav__submenu .menu-item--link .menu-item__flag[data-flag="flag-red-outlined"] {
  color: #B0001D;
}

.header-nav__submenu .menu-item--link .menu-item__flag[data-flag="flag-red-outlined"]:after {
  background: none;
  border-color: #B0001D;
}

.header-nav__submenu .menu-item--link .menu-item__flag[data-flag="flag-black"]:after {
  background: #444444;
  border-color: #444444;
}

.header-nav__submenu .menu-item--link .menu-item__flag[data-flag="flag-black-outlined"] {
  color: #444444;
}

.header-nav__submenu .menu-item--link .menu-item__flag[data-flag="flag-black-outlined"]:after {
  background: none;
  border-color: #444444;
}

.header-nav__submenu .menu-item--image-link .menu-item__img {
  display: block;
  height: 200px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-nav__submenu .menu-item--image-link .menu-item__label {
  display: block;
  margin-top: 12px;
  color: #B0001D;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.header-nav__submenu .menu-item--image-link .menu-item__label:after {
  position: relative;
  top: -1px;
  display: inline-block;
  margin-left: 8px;
  content: '\00BB';
  font-size: 20px;
  line-height: 1;
}

.header-nav__submenu .menu-item--supplemental-link a {
  display: block;
  color: #B0001D;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.header-nav__submenu .menu-item--supplemental-link a:after {
  position: relative;
  top: -1px;
  display: inline-block;
  margin-left: 8px;
  content: '\00BB';
  font-size: 20px;
  line-height: 1;
}

.header-nav__submenu--dynamic-hover .menu-item--group:first-child {
  padding-right: 45px;
}

.header-nav__submenu--dynamic-hover .menu-item--group:first-child .menu-item--dynamic-image {
  margin-bottom: 15px;
}

.header-nav__submenu--dynamic-hover .menu-item--label {
  margin-bottom: 15px;
}

.header-nav__submenu--dynamic-hover .menu-item--link:not(:last-child) {
  margin-bottom: 15px;
}

.header-nav__submenu--dynamic-hover .menu-item--supplemental-link:not(:last-child) {
  margin-bottom: 15px;
}

.header-nav__submenu--image-based .menu-items {
  margin-left: -15px;
  margin-right: -15px;
}

.header-nav__submenu--image-based .menu-item {
  flex: 1;
  margin-left: 15px;
  margin-right: 15px;
}

.header-nav__submenu--image-based .menu-item a {
  display: block;
}

.header-nav__submenu--static-image-with-links .menu-item--group:first-child {
  flex: 2.25;
  padding-right: 45px;
}

.header-nav__submenu--static-image-with-links .menu-item--link {
  margin-bottom: 15px;
}

.header-nav__submenu--static-image-with-links .menu-item--link a {
  font-family: "Overpass-Bold", sans-serif;
}

.header-nav__submenu--static-image-with-links .menu-item--link a:hover {
  font-weight: inherit;
}

.header-search {
  position: relative;
  padding: 0 10px;
}

.header-search form {
  position: relative;
  width: 42px;
  overflow: visible;
}

.header-search .input-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  transition: width 0.3s ease;
}

.header-search .input-wrapper:after {
  position: absolute;
  top: 0;
  right: 100%;
  display: none;
  height: 100%;
  width: 30px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 60%);
  content: '';
}

.header-search svg {
  position: absolute;
  top: 50%;
  left: 10px;
  height: 14px;
  width: 15px;
  pointer-events: none;
  transform: translateY(-50%);
}

.header-search input[type="text"] {
  width: 100%;
  padding: 8px 0 8px 40px;
  border: solid #FFFFFF 1px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: widthx 0.5s ease, padding 0.5s ease, border-color 1.5s ease;
}

.header-search input[type="text"]::-webkit-input-placeholder, .header-search input[type="text"]::-moz-placeholder, .header-search input[type="text"]:-ms-input-placeholder {
  color: #B5B5B5;
  font: normal 1rem/1 "Overpass-Extra-Light", sans-serif;
  text-transform: uppercase;
}

.header-search input[type="submit"] {
  display: none;
}

@media screen and (max-width: 959px) {
  .header-search {
    display: none;
  }
}

body.search-active .header-nav {
  pointer-events: none;
}

body.search-active .header-search .input-wrapper {
  width: 250px;
}

body.search-active .header-search .input-wrapper:after {
  display: block;
}

body.search-active .header-search input[type="text"] {
  padding-left: 30px;
  border-color: #E7E7E7;
}

.mobile-navigation-container .accessories {
  /* POSSIBLY TEMPORARY */
}

.mobile-navigation-container .accessories .msg {
  display: block;
  padding: 13px 10px 13px 20px;
  border-bottom: 2px solid #d7d7d7;
  font: normal 1rem/1.25 "Overpass-Light", sans-serif;
}

.mobile-navigation-container .accessories .msg-title {
  margin-bottom: 5px;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.mobile-navigation-container .search-row {
  padding: 13px 10px;
}

.mobile-navigation-container .search-row form {
  position: relative;
}

.mobile-navigation-container .search-row svg {
  position: absolute;
  top: 50%;
  left: 15px;
  height: 20px;
  width: 19px;
  margin-top: -1px;
  transform: translateY(-50%);
  z-index: -1;
}

.mobile-navigation-container .search-row input[type="text"] {
  display: block;
  height: 44px;
  width: 100%;
  padding: 0 20px 0 40px;
  background: none;
  border: solid #b0001d 3px;
  border-radius: 22px;
  cursor: pointer;
  font-size: 16px;
  line-height: 40px;
}

.mobile-navigation-container .search-row input[type="text"]::-webkit-input-placeholder {
  color: #777777;
  font: normal 16px/40px "Overpass-Light", sans-serif;
  text-transform: uppercase;
}

.mobile-navigation-container .search-row input[type="text"]::-moz-placeholder {
  color: #777777;
  font: normal 16px/40px "Overpass-Light", sans-serif;
  text-transform: uppercase;
}

.mobile-navigation-container .search-row input[type="text"]:-ms-input-placeholder {
  color: #777777;
  font: normal 16px/40px "Overpass-Light", sans-serif;
  text-transform: uppercase;
}

.mobile-navigation-container .search-row input[type="submit"] {
  display: none;
}

.mobile-navigation-list > li .faux-link {
  display: block;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-family: "Overpass-Bold", sans-serif;
  padding: 13px 10px 13px 20px;
  border-bottom: 2px solid #d7d7d7;
  color: #b0001d;
}

.mobile-navigation-list .sub > li > .faux-link {
  color: #131315;
  font-family: "Overpass-Light", sans-serif;
}

.mobile-navigation-list .small-label {
  font-size: 12px;
  line-height: 1;
}

.main {
  padding-bottom: 20px;
}

@media screen and (min-width: 640px) {
  .main {
    padding: 20px 0 40px;
  }
}

@media screen and (min-width: 960px) {
  .main {
    padding: 30px 0 60px;
  }
}

.main h1, .main .h1 {
  margin: 0 0 0.8125rem;
  font: 700 2rem/2.625rem "Overpass-Bold", sans-serif;
}

.main h2, .main .h2 {
  margin: 0 0 0.5625rem;
  font: 700 1.5625rem/2.125rem "Overpass-Light", sans-serif;
}

.main h3, .main .h3 {
  margin: 0 0 0.5625rem;
  color: #262627;
  font: 300 1.375rem/1.875rem "Overpass-Light", sans-serif;
}

.main h4, .main .h4 {
  margin: 0 0 0.5625rem;
  color: #262627;
  font: 900 1rem/1.5rem "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 479px) {
  .footer-main .trimark-policy .trimark,
  .footer-main .trimark-policy .policy {
    width: 100%;
    text-align: center;
  }
  .footer-main .trimark-policy .policy {
    margin-top: 0;
  }
}

.control-panel {
  position: fixed;
  top: auto;
  bottom: 0;
  left: 20px;
  right: 20px;
  padding: 15px 45px 15px 15px;
  background: #FFFFFF;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 9999;
}

.control-panel[data-pos="top"] {
  top: 0;
  bottom: auto;
  border-radius: 0 0 5px 5px;
}

.control-panel[data-pos="bottom"] {
  top: auto;
  bottom: 0;
  border-radius: 5px 5px 0 0;
}

.control-panel li {
  float: left;
}

.control-panel li:not(:last-child) {
  margin-right: 20px;
}

.control-panel label {
  cursor: pointer;
}

.control-panel .ctrls {
  position: absolute;
  top: 50%;
  right: 15px;
  height: 30px;
  width: 14px;
  transform: translateY(-50%);
}

.control-panel .ctrl {
  position: absolute;
  left: 0;
  height: 14px;
  width: 14px;
  border: solid #d7d7d7 1px;
  cursor: pointer;
  text-align: center;
}

.control-panel .ctrl:after {
  display: block;
  height: 12px;
  width: 12px;
  color: #d7d7d7;
  font-size: 8px;
  line-height: 12px;
}

.control-panel .ctrl:hover {
  background: #d7d7d7;
}

.control-panel .ctrl:hover:after {
  color: #999999;
}

.control-panel .ctrl-top {
  top: 0;
}

.control-panel .ctrl-top:after {
  content: '\25B2';
}

.control-panel .ctrl-bottom {
  bottom: 0;
}

.control-panel .ctrl-bottom:after {
  content: '\25BC';
  line-height: 14px;
}

.breadcrumb-trail {
  margin-bottom: 40px;
  font: normal 13px/1 "Overpass-Light", sans-serif;
  overflow: hidden;
  text-transform: uppercase;
}

.breadcrumb-trail .cta {
  position: relative;
  float: left;
  margin-right: 8px;
  padding-left: 11px;
  padding-right: 11px;
}

.breadcrumb-trail .cta a {
  color: #131313;
}

.breadcrumb-trail .cta:before {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -2px;
  content: '\00ab';
  transform: translateY(-50%);
}

.breadcrumb-trail .cta:after {
  position: absolute;
  top: 50%;
  right: 0;
  color: #6E6E6E;
  content: '|';
  transform: translateY(-50%);
}

.breadcrumb-trail ul {
  float: left;
}

.breadcrumb-trail ul li {
  position: relative;
  float: left;
  margin-right: 5px;
  padding-right: 12px;
  color: #131313;
}

.breadcrumb-trail ul li a {
  color: #6E6E6E;
}

.breadcrumb-trail ul li a:hover {
  color: inherit;
}

.breadcrumb-trail ul li:not(:last-child):after {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -2px;
  color: #6E6E6E;
  content: '\00bb';
  transform: translateY(-50%);
}

.breadcrumb-trail ul li {
  padding-left: 0;
  font-size: inherit;
  line-height: inherit;
}

.breadcrumb-trail ul li:before {
  display: none;
}

@media screen and (max-width: 479px) {
  .breadcrumb-trail {
    display: none;
  }
}

.success-msg,
.error-msg,
.warn-msg,
.info-msg {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px;
  font: normal 14px/1.25 "Overpass-Light", sans-serif;
}

.success-msg.msg-center,
.error-msg.msg-center,
.warn-msg.msg-center,
.info-msg.msg-center {
  justify-content: center;
}

.success-msg b,
.error-msg b,
.warn-msg b,
.info-msg b {
  font-family: "Overpass-Bold", sans-serif;
}

.success-msg .ul,
.error-msg .ul,
.warn-msg .ul,
.info-msg .ul {
  margin-top: 8px;
}

.success-msg .ul li:before,
.error-msg .ul li:before,
.warn-msg .ul li:before,
.info-msg .ul li:before {
  content: '\2022';
}

.success-msg .alert_close-btn,
.error-msg .alert_close-btn,
.warn-msg .alert_close-btn,
.info-msg .alert_close-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  display: block;
  height: 20px;
  width: 20px;
  cursor: pointer;
  font-size: 0;
  text-align: center;
}

.success-msg .alert_close-btn:before, .success-msg .alert_close-btn:after,
.error-msg .alert_close-btn:before,
.error-msg .alert_close-btn:after,
.warn-msg .alert_close-btn:before,
.warn-msg .alert_close-btn:after,
.info-msg .alert_close-btn:before,
.info-msg .alert_close-btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 2px;
  width: calc(100% - 8px);
  background: black;
  border-radius: 1px;
  content: '';
}

.success-msg .alert_close-btn:before,
.error-msg .alert_close-btn:before,
.warn-msg .alert_close-btn:before,
.info-msg .alert_close-btn:before {
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center center;
}

.success-msg .alert_close-btn:after,
.error-msg .alert_close-btn:after,
.warn-msg .alert_close-btn:after,
.info-msg .alert_close-btn:after {
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center center;
}

.success-msg svg,
.error-msg svg,
.warn-msg svg,
.info-msg svg {
  flex-shrink: 0;
  display: block;
  height: 18px;
  width: 18px;
  margin-right: 5px;
}

.success-msg,
.info-msg {
  background: #eaf9ea;
  color: #008e12;
}

.success-msg .alert_close-btn:before, .success-msg .alert_close-btn:after,
.info-msg .alert_close-btn:before,
.info-msg .alert_close-btn:after {
  background: #008e12;
}

.success-msg svg,
.info-msg svg {
  fill: #008e12;
}

.error-msg {
  background: #fae7e9;
  color: #970019;
}

.error-msg .alert_close-btn:before, .error-msg .alert_close-btn:after {
  background: #970019;
}

.error-msg svg {
  fill: #970019;
}

.warn-msg {
  background: #fbf8e5;
  color: #957878;
}

.warn-msg .alert_close-btn:before, .warn-msg .alert_close-btn:after {
  background: #957878;
}

.warn-msg svg {
  fill: #957878;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  height: 100%;
  width: 100%;
  z-index: 999;
  overflow: auto;
  color: #6E6E6E;
  font: normal 16px/1.4 "Overpass-Light", sans-serif;
}

.modal .title {
  margin-bottom: 20px;
  color: #444345;
  font: normal 18px/1.25 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.modal .notice {
  margin: 20px 0;
  padding: 12px 15px;
  background: #ebebeb;
}

.modal .btn-wrapper {
  margin-top: 20px;
}

.modal .btn-wrapper .btn {
  margin-bottom: 5px;
  cursor: pointer;
}

.modal .btn-wrapper .btn:not(:last-child) {
  margin-right: 5px;
}

.modal .modal-cols {
  overflow: hidden;
}

.modal .modal-col {
  float: left;
  padding: 0 40px 20px 0;
}

.modal b {
  font-family: "Overpass-Bold", sans-serif;
}

.modal-body-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 640px;
  padding: 0 20px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.modal-body {
  position: relative;
  padding: 30px;
  background: #FFFFFF;
  border-radius: 3px;
}

.modal-btn-close {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 30px;
  width: 30px;
  background: #ffffff;
  border: solid #d7d7d7 1px;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  text-indent: -999px;
  transition: background 0.25s ease;
}

.modal-btn-close:after {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #999999;
  content: '\2715';
  font: normal 16px/29px "Overpass-Light", sans-serif;
  text-align: center;
  text-indent: 0;
  transition: color 0.25s ease;
}

.modal-btn-close:hover {
  background: #f1f1f1;
}

.modal-btn-close:hover:after {
  color: #4c4c53;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.p-w-r {
  margin: 0;
  color: #262627;
}

.p-w-r .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-stars .pr-snippet {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.p-w-r .pr-snippet-stars-reco-inline.pr-snippet-compact .pr-snippet-stars-container {
  margin-right: 10px;
}

.p-w-r .pr-snippet-stars-reco-inline.pr-snippet-compact .pr-snippet-read-and-write {
  margin: 5px 0;
}

.p-w-r .pr-snippet-stars-reco-inline.pr-snippet-compact .pr-snippet-read-and-write a {
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 11px !important;
  font-weight: normal;
  line-height: 1;
}

.p-w-r .pr-snippet-stars-reco-inline.pr-snippet-compact .pr-snippet-read-and-write a:not(:last-child) {
  margin-right: 10px;
}

.p-w-r .pr-snippet-stars-reco-inline.pr-snippet-compact .pr-snippet-stars-reco-reco {
  margin-top: 5px;
}

.p-w-r .pr-snippet-stars-reco-inline.pr-snippet-compact .pr-snippet-stars-reco-reco span {
  color: inherit;
  font-family: "Overpass-Bold", sans-serif;
}

.p-w-r .pr-snippet-stars-reco-inline.pr-snippet-compact .pr-snippet-stars-reco-reco .pr-checkbox-icon {
  display: none !important;
}

.p-w-r .pr-snippet-stars-reco-inline.pr-snippet-compact .pr-snippet-stars-reco-reco .pr-reco-to-friend-message {
  font-size: 11px;
  line-height: 1.1;
}

.p-w-r .pr-category-snippet {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.p-w-r .pr-category-snippet__rating {
  margin-right: 10px;
}

.p-w-r .pr-category-snippet__total {
  padding: 0;
  margin: 5px 0;
  font: normal 11px/1 "Overpass-Bold", sans-serif;
}

.p-w-r .pr-review-snapshot p {
  color: inherit;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header {
  margin-bottom: 30px;
  padding: 0 !important;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-header-intro {
  padding-top: 0;
  border-bottom-color: #e6e7e8;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-header-intro .pr-headline {
  padding: 0;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 30px !important;
  font-weight: 700;
  line-height: 1;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-stars {
  flex: 1;
  float: none;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-stars .pr-snippet {
  justify-content: center;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-stars .pr-snippet .pr-snippet-stars-container .pr-snippet-stars .pr-star-v4 {
  height: 24px;
  width: 24px;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-stars .pr-snippet .pr-snippet-stars-container .pr-snippet-stars .pr-snippet-rating-decimal {
  border: solid #ccc 1px;
  border-radius: 2px;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-stars .pr-snippet .pr-snippet-read-and-write {
  margin-top: 10px;
  margin-bottom: 10px;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-stars .pr-snippet .pr-snippet-read-and-write .pr-snippet-review-count {
  color: inherit;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 12px !important;
  font-style: normal;
  line-height: 1;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-stars .pr-snippet .pr-snippet-read-and-write .pr-snippet-write-review-link {
  color: #b0001d;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 12px !important;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-reco {
  float: none;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-reco .pr-snippet-reco-to-friend .pr-snippet-reco-to-friend-percent > span {
  display: none !important;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-reco .pr-snippet-reco-to-friend .pr-reco-to-friend-message {
  max-width: 170px;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 12px;
  line-height: 1.25;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-reco .pr-reco {
  color: inherit;
}

.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-reco .pr-reco-value {
  margin: 0 5px 0 0;
  padding: 0;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 30px;
}

@media screen and (max-width: 799px) {
  .p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-reco {
    width: 100%;
  }
  .p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-reco .pr-snippet-reco-to-friend {
    margin: 10px auto 0 auto;
  }
}

@media screen and (min-width: 800px) {
  .p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline {
    justify-content: space-between;
  }
  .p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-inline .pr-snippet-stars-reco-stars .pr-snippet {
    justify-content: flex-start;
  }
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container {
  display: flex;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 799px) {
  .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (min-width: 800px) {
  .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container {
    align-items: stretch;
    justify-content: center;
  }
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block {
  flex: 1 !important;
  float: none;
  width: auto !important;
  min-height: auto;
  padding: 20px 20px !important;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block .pr-review-snapshot-block-headline {
  font-family: "Overpass-Bold", sans-serif;
  font-size: 20px !important;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
}

@media screen and (max-width: 799px) {
  .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block {
    width: 100% !important;
    max-width: 500px;
    border: 0 !important;
  }
}

@media screen and (min-width: 800px) {
  .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block {
    border: solid #e6e7e8;
    border-width: 0 1px 0 0;
  }
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-review-snapshot-histogram {
  width: 100%;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars {
  transition: background-color 0.3s ease;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars:hover, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-1, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-2, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-3, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-4, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-5 {
  background: #e6e7e8;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars:hover .pr-ratings-histogram-bar, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-1 .pr-ratings-histogram-bar, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-2 .pr-ratings-histogram-bar, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-3 .pr-ratings-histogram-bar, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-4 .pr-ratings-histogram-bar, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-5 .pr-ratings-histogram-bar {
  background: white;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars:hover .pr-ratings-histogram-barValue, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-1 .pr-ratings-histogram-barValue, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-2 .pr-ratings-histogram-barValue, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-3 .pr-ratings-histogram-barValue, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-4 .pr-ratings-histogram-barValue, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-stars.pr-hist-filter-5 .pr-ratings-histogram-barValue {
  background-color: #b0001d;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-label,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-histogram-count {
  color: inherit !important;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 12px;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-ratings-histogram-barValue {
  height: 100%;
  background: #b0001d;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-ratings-histogram-bar {
  background: #e6e7e8;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering {
  height: auto;
  color: inherit;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering .pr-filter-btn,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering .pr-snapshot-highlight,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering .pr-filter-btn,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering .pr-snapshot-highlight {
  transition: background-color 0.3s ease;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering .pr-filter-btn,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering .pr-filter-btn {
  display: flex;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering .pr-filter-btn__child,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering .pr-filter-btn__child {
  font-family: "Overpass-Bold", sans-serif;
  font-size: 12px;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering .pr-snapshot-highlight,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering .pr-snapshot-highlight {
  background: #e6e7e8 !important;
  color: inherit;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering .pr-cross-icon,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering .pr-cross-icon {
  position: static;
  flex-shrink: 0;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering:hover, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering.pr-snapshot-tag-def-filtering--active,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering:hover,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering.pr-snapshot-tag-def-filtering--active {
  background: #e6e7e8;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering:hover .pr-filter-btn, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering.pr-snapshot-tag-def-filtering--active .pr-filter-btn,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering:hover .pr-filter-btn,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering.pr-snapshot-tag-def-filtering--active .pr-filter-btn {
  background: inherit;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering:hover .pr-snapshot-highlight, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-pros .pr-snapshot-tag-def-filtering.pr-snapshot-tag-def-filtering--active .pr-snapshot-highlight,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering:hover .pr-snapshot-highlight,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-cons .pr-snapshot-tag-def-filtering.pr-snapshot-tag-def-filtering--active .pr-snapshot-highlight {
  background: #b0001d !important;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-recommend .pr-snippet-reco-to-friend-green {
  background: none;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-recommend .pr-checkbox-icon {
  display: none !important;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-recommend .pr-reco,
.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-recommend .pr-reco-value {
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: "Overpass-Bold", sans-serif;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-recommend .pr-reco-to-friend-message {
  max-width: 170px;
  margin-top: 10px;
  padding: 0;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 12px;
  line-height: 1.25;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-snippets .pr-review-snapshot-snippets-headline {
  margin-bottom: 20px;
  color: inherit;
  font-family: "Overpass-Bold", sans-serif;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-snippets .pr-snippet-review-count {
  margin-top: 5px;
  margin-bottom: 20px;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 12px;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-snippets .pr-snippet-read-and-write a {
  width: 200px;
  padding: 17px 24px;
  background: #b0001d;
  border: solid #b0001d 1px;
  border-radius: 2px;
  color: white;
  font-size: 15px;
  font-family: "Overpass-Light", sans-serif;
  line-height: 1;
  letter-spacing: 1px;
  outline: none;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-snippets .pr-snippet-read-and-write a:hover, .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-snippets .pr-snippet-read-and-write a:focus {
  background-color: #ca0021;
  border-color: #ca0021;
  color: white;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-msq-container .pr-msq-list dt {
  height: auto;
  width: auto;
  padding-top: 3px;
  padding-right: 30px;
  color: inherit;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 14px;
  vertical-align: top;
  white-space: nowrap;
}

@media screen and (max-width: 479px) {
  .p-w-r .pr-review-snapshot .pr-review-snapshot-msq-container .pr-msq-list dt {
    display: block;
    margin-bottom: 5px;
  }
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-msq-container .pr-msq-list dd {
  padding: 0 10px 10px 0;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-msq-container .pr-msq-list .pr-filter-btn {
  border-color: #e6e7e8;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-msq-container .pr-msq-list .pr-filter-btn:hover {
  border-color: #cbced0;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-msq-container .pr-msq-list .pr-filter-btn:hover .pr-filter-btn__child {
  background: #cbced0;
  color: #262627;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-msq-container .pr-msq-list .pr-filter-btn.pr-filter-btn--active {
  border-color: #b0001d;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-msq-container .pr-msq-list .pr-filter-btn.pr-filter-btn--active .pr-filter-btn__child {
  background: #b0001d;
  color: white;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-msq-container .pr-msq-list .pr-filter-btn.pr-filter-btn--active .pr-filter-btn__child:last-child {
  border-left-color: rgba(255, 255, 255, 0.3);
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-msq-container .pr-msq-list .pr-filter-btn__child {
  background: #e6e7e8;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff {
  display: flex;
  margin-bottom: 30px;
  border-color: #e6e7e8;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-label {
  font-family: "Overpass-Bold", sans-serif;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-snippet-stars {
  margin-bottom: 20px;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-title {
  font-family: "Overpass-Bold", sans-serif;
  font-size: 16px;
  text-transform: none;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-readcomplete {
  bottom: 15px;
  color: #b0001d;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-readcomplete .pr-caret-icon__line {
  stroke: #b0001d;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-positive {
  float: none;
  width: auto;
  padding: 20px;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-negative {
  float: none;
  width: auto;
  padding: 20px;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-img {
  position: relative;
  top: auto;
  left: auto;
  height: 1px;
  width: 1px;
  background: #e6e7e8;
  border: none;
  float: none;
}

.p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-img-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  border-color: #e6e7e8;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 639px) {
  .p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff {
    flex-direction: column;
  }
  .p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-positive {
    padding-bottom: 30px;
  }
  .p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-negative {
    padding-top: 30px;
  }
  .p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-img {
    width: 100%;
  }
}

@media screen and (min-width: 640px) {
  .p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-img {
    height: auto;
  }
  .p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-positive {
    flex: 1;
    padding: 30px 40px 30px 30px;
  }
  .p-w-r .pr-review-snapshot .pr-review-snapshot-faceoff .pr-faceoff-negative {
    flex: 1;
    padding: 30px 30px 30px 40px;
  }
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header {
  margin-bottom: 30px;
  padding: 20px;
  background: #f2f2f2;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-contents {
  padding: 0;
  background: none;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-contents .pr-rd-review-total {
  float: none;
  margin-top: 0;
  margin-bottom: 10px;
  color: inherit;
  font: normal 15px/1 "Overpass-Bold", sans-serif;
  text-transform: none;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-contents .pr-rd-search-container {
  float: none;
  width: 100%;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-contents .pr-rd-search-container input {
  float: none;
  border-color: #d4d6d5;
  border-right: solid #d4d6d5 1px;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-contents .pr-rd-search-container .pr-rd-search-reviews-icon-button {
  border: none;
  background: none;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-contents .pr-rd-search-container .pr-rd-search-reviews-icon-button svg path {
  fill: #666;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts {
  display: flex;
  float: none;
  padding: 0;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts .pr-rd-sort-group {
  display: block;
  padding: 0;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts .pr-rd-sort-group .selector select {
  width: 100% !important;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts .pr-rd-sort-group .selector span {
  color: inherit;
  font-size: 15px;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts .pr-rd-sort {
  padding: 0;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar {
  margin: 0;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar .pr-review-filter-headline {
  float: none;
  display: block;
  margin: 30px 0 10px 0;
  color: #262627;
  font: normal 11px/1 "Overpass-Bold", sans-serif;
  letter-spacing: 0.5px;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar .pr-filter-btn {
  display: inline-flex;
  align-items: center;
  margin: 0 5px 5px 0;
  background: #d9d9d9;
  border-radius: 5px;
  line-height: 1;
  transition: background-color 0.3s ease;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar .pr-filter-btn span {
  display: block;
  color: inherit;
  font-size: 12px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar .pr-filter-btn .pr-cross-icon__circle {
  fill: #666;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar .pr-filter-btn .pr-cross-icon__line {
  stroke: white;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar .pr-filter-btn:hover {
  background: #b0001d;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar .pr-filter-btn:hover .pr-cross-icon {
  background: none;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar .pr-filter-btn:hover .pr-cross-icon__circle {
  fill: white;
  stroke: none;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar .pr-filter-btn:hover .pr-cross-icon__line {
  stroke: #b0001d;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar ~ div {
  width: 100%;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-display-search-no-results {
  padding: 20px 0 10px 0;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-display-search-no-results .pr-rd-no-results-msg {
  margin: 0;
  font-size: 15px;
  font-style: italic;
  text-transform: none;
}

@media screen and (max-width: 639px) {
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-contents {
    margin-bottom: 10px;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts .pr-rd-sort-group {
    flex: 1;
    padding: 0 5px;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts .pr-rd-sort-group:first-child {
    padding-left: 0;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts .pr-rd-sort-group:last-child {
    padding-right: 0;
  }
}

@media screen and (min-width: 640px) {
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-contents {
    flex: 1;
    padding-right: 10px;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts {
    display: flex;
    justify-content: space-between;
    flex: 1;
    padding-left: 10px;
    margin-left: -3px;
    margin-right: -3px;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts .pr-rd-sort-group {
    flex: 1;
    padding: 0 3px;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-review-filter-info-bar {
    width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header {
    align-items: center;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 2;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-contents .pr-rd-review-total {
    flex: 1;
    margin-bottom: 0;
    padding-right: 50px;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-contents .pr-rd-search-container {
    max-width: 300px;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts {
    margin-left: -10px;
    margin-right: -10px;
  }
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-header .pr-rd-review-header-sorts .pr-rd-sort-group {
    padding: 0 10px;
  }
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-review {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: solid #e6e7e8 2px;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-content-block p,
.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-content-block span,
.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-content-block time {
  color: inherit;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-content-block .pr-rd-bold {
  font-family: "Overpass-Bold", sans-serif;
}

@media screen and (max-width: 849px) {
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-content-block {
    width: 100%;
  }
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-star-rating {
  margin-right: 15px;
}

@media screen and (max-width: 639px) {
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-star-rating {
    float: none;
  }
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-review-headline {
  margin: 0;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 16px;
  text-transform: none;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-description-text {
  font-size: 15px;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-side-content-block {
  margin-bottom: 15px;
}

@media screen and (max-width: 849px) {
  .p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-side-content-block {
    position: static;
    float: none;
    padding: 0 !important;
  }
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-reviewer-details .pr-rd-details {
  font-size: 14px;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-reviewer-details .pr-rd-bold:after {
  margin-left: -2px;
  margin-right: 5px;
  content: ':';
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-bottomline .pr-rd-bold:after {
  margin-right: 10px;
  content: ':';
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-helpful-action-group {
  flex-wrap: wrap;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-helpful-action-legend {
  margin-right: 15px;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-helpful-action-btn-group {
  flex-shrink: 0;
  margin: 0 15px 0 0;
  border: solid #d4d6d5 1px;
  border-radius: 3px;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-helpful-btn {
  padding: 6px 10px 5px 10px;
  border: solid #d4d6d5 0;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-helpful-btn:not(:last-child) {
  padding-right: 14px;
  border-right-width: 1px;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-helpful-btn svg path {
  transition: fill 0.3s ease;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-helpful-btn:hover {
  background: none;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-helpful-btn:hover svg path {
  fill: #b0001d;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-flag-review-container a {
  color: #737373;
  transition: color 0.25s;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-flag-review-container a:hover {
  color: #b0001d;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-footer {
  margin-top: -10px;
  margin-bottom: 30px;
  padding: 0;
  border: none;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-footer a {
  color: #b0001d;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-footer .pr-rd-content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-footer .pr-rd-content-block > * {
  float: none;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-footer .pr-rd-review-position {
  margin-right: 15px;
}

.p-w-r .pr-review-display.pr-rd-display-tablet .pr-rd-main-footer .pr-rd-to-top {
  margin-right: 15px;
}

.p-w-r .pr-war {
  max-width: none;
}

.p-w-r .pr-alert-container {
  max-width: none;
}

/**
 * PowerReviews, Copyright 2020
 * HEAD | 37e254b70 | 11/5/2020
 */
/*******************************************/
/** POWER REVIEWS STYLE OVERRIDE TEMPLATE **/
/*******************************************/
/**
 * The following high-level CSS selectors can be utilized
 * to create a custom style theme for all PowerReviews
 * content.
 *
 * NOTE: If you wish to hide PowerReviews content,
 * please contact your PowerReviews Client Success
 * Representative.
 */
/**
* TYPOGRAPHY
* --------------------------------------------------
* Global Color & Typography Definitions
*/
.p-w-r,
.p-w-r span,
.p-w-r p,
.p-w-r h1,
.p-w-r h2,
.p-w-r h3,
.p-w-r h4,
.p-w-r h5,
.p-w-r h6 {
  color: #262627;
  font-family: "Overpass-Light", sans-serif;
}

.p-w-r a {
  color: inherit;
}

/**
* FORM LABELS
* --------------------------------------------------
* .p-w-r .pr-control-label > span // Selector that targets all field labels.
*/
/**
 * BUTTON GROUPS
 * --------------------------------------------------
 * .p-w-r .pr-btn // Selector that targets all buttons.
 * .p-w-r .btn-toggle .pr-btn-default // Selector that targets all unselected toggle buttons.
 * .p-w-r .btn-toggle .pr-btn-default.active // Selector that targets the selected toggle button.
 * .p-w-r .pr-btn-add-tag-submit // Selector that targets the "Add" button that appears aside the custom tag text input field.
 * .p-w-r .pr-btn-fileinput // Selector that targets the file input button.
 * .p-w-r .pr-btn-fileinput span // Selector that targets the file input button text.
 * .p-w-r .pr-btn-delete // Selector that targets the image preview delete button.
 */
/**
* STARS
* Rating Stars can be customized by overriding the
* background-image property of the 5 Star-related
* CSS classes
* --------------------------------------------------
* .pr-star-v4-0-filled    // Custom star image - filled 0%
* .pr-star-v4-25-filled   // Custom star image - filled 25%
* .pr-star-v4-50-filled   // Custom star image - filled 50%
* .pr-star-v4-75-filled   // Custom star image - filled 75%
* .pr-star-v4-100-filled  // Custom star image - filled 100%
*/
.p-w-r .pr-star-v4-0-filled {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHJlY3QgZmlsbD0iI2U2ZTdlOCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiByeD0iMiIvPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xMCwxMy41LDUuODksMTUuNjZsLjc4LTQuNThMMy4zNCw3Ljg0bDQuNi0uNjdMMTAsM2wyLjA2LDQuMTcsNC42LjY3LTMuMzMsMy4yNC43OCw0LjU4WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCkiLz48L3N2Zz4=);
}

.p-w-r .pr-star-v4-25-filled {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHJlY3QgZmlsbD0iI2U2ZTdlOCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiByeD0iMiIvPjxwYXRoIGZpbGw9IiNiMDAwMWQiIGQ9Ik0yLDBINVYyMEgyYTIsMiwwLDAsMS0yLTJWMkEyLDIsMCwwLDEsMiwwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCkiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTAsMTMuNSw1Ljg5LDE1LjY2bC43OC00LjU4TDMuMzQsNy44NGw0LjYtLjY3TDEwLDNsMi4wNiw0LjE3LDQuNi42Ny0zLjMzLDMuMjQuNzgsNC41OFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDApIi8+PC9zdmc+);
}

.p-w-r .pr-star-v4-50-filled {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHJlY3QgZmlsbD0iI2U2ZTdlOCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiByeD0iMiIvPjxwYXRoIGZpbGw9IiNiMDAwMWQiIGQ9Ik0yLDBoOFYyMEgyYTIsMiwwLDAsMS0yLTJWMkEyLDIsMCwwLDEsMiwwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCkiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTAsMTMuNSw1Ljg5LDE1LjY2bC43OC00LjU4TDMuMzQsNy44NGw0LjYtLjY3TDEwLDNsMi4wNiw0LjE3LDQuNi42Ny0zLjMzLDMuMjQuNzgsNC41OFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDApIi8+PC9zdmc+);
}

.p-w-r .pr-star-v4-75-filled {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHJlY3QgZmlsbD0iI2U2ZTdlOCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiByeD0iMiIvPjxwYXRoIGZpbGw9IiNiMDAwMWQiIGQ9Ik0yLDBIMTVWMjBIMmEyLDIsMCwwLDEtMi0yVjJBMiwyLDAsMCwxLDIsMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDApIi8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTEwLDEzLjUsNS44OSwxNS42NmwuNzgtNC41OEwzLjM0LDcuODRsNC42LS42N0wxMCwzbDIuMDYsNC4xNyw0LjYuNjctMy4zMywzLjI0Ljc4LDQuNThaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwKSIvPjwvc3ZnPg==);
}

.p-w-r .pr-star-v4-100-filled {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHJlY3QgZmlsbD0iI2U2ZTdlOCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiByeD0iMiIvPjxyZWN0IGZpbGw9IiNiMDAwMWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcng9IjIiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTAsMTMuNSw1Ljg5LDE1LjY2bC43OC00LjU4TDMuMzQsNy44NGw0LjYtLjY3TDEwLDNsMi4wNiw0LjE3LDQuNi42Ny0zLjMzLDMuMjQuNzgsNC41OFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDApIi8+PC9zdmc+);
}

/**
* TEXT INPUTS
* --------------------------------------------------
* .p-w-r .pr-textinput  // Text Input Styles
* .p-w-r .pr-textinput:focus // Focused Text Input Styles
*/
/**
* TEXT AREAS
* --------------------------------------------------
* .p-w-r input[type="text"] // Text Area Styles
* .p-w-r input[type="text"]:focus // Focused Text Area Styles
*/
/**
* CHECKBOX/RADIO INPUT OPTION LABELS
* --------------------------------------------------
* .p-w-r .tag-label // Checkbox Radio Input Label Styles
*/
/**
* ERROR STATES
* --------------------------------------------------
* .p-w-r .pr-has-error .control-label span // Form Field Label Error State Styles
* .p-w-r .pr-has-error .form-control // Text Input & Text Area Error State Styles
* .p-w-r .pr-has-error input[type="text"]:focus // Focused Text Input & Text Area Error State Styles
*/
/**
* MOBILE STYLES
* --------------------------------------------------
*/
@media screen and (max-width: 767px) {
  /**
	* CHECKBOX/RADIO INPUT OPTION LABELS
	* --------------------------------------------------
	* .p-w-r .checkbox label, .p-w-r .radio label // Unselected Styles
	* .p-w-r .checkbox label.checked, .p-w-r .radio label.checked // Selected Styles
	*/
  /**
	* TAG GROUP 'ADD ITEM' BUTTON
	* --------------------------------------------------
	*/
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip i {
  display: block;
  height: 13px;
  width: 13px;
  border: solid #bebebe 1px;
  border-radius: 50%;
  color: #717171;
  font: normal 10px/11px "Overpass-Light", sans-serif;
  text-align: center;
}

.tooltip:before, .tooltip:after {
  position: absolute;
  left: 50%;
  display: none;
  transform: translateX(-50%);
}

.tooltip:before {
  bottom: 22px;
  width: 180px;
  padding: 9px 12px;
  background: rgba(52, 52, 52, 0.95);
  border-radius: 2px;
  color: #FFFFFF;
  content: attr(data-tooltip);
  font: normal 12px/1.25 "Overpass-Light", sans-serif !important;
  text-align: center;
  text-transform: none;
}

.tooltip:after {
  position: absolute;
  bottom: 16px;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: rgba(52, 52, 52, 0.95) transparent transparent transparent;
  content: '';
}

.tooltip.active:before, .tooltip.active:after {
  display: block;
}

.tooltip.tooltip--left:before, .tooltip.left:before {
  left: -20px;
  right: auto;
  text-align: left;
  transform: translateX(0);
}

.tooltip.tooltip--left-force:before, .tooltip.left-force:before {
  left: 0px !important;
  right: auto !important;
  transform: translateX(0);
}

.tooltip.tooltip--right:before, .tooltip.right:before {
  left: auto;
  right: -20px;
  text-align: left;
  transform: translateX(0);
}

.tooltip.tooltip--right-force:before, .tooltip.right-force:before {
  left: auto !important;
  right: -20px !important;
  transform: translateX(0);
}

.tooltip.tooltip--compressed:before, .tooltip.compressed:before {
  width: auto;
  padding: 3px 6px;
  white-space: nowrap;
}

/*
Sample:
<div class="form-tooltip-wrapper">
	<input class="input-has-tooltip" />
	<div class="form-tooltip">[tooltip content goes here]</div>
</div>
*/
.form-tooltip-wrapper {
  position: relative;
}

.form-tooltip {
  position: absolute;
  display: none;
  min-width: 200px;
  max-width: 315px;
  padding: 10px 15px 12px 15px;
  background: rgba(52, 52, 52, 0.95);
  border-radius: 2px;
  color: #FFFFFF;
  font: normal 12px/1.25 "Overpass-Light", sans-serif !important;
  text-transform: none;
  transition: opacity 0.5s ease;
  z-index: 999;
}

.form-tooltip * {
  font-size: inherit;
  line-height: inherit;
}

.form-tooltip .ul {
  margin-top: 15px;
  margin-bottom: 15px;
}

.form-tooltip .ul li:before {
  color: #FFFFFF;
  content: '\2022';
}

.form-tooltip > *:first-child {
  margin-top: 0;
}

.form-tooltip > *:last-child {
  margin-bottom: 0;
}

.form-tooltip:after {
  position: absolute;
  height: 0;
  width: 0;
  border-style: solid;
  content: '';
}

.form-tooltip[data-pos="right"] {
  top: 0;
  left: calc(100% + 10px);
  left: 102%;
}

.form-tooltip[data-pos="right"]:after {
  top: 15px;
  right: 100%;
  border-width: 6px 6px 6px 0;
  border-color: transparent rgba(52, 52, 52, 0.95) transparent transparent;
}

.form-tooltip[data-pos="right"].vertically-align {
  top: 50%;
  transform: translateY(-50%);
}

.form-tooltip[data-pos="right"].vertically-align:after {
  top: 50%;
  transform: translateY(-50%);
}

.form-tooltip[data-pos="bottom"] {
  top: calc(100% + 10px);
  top: 120%;
  left: 0;
}

.form-tooltip[data-pos="bottom"]:after {
  bottom: 100%;
  left: 10px;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent rgba(52, 52, 52, 0.95) transparent;
}

.hero-slider-container {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.hero-slider-container .hero-slider-list-item {
  position: relative;
  cursor: pointer;
}

.hero-slider-container .hero-slider-list-item a {
  display: block;
  text-decoration: none;
}

.hero-slider-container .hero-slider-list-item picture,
.hero-slider-container .hero-slider-list-item img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.hero-slider-container .hero-slider-list-item .btn-wrapper {
  position: absolute;
  bottom: 15%;
  right: 10%;
}

@media screen and (min-width: 1280px) {
  .hero-slider-container .hero-slider-list-item .btn-wrapper {
    right: 12%;
  }
}

.hero-slider-container .hero-slider-list-item .more-btn {
  display: none;
  position: relative !important;
  bottom: auto !important;
  right: auto !important;
  margin-bottom: 10px;
  font-size: 78%;
  font-family: "Overpass-Bold", sans-serif;
  letter-spacing: 0;
  background-color: transparent;
  border: 1.5px solid;
  line-height: 1.2;
  padding: 8px 12px;
  text-align: center;
  text-transform: uppercase;
  opacity: 1;
  transition: all 0.3s;
  background: transparent;
  transition: all 0.3s;
}

.hero-slider-container .hero-slider-list-item .more-btn:last-child {
  margin-bottom: 0;
}

.hero-slider-container .hero-slider-list-item .more-btn.hide {
  opacity: 0;
}

@media screen and (min-width: 960px) {
  .hero-slider-container .hero-slider-list-item .more-btn {
    display: block;
    font-size: 24px;
    padding: 12px 26px;
    border-width: 2px;
    bottom: 100px;
  }
}

@media screen and (min-width: 960px) and (max-width: 1279px) {
  .hero-slider-container .hero-slider-list-item .more-btn {
    font-size: 18px;
    padding: 10px 26px;
  }
}

.hero-slider-container .hero-slider-list-item .more-btn.color-option-white {
  border-color: white;
  color: white;
}

.hero-slider-container .hero-slider-list-item .more-btn.color-option-white:hover {
  background: white;
  color: #131315;
}

.hero-slider-container .hero-slider-list-item .more-btn.color-option-black {
  border-color: #131315;
  color: #131315;
}

.hero-slider-container .hero-slider-list-item .more-btn.color-option-black:hover {
  background: #131315;
  color: white;
}

.hero-slider-container .hero-slider-list-item .more-btn.color-option-red {
  border-color: #b0001d;
  color: #b0001d;
}

.hero-slider-container .hero-slider-list-item .more-btn.color-option-red:hover {
  background: #b0001d;
  color: white;
}

.hero-slider-container .hero-slider-list-item .more-btn.color-option-green {
  border-color: #cede00;
  color: #131315;
}

.hero-slider-container .hero-slider-list-item .more-btn.color-option-green:hover {
  background: #cede00;
  color: #131315;
}

.hero-slider-container .hero-slider-list-item [class*="triangle-slider-control"] {
  position: absolute;
  text-indent: -9999px;
}

.hero-slider-container .slider-controls {
  right: 10px;
  top: 50%;
  position: absolute;
  transform: translate(0, -50%);
  z-index: 100;
  display: none;
}

@media screen and (min-width: 960px) {
  .hero-slider-container .slider-controls {
    right: 40px;
    display: block;
  }
}

.hero-slider-container .slider-controls a {
  background-color: rgba(0, 0, 0, 0.15);
  width: 8px;
  height: 35px;
  display: block;
  text-indent: -9999px;
  margin-bottom: 2px;
  transition: all 0.3s;
}

.hero-slider-container .slider-controls a.active, .hero-slider-container .slider-controls a:hover {
  background-color: #36373a;
}

@media screen and (min-width: 640px) {
  .hero-slider-container .slider-controls a {
    height: 70px;
    width: 10px;
  }
}

.yearly-tour-stats-container {
  position: relative;
  overflow: hidden;
  max-width: 320px;
  margin: -30px auto 0;
  padding: 9px;
  background-color: #ebebeb;
  border: 1px solid #b7b7b7;
  text-align: center;
}

.yearly-tour-stats-container .stats-title {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-family: "Overpass-Bold", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 0 14px;
  border-bottom: 1px solid #b7b7b7;
  margin: 0 0 26px;
}

.yearly-tour-stats-container .stats-title:after, .yearly-tour-stats-container .stats-title:before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  left: 50%;
  bottom: -11px;
  margin-left: -13px;
}

.yearly-tour-stats-container .stats-title:after {
  border-width: 11px 14.5px 0 14.5px;
  border-color: #b7b7b7 transparent transparent transparent;
  z-index: 1;
}

.yearly-tour-stats-container .stats-title:before {
  border-width: 10px 12.5px 0 12.5px;
  border-color: #ebebeb transparent transparent transparent;
  z-index: 2;
  bottom: -10px;
  margin-left: -11px;
}

.yearly-tour-stats-container .tour-stats-counter {
  width: 100%;
  overflow: hidden;
}

.yearly-tour-stats-container .tour-stats-counter h4 {
  float: left;
  width: 73.21429%;
  font-family: "Overpass-Light", sans-serif;
  font-size: 1.875rem;
  line-height: 1.9375rem;
  margin: 0;
  text-transform: uppercase;
}

.yearly-tour-stats-container .tour-stats-counter h4 span {
  display: block;
  font-family: "Overpass-Extra-Light", sans-serif;
  font-weight: 100;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  text-transform: capitalize;
}

.yearly-tour-stats-container .tour-stats-counter img {
  float: left;
}

@media screen and (min-width: 640px) {
  .yearly-tour-stats-container {
    max-width: 480px;
    margin: -26px auto 0;
  }
  .yearly-tour-stats-container .stats-title {
    line-height: 1.0625rem;
    padding: 26px 0;
    border-bottom: none;
    border-right: 1px solid #b7b7b7;
    margin: 0;
    float: left;
    width: 34.78261%;
  }
  .yearly-tour-stats-container .stats-title:after, .yearly-tour-stats-container .stats-title:before {
    left: auto;
    bottom: auto;
    right: -11px;
    margin-left: 0;
    margin-top: -14px;
    top: 50%;
  }
  .yearly-tour-stats-container .stats-title:after {
    border-width: 14.5px 0 14.5px 11px;
    border-color: transparent transparent transparent #b7b7b7;
  }
  .yearly-tour-stats-container .stats-title:before {
    border-width: 12.5px 0 12.5px 10px;
    border-color: transparent transparent transparent #ebebeb;
    bottom: auto;
    right: -10px;
    margin-top: -12px;
  }
  .yearly-tour-stats-container .tour-stats-counter {
    width: 65.21739%;
    float: left;
    padding-top: 16px;
  }
}

@media screen and (min-width: 960px) {
  .yearly-tour-stats-container {
    max-width: 940px;
    margin-top: -29px;
  }
  .yearly-tour-stats-container .stats-title {
    font-size: 1.875rem;
    line-height: 1;
    width: 65.42553%;
  }
  .yearly-tour-stats-container .tour-stats-counter {
    width: 34.57447%;
    padding-top: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .yearly-tour-stats-container {
    max-width: 1100px;
    margin-top: -35px;
  }
  .yearly-tour-stats-container .stats-title {
    width: 62.72727%;
  }
  .yearly-tour-stats-container .tour-stats-counter {
    width: 25.45455%;
    margin-left: 70px;
  }
}

.grip-product-container {
  position: relative;
}

.grip-product-container > .page-wrapper {
  max-width: 280px;
  margin: 20px auto 0;
  position: relative;
}

@media screen and (min-width: 640px) {
  .grip-product-container > .page-wrapper {
    max-width: 500px;
  }
}

@media screen and (min-width: 960px) {
  .grip-product-container > .page-wrapper {
    max-width: 780px;
  }
}

@media screen and (min-width: 1280px) {
  .grip-product-container > .page-wrapper {
    max-width: 1100px;
  }
}

.grip-product-container .product-list-nav {
  position: absolute;
  top: 50%;
  height: 30px;
  margin-left: -15px;
  width: 100%;
}

.grip-product-container .product-list-nav a, .grip-product-container .product-list-nav svg {
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 30px;
}

.grip-product-container .product-list-nav .product-list-prev {
  left: -20px;
}

.grip-product-container .product-list-nav .product-list-next {
  right: -30px;
}

.grip-product-list {
  width: 100%;
}

.grip-product-list .product-list-item {
  width: 75px;
  min-height: 354px;
}

@media screen and (min-width: 640px) {
  .grip-product-list .product-list-item {
    width: 110px;
    min-height: 494px;
  }
}

@media screen and (min-width: 960px) {
  .grip-product-list .product-list-item {
    width: 98px;
    min-height: 446px;
  }
}

@media screen and (min-width: 1280px) {
  .grip-product-list .product-list-item {
    width: 100px;
    min-height: 454px;
  }
}

.grip-product-list .product-list-item a {
  width: 75px;
  display: block;
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 640px) {
  .grip-product-list .product-list-item a {
    width: 110px;
  }
}

@media screen and (min-width: 960px) {
  .grip-product-list .product-list-item a {
    width: 98px;
  }
}

@media screen and (min-width: 1280px) {
  .grip-product-list .product-list-item a {
    width: 100px;
  }
}

.grip-product-list .product-list-item a img {
  transition: all 0.3s;
}

.grip-product-list .product-list-item:hover img {
  transform: scale(1.1);
}

.grip-product-list .product-list-item .product-title {
  font-size: 0.75rem;
  line-height: 0.875rem;
  padding: 6px 5px 0;
  margin: 0;
  min-height: 68px;
  opacity: 0;
  transition: opacity 0.3s;
}

@media screen and (min-width: 640px) {
  .grip-product-list .product-list-item .product-title {
    min-height: 54px;
  }
}

.grip-product-list .product-list-item:hover .product-title {
  opacity: 1;
}

.shop-grips-bar {
  position: relative;
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1;
  padding: 20px 30px 20px 0;
  background-color: #262627;
}

.shop-grips-bar:after {
  position: absolute;
  content: '';
  width: 17px;
  height: 17px;
  background: transparent url(../svg/src/icon-double-arrow-med-b5b5b5.svg) 0 0 no-repeat;
  background-size: cover;
  top: 20px;
  left: 50%;
  margin-left: 85px;
}

.shop-grips-bar:hover {
  background-color: #131315;
  font-family: "Overpass-Bold", sans-serif;
}

.shop-grips-bar:hover:after {
  background-image: url(../svg/src/icon-double-arrow-med-fff.svg);
}

.home-ctas-list {
  width: 100%;
  overflow: hidden;
}

.home-ctas-list .home-ctas-list-item {
  display: block;
  width: 100%;
  overflow: hidden;
}

.home-ctas-list .home-ctas-list-item.find {
  background-color: #202b5d;
}

.home-ctas-list .home-ctas-list-item.visit {
  background-color: #711414;
}

.home-ctas-list .home-ctas-list-item.play {
  background-color: #444345;
}

.home-ctas-list .home-ctas-list-item a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 30px;
  overflow: hidden;
  transition: background-color 0.3s;
}

.home-ctas-list .home-ctas-list-item a:active {
  background-color: #262627 !important;
}

.home-ctas-list .home-ctas-list-item p {
  color: white;
  font-size: 1.125rem;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  transition: transform 0.3s;
}

.home-ctas-list .home-ctas-list-item p span {
  transition: transform 0.3s;
  display: block;
  font-size: 2rem;
}

.home-ctas-list .home-ctas-list-item svg {
  display: block;
  margin: 0 auto;
  width: 55px;
  height: 50px;
  fill: #fff;
  transition: transform 0.3s;
}

.home-ctas-list .home-ctas-list-item:hover p {
  transform: translateY(7px);
}

.home-ctas-list .home-ctas-list-item:hover svg {
  transform: translateY(-7px);
}

@media screen and (max-width: 640px) {
  .home-ctas-list .home-ctas-list-item .container {
    max-width: 260px;
    margin: 0 auto;
  }
  .home-ctas-list .home-ctas-list-item p {
    text-align: left;
    float: left;
    width: 205px;
  }
  .home-ctas-list .home-ctas-list-item svg {
    float: left;
  }
}

@media screen and (min-width: 640px) {
  .home-ctas-list .home-ctas-list-item {
    width: 33.33333%;
    float: left;
  }
  .home-ctas-list .home-ctas-list-item svg {
    margin: 24px auto 10px;
  }
}

@media screen and (min-width: 960px) {
  .home-ctas-list .home-ctas-list-item {
    background-size: cover;
  }
  .home-ctas-list .home-ctas-list-item.find {
    background-image: url("https://images.eaton.com/ecm/groups/public/@pub/@estore/@hydr/documents/content/dev_1041526.jpg");
  }
  .home-ctas-list .home-ctas-list-item.find a {
    background-color: rgba(32, 43, 93, 0.8);
  }
  .home-ctas-list .home-ctas-list-item.visit {
    background-image: url("https://images.eaton.com/ecm/groups/public/@pub/@estore/@hydr/documents/content/dev_1041528.jpg");
  }
  .home-ctas-list .home-ctas-list-item.visit a {
    background-color: rgba(113, 20, 20, 0.8);
  }
  .home-ctas-list .home-ctas-list-item.play {
    background-image: url("https://images.eaton.com/ecm/groups/public/@pub/@estore/@hydr/documents/content/dev_1041527.jpg");
  }
  .home-ctas-list .home-ctas-list-item.play a {
    background-color: rgba(68, 67, 69, 0.8);
  }
  .home-ctas-list .home-ctas-list-item a {
    padding-top: 43px;
  }
}

@media screen and (min-width: 1280px) {
  .home-ctas-list .home-ctas-list-item a {
    padding-top: 61px;
    padding-bottom: 71px;
  }
}

.tour-stats-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 640px) {
  .tour-stats-container {
    padding-top: 55px;
  }
}

@media screen and (min-width: 1280px) {
  .tour-stats-container {
    padding-top: 90px;
  }
}

.tour-stats-container .tour-stats-bg-asset {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: url("https://images.eaton.com/ecm/groups/public/@pub/@estore/@hydr/documents/content/dev_1041529.jpg");
  background-size: cover;
}

.tour-stats-container .tour-stats-bg-asset video {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translate(0, -50%);
}

.tour-stats-container .tour-stats-bg-asset:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

.tour-stats-container .tour-stats-copy-container {
  display: none;
}

@media screen and (min-width: 640px) {
  .tour-stats-container .tour-stats-copy-container {
    display: block;
    text-align: center;
    max-width: 460px;
    margin: 0 auto;
  }
  .tour-stats-container .tour-stats-copy-container h2 {
    color: white;
    font-size: 1.875rem;
    line-height: 2.1875rem;
    text-align: center;
    margin-bottom: 10px;
  }
  .tour-stats-container .tour-stats-copy-container p {
    color: white;
    font-family: "Overpass-Extra-Light", sans-serif;
    font-size: 0.875rem;
    line-height: 1.125rem;
    margin: 0;
    text-align: center;
  }
}

@media screen and (min-width: 960px) {
  .tour-stats-container .tour-stats-copy-container {
    max-width: 780px;
  }
  .tour-stats-container .tour-stats-copy-container h2 {
    font-size: 3.125rem;
    line-height: 3.75rem;
  }
  .tour-stats-container .tour-stats-copy-container p {
    font-size: 0.9375rem;
    line-height: 1.1875rem;
  }
}

.tour-stats-container .tour-stats-list-container {
  max-width: 245px;
  margin: 40px auto 50px;
}

.tour-stats-container .tour-stats-list-container img {
  display: block;
  width: 100%;
  max-width: none;
}

.tour-stats-container .tour-stats-list-container .tour-stats-list-item {
  min-height: 62px;
}

@media screen and (min-width: 640px) {
  .tour-stats-container .tour-stats-list-container {
    margin-top: 30px;
    margin-bottom: 65px;
  }
}

@media screen and (min-width: 960px) {
  .tour-stats-container .tour-stats-list-container {
    max-width: 780px;
  }
  .tour-stats-container .tour-stats-list-container .tour-stats-list {
    width: 100%;
    overflow: hidden;
  }
  .tour-stats-container .tour-stats-list-container .tour-stats-list .tour-stats-list-item {
    width: 220px;
    float: left;
  }
  .tour-stats-container .tour-stats-list-container .tour-stats-list .tour-stats-list-item:nth-of-type(4) {
    display: none;
  }
  .tour-stats-container .tour-stats-list-container .tour-stats-list .tour-stats-list-item:nth-of-type(2) {
    margin: 0 60px;
  }
}

@media screen and (min-width: 1280px) {
  .tour-stats-container .tour-stats-list-container {
    max-width: 1100px;
    margin-top: 45px;
    margin-bottom: 115px;
  }
  .tour-stats-container .tour-stats-list-container .tour-stats-list .tour-stats-list-item {
    margin-right: 73.3333px;
  }
  .tour-stats-container .tour-stats-list-container .tour-stats-list .tour-stats-list-item:nth-of-type(4) {
    display: block;
    margin-right: 0;
  }
  .tour-stats-container .tour-stats-list-container .tour-stats-list .tour-stats-list-item:nth-of-type(2) {
    margin: 0;
    margin-right: 73.3333px;
  }
}

.grip-tech-container .grip-tech-tabs {
  display: none;
}

@media screen and (min-width: 640px) {
  .grip-tech-container .grip-tech-tabs {
    display: block;
    max-width: 740px;
    margin: 70px auto 50px;
  }
  .grip-tech-container .grip-tech-tabs a {
    float: left;
    width: 20%;
    height: 72px;
    font-size: 1.125rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    color: #6e6e6e;
    text-decoration: none;
    text-align: center;
    border: solid transparent;
    border-width: 1px;
    border-right-color: #6e6e6e;
    transition: all 0.3s;
    padding: 12px;
  }
  .grip-tech-container .grip-tech-tabs a:first-of-type.active {
    border-left-color: #6e6e6e;
    border-left-width: 1px;
  }
  .grip-tech-container .grip-tech-tabs a:last-of-type {
    border-right-color: transparent;
  }
  .grip-tech-container .grip-tech-tabs a.active {
    border-color: #6e6e6e;
    border-left-color: transparent;
    background-color: #ebebeb;
    position: relative;
  }
  .grip-tech-container .grip-tech-tabs a.active:after, .grip-tech-container .grip-tech-tabs a.active:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    left: 50%;
    bottom: -11px;
    margin-left: -13px;
  }
  .grip-tech-container .grip-tech-tabs a.active:after {
    border-width: 11px 14.5px 0 14.5px;
    border-color: #6e6e6e transparent transparent transparent;
    z-index: 1;
  }
  .grip-tech-container .grip-tech-tabs a.active:before {
    border-width: 10px 12.5px 0 12.5px;
    border-color: #ebebeb transparent transparent transparent;
    z-index: 2;
    bottom: -10px;
    margin-left: -11px;
  }
}

.grip-tech-container .grip-tech-list {
  position: relative;
  margin: 70px auto 0;
  max-width: 420px;
}

@media screen and (min-width: 640px) {
  .grip-tech-container .grip-tech-list {
    max-width: none;
    margin: 0;
  }
}

.grip-tech-container .grip-tech-list-item {
  background-color: #d7d7d7;
  border: 1px solid #b5b5b5;
  transition: all 0.3s;
  padding: 0 0 190px;
  margin-bottom: 40px;
  transition: all 0.3s;
  text-align: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.grip-tech-container .grip-tech-list-item .mobile-only {
  font-family: "Overpass-Bold", sans-serif;
  font-size: 1.25rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  padding: 20px 25px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.grip-tech-container .grip-tech-list-item .mobile-only svg {
  float: right;
  width: 17px;
  height: 22px;
  transition: all 0.3s;
}

.grip-tech-container .grip-tech-list-item .mobile-hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.grip-tech-container .grip-tech-list-item .h1 {
  margin-bottom: 11px;
}

.grip-tech-container .grip-tech-list-item .h2 {
  font-size: 1.375rem;
  line-height: 1.6875rem;
  font-family: "Overpass-Extra-Light", sans-serif;
  margin-bottom: 30px;
  text-transform: none;
}

@media screen and (min-width: 960px) {
  .grip-tech-container .grip-tech-list-item .h2 {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.grip-tech-container .grip-tech-list-item .btn {
  margin: 0 10px 10px;
  font-family: "Overpass-Bold",sans-serif;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  letter-spacing: 0;
  border-radius: 0;
}

.grip-tech-container .grip-tech-list-item .btn:hover {
  transform: skew(-10deg);
}

.grip-tech-container .grip-tech-list-item.active {
  background-color: white;
  border-color: white;
  padding-bottom: 0;
}

.grip-tech-container .grip-tech-list-item.active .mobile-only {
  background-color: #d7d7d7;
  border: 1px solid #b5b5b5;
  margin-bottom: 60%;
}

.grip-tech-container .grip-tech-list-item.active .mobile-only svg {
  transform: rotate(135deg);
}

.grip-tech-container .grip-tech-list-item.active .mobile-hidden {
  max-height: 1100px;
  opacity: 1;
}

@media screen and (min-width: 640px) {
  .grip-tech-container .page-wrapper {
    padding: 0;
  }
  .grip-tech-container .grip-tech-list-item {
    background-color: transparent;
    border: none;
    padding-bottom: 0;
  }
  .grip-tech-container .grip-tech-list-item .mobile-only {
    display: none;
  }
  .grip-tech-container .grip-tech-list-item .mobile-hidden {
    max-height: 1100px;
    opacity: 1;
  }
  .grip-tech-container .grip-tech-list-item .shop-buttons {
    margin: 40.625% auto 0;
    max-width: none;
  }
}

@media screen and (min-width: 960px) {
  .grip-tech-container .page-wrapper {
    padding: 0 10px;
  }
  .grip-tech-container .grip-tech-list-item {
    background-size: contain;
  }
  .grip-tech-container .grip-tech-list-item .shop-buttons {
    margin-top: 39.0625%;
    margin-bottom: 40px;
  }
}

.product-overlay-container {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  transition: opacity 0.3s 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999;
  bottom: 0;
  background-color: white;
}

.product-overlay-container.active {
  max-height: 800px;
  opacity: 1;
  min-height: 450px;
}

@media screen and (min-width: 640px) {
  .product-overlay-container.active {
    min-height: 490px;
  }
}

@media screen and (min-width: 960px) {
  .product-overlay-container.active {
    min-height: 520px;
  }
}

@media screen and (min-width: 1280px) {
  .product-overlay-container.active {
    min-height: 560px;
  }
}

.product-overlay-container .wrapper {
  max-width: 380px;
  padding: 0 10px;
  margin: 0 auto;
}

@media screen and (min-width: 640px) {
  .product-overlay-container .wrapper {
    max-width: 460px;
  }
}

@media screen and (min-width: 960px) {
  .product-overlay-container .wrapper {
    max-width: 940px;
  }
}

@media screen and (min-width: 1280px) {
  .product-overlay-container .wrapper {
    max-width: 1260px;
  }
}

.product-overlay-container .product-list-control {
  position: relative;
  display: inline;
  width: 12px;
  height: 31px;
  float: left;
  margin: 25px 30px 0 0;
  cursor: pointer;
}

@media screen and (min-width: 640px) {
  .product-overlay-container .product-list-control {
    margin-top: 49px;
  }
}

@media screen and (min-width: 960px) {
  .product-overlay-container .product-list-control {
    margin-top: 55px;
  }
}

.product-overlay-container .product-list-control svg {
  width: 12px;
  height: 31px;
  fill: #69696a;
  transition: fill 0.3s;
}

.product-overlay-container .product-list-control:hover svg {
  fill: #c65164;
}

.product-overlay-container .product-list-control.prev:after {
  content: '';
  position: absolute;
  top: -15px;
  right: -16px;
  width: 1px;
  height: 60px;
  background-color: #d7d7d7;
}

.product-overlay-container .product-list-control.prev:after:active, .product-overlay-container .product-list-control.prev:after:hover, .product-overlay-container .product-list-control.prev:after:focus {
  background-color: #711414;
}

.product-overlay-container .close-overlay {
  width: 60px;
  height: 60px;
  float: right;
  position: relative;
  z-index: 999;
  background-color: white;
  border: 1px solid #b5b5b5;
  margin: 12px 0 27px;
}

@media screen and (min-width: 640px) {
  .product-overlay-container .close-overlay {
    margin-top: 36px;
  }
}

@media screen and (min-width: 960px) {
  .product-overlay-container .close-overlay {
    margin-top: 42px;
  }
}

.product-overlay-container .close-overlay svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12.5px 0 0 -12.5px;
  width: 25px;
  height: 25px;
  fioll: #6e6e6e;
  transform: rotate(45deg);
  transition: fill 0.3s;
}

.product-overlay-container .close-overlay:hover svg {
  fill: #c65164;
}

.product-overlay-container .product-info {
  z-index: 1;
  clear: both;
  opacity: 0;
  max-height: 0;
  transition: all 0.3s;
  overflow: hidden;
}

.product-overlay-container .product-info.active {
  opacity: 1;
  max-height: 1000px;
}

.product-overlay-container .product-info.active .product-bg-image {
  opacity: 1;
}

.product-overlay-container .product-info .h1 {
  margin-bottom: 15px;
  font-size: 1.875rem;
}

@media screen and (min-width: 960px) {
  .product-overlay-container .product-info .h1 {
    font-size: 2.8125rem;
    max-width: 720px;
  }
}

.product-overlay-container .product-info .h2 {
  margin-bottom: 24px;
  font-size: 1.375rem;
  font-family: "Overpass-Extra-Light", sans-serif;
  text-transform: none;
}

@media screen and (min-width: 960px) {
  .product-overlay-container .product-info .h2 {
    font-size: 2rem;
    max-width: 620px;
  }
}

@media screen and (min-width: 1280px) {
  .product-overlay-container .product-info .h2 {
    max-width: 780px;
  }
}

.product-overlay-container .product-info .performance-technology {
  display: none;
  margin-bottom: 5px;
}

@media screen and (min-width: 960px) {
  .product-overlay-container .product-info .performance-technology {
    display: block;
  }
}

.product-overlay-container .product-info .performance-technology li {
  display: block;
  color: #959595;
  font-size: 1.125rem;
  line-height: 2.5rem;
  padding-left: 60px;
  margin-bottom: 17px;
  background-repeat: no-repeat;
  background-position: left center;
}

.product-overlay-container .product-info .performance-technology li.larger-lower-hand {
  background-image: url(../svg/src/icon-tech-larger-lower.svg);
}

.product-overlay-container .product-info .performance-technology li.all-weather-control {
  background-image: url(../svg/src/icon-tech-all-weather.svg);
}

.product-overlay-container .product-info .performance-technology li.maximum-surface-texture {
  background-image: url(../svg/src/icon-tech-max-surface.svg);
}

.product-overlay-container .product-info .performance-technology li.firm-feel {
  background-image: url(../svg/src/icon-tech-firm-feel.svg);
}

.product-overlay-container .product-info .performance-technology li.moderate-feedback {
  background-image: url(../svg/src/icon-tech-mod-feedback.svg);
}

.product-overlay-container .product-info .performance-technology li.high-tack {
  background-image: url(../svg/src/icon-tech-high-tack.svg);
}

.product-overlay-container .product-info .performance-technology li.control-core-stabilizer {
  background-image: url(../svg/src/icon-tech-control-core.svg);
}

.product-overlay-container .product-info .performance-technology li.vibration-dampening {
  background-image: url(../svg/src/icon-tech-vibration-damp.svg);
}

.product-overlay-container .product-info .performance-technology li.soft-feel {
  background-image: url(../svg/src/icon-tech-soft-feel.svg);
}

.product-overlay-container .product-info .performance-technology li.moderate-surface-texture {
  background-image: url(../svg/src/icon-tech-mod-surface.svg);
}

.product-overlay-container .product-info .performance-technology li.lightweight {
  background-image: url(../svg/src/icon-tech-lightweight.svg);
}

.product-overlay-container .product-info .performance-technology li.raised-ridge {
  background-image: url(../svg/src/icon-tech-raised-ridge.svg);
}

.product-overlay-container .product-info .performance-technology li.limited-edition {
  background-image: url(../svg/src/icon-tech-limited-edition.svg);
}

.product-overlay-container .product-info .performance-technology li.maximum-feedback {
  background-image: url(../svg/src/icon-tech-maximum-feedback.svg);
}

.product-overlay-container .product-info .performance-technology li.straight-taper {
  background-image: url(../svg/src/icon-tech-straight-taper.svg);
}

.product-overlay-container .product-info .performance-technology li.pistol-contour {
  background-image: url(../svg/src/icon-tech-pistol-contour.svg);
}

.product-overlay-container .product-info .performance-technology li.round-edges {
  background-image: url(../svg/src/icon-tech-round-edges.svg);
}

.product-overlay-container .product-info .performance-technology li.training-grip {
  background-image: url(../svg/src/icon-tech-training-grip.svg);
}

.product-overlay-container .product-info .performance-technology li.flat-paddle-front {
  background-image: url(../svg/src/icon-tech-flat-paddle-front.svg);
}

.product-overlay-container .product-info a {
  position: relative;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  color: #131315;
  font-family: "Overpass-Extra-Light", sans-serif;
  font-size: 1.375rem;
  line-height: 1.5625rem;
  z-index: 10;
  margin-bottom: 160px;
}

@media screen and (min-width: 960px) {
  .product-overlay-container .product-info a {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1280px) {
  .product-overlay-container .product-info a {
    margin-bottom: 105px;
  }
}

.product-overlay-container .product-info a svg {
  display: inline-block;
  margin: 0 4px;
  width: 10px;
  height: 16px;
  fill: #959595;
}

.product-overlay-container .product-info a:hover {
  color: #711414;
}

.product-overlay-container .product-info a:hover svg {
  fill: #711414;
}

.product-overlay-container .product-info .product-bg-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  max-height: 300px;
  background: white;
  opacity: 0;
  transition: opacity 0.3s;
}

@media screen and (min-width: 640px) {
  .product-overlay-container .product-info .product-bg-image {
    max-height: 350px;
  }
}

@media screen and (min-width: 960px) {
  .product-overlay-container .product-info .product-bg-image {
    max-height: 260px;
  }
}

@media screen and (min-width: 1280px) {
  .product-overlay-container .product-info .product-bg-image {
    max-height: 380px;
  }
}

.pg-checkout form {
  max-width: 100%;
}

.pg-checkout form .req {
  display: inline-block;
  margin-left: 4px;
  font-size: 13px;
  font-weight: 700;
}

.pg-checkout .form-row {
  padding-bottom: 1px;
}

.pg-checkout .input-control {
  padding-left: 15px;
}

.pg-checkout .input-control a {
  color: inherit;
  font-size: 14px;
  text-decoration: underline;
}

.pg-checkout .input-control a:hover {
  text-decoration: none;
}

.pg-checkout .selector span {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 41px;
}

.pg-checkout .page-feautred-container {
  min-height: 110px;
  background: #000000;
}

.pg-checkout .page-feautred-container .page-title {
  text-transform: uppercase;
}

.pg-checkout .modal-promo-details .title {
  text-align: center;
}

.pg-checkout .modal-promo-details .ul li {
  padding-left: 15px;
}

.pg-checkout .modal-promo-details .ul li:before {
  left: 0;
  content: '*';
  font-weight: normal;
}

.pg-checkout .product-flag {
  display: inline-block;
  padding: 4px 5px 3px 5px;
  border-radius: 2px;
  background: #b0001d;
  color: #ffffff;
  font: normal 10px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}

.pg-checkout .col-wrapper {
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .pg-checkout .col-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }
  .pg-checkout .col-wrapper .col2 {
    max-width: 300px;
    margin: 60px auto 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .pg-checkout .col-wrapper .col1wrap {
    float: left;
    width: 100%;
    padding-right: 60px;
  }
  .pg-checkout .col-wrapper .col1 {
    margin-right: 300px;
  }
  .pg-checkout .col-wrapper .col2 {
    float: right;
    width: 300px;
    margin-left: -300px;
  }
}

.pg-checkout .steps {
  padding-left: 5px;
  font: 700 15px/30px "Overpass-Bold", sans-serif;
  overflow: hidden;
  text-transform: uppercase;
}

.pg-checkout .steps li {
  float: left;
}

.pg-checkout .steps li:first-child {
  margin-right: 20px;
}

.pg-checkout .steps span {
  position: relative;
  display: inline-block;
  width: 30px;
  margin-right: 5px;
  color: #FFFFFF;
  text-align: center;
}

.pg-checkout .steps span:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #d7d7d7;
  content: '';
  transform: skewX(-10deg);
  z-index: -1;
}

.pg-checkout .steps a {
  color: inherit;
  text-decoration: none;
}

.pg-checkout .steps a:hover {
  color: #b0001d;
}

.pg-checkout .steps li.active span:after {
  background: #b0001d;
}

@media screen and (max-width: 479px) {
  .pg-checkout .steps {
    display: none;
  }
}

@media screen and (min-width: 640px) {
  .pg-checkout .steps {
    font-size: 16px;
    line-height: 40px;
  }
  .pg-checkout .steps li:first-child {
    margin-right: 40px;
  }
  .pg-checkout .steps span {
    width: 50px;
    margin-right: 8px;
  }
}

.pg-checkout .col1 .col-section {
  margin-top: 50px;
}

.pg-checkout .col1 .section-title {
  margin-bottom: 20px;
  font: normal 30px/1 "Overpass-Bold", sans-serif;
}

.pg-checkout .checkout-summary {
  margin-top: 0;
  color: #4c4c53;
  transition: margin 0.25s ease;
}

@media screen and (max-width: 959px) {
  .pg-checkout .checkout-summary {
    margin-top: 0 !important;
  }
}

.pg-checkout .checkout-summary .col-section-header {
  overflow: hidden;
}

.pg-checkout .checkout-summary .col-section-header a {
  display: block;
  padding-top: 5px;
  float: right;
  font-size: 14px;
  line-height: 1;
}

.pg-checkout .checkout-summary .section-title {
  margin-bottom: 0;
  float: left;
  color: inherit;
  font: normal 18px/1.25 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-checkout .checkout-summary .checkout-summary-edit {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  line-height: 1;
}

.pg-checkout .checkout-summary .checkout-summary-header-msg {
  margin-top: 10px;
}

.pg-checkout .checkout-summary .summary-section {
  margin-top: 15px;
  padding-top: 15px;
  border-top: solid #d7d7d7 1px;
}

.pg-checkout .checkout-summary .summary-section.products tr:not(:last-child) td {
  padding-bottom: 36px;
}

.pg-checkout .checkout-summary .summary-section.products tr:not(:last-child) td:after {
  position: absolute;
  bottom: 18px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #d7d7d7;
  content: '';
}

.pg-checkout .checkout-summary .summary-section.products tr:not(:last-child) td .price {
  bottom: 36px;
}

.pg-checkout .checkout-summary .summary-section.products td {
  position: relative;
}

.pg-checkout .checkout-summary .summary-section.products .product-img {
  width: 75px;
}

.pg-checkout .checkout-summary .summary-section.products .product-img img {
  display: block;
  width: 60px;
  border: solid #e7e8e9 1px;
}

.pg-checkout .checkout-summary .summary-section.products .product-info {
  position: relative;
  font: normal 14px/1.3 "Overpass-Light", sans-serif;
}

.pg-checkout .checkout-summary .summary-section.products .label {
  margin-right: 3px;
  display: inline-block;
  font-family: "Overpass-Bold", sans-serif;
}

.pg-checkout .checkout-summary .summary-section.products .value {
  color: #6E6E6E;
}

.pg-checkout .checkout-summary .summary-section.products .value.red {
  color: #b0001d;
}

.pg-checkout .checkout-summary .summary-section.products .title {
  display: flex;
  align-items: flex-start;
  font: normal 16px/1.25 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-checkout .checkout-summary .summary-section.products .title .product-flag {
  margin: 2px 0 0 10px;
}

.pg-checkout .checkout-summary .summary-section.products .sku {
  margin-bottom: 8px;
}

.pg-checkout .checkout-summary .summary-section.products .price {
  margin-top: -18px;
  font-family: "Overpass-Bold", sans-serif;
  text-align: right;
}

.pg-checkout .checkout-summary .summary-section.products .price .price-original {
  text-decoration: line-through;
}

.pg-checkout .checkout-summary .summary-section.products .price .price-promo {
  color: #b0001d;
}

.pg-checkout .checkout-summary .summary-section.products .price .promo-code {
  color: #b0001d;
  font-family: "Overpass-Light", sans-serif;
}

.pg-checkout .checkout-summary .summary-section.subtotal .discount {
  color: #b0001d;
}

.pg-checkout .checkout-summary .summary-section.subtotal .discount table td {
  padding: 0;
  font-size: 14px;
  line-height: 1.25;
}

.pg-checkout .checkout-summary .summary-section.subtotal .discount .value {
  padding-left: 10px;
  color: inherit;
  white-space: nowrap;
}

.pg-checkout .checkout-summary .summary-section.subtotal .error-msg,
.pg-checkout .checkout-summary .summary-section.subtotal .warn-msg {
  font-size: 14px;
}

.pg-checkout .checkout-summary .summary-section.total td.label,
.pg-checkout .checkout-summary .summary-section.total td.value {
  color: inherit;
  font: normal 16px/1.25 "Overpass-Bold", sans-serif;
}

.pg-checkout .checkout-summary .summary-section.total .total-savings td {
  padding-top: 8px;
}

.pg-checkout .checkout-summary .summary-section.total .total-savings-body {
  padding: 14px;
  background: #e9f3fd;
  color: #064f93;
  font: normal 16px/1.25 "Overpass-Bold", sans-serif;
  overflow: hidden;
  text-transform: uppercase;
}

.pg-checkout .checkout-summary .summary-section.total .total-savings-body .label {
  float: left;
}

.pg-checkout .checkout-summary .summary-section.total .total-savings-body .value {
  float: right;
}

.pg-checkout .checkout-summary .summary-section.promo-form .col-section-header {
  position: relative;
  cursor: pointer;
}

.pg-checkout .checkout-summary .summary-section.promo-form .col-section-header:after {
  position: absolute;
  top: 5px;
  right: 0;
  height: 11px;
  width: 23px;
  content: '';
  background: url("../svg/icon-arrow-thin-down.svg") center center no-repeat;
  background-size: auto 100%;
  transform-origin: center center;
}

.pg-checkout .checkout-summary .summary-section.promo-form .section-body {
  height: 0;
  padding-top: 14px;
  overflow: hidden;
}

.pg-checkout .checkout-summary .summary-section.promo-form .form-row {
  overflow: hidden;
}

.pg-checkout .checkout-summary .summary-section.promo-form .form-row .input-txt {
  float: left;
  width: 65%;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 50px;
}

.pg-checkout .checkout-summary .summary-section.promo-form .form-row .btn {
  float: right;
  width: 31.66667%;
  padding: 0;
  line-height: 50px;
}

.pg-checkout .checkout-summary .summary-section.promo-form .promo-error {
  padding-top: 10px;
  color: #b0001d;
}

.pg-checkout .checkout-summary .summary-section.promo-form .promo-accept {
  line-height: 1.25;
}

.pg-checkout .checkout-summary .summary-section.promo-form .promo-remove {
  margin-top: 12px;
  color: #b0001d;
  font-size: 14px;
  line-height: 1;
}

.pg-checkout .checkout-summary .summary-section.promo-form.expanded .col-section-header:after {
  transform: rotate(180deg);
}

.pg-checkout .checkout-summary .summary-section.promo-form.expanded .section-body {
  height: auto;
}

.pg-checkout .checkout-summary .summary-section.shipping-address .section-title {
  font: normal 16px/1.25 "Overpass-Bold", sans-serif;
}

.pg-checkout .checkout-summary .summary-section.shipping-address .address {
  margin-top: 10px;
  color: #656565;
  line-height: 1.4;
}

.pg-checkout .checkout-summary .summary-section.shipping-address .name,
.pg-checkout .checkout-summary .summary-section.shipping-address .method {
  font-family: "Overpass-Bold", sans-serif;
}

.pg-checkout .checkout-summary .summary-section.cta {
  margin-top: 20px;
  border-top: 0;
}

.pg-checkout .checkout-summary .summary-section.cta .btn-submit {
  display: block;
  width: 100%;
}

.pg-checkout .checkout-summary .summary-section.cta .cta-secondary {
  display: block;
  margin-top: 20px;
  font: normal 13px/1 "Overpass-Bold", sans-serif;
  text-align: right;
  text-transform: uppercase;
}

.pg-checkout .checkout-summary .free-shipping-promo {
  margin: 25px 0;
  font: bold italic 14px/1.3 "Overpass-Light", sans-serif;
}

.pg-checkout .checkout-summary .free-shipping-promo strong {
  font-family: "Overpass-Bold", sans-serif;
}

.pg-checkout .checkout-summary .free-shipping-promo .price {
  color: #b0001d;
}

.pg-checkout .checkout-summary table {
  width: 100%;
}

.pg-checkout .checkout-summary td {
  padding: 4px 0;
  vertical-align: top;
}

.pg-checkout .checkout-summary td.label {
  font: normal 14px/1.25 "Overpass-Bold", sans-serif;
  text-align: left;
  text-transform: uppercase;
}

.pg-checkout .checkout-summary td.value {
  color: #6E6E6E;
  font: normal 14px/1.25 "Overpass-Light", sans-serif;
  text-align: right;
}

.pg-checkout .checkout-summary td.value.red {
  color: #b0001d;
}

.pg-checkout .checkout-summary .tooltip {
  top: -1px;
  margin: 0 0 0 3px;
}

.pg-checkout-cart .col1 form {
  overflow: visible;
}

.pg-checkout-cart .col1 .col-section:first-child {
  margin-top: 0;
}

.pg-checkout-cart .error-msg {
  margin-bottom: 25px;
}

.pg-checkout-cart .cart-table {
  width: 100%;
}

.pg-checkout-cart .cart-table col {
  width: 1px;
  text-align: left;
}

.pg-checkout-cart .cart-table col.cart-col-product {
  width: 100%;
}

.pg-checkout-cart .cart-table td, .pg-checkout-cart .cart-table th {
  padding: 15px;
  text-align: left;
  vertical-align: top;
}

.pg-checkout-cart .cart-table thead th {
  background: #ebebeb;
  color: #444345;
  font: normal 14px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-checkout-cart .cart-table tbody td {
  border-bottom: solid #e6e6e6 1px;
}

.pg-checkout-cart .cart-table .cart-col-product .img {
  float: left;
  border: solid #ebebeb 1px;
}

.pg-checkout-cart .cart-table .cart-col-product .img img {
  display: block;
  width: 100px;
}

.pg-checkout-cart .cart-table .cart-col-product .details {
  margin-left: 115px;
}

.pg-checkout-cart .cart-table .cart-col-product .name {
  display: flex;
  align-items: flex-start;
  color: #444345;
  font: normal 18px/1.25 "Overpass-Bold", sans-serif;
}

.pg-checkout-cart .cart-table .cart-col-product .name .product-flag {
  margin: 2px 0 0 10px;
}

.pg-checkout-cart .cart-table .cart-col-product .meta {
  color: #6E6E6E;
  font: normal 13px/1.3 "Overpass-Light", sans-serif;
}

.pg-checkout-cart .cart-table .cart-col-product .meta .label {
  display: inline-block;
  margin-right: 3px;
  color: #444345;
  text-transform: uppercase;
}

.pg-checkout-cart .cart-table .cart-col-product .meta .sku {
  margin-bottom: 10px;
}

.pg-checkout-cart .cart-table .cart-col-product .ctrls {
  margin-top: 10px;
  color: #b0001d;
  font-size: 12px;
  line-height: 1;
}

.pg-checkout-cart .cart-table .cart-col-qty {
  text-align: center;
}

.pg-checkout-cart .cart-table .cart-col-qty .form-tooltip-wrapper {
  display: inline-block;
}

.pg-checkout-cart .cart-table .cart-col-qty input {
  display: inline-block;
  width: 40px;
  padding: 2px 0;
  font: normal 14px/1 "Overpass-Light", sans-serif;
  text-align: center;
}

.pg-checkout-cart .cart-table .cart-col-qty a {
  display: inline-block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1;
}

.pg-checkout-cart .cart-table .cart-col-price {
  font-family: "Overpass-Bold", sans-serif;
  text-align: right;
  white-space: nowrap;
}

.pg-checkout-cart .cart-table .cart-col-price .price-original {
  display: block;
  color: #6E6E6E;
  font: normal 13px/1 "Overpass-Light", sans-serif;
  text-decoration: line-through;
}

.pg-checkout-cart .cart-table .cart-col-price .error {
  text-transform: uppercase;
}

.pg-checkout-cart .cart-table .cart-col-subtotal {
  font-family: "Overpass-Bold", sans-serif;
  text-align: right;
  white-space: nowrap;
}

.pg-checkout-cart .cart-table .cart-col-subtotal .price {
  display: block;
}

.pg-checkout-cart .cart-table .cart-col-subtotal .price-original {
  text-decoration: line-through;
}

.pg-checkout-cart .cart-table .cart-col-subtotal .price-promo {
  color: #b0001d;
}

.pg-checkout-cart .cart-table .cart-col-subtotal .promo-code {
  display: block;
  padding-top: 5px;
  color: #b0001d;
  font: normal 13px/1 "Overpass-Light", sans-serif;
}

.pg-checkout-cart .cart-table .cart-col-errors .error-msg {
  margin-bottom: 0;
  font-size: 14px;
}

.pg-checkout-cart .cart-table .cart-col-errors .ctrls {
  margin-top: 10px;
  color: #b0001d;
  font-size: 12px;
  line-height: 1;
}

@media screen and (min-width: 640px) {
  .pg-checkout-cart .cart-table .cart-col-errors .ctrls {
    white-space: nowrap;
  }
}

.pg-checkout-cart .cart-table .cart-row-price-error td {
  position: relative;
  padding-top: 0;
}

.pg-checkout-cart .cart-table .cart-row-price-error td .error-msg {
  margin-bottom: 0;
  font-size: 14px;
}

.pg-checkout-cart .cart-table .cart-row-price-error td:after {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  display: block;
  height: 1px;
  background: #FFFFFF;
  content: '';
}

.pg-checkout-cart .upsell .section-title {
  font: normal 18px/1.25 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-checkout-cart .upsell .grips-wrapper {
  position: relative;
  padding: 0 40px;
}

@media screen and (max-width: 639px) {
  .pg-checkout-cart .upsell .grips-wrapper {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pg-checkout-cart .upsell .grip {
  text-align: center;
}

.pg-checkout-cart .upsell .grip a {
  display: block;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

.pg-checkout-cart .upsell .grip img {
  width: 100%;
  max-width: none;
}

@media screen and (min-width: 640px) {
  .pg-checkout-cart .upsell .grip {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.pg-checkout-cart .upsell .grip-name {
  margin-top: 5px;
}

.pg-checkout-cart .upsell .grip-ctrl {
  position: absolute;
  top: 50%;
  display: block;
  width: 15px;
  margin-top: -15px;
  transform: translateY(-50%);
}

.pg-checkout-cart .upsell .grip-ctrl svg {
  display: block;
  height: 32px;
  width: 100%;
}

.pg-checkout-cart .upsell .grip-ctrl-prev {
  left: 8px;
}

.pg-checkout-cart .upsell .grip-ctrl-next {
  right: 8px;
}

.pg-checkout-cart .promo-content {
  margin-top: 50px;
}

.pg-checkout-cart .promo-content .col1 a {
  display: block;
}

.pg-checkout-cart .promo-content .col1 img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 639px) {
  .pg-checkout-cart .col1 .section-title {
    font-size: 24px;
    text-align: center;
  }
  .pg-checkout-cart .cart-table {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .pg-checkout-cart .cart-table thead {
    display: none;
  }
  .pg-checkout-cart .cart-table tbody tr:first-child td:first-child {
    padding-top: 20px;
    border-top: solid #e6e6e6 1px;
  }
  .pg-checkout-cart .cart-table tbody td {
    display: block;
    float: left\9;
    width: 100%\9;
    text-align: left !important;
  }
  .pg-checkout-cart .cart-table tbody td:not(:last-child) {
    border-bottom: 0;
  }
  .pg-checkout-cart .cart-table tbody td[data-cart-label] {
    padding-top: 1px;
    padding-bottom: 1px;
    font-size: 13px;
  }
  .pg-checkout-cart .cart-table tbody td[data-cart-label]:before {
    display: inline-block;
    width: 100px;
    margin-right: 12px;
    content: attr(data-cart-label) ":";
    font-family: "Overpass-Bold", sans-serif;
    text-align: right;
  }
  .pg-checkout-cart .cart-table tbody td.cart-col-price, .pg-checkout-cart .cart-table tbody td.cart-col-qty, .pg-checkout-cart .cart-table tbody td.cart-col-subtotal {
    font-family: "Overpass-Light", sans-serif;
  }
  .pg-checkout-cart .cart-table tbody td.cart-col-price .price-original {
    display: inline-block;
    margin-left: 10px;
    font-size: 12px;
  }
  .pg-checkout-cart .cart-table tbody td.cart-col-subtotal {
    padding-bottom: 18px;
  }
  .pg-checkout-cart .cart-table tbody td.cart-col-subtotal:before {
    float: left;
  }
  .pg-checkout-cart .cart-table tbody td.cart-col-subtotal .price-details {
    margin: 2px 0 0 115px;
  }
  .pg-checkout-cart .cart-table tbody td.cart-col-subtotal .price {
    display: inline-block;
  }
  .pg-checkout-cart .cart-table tbody td.cart-col-subtotal .price-promo {
    margin-left: 10px;
  }
  .pg-checkout-cart .cart-table tbody td.cart-col-errors {
    padding-top: 0;
  }
}

@media screen and (max-width: 959px) {
  .pg-checkout-cart .col-wrapper {
    max-width: 100%;
  }
}

@media screen and (min-width: 640px) {
  .pg-checkout-cart .modal-delete-item .btn {
    width: 40%;
  }
}

@media screen and (min-width: 960px) {
  .pg-checkout-cart .cart-table tbody .cart-col-product {
    padding-left: 0;
  }
  .pg-checkout-cart .cart-table .cart-row-price-error td {
    padding-left: 115px;
  }
}

@media screen and (max-width: 639px) {
  .pg-checkout-guest-vs-account .layout-grid {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .pg-checkout-guest-vs-account .layout-grid .layout-col1 {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: solid #d7d7d7 1px;
  }
}

@media screen and (min-width: 640px) {
  .pg-checkout-guest-vs-account .layout-grid {
    display: flex;
    justify-content: space-between;
  }
  .pg-checkout-guest-vs-account .layout-grid .layout-col {
    width: 50%;
    padding: 10px 0;
  }
  .pg-checkout-guest-vs-account .layout-grid .layout-col1 {
    padding-right: 30px;
    border-right: solid #d7d7d7 1px;
  }
  .pg-checkout-guest-vs-account .layout-grid .layout-col2 {
    padding-left: 30px;
  }
}

.pg-checkout-guest-vs-account .section-title {
  margin-bottom: 20px;
  font: normal 30px/1 "Overpass-Bold", sans-serif;
}

.pg-checkout-guest-vs-account .section-subtitle {
  margin-bottom: 20px;
  color: #959595;
  line-height: 1.3;
}

@media screen and (max-width: 639px) {
  .pg-checkout-guest-vs-account .login-form .section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.pg-checkout-guest-vs-account .login-form .section-heading .supplemental-create-account {
  margin-top: 13px;
  line-height: 1;
}

@media screen and (min-width: 640px) {
  .pg-checkout-guest-vs-account .login-form .section-heading .supplemental-create-account {
    display: none;
  }
}

.pg-checkout-guest-vs-account .login-form .form-row:last-child {
  margin-bottom: 0;
}

.pg-checkout-guest-vs-account .login-form .form-ctrls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.pg-checkout-guest-vs-account .login-form .form-ctrls a {
  font-size: 14px;
}

.pg-checkout-guest-vs-account .login-form .btn {
  width: 75%;
}

.pg-checkout-guest-vs-account .layout-col2 .content-section:not(:last-child) {
  margin-bottom: 50px;
}

.pg-checkout-shipping .shipping-address .error-msg {
  margin-bottom: 20px;
}

.pg-checkout-shipping .shipping-address .new-address-trigger {
  line-height: 1;
}

@media screen and (max-width: 639px) {
  .pg-checkout-shipping .shipping-address .section-heading {
    position: relative;
  }
  .pg-checkout-shipping .shipping-address .section-title {
    margin-bottom: 35px;
  }
  .pg-checkout-shipping .shipping-address .new-address-trigger {
    position: absolute;
    top: 100%;
    left: 0;
  }
}

@media screen and (min-width: 640px) {
  .pg-checkout-shipping .shipping-address .section-heading {
    overflow: hidden;
  }
  .pg-checkout-shipping .shipping-address .section-title {
    float: left;
  }
  .pg-checkout-shipping .shipping-address .new-address-trigger {
    float: left;
    margin: 11px 0 0 15px;
  }
}

.pg-checkout-shipping .shipping-existing {
  margin-bottom: 40px;
}

.pg-checkout-shipping .shipping-existing .selector span {
  color: #6E6E6E;
  font-size: 16px;
}

.pg-checkout-shipping .shipping-existing .full-display {
  margin-top: 20px;
  overflow: hidden;
}

.pg-checkout-shipping .shipping-existing .full-display .label {
  float: left;
  margin-right: 15px;
  font: normal 18px/1.25 "Overpass-Bold", sans-serif;
}

.pg-checkout-shipping .shipping-existing .full-display .address {
  float: left;
  color: #6E6E6E;
  font: normal 16px/1.25 "Overpass-Light", sans-serif;
}

.pg-checkout-shipping .shipping-existing .full-display .name {
  font-family: "Overpass-Bold", sans-serif;
  font-size: 18px;
}

.pg-checkout-shipping .shipping-existing .full-display .ctrls {
  margin-top: 10px;
}

.pg-checkout-shipping .shipping-new .disclaimer {
  font-size: 14px;
}

.pg-checkout-shipping .shipping-new .save-address label {
  font-size: 14px;
  line-height: 16px;
  text-transform: none;
}

.pg-checkout-shipping .modal-confirm-address .modal-body {
  text-align: center;
}

.pg-checkout-shipping .modal-confirm-address .title {
  font: 700 1.875rem/1 "Overpass-Bold", sans-serif;
}

.pg-checkout-shipping .modal-confirm-address .address-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  color: #252527;
  text-align: left;
}

.pg-checkout-shipping .modal-confirm-address .address-options .form-row:not(:last-child) {
  margin-bottom: 20px;
}

.pg-checkout-shipping .modal-confirm-address .address-options .address-label {
  font: normal 14px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-checkout-shipping .modal-confirm-address .address-options .form-elem-checkradio {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-weight: bold;
}

.pg-checkout-shipping .modal-confirm-address .address-options .form-elem-checkradio .inner {
  position: relative;
  z-index: 1;
}

.pg-checkout-shipping .modal-confirm-address .address-options .form-elem-checkradio .label {
  display: block;
  padding: 20px 20px 20px 55px;
  border-radius: 1px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.25;
}

.pg-checkout-shipping .modal-confirm-address .address-options .form-elem-checkradio:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #f5f5f5;
  border: solid #d7d7d7 1px;
  border-radius: 2px;
  content: '';
  z-index: 0;
}

.pg-checkout-shipping .modal-confirm-address .address-options .form-elem-checkradio.active:after {
  background: white;
}

.pg-checkout-shipping .modal-confirm-address .address-options .radio {
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -8px;
  margin-right: 0;
  cursor: pointer;
}

.pg-checkout-shipping .modal-confirm-address .address-options .radio span {
  background: white;
  border-radius: 2px;
}

.pg-checkout-shipping .modal-confirm-address .address-options .radio span.checked:after {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background: url("../svg/icon-check-mark.svg") center center no-repeat;
  background-size: cover;
  border-radius: 0;
}

@media screen and (min-width: 640px) {
  .pg-checkout-shipping .modal-confirm-address .btn-wrapper {
    display: flex;
  }
  .pg-checkout-shipping .modal-confirm-address .btn-wrapper .btn {
    flex: 1;
    margin: 0 3px;
  }
}

.pg-checkout-shipping .shipping-method .tooltip {
  top: -7px;
}

.pg-checkout-payment .payment-method .email-confirmation-request {
  margin-top: 20px;
}

.pg-checkout-payment .payment-method .instructions {
  margin: -2px 0 3px 0;
  padding-left: 5px;
  color: #999999;
  font: normal 12px/1 "Overpass-Light", sans-serif;
}

.pg-checkout-payment .payment-method .new-payment-trigger {
  line-height: 1;
}

@media screen and (max-width: 639px) {
  .pg-checkout-payment .payment-method .section-heading {
    position: relative;
  }
  .pg-checkout-payment .payment-method .section-title {
    margin-bottom: 35px;
  }
  .pg-checkout-payment .payment-method .new-payment-trigger {
    position: absolute;
    top: 100%;
    left: 0;
  }
}

@media screen and (min-width: 640px) {
  .pg-checkout-payment .payment-method .section-heading {
    overflow: hidden;
  }
  .pg-checkout-payment .payment-method .section-title {
    float: left;
  }
  .pg-checkout-payment .payment-method .new-payment-trigger {
    float: left;
    margin: 11px 0 0 15px;
  }
}

.pg-checkout-payment .payment-existing {
  margin-bottom: 40px;
}

.pg-checkout-payment .payment-existing .payment-selector .label {
  font-family: "Overpass-Bold", sans-serif;
}

.pg-checkout-payment .payment-existing .selector span {
  color: #6E6E6E;
  font-size: 16px;
}

.pg-checkout-payment .payment-existing .full-display {
  margin-top: 20px;
  overflow: hidden;
  color: #6E6E6E;
  font: normal 16px/1.25 "Overpass-Light", sans-serif;
}

.pg-checkout-payment .payment-existing .full-display .cc {
  float: left;
  margin: 0 30px 15px 0;
}

.pg-checkout-payment .payment-existing .full-display .address {
  float: left;
}

.pg-checkout-payment .payment-existing .full-display .name {
  font-family: "Overpass-Bold", sans-serif;
}

.pg-checkout-payment .payment-existing .ctrls {
  margin-top: 10px;
}

.pg-checkout-payment .payment-new {
  overflow: hidden;
}

.pg-checkout-payment .payment-new .form-row {
  float: left;
  width: 100%;
  overflow: visible;
}

.pg-checkout-payment .payment-new .form-row:last-child {
  margin-bottom: 0;
}

.pg-checkout-payment .payment-new .cc-type {
  margin-bottom: 0;
}

.pg-checkout-payment .payment-new .cc-type-options li {
  display: inline-block;
  margin: 0 15px 0 0;
  padding-left: 1px;
}

.pg-checkout-payment .payment-new .cc-type-options li:last-child {
  margin-right: 0;
}

.pg-checkout-payment .payment-new .cc-type-options li div.radio {
  float: none;
  margin-right: 0;
}

.pg-checkout-payment .payment-new .cc-icon {
  display: inline-block;
  height: 45px;
  margin-left: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  overflow: hidden;
  text-indent: -500px;
  vertical-align: middle;
  white-space: nowrap;
}

.pg-checkout-payment .payment-new .cc-icon-visa {
  width: 72px;
  background-image: url("https://images.eaton.com/ecm/groups/public/@pub/@estore/@hydr/documents/content/dev_1041524.jpg");
}

.pg-checkout-payment .payment-new .cc-icon-mc {
  width: 44px;
  background-image: url("https://images.eaton.com/ecm/groups/public/@pub/@estore/@hydr/documents/content/dev_1041523.jpg");
}

.pg-checkout-payment .payment-new .cc-icon-amex {
  width: 46px;
  background-image: url("https://images.eaton.com/ecm/groups/public/@pub/@estore/@hydr/documents/content/dev_1041522.jpg");
}

.pg-checkout-payment .payment-new .disclaimer {
  font-size: 14px;
}

.pg-checkout-payment .payment-new .form-col {
  float: left;
}

.pg-checkout-payment .payment-new .form-col.name-first {
  width: 50%;
  padding-right: 2px;
}

.pg-checkout-payment .payment-new .form-col.name-last {
  width: 50%;
  padding-left: 2px;
}

.pg-checkout-payment .payment-new .form-col.exp {
  width: 65%;
  padding-right: 8px;
}

.pg-checkout-payment .payment-new .form-col.cvv {
  width: 35%;
  padding-left: 8px;
}

.pg-checkout-payment .payment-new .form-elem {
  float: left;
}

.pg-checkout-payment .payment-new .form-elem.exp-mm {
  width: 40%;
  padding-right: 2px;
}

.pg-checkout-payment .payment-new .form-elem.exp-yy {
  width: 60%;
  padding-left: 2px;
}

.pg-checkout-payment .payment-address .instructions {
  margin: -2px 0 3px 0;
  padding-left: 5px;
  color: #999999;
  font: normal 12px/1 "Overpass-Light", sans-serif;
}

.pg-checkout-payment .payment-address .disclaimer {
  font-size: 14px;
}

.pg-checkout-payment .payment-address .copy-address label {
  font-size: 14px;
  line-height: 16px;
  text-transform: none;
}

.pg-checkout-payment .payment-address .btn {
  width: 100%;
  font-family: "Overpass-Light", sans-serif;
}

.pg-checkout-payment .payment-address .btn-row {
  width: 100%;
  margin: 30px 0 10px 0;
}

@media screen and (max-width: 639px) {
  .pg-checkout-payment .payment-address .btn-row:last-child {
    margin-top: 0;
  }
}

@media screen and (min-width: 640px) {
  .pg-checkout-payment .payment-address .btn-row {
    float: left;
    width: 50%;
  }
  .pg-checkout-payment .payment-address .btn-row:first-child {
    padding-right: 5px;
  }
  .pg-checkout-payment .payment-address .btn-row:last-child {
    padding-left: 5px;
  }
  .pg-checkout-payment .payment-address .btn-row .btn {
    padding-left: 0;
    padding-right: 0;
  }
}

.pg-checkout-payment .payment-address .cc-save label {
  font-size: 14px;
  line-height: 16px;
  text-transform: none;
}

.pg-checkout-payment .payment-address .address {
  color: #656565;
  line-height: 1.4;
}

.pg-checkout-payment .payment-address .address .name {
  font-family: "Overpass-Bold", sans-serif;
}

@media screen and (max-width: 639px) {
  .pg-checkout-order-confirmation .page-feautred-container .page-title {
    font-size: 2rem;
  }
}

.pg-checkout-order-confirmation .col1 .col-section:first-child {
  margin-top: 0;
}

.pg-checkout-order-confirmation .order-confirmation {
  padding: 15px;
  background: #ebebeb;
  font: normal 16px/1.4 "Overpass-Light", sans-serif;
}

.pg-checkout-order-confirmation .order-confirmation .title {
  margin-bottom: 10px;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-checkout-order-confirmation .order-confirmation .print {
  display: inline-block;
  margin-top: 10px;
}

.pg-checkout-order-confirmation .order-logistics {
  margin: -10px;
}

@media screen and (min-width: 480px) {
  .pg-checkout-order-confirmation .order-logistics {
    display: flex;
    flex-wrap: wrap;
  }
}

.pg-checkout-order-confirmation .order-logistics .logistics {
  padding: 10px;
  color: #6E6E6E;
  line-height: 1.4;
}

@media screen and (min-width: 480px) {
  .pg-checkout-order-confirmation .order-logistics .logistics {
    width: 50%;
  }
  .pg-checkout-order-confirmation .order-logistics .logistics.payment {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .pg-checkout-order-confirmation .order-logistics .logistics.payment .title {
    margin-bottom: 0;
  }
  .pg-checkout-order-confirmation .order-logistics .logistics.payment div:not(:first-child) {
    margin-left: 15px;
  }
}

.pg-checkout-order-confirmation .order-logistics .title {
  margin: 0 0 10px 0;
  color: #444345;
  font-size: 20px;
  line-height: 1.25;
}

.pg-checkout-order-confirmation .order-logistics .highlight {
  font-family: "Overpass-Bold", sans-serif;
}

.pg-checkout-order-confirmation .checkout-summary .section-title {
  float: none;
  font: normal 30px/1 "Overpass-Bold", sans-serif;
}

.pg-checkout-order-confirmation .checkout-summary .order-date {
  padding-top: 0;
  border-top: 0;
}

.pg-checkout-order-confirmation .checkout-summary .products {
  margin-top: 0;
}

.pg-checkout-order-confirmation .col-wrapper.guest-checkout {
  overflow: visible;
}

.pg-checkout-order-confirmation .delayed-account-creation {
  padding-top: 50px;
  border-top: solid #d7d7d7 1px;
}

.pg-checkout-order-confirmation .delayed-account-creation .title {
  margin: 0 0 10px 0;
  color: #444345;
  font-size: 20px;
  line-height: 1.25;
}

.pg-checkout-order-confirmation .delayed-account-creation form,
.pg-checkout-order-confirmation .delayed-account-creation .form-row {
  overflow: visible;
}

.pg-checkout-order-confirmation .delayed-account-creation form {
  margin-top: 15px;
}

@media screen and (min-width: 960px) {
  .pg-checkout-order-confirmation .delayed-account-creation form {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
  }
  .pg-checkout-order-confirmation .delayed-account-creation .form-row {
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (min-width: 1120px) {
  .pg-checkout-order-confirmation .delayed-account-creation .title {
    font-size: 30px;
  }
  .pg-checkout-order-confirmation .delayed-account-creation .form-row {
    width: 33.33333%;
  }
  .pg-checkout-order-confirmation .delayed-account-creation button {
    height: 43px;
    padding: 0 20px;
    line-height: 43px;
  }
}

.pg-checkout-order-confirmation .featured-content {
  padding-top: 50px;
  border-top: solid #d7d7d7 1px;
}

.pg-checkout-order-confirmation .featured-content .title {
  margin: 0 0 20px 0;
  color: #444345;
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
}

.pg-checkout-order-confirmation .featured-content .featured-content-grid {
  font-size: 0;
}

.pg-checkout-order-confirmation .featured-content .featured-content-grid-item {
  position: relative;
}

.pg-checkout-order-confirmation .featured-content .featured-content-grid-item.engaged .featured-content-body:after {
  display: none;
}

.pg-checkout-order-confirmation .featured-content .featured-content-grid-item.engaged .featured-content-title {
  display: none;
}

.pg-checkout-order-confirmation .featured-content .featured-content-body {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pg-checkout-order-confirmation .featured-content .featured-content-body.video .vjs-big-play-button {
  top: 12px;
  left: 12px;
  display: none;
  height: 34px;
  width: 34px;
  margin: 0;
  background-color: transparent;
  border: 4px solid white;
  font-size: 26px;
  line-height: 1;
}

.pg-checkout-order-confirmation .featured-content .featured-content-body:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: '';
}

.pg-checkout-order-confirmation .featured-content .featured-content-body-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.pg-checkout-order-confirmation .featured-content .featured-content-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  color: #FFFFFF;
  cursor: pointer;
  font: normal 16px/1.25 "Overpass-Bold", sans-serif;
  text-align: center;
  text-decoration: none;
}

.pg-checkout-order-confirmation .featured-content .featured-content-title svg {
  fill: #FFFFFF;
}

.pg-checkout-order-confirmation .featured-content .featured-content-highlight {
  margin-top: 40px;
  padding: 0 30px;
  color: #b0001d;
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 639px) {
  .pg-checkout-order-confirmation .featured-content .featured-content-grid {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .pg-checkout-order-confirmation .featured-content .featured-content-grid-item {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 640px) {
  .pg-checkout-order-confirmation .featured-content .featured-content-grid-item {
    display: inline-block;
    width: 50%;
    padding: 0 15px;
  }
  .pg-checkout-order-confirmation .featured-content .featured-content-title {
    left: 15px;
    right: 15px;
  }
}

@media screen and (min-width: 1120px) {
  .pg-checkout-order-confirmation .featured-content .title {
    font-size: 30px;
  }
}

.pg-my-account .page-feautred-container {
  min-height: 110px;
  background: #000000;
}

.pg-my-account .page-feautred-container .page-title {
  text-transform: uppercase;
}

.pg-my-account .section-title {
  margin-bottom: 20px;
  font: normal 30px/1 "Overpass-Bold", sans-serif;
}

.pg-my-account .form-row.disclaimer {
  font-size: 14px;
}

.pg-my-account .input-control {
  padding-left: 15px;
}

.pg-my-account .input-control a {
  color: inherit;
  font-size: 14px;
  text-decoration: underline;
}

.pg-my-account .input-control a:hover {
  text-decoration: none;
}

.pg-my-account-create-account .status-msg {
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 20px;
}

.pg-my-account-create-account .status-msg .body {
  padding-left: 10px;
}

.pg-my-account-create-account .status-msg .title {
  margin-bottom: 20px;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 16px;
}

.pg-my-account-create-account .status-msg ol {
  margin-bottom: 20px;
}

.pg-my-account-create-account .status-msg li:not(:last-child) {
  margin-bottom: 10px;
}

.pg-my-account-create-account .status-msg a {
  color: inherit;
}

@media screen and (min-width: 480px) {
  .pg-my-account-create-account .status-msg {
    padding: 30px;
  }
  .pg-my-account-create-account .status-msg .body {
    padding-left: 20px;
  }
}

.pg-my-account-create-account .section-heading {
  margin-bottom: 35px;
}

.pg-my-account-create-account .section-title {
  margin-bottom: 30px;
}

.pg-my-account-create-account .section-subtitle {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.25;
}

.pg-my-account-create-account .section-subtitle-disclaimer {
  color: #4c4c53;
  font-size: 14px;
  line-height: 1.25;
}

.pg-my-account-create-account .create-account-form {
  max-width: 500px;
}

.pg-my-account-create-account .create-account-form form,
.pg-my-account-create-account .create-account-form .form-row {
  overflow: visible;
}

.pg-my-account-create-account .create-account-form .form-row.newsletter-optin {
  margin: 40px 0;
}

.pg-my-account-create-account .create-account-form .form-row.newsletter-optin label {
  font-size: 14px;
  line-height: 1.3;
}

.pg-my-account-create-account .create-account-form .form-row.submit {
  margin-top: 40px;
}

.pg-my-account-login .login-form {
  max-width: 380px;
}

.pg-my-account-login .login-form .form-ctrls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.pg-my-account-login .login-form .btn {
  width: 75%;
}

.pg-my-account-login .error-msg {
  margin-bottom: 20px;
  font-size: 14px;
}

.pg-my-account-login .create-account-cta {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.4;
}

.pg-my-account-login .create-account-cta a {
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-my-account-forgot-password .intro-status-msg {
  margin-top: 20px;
}

.pg-my-account-forgot-password form {
  margin-top: 20px;
  max-width: none;
}

@media screen and (min-width: 640px) {
  .pg-my-account-forgot-password form {
    display: flex;
  }
  .pg-my-account-forgot-password .form-row:first-child {
    flex: 1;
    padding-right: 10px;
  }
  .pg-my-account-forgot-password .form-row:last-child {
    display: flex;
    align-items: flex-end;
  }
  .pg-my-account-forgot-password .btn {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 41px;
  }
}

.pg-my-account-reset-password .reset-password-form {
  max-width: 380px;
}

.pg-my-account-reset-password .reset-password-form form,
.pg-my-account-reset-password .reset-password-form .form-row {
  overflow: visible;
}

.pg-my-account-reset-password .reset-password-form .btn {
  width: 75%;
}

.pg-my-account-reset-password .status-msg {
  margin-bottom: 20px;
}

.pg-my-account-dashboard .section-title {
  margin-bottom: 10px;
}

.pg-my-account-dashboard .user-meta {
  color: #444345;
}

.pg-my-account-dashboard .user-meta .label {
  display: inline-block;
  margin-right: 5px;
  font-family: "Overpass-Bold", sans-serif;
}

.pg-my-account-dashboard .dashboard-panels {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -10px 0 -10px;
}

@media screen and (max-width: 749px) {
  .pg-my-account-dashboard .dashboard-panels {
    max-width: 480px;
  }
}

.pg-my-account-dashboard .dashboard-panel {
  width: 100%;
  padding: 10px;
  color: #444345;
}

@media screen and (min-width: 750px) {
  .pg-my-account-dashboard .dashboard-panel {
    width: 50%;
  }
}

.pg-my-account-dashboard .dashboard-panel-inner {
  height: 100%;
  padding: 30px;
  border: solid #d7d7d7 1px;
}

.pg-my-account-dashboard .dashboard-panel-title {
  margin-bottom: 20px;
  color: #4c4c53;
  font: normal 30px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-my-account-dashboard .dashboard-panel-order-intro {
  line-height: 18px;
}

.pg-my-account-dashboard .dashboard-panel-order-ctrls {
  margin-top: 20px;
}

.pg-my-account-dashboard .dashboard-panel-order-ctrls .btn-see-orders {
  width: 100%;
  max-width: 270px;
}

.pg-my-account-dashboard .dashboard-panel-order-ctrls .or {
  margin: 15px 0;
  line-height: 1;
}

.pg-my-account-dashboard .dashboard-panel-order-ctrls form {
  display: flex;
}

@media screen and (max-width: 359px) {
  .pg-my-account-dashboard .dashboard-panel-order-ctrls form label {
    font-size: 12px;
  }
}

.pg-my-account-dashboard .dashboard-panel-order-ctrls .form-row {
  margin: 0;
}

.pg-my-account-dashboard .dashboard-panel-order-ctrls .input-txt {
  height: 50px;
  padding-top: 15px;
  padding-bottom: 0;
  border-radius: 2px 0 0 2px;
  border-right: 0;
}

.pg-my-account-dashboard .dashboard-panel-order-ctrls .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 0 2px 2px 0;
}

.pg-my-account-dashboard .dashboard-panel-order-ctrls .btn-submit svg {
  display: block;
  height: 15px;
  width: auto;
  fill: rgba(255, 255, 255, 0.85);
}

.pg-my-account-dashboard .dashboard-profile-row .label {
  font: normal 18px/1 "Overpass-Bold", sans-serif;
}

.pg-my-account-dashboard .dashboard-profile-row:not(:last-child) {
  margin-bottom: 20px;
}

.pg-my-account-personal-info .section-title {
  margin-bottom: 40px;
}

.pg-my-account-personal-info .btn {
  width: 120px;
  font-family: "Overpass-Light", sans-serif;
}

.pg-my-account-personal-info .status-msg {
  margin: -20px 0 40px 0;
}

.pg-my-account-personal-info .personal-info-form {
  max-width: 700px;
}

.pg-my-account-personal-info .personal-info-form form {
  position: relative;
}

.pg-my-account-personal-info .personal-info-form form,
.pg-my-account-personal-info .personal-info-form .form-row {
  overflow: visible;
}

.pg-my-account-personal-info .personal-info-form .fieldset,
.pg-my-account-personal-info .personal-info-form fieldset {
  margin: 0 0 40px 0;
  padding: 25px;
  border: solid #d7d7d7 1px;
  border-radius: 2px;
}

.pg-my-account-personal-info .personal-info-form .fieldset .form-row:last-child,
.pg-my-account-personal-info .personal-info-form fieldset .form-row:last-child {
  margin-bottom: 0;
}

.pg-my-account-personal-info .personal-info-form .form-section-title {
  color: #444345;
  font: normal 22px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-my-account-personal-info .personal-info-form .form-row.submit {
  display: flex;
}

.pg-my-account-personal-info .personal-info-form .form-row.submit .btn {
  padding-left: 0;
  padding-right: 0;
}

.pg-my-account-personal-info .personal-info-form .form-row.submit .btn:not(:last-child) {
  margin-right: 10px;
}

@media screen and (max-width: 639px) {
  .pg-my-account-personal-info .personal-info-form .form-mode-view-cta {
    margin-top: 10px;
  }
}

@media screen and (min-width: 640px) {
  .pg-my-account-personal-info .personal-info-form .form-mode-view-cta {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
  }
}

.pg-my-account-personal-info .personal-info-form .form-mode-edit {
  margin-top: 20px;
}

.pg-my-account-personal-info .personal-info-form form[data-mode="view"] .form-mode-view {
  display: block;
}

.pg-my-account-personal-info .personal-info-form form[data-mode="view"] .form-mode-edit {
  display: none;
}

.pg-my-account-personal-info .personal-info-form form[data-mode="edit"] .form-mode-view {
  display: none;
}

.pg-my-account-personal-info .personal-info-form form[data-mode="edit"] .form-mode-edit {
  display: block;
}

.pg-my-account-personal-info .personal-info-form-payment,
.pg-my-account-personal-info .personal-info-form-address {
  position: relative;
  margin-bottom: 60px !important;
}

.pg-my-account-personal-info .personal-info-form-payment .data-record:not(:last-child),
.pg-my-account-personal-info .personal-info-form-address .data-record:not(:last-child) {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: solid #d7d7d7 1px;
}

.pg-my-account-personal-info .personal-info-form-payment .data-record:not(:last-child) .form-mode-view-cta,
.pg-my-account-personal-info .personal-info-form-address .data-record:not(:last-child) .form-mode-view-cta {
  top: calc(50% - 14px);
}

.pg-my-account-personal-info .personal-info-form-payment .data-record:first-child,
.pg-my-account-personal-info .personal-info-form-address .data-record:first-child {
  margin-top: 10px;
}

.pg-my-account-personal-info .personal-info-form-payment .form-mode-view-data,
.pg-my-account-personal-info .personal-info-form-address .form-mode-view-data {
  line-height: 1.3;
}

.pg-my-account-personal-info .personal-info-form-payment .form-mode-view-cta,
.pg-my-account-personal-info .personal-info-form-address .form-mode-view-cta {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 639px) {
  .pg-my-account-personal-info .personal-info-form-payment .form-mode-view-cta .cta:nth-child(2),
  .pg-my-account-personal-info .personal-info-form-address .form-mode-view-cta .cta:nth-child(2) {
    order: -1;
    margin-right: 35px;
  }
}

@media screen and (min-width: 640px) {
  .pg-my-account-personal-info .personal-info-form-payment .form-mode-view-cta,
  .pg-my-account-personal-info .personal-info-form-address .form-mode-view-cta {
    right: 0;
  }
  .pg-my-account-personal-info .personal-info-form-payment .form-mode-view-cta .cta:nth-child(1),
  .pg-my-account-personal-info .personal-info-form-address .form-mode-view-cta .cta:nth-child(1) {
    margin-right: 35px;
  }
}

.pg-my-account-personal-info .personal-info-form-payment .form-row.submit,
.pg-my-account-personal-info .personal-info-form-address .form-row.submit {
  margin-top: 30px;
}

.pg-my-account-personal-info .personal-info-form-payment .form-section-add-new,
.pg-my-account-personal-info .personal-info-form-address .form-section-add-new {
  margin-top: 25px;
  padding-top: 25px;
  border-top: solid #d7d7d7 1px;
}

.pg-my-account-personal-info .personal-info-form-payment .form-section-add-new:not(.active),
.pg-my-account-personal-info .personal-info-form-address .form-section-add-new:not(.active) {
  display: none;
}

.pg-my-account-personal-info .personal-info-form-payment .new-record-btn,
.pg-my-account-personal-info .personal-info-form-address .new-record-btn {
  position: absolute;
  bottom: -30px;
}

.pg-my-account-personal-info .personal-info-form-payment .new-record-btn:before,
.pg-my-account-personal-info .personal-info-form-address .new-record-btn:before {
  content: '+ ';
}

.pg-my-account-personal-info .personal-info-form-payment .form-section-title.subtitle {
  margin-bottom: 12px;
  font-size: 16px;
}

.pg-my-account-personal-info .personal-info-form-payment .form-segment:nth-child(2) {
  margin-top: 25px;
}

.pg-my-account-personal-info .personal-info-form-payment .form-col {
  float: left;
}

.pg-my-account-personal-info .personal-info-form-payment .form-col.exp {
  width: 68%;
  padding-right: 8px;
}

.pg-my-account-personal-info .personal-info-form-payment .form-col.cvv {
  width: 32%;
  padding-left: 8px;
}

.pg-my-account-personal-info .personal-info-form-payment .form-elem {
  float: left;
}

.pg-my-account-personal-info .personal-info-form-payment .form-elem.exp-mm {
  width: 40%;
  padding-right: 2px;
}

.pg-my-account-personal-info .personal-info-form-payment .form-elem.exp-yy {
  width: 60%;
  padding-left: 2px;
}

.pg-my-account-personal-info .modal-confirm-address .modal-body {
  text-align: center;
}

.pg-my-account-personal-info .modal-confirm-address .title {
  font: 700 1.875rem/1 "Overpass-Bold", sans-serif;
}

.pg-my-account-personal-info .modal-confirm-address .address-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  color: #252527;
  text-align: left;
}

.pg-my-account-personal-info .modal-confirm-address .address-options .form-row:not(:last-child) {
  margin-bottom: 20px;
}

.pg-my-account-personal-info .modal-confirm-address .address-options .address-label {
  font: normal 14px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-my-account-personal-info .modal-confirm-address .address-options .form-elem-checkradio {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-weight: bold;
}

.pg-my-account-personal-info .modal-confirm-address .address-options .form-elem-checkradio .inner {
  position: relative;
  z-index: 1;
}

.pg-my-account-personal-info .modal-confirm-address .address-options .form-elem-checkradio .label {
  display: block;
  padding: 20px 20px 20px 55px;
  border-radius: 1px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.25;
}

.pg-my-account-personal-info .modal-confirm-address .address-options .form-elem-checkradio:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #f5f5f5;
  border: solid #d7d7d7 1px;
  border-radius: 2px;
  content: '';
  z-index: 0;
}

.pg-my-account-personal-info .modal-confirm-address .address-options .form-elem-checkradio.active:after {
  background: white;
}

.pg-my-account-personal-info .modal-confirm-address .address-options .radio {
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -8px;
  margin-right: 0;
  cursor: pointer;
}

.pg-my-account-personal-info .modal-confirm-address .address-options .radio span {
  background: white;
  border-radius: 2px;
}

.pg-my-account-personal-info .modal-confirm-address .address-options .radio span.checked:after {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background: url("../svg/icon-check-mark.svg") center center no-repeat;
  background-size: cover;
  border-radius: 0;
}

@media screen and (min-width: 640px) {
  .pg-my-account-personal-info .modal-confirm-address .btn-wrapper {
    display: flex;
  }
  .pg-my-account-personal-info .modal-confirm-address .btn-wrapper .btn {
    flex: 1;
    margin: 0 3px;
  }
}

.pg-order-history .page-feautred-container {
  min-height: 110px;
  background: #000000;
}

.pg-order-history .page-feautred-container .page-title {
  text-transform: uppercase;
}

.pg-order-history .filter-ctrls .form-row {
  margin: 0;
}

.pg-order-history .filter-ctrls .input-txt {
  font-size: 16px;
}

.pg-order-history .filter-ctrls .form-order-number {
  position: relative;
}

.pg-order-history .filter-ctrls .form-order-number label {
  font-size: 16px;
  line-height: 48px;
  text-transform: none;
}

.pg-order-history .filter-ctrls .form-order-number .input-txt {
  height: 50px;
  padding-top: 6px;
  padding-bottom: 0;
  font-size: 16px;
  line-height: 50px;
}

.pg-order-history .filter-ctrls .form-order-number .submit {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 60px;
  background: #b0001d;
  border: solid #b0001d 1px;
  border-radius: 0 2px 2px 0;
  outline: none;
  overflow: hidden;
  text-indent: -500px;
  transition: background 0.25s ease;
  z-index: 200;
}

.pg-order-history .filter-ctrls .form-order-number .submit svg {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #FFFFFF;
  transform: translate(-50%, -50%);
  transition: fill 0.25s ease;
}

.pg-order-history .filter-ctrls .form-order-number .submit:hover {
  background: #FFFFFF;
}

.pg-order-history .filter-ctrls .form-order-number .submit:hover svg {
  fill: #b0001d;
}

.pg-order-history .filter-ctrls .form-filter .selector span {
  font-size: 16px;
}

@media screen and (max-width: 639px) {
  .pg-order-history .filter-ctrls .form-order-number {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 640px) {
  .pg-order-history .filter-ctrls .form-order-number {
    float: left;
  }
  .pg-order-history .filter-ctrls .form-order-number .input-txt {
    min-width: 290px;
  }
  .pg-order-history .filter-ctrls .form-filter {
    float: right;
  }
  .pg-order-history .filter-ctrls .form-filter .selector span {
    min-width: 290px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 48px;
  }
}

.pg-order-history .error-msg {
  margin: 30px 0;
  text-align: center;
}

.pg-order-history .order {
  padding: 20px;
  background: #E6E6E6;
}

.pg-order-history .order:not(:last-child) {
  margin-bottom: 50px;
}

.pg-order-history .order-header {
  position: relative;
}

.pg-order-history .order-header-col {
  color: #444345;
  font-size: 14px;
}

.pg-order-history .order-header-col .label {
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-order-history .order-header-col:not(:nth-child(4)) {
  line-height: 1.3;
}

.pg-order-history .order-header-col .btn {
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: "Overpass-Light", sans-serif;
}

.pg-order-history .no-tracking-number {
  font-style: italic;
}

@media screen and (max-width: 639px) {
  .pg-order-history .order-header-col .label {
    display: inline-block;
    margin-right: 8px;
  }
  .pg-order-history .order-header-col .label:after {
    content: ':';
  }
  .pg-order-history .order-header-col:nth-child(4) {
    margin-top: 10px;
  }
}

@media screen and (min-width: 640px) {
  .pg-order-history .order-header-col:nth-child(-n+3) {
    float: left;
  }
  .pg-order-history .order-header-col:nth-child(-n+2) {
    padding-right: 30px;
  }
  .pg-order-history .order-header-col:nth-child(4) {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 960px) {
  .pg-order-history .order-header-col:nth-child(-n+2) {
    padding-right: 70px;
  }
  .pg-order-history .order-header-col .btn {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.pg-order-history .order-body {
  margin-top: 20px;
  padding: 20px;
  background: #FFFFFF;
}

@media screen and (min-width: 960px) {
  .pg-order-history .order-body {
    padding: 30px 50px;
  }
}

@media screen and (max-width: 799px) {
  .pg-order-history .order-body-col.col2 {
    margin-top: 50px;
  }
}

@media screen and (min-width: 800px) {
  .pg-order-history .order-body-col {
    float: left;
  }
  .pg-order-history .order-body-col.col1 {
    width: 70%;
    padding-right: 20px;
  }
  .pg-order-history .order-body-col.col2 {
    width: 30%;
  }
}

@media screen and (min-width: 960px) {
  .pg-order-history .order-body-col.col1 {
    width: 75%;
  }
  .pg-order-history .order-body-col.col2 {
    width: 25%;
  }
}

.pg-order-history .order-body-heading {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: solid #D7D7D7 1px;
  color: #444345;
  font: normal 18px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-order-history .order-body-heading .tooltip {
  top: -2px;
  margin-left: 5px;
}

.pg-order-history .order-body-heading svg {
  position: absolute;
  top: 3px;
  right: 10px;
  display: block;
  height: 11px;
  width: 20px;
}

.pg-order-history .order-product {
  position: relative;
}

.pg-order-history .order-product .status {
  position: relative;
  margin-bottom: 10px;
  color: #444345;
  font: normal 18px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-order-history .order-product .status .tooltip {
  top: -2px;
  margin-left: 5px;
}

.pg-order-history .order-product .status svg {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  height: auto;
  width: 20px;
  margin-top: -10px;
}

.pg-order-history .order-product .status.shipped {
  color: #63A15F;
}

.pg-order-history .order-product .img {
  float: left;
  border: solid #EBEBEB 1px;
}

.pg-order-history .order-product .img img,
.pg-order-history .order-product .img .not-available {
  display: block;
  width: 100px;
}

.pg-order-history .order-product .img .not-available {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  background: #FAFAFA;
  color: #444345;
  font: italic normal 12px/1.25 "Overpass-Light", sans-serif;
}

.pg-order-history .order-product .img .not-available:after {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  content: 'Product Not Available';
  text-align: center;
  transform: translateY(-50%);
}

.pg-order-history .order-product .details {
  margin-left: 115px;
}

.pg-order-history .order-product .name {
  color: #444345;
  font: normal 18px/1.25 "Overpass-Bold", sans-serif;
}

.pg-order-history .order-product .meta {
  color: #6E6E6E;
  font: normal 14px/1.3 "Overpass-Light", sans-serif;
}

.pg-order-history .order-product .meta .label {
  display: inline-block;
  margin-right: 3px;
  color: #444345;
  text-transform: uppercase;
}

.pg-order-history .order-product .meta .sku {
  margin-bottom: 10px;
}

.pg-order-history .order-product .price {
  margin-top: 10px;
  color: #b0001d;
  font: normal 18px/1.25 "Overpass-Bold", sans-serif;
}

.pg-order-history .order-product .discount {
  color: #b0001d;
  font: normal 15px/1 "Overpass-Light", sans-serif;
}

.pg-order-history .order-product .ctrls {
  margin-top: 10px;
}

.pg-order-history .order-product .btn {
  font-family: "Overpass-Light", sans-serif;
}

.pg-order-history .order-product:not(:last-child) {
  margin-bottom: 40px;
}

@media screen and (max-width: 479px) {
  .pg-order-history .order-product .img img,
  .pg-order-history .order-product .img .not-available {
    width: 60px;
  }
  .pg-order-history .order-product .img .not-available {
    font-size: 10px;
  }
  .pg-order-history .order-product .details {
    margin-left: 75px;
  }
}

@media screen and (max-width: 639px) {
  .pg-order-history .order-product .btn {
    padding: 8px 20px;
  }
}

@media screen and (min-width: 640px) {
  .pg-order-history .order-product {
    padding-right: 190px;
  }
  .pg-order-history .order-product .ctrls {
    position: absolute;
    top: 0;
    right: 10px;
    margin-top: 0;
  }
  .pg-order-history .order-product .btn {
    padding: 12px 24px;
  }
}

.pg-order-history .order-body-col.col2 .order-body-heading {
  cursor: pointer;
}

.pg-order-history .order-logistics-block {
  display: none;
  line-height: 1.4;
}

.pg-order-history .order-logistics-block strong {
  font-weight: normal;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-order-history .order-logistics-block .shipping-method {
  display: block;
  font-size: 14px;
}

.pg-order-history .order-logistics-block:not(:last-child) {
  margin-bottom: 10px;
}

.pg-order-history .order-logistics-block.order-summary {
  max-width: 260px;
}

.pg-order-history .order-logistics-block.order-summary .discount {
  color: #b0001d;
}

.pg-order-history .order-logistics-block.order-summary .discount .sublabel {
  float: left;
  width: 67%;
  padding-right: 10px;
}

.pg-order-history .order-logistics-block.order-summary .discount .val {
  max-width: 33%;
}

.pg-order-history .order-logistics-block.order-summary .row {
  overflow: hidden;
}

.pg-order-history .order-logistics-block.order-summary .label {
  font-weight: bold;
  text-transform: uppercase;
}

.pg-order-history .order-logistics-block.order-summary .val {
  float: right;
}

.pg-order-history .order-body-col.active .order-body-heading svg {
  transform: rotate(180deg);
}

.pg-order-history .order-body-col.active .order-logistics-block {
  display: block;
}

.pg-order-history .pagination-wrapper {
  margin-top: 40px;
  overflow: hidden;
}

.pg-order-history .pagination {
  float: right;
  overflow: hidden;
}

.pg-order-history .pagination .link {
  display: inline-block;
  height: 30px;
  width: 22px;
  padding-top: 5px;
  text-align: center;
}

.pg-order-history .pagination .link i {
  position: relative;
  display: inline-block;
  height: 18px;
  width: 18px;
}

.pg-order-history .pagination .link svg {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #848286;
  transform: translate(-50%, -50%);
}

.pg-order-history .pagination .link.disabled {
  opacity: 0.3;
}

.pg-order-history .pagination .link-pg-prev svg,
.pg-order-history .pagination .link-pg-next svg {
  height: auto;
  width: 10px;
}

.pg-order-history .pagination .status {
  display: inline-block;
  height: 30px;
  margin: 0 5px;
  color: #444345;
  font: normal 13px/30px "Overpass-Light", sans-serif;
  vertical-align: top;
}

.pg-product section.main {
  position: relative;
}

.pg-product section.main:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 6px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  content: '';
}

@media screen and (max-width: 639px) {
  .pg-product section.main {
    padding-top: 20px;
  }
}

@media screen and (max-width: 959px) {
  .pg-product .product-heading,
  .pg-product .product-body {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .pg-product .product-details {
    margin-top: 40px;
  }
}

@media screen and (min-width: 960px) {
  .pg-product .product-media {
    float: left;
    width: 60%;
    padding-right: 20px;
  }
  .pg-product .product-details {
    float: left;
    width: 40%;
    padding-left: 20px;
  }
}

@media screen and (min-width: 480px) {
  .pg-product .breadcrumb-trail {
    padding-right: 100px;
  }
}

.pg-product .product-heading {
  position: relative;
  margin-bottom: 20px;
}

.pg-product .product-heading .title {
  margin: 0 20px 0 0;
  color: #444345;
  float: left;
  font: normal 30px/1 "Overpass-Bold", sans-serif;
  text-transform: none;
}

@media screen and (min-width: 960px) {
  .pg-product .product-heading .title {
    font-size: 40px;
  }
}

.pg-product .product-heading .product-flag {
  position: relative;
  color: #ffffff;
  font: normal 10px/1 "Overpass-Bold", sans-serif;
  overflow: hidden;
  text-transform: uppercase;
  z-index: 0;
}

.pg-product .product-heading .product-flag div {
  width: 100%;
}

.pg-product .product-heading .product-flag .word {
  display: block;
}

.pg-product .product-heading .product-flag:after {
  position: absolute;
  left: 0;
  width: 100%;
  background: #b0001d;
  content: '';
  z-index: -1;
}

@media screen and (max-width: 479px) {
  .pg-product .product-heading .product-flag {
    float: left;
    margin: 6px 0;
    padding: 4px 5px 3px 5px;
    border-radius: 2px;
  }
  .pg-product .product-heading .product-flag:after {
    top: 0;
    height: 100%;
  }
}

@media screen and (min-width: 480px) {
  .pg-product .product-heading .product-flag {
    position: absolute;
    top: -73px;
    right: 0;
    display: flex;
    align-items: center;
    height: 80px;
    width: 90px;
    padding-bottom: 12px;
    font-size: 17px;
    text-align: center;
  }
  .pg-product .product-heading .product-flag .word:not(:first-child) {
    font-size: 10px;
  }
  .pg-product .product-heading .product-flag:after {
    bottom: 6px;
    height: calc(100% + 20px);
    transform: skewY(8deg);
  }
  .pg-product .product-heading .product-flag[data-flag="customize"] {
    font-size: 13px;
  }
  .pg-product .product-heading .product-flag[data-flag="personalize"] {
    font-size: 11px;
  }
  .pg-product .product-heading .product-flag[data-flag="clubmaker series"] .word:first-child {
    font-size: 13px;
  }
}

@media screen and (min-width: 960px) {
  .pg-product .product-heading .product-flag {
    top: -83px;
  }
}

.pg-product .product-heading .subtitle {
  margin: 5px 0 0 0;
  clear: left;
  color: #6E6E6E;
  font: normal 20px/1 "Overpass-Light", sans-serif;
  text-transform: none;
}

.pg-product .product-heading .error-msg {
  margin-top: 15px;
}

.zoomWindowContainer .zoomWindow {
  background-color: #FFFFFF;
}

.pg-product .product-media {
  position: relative;
}

.pg-product .product-media .product-img-main {
  position: relative;
  border: solid #d7d7d7 1px;
}

.pg-product .product-media .product-img-main .img-zoom {
  cursor: zoom-in;
}

.pg-product .product-media .product-img-main img {
  display: block;
  background: #FFFFFF;
}

.pg-product .product-media .product-img-main .video {
  position: relative;
  height: 0;
  padding-bottom: 100%;
}

.pg-product .product-media .product-img-main .video div.video-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #FFFFFF;
}

.pg-product .product-media .product-img-main .video .vjs-poster {
  background-color: #FFFFFF;
}

.pg-product .product-media .product-img-main li:not(.active) {
  display: none;
}

.pg-product .product-media .product-img-main .instructions {
  position: absolute;
  bottom: -20px;
  right: 5px;
  color: #999999;
  font: normal 12px/1 "Overpass-Light", sans-serif;
}

.pg-product .product-media .product-thumbs li {
  display: block;
  height: 60px;
  width: 60px;
  border: solid #d7d7d7 1px;
  cursor: pointer;
}

.pg-product .product-media .product-thumbs li.active {
  border-color: #818181;
}

.pg-product .product-media .product-thumbs img {
  display: block;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .pg-product .product-media .product-img-main .instructions {
    display: none;
  }
  .pg-product .product-media .product-thumbs {
    margin-top: 5px;
    overflow: hidden;
  }
  .pg-product .product-media .product-thumbs li {
    float: left;
    margin: 0 5px 5px 0;
  }
}

@media screen and (min-width: 960px) {
  .pg-product .product-media {
    padding-left: 100px;
  }
  .pg-product .product-media .product-thumbs {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  .pg-product .product-media .product-thumbs li {
    height: 90px;
    width: 90px;
    margin-bottom: 10px;
  }
  .pg-product .product-media .product-thumbs .bx-wrapper,
  .pg-product .product-media .product-thumbs .bx-viewport {
    height: 100% !important;
  }
  .pg-product .product-media .product-thumbs .ctrls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0 5px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 40%);
    font-size: 0;
    text-align: center;
  }
  .pg-product .product-media .product-thumbs .ctrl {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 40px;
  }
  .pg-product .product-media .product-thumbs .ctrl.prev {
    background: url("../svg/icon-arrow-thin-up.svg") center center no-repeat;
  }
  .pg-product .product-media .product-thumbs .ctrl.next {
    background: url("../svg/icon-arrow-thin-down.svg") center center no-repeat;
  }
  .pg-product .product-media .product-thumbs .ctrl a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
  }
}

.pg-product .product-details {
  color: #6E6E6E;
}

.pg-product .product-details b {
  color: #343434;
  text-transform: uppercase;
}

.pg-product .product-price-wrapper {
  margin-bottom: 20px;
  font-size: 0;
}

.pg-product .product-price-wrapper .price {
  display: inline-block;
  color: #cf0022;
  font: normal 22px/1 "Overpass-Bold", sans-serif;
}

.pg-product .product-price-wrapper .price-original {
  display: inline-block;
  margin-left: 10px;
  font: normal 14px/22px "Overpass-Light", sans-serif;
  text-decoration: line-through;
  vertical-align: baseline;
}

.pg-product .product-reviews-snippet {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid #e6e7e8 1px;
}

.pg-product .product-description {
  margin-bottom: 20px;
}

.pg-product .product-description.compressed .excerpt:after {
  display: inline-block;
  margin-left: 5px;
  color: #e30025;
  content: 'more';
  cursor: pointer;
}

.pg-product .product-description.compressed .remainder {
  display: none;
}

.pg-product .product-atc {
  margin-top: 25px;
}

.pg-product .product-atc .form-row:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid #e6e7e8 1px;
}

.pg-product .product-atc-error:not(:last-child) {
  margin-bottom: 10px;
}

.pg-product .product-atc-error .error-msg {
  font-size: 14px;
}

@keyframes atcSlideBackForth {
  0% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(-4px);
  }
}

@keyframes atcSlideUpDown {
  0% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(-4px);
  }
}

.pg-product .product-atc form {
  overflow: visible;
}

.pg-product .product-atc-opt .row-title {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 1;
  text-transform: none;
}

.pg-product .product-atc-opt .row-title .selection {
  margin-left: 5px;
}

.pg-product .product-atc-opt .row-title svg {
  position: absolute;
  display: block;
  height: 18px;
  width: 18px;
  fill: #b0001d;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media screen and (max-width: 769px) {
  .pg-product .product-atc-opt .row-title svg {
    bottom: calc(100% + 10px);
    left: 0;
    animation-name: atcSlideUpDown;
  }
  .pg-product .product-atc-opt .row-title svg g {
    transform-origin: center;
    transform: rotate(90deg);
  }
}

@media screen and (min-width: 770px) {
  .pg-product .product-atc-opt .row-title svg {
    top: 50%;
    right: calc(100% + 10px);
    margin-top: -9px;
    animation-name: atcSlideBackForth;
  }
}

.pg-product .product-atc-opt.input-provided .row-title svg {
  visibility: hidden;
}

.pg-product .product-atc-opt .product-atc-error {
  margin-top: 10px;
}

.pg-product .product-atc-opt-list {
  display: flex;
  flex-wrap: wrap;
}

.pg-product .product-atc-opt-list li {
  margin: 0 5px 5px 0;
}

.pg-product .product-atc-opt-list li:last-child {
  margin-right: 0;
}

.pg-product .product-atc-opt-list li.tooltip:before {
  bottom: calc(100% + 9px);
}

.pg-product .product-atc-opt-list li.tooltip:after {
  bottom: calc(100% + 3px);
}

.pg-product .product-atc-opt-list label {
  position: relative;
  display: block;
}

.pg-product .product-atc-opt-list div.radio {
  margin: 0;
  cursor: pointer;
}

.pg-product .product-atc-opt-list div.radio, .pg-product .product-atc-opt-list div.radio span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.pg-product .product-atc-opt-list div.radio span {
  border-color: #818181;
  border-radius: 0;
}

.pg-product .product-atc-opt-list div.radio span.checked:after {
  top: -1px;
  bottom: -2px;
  left: -1px;
  right: -1px;
  background: none;
  border: solid #2a2a2a;
  border-width: 3px 3px 6px 3px;
  border-radius: 0;
  box-shadow: inset 0 0 0 2px white;
}

.pg-product .product-atc-opt-list div.radio:hover span {
  border-color: #2a2a2a;
}

.pg-product .product-atc-opt-list div.radio.disabled {
  cursor: default;
  opacity: 1;
}

.pg-product .product-atc-opt-list div.radio.disabled span {
  opacity: 0.25;
  overflow: hidden;
}

.pg-product .product-atc-opt-list div.radio.disabled + span {
  opacity: 0.25;
}

.pg-product .product-atc-opt-list div.radio.disabled ~ img {
  opacity: 0.25;
}

.pg-product .product-atc-opt-list div.radio input {
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.pg-product .product-atc-opt-list .label {
  display: block;
  padding: 15px 20px;
  color: #444345;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.pg-product .product-atc-opt-size .modal-trigger {
  font-size: 12px;
}

.pg-product .product-atc-opt-color .label {
  height: 45px;
  width: 45px;
  padding: 0;
  overflow: hidden;
  text-indent: -500%;
}

.pg-product .product-atc-opt-color img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.pg-product .product-atc-opt-weight {
  margin-top: 20px;
}

.pg-product .product-alert-signup {
  margin-top: 20px;
}

.pg-product .product-alert-signup .form-title {
  margin-bottom: 5px;
  color: #343434;
  font: normal 14px/1 "Overpass-Bold", sans-serif;
}

.pg-product .product-alert-signup .form-inner-row {
  display: flex;
}

.pg-product .product-alert-signup .input-txt {
  flex: 1;
  border-radius: 2px 0 0 2px;
  border-right: 0;
  font-size: 16px;
  line-height: 1;
}

.pg-product .product-alert-signup .input-txt:-ms-input-placeholder {
  font-style: italic;
}

.pg-product .product-alert-signup .input-txt::-ms-input-placeholder {
  font-style: italic;
}

.pg-product .product-alert-signup .input-txt::placeholder {
  font-style: italic;
}

.pg-product .product-alert-signup .btn {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0 2px 2px 0;
  font-size: 12px;
}

.pg-product .form-row-qtybtn {
  display: flex;
  align-items: center;
}

.pg-product .product-atc-qty {
  display: flex;
  align-items: center;
  padding-right: 40px;
  clear: left;
}

.pg-product .product-atc-qty .row-title {
  margin-bottom: 0;
  margin-right: 8px;
  line-height: 30px;
}

.pg-product .product-atc-qty .input-text {
  width: 40px;
  padding: 4px 0;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.pg-product .product-atc-qty .validation-advice {
  clear: both;
}

.pg-product .product-atc-qty .form-tooltip[data-pos="right"] {
  left: 125%;
}

.pg-product .product-atc-qty .form-tooltip[data-pos="bottom"] {
  top: 130%;
}

.pg-product .product-atc-btn {
  flex: 1;
}

.pg-product .product-atc-btn .btn {
  display: block;
  width: 100%;
  max-width: 275px;
  padding-left: 0;
  padding-right: 0;
  font-family: "Overpass-Light", sans-serif;
  letter-spacing: 1px;
}

@media screen and (min-width: 960px) {
  .pg-product .product-atc-btn .btn {
    max-width: none;
  }
}

.pg-product .product-atc-btn .btn-faux {
  background: #e7e7e7;
  border: 0;
  color: #444345;
  cursor: default;
}

.pg-product .product-atc-btn .btn-faux i {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin-right: 10px;
  background: url("../svg/icon-check-mark-black.svg") center center no-repeat;
}

.pg-product .product-atc-btn .cta {
  display: block;
  font: normal 12px/1 "Overpass-Bold", sans-serif;
  text-align: right;
  text-transform: uppercase;
}

.pg-product .product-extra {
  clear: both;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: solid #e6e7e8 1px;
  overflow: hidden;
}

.pg-product .product-extra .recommendations {
  text-align: center;
}

.pg-product .product-extra .recommendations .title {
  font-size: 24px;
  line-height: 1;
}

.pg-product .product-extra .recommendations .grip-name {
  margin-top: 10px;
  color: #191919;
  font: normal 16px/1 "Overpass-Light", sans-serif;
}

.pg-product .product-extra .cta-body {
  display: block;
  padding: 25px;
  background: #d7d7d7 url("https://images.eaton.com/ecm/groups/public/@pub/@estore/@hydr/documents/content/dev_1041525.png") center center no-repeat;
  background-size: cover;
  color: #444345;
  font: normal 16px/1.25 "Overpass-Light", sans-serif;
  text-align: center;
  text-decoration: none;
}

.pg-product .product-extra .cta-body .title {
  margin-bottom: 5px;
  font: normal 25px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 959px) {
  .pg-product .product-extra .recommendations .grip {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .pg-product .product-extra .recommendations .grip:not(:last-child) {
    margin-bottom: 20px;
  }
  .pg-product .product-extra .cta-body {
    max-width: 350px;
    margin: 20px auto 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .pg-product .product-extra .col {
    float: left;
  }
  .pg-product .product-extra .recommendations {
    width: 60%;
    padding-right: 20px;
  }
  .pg-product .product-extra .recommendations .grip {
    float: left;
    width: 50%;
    margin-top: 10px;
  }
  .pg-product .product-extra .recommendations .grip:first-child {
    padding-right: 20px;
  }
  .pg-product .product-extra .recommendations .grip:last-child {
    padding-left: 20px;
  }
  .pg-product .product-extra .recommendations .grip-name {
    margin-top: 10px;
  }
  .pg-product .product-extra .cta {
    width: 40%;
    padding-left: 20px;
  }
  .pg-product .product-extra .cta-body .title {
    font-size: 30px;
  }
}

.modal-size-chart .modal-body-wrapper {
  position: fixed;
  height: 100%;
  max-height: 90%;
  max-height: calc(100% - 40px);
  max-width: 740px;
}

.modal-size-chart .modal-body {
  height: 100%;
}

.modal-size-chart .body {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  overflow-y: auto;
}

.modal-added-to-cart .product {
  margin-bottom: 10px;
  padding: 25px 0;
  border: solid #e6e6e6;
  border-width: 1px 0;
  overflow: hidden;
}

.modal-added-to-cart .product .col {
  float: left;
}

.modal-added-to-cart .product .img {
  width: 27%;
  padding-right: 15px;
}

.modal-added-to-cart .product .img img {
  display: block;
  width: 100%;
  border: solid #ebebeb 1px;
}

.modal-added-to-cart .product .details {
  position: relative;
  width: 73%;
}

.modal-added-to-cart .product .details .name {
  margin-bottom: 8px;
  color: #444345;
  font: normal 18px/1.25 "Overpass-Bold", sans-serif;
}

.modal-added-to-cart .product .details .meta {
  color: #6E6E6E;
  font: normal 13px/1.3 "Overpass-Light", sans-serif;
}

.modal-added-to-cart .product .details .meta .label {
  display: inline-block;
  margin-right: 3px;
  color: #444345;
  text-transform: uppercase;
}

.modal-added-to-cart .product .details .meta .qty {
  margin-top: 8px;
}

.modal-added-to-cart .product .details .meta .msg {
  margin-top: 8px;
}

.modal-added-to-cart .product .details .meta .msg .error-msg {
  padding: 0;
  background: none;
  color: #b0001d;
}

.modal-added-to-cart .product .details .price {
  line-height: 1;
}

@media screen and (max-width: 639px) {
  .modal-added-to-cart .product .details .price {
    margin-top: 10px;
    color: #6E6E6E;
    font: normal 16px/1 "Overpass-Light", sans-serif;
  }
}

@media screen and (min-width: 480px) {
  .modal-added-to-cart .product .details .name {
    padding-right: 90px;
  }
  .modal-added-to-cart .product .details .price {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
  }
}

@media screen and (min-width: 640px) {
  .modal-added-to-cart .product .details {
    padding-left: 5px;
  }
}

.modal-added-to-cart .cart-summary {
  color: #6a696c;
  font: normal 16px/1 "Overpass-Light", sans-serif;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
}

.modal-added-to-cart .cart-summary .subtotal {
  font-family: "Overpass-Bold", sans-serif;
}

@media screen and (max-width: 639px) {
  .modal-added-to-cart .cart-summary .subtotal {
    margin-bottom: 4px;
  }
}

@media screen and (min-width: 640px) {
  .modal-added-to-cart .cart-summary .subtotal {
    float: right;
  }
  .modal-added-to-cart .cart-summary .items {
    float: left;
  }
}

.modal-added-to-cart .btn-wrapper {
  overflow: hidden;
}

.modal-added-to-cart .btn-wrapper .btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.modal-added-to-cart .btn-wrapper .link {
  display: inline-block;
  margin-bottom: -12px;
  padding: 12px 0;
  font: normal 12px/1 "Overpass-Bold", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}

@media screen and (min-width: 640px) {
  .modal-added-to-cart .btn-wrapper .btn {
    width: calc(50% - 8px);
    max-width: none;
    margin: 0 !important;
  }
  .modal-added-to-cart .btn-wrapper .btn:nth-child(1) {
    float: left;
  }
  .modal-added-to-cart .btn-wrapper .btn:nth-child(2) {
    float: right;
  }
  .modal-added-to-cart .btn-wrapper .link {
    float: right;
  }
}

.pg-product-category .internal-hero {
  margin-bottom: 20px;
}

.pg-product-category .internal-hero img {
  display: block;
}

.pg-product-category .category-body {
  overflow: hidden;
}

.pg-product-category .clear {
  clear: both;
}

@media screen and (min-width: 640px) {
  .pg-product-category .product-filters {
    float: left;
    width: 220px;
    padding-right: 20px;
  }
  .pg-product-category .product-grid {
    margin-left: 220px;
    padding-left: 20px;
  }
}

@media screen and (min-width: 960px) {
  .pg-product-category .product-filters {
    width: 300px;
  }
  .pg-product-category .product-grid {
    margin-left: 300px;
  }
}

.pg-product-category .product-filters-inner {
  margin-top: 0;
  transition: margin 0.25s ease;
}

.pg-product-category .product-filter-block {
  margin-bottom: 22px;
  padding-bottom: 15px;
  border-bottom: solid #d7d7d7 1px;
}

.pg-product-category .product-filter-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.pg-product-category .product-filter-title {
  margin-bottom: 8px;
  color: #444345;
  font: normal 18px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

@media screen and (min-width: 960px) {
  .pg-product-category .product-filter-title {
    font-size: 22px;
  }
}

.pg-product-category .form-elem-checkradio {
  margin: 6px 0;
}

.pg-product-category .product-filter-block.active-filters {
  position: relative;
  padding-bottom: 22px;
}

.pg-product-category .product-filter-block.active-filters li:not(:last-child) {
  margin-bottom: 5px;
}

.pg-product-category .product-filter-block.active-filters .filter {
  position: relative;
  display: block;
  padding: 8px 10px 8px 32px;
  background: #EFEFEF;
  color: inherit;
  text-decoration: none;
  transition: background 0.25s ease;
}

.pg-product-category .product-filter-block.active-filters .filter .attr {
  display: inline-block;
  margin-right: 5px;
  font-weight: bold;
  text-transform: uppercase;
}

.pg-product-category .product-filter-block.active-filters .filter i {
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  height: 14px;
  width: 14px;
  background: #545556;
  border-radius: 50%;
  text-align: center;
  transform: translateY(-50%);
  transition: background 0.25s ease;
}

.pg-product-category .product-filter-block.active-filters .filter i:after {
  display: block;
  color: #FFFFFF;
  content: '\00D7';
  font: normal 14px/1 Arial,sans-serif;
}

.pg-product-category .product-filter-block.active-filters .filter:hover {
  background: #e2e2e2;
}

.pg-product-category .product-filter-block.active-filters .filter:hover i {
  background: #B0001D;
}

.pg-product-category .product-filter-block.active-filters .clear-all {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 14px;
  line-height: 18px;
}

@media screen and (min-width: 960px) {
  .pg-product-category .product-filter-block.active-filters .clear-all {
    line-height: 22px;
  }
}

.pg-product-category .product-filter-block.size,
.pg-product-category .product-filter-block.color {
  padding-bottom: 18px;
}

.pg-product-category .product-filter-block.size ul,
.pg-product-category .product-filter-block.color ul {
  font-size: 0;
}

.pg-product-category .product-filter-block.size li,
.pg-product-category .product-filter-block.color li {
  display: inline-block;
  margin: 0 5px 5px 0;
}

.pg-product-category .product-filter-block.size label,
.pg-product-category .product-filter-block.color label {
  position: relative;
  display: block;
  height: 30px;
  overflow: hidden;
}

.pg-product-category .product-filter-block.size label div.radio,
.pg-product-category .product-filter-block.color label div.radio {
  float: none;
  margin: 0;
}

.pg-product-category .product-filter-block.size label div.radio span,
.pg-product-category .product-filter-block.color label div.radio span {
  border-color: #818181;
  border-radius: 0;
}

.pg-product-category .product-filter-block.size label div.radio:hover span,
.pg-product-category .product-filter-block.size label div.radio span.checked,
.pg-product-category .product-filter-block.color label div.radio:hover span,
.pg-product-category .product-filter-block.color label div.radio span.checked {
  border-color: #2a2a2a;
}

.pg-product-category .product-filter-block.size label div.radio span.checked:after,
.pg-product-category .product-filter-block.color label div.radio span.checked:after {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #2a2a2a;
  border-radius: 0;
}

.pg-product-category .product-filter-block.size .label,
.pg-product-category .product-filter-block.color .label {
  display: inline-block;
  height: 30px;
  line-height: 30px;
}

.pg-product-category .product-filter-block.size .tooltip:before,
.pg-product-category .product-filter-block.color .tooltip:before {
  bottom: 39px;
}

.pg-product-category .product-filter-block.size .tooltip:after,
.pg-product-category .product-filter-block.color .tooltip:after {
  bottom: 33px;
}

.pg-product-category .product-filter-block.size .tooltip.tooltip--left:before, .pg-product-category .product-filter-block.size .tooltip.left:before,
.pg-product-category .product-filter-block.color .tooltip.tooltip--left:before,
.pg-product-category .product-filter-block.color .tooltip.left:before {
  left: 0;
}

.pg-product-category .product-filter-block.size .label {
  width: 30px;
  color: #444345;
  font-size: 13px;
  line-height: 30px;
  text-align: center;
}

.pg-product-category .product-filter-block.size div.radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.pg-product-category .product-filter-block.size div.radio span {
  height: 100%;
  width: 100%;
}

.pg-product-category .product-filter-block.color label {
  width: 30px;
}

.pg-product-category .product-filter-block.color div.radio span {
  height: 30px;
  width: 30px;
}

.pg-product-category .product-filter-block.color img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.pg-product-category .product-filter-block.color .label {
  position: absolute;
  top: -100px;
  white-space: nowrap;
}

@media screen and (max-width: 639px) {
  .pg-product-category .product-filters {
    max-width: 480px;
    margin: 0 auto 40px auto;
    padding: 10px 15px;
    border: solid #d7d7d7 1px;
  }
  .pg-product-category .product-filters .product-filters-trigger {
    position: relative;
    cursor: pointer;
  }
  .pg-product-category .product-filters .product-filters-trigger:before {
    content: 'Filter Grips';
    font: normal 14px/1 "Overpass-Bold", sans-serif;
    text-transform: uppercase;
  }
  .pg-product-category .product-filters .product-filters-trigger:after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    height: 20px;
    width: 20px;
    margin-top: -10px;
    background: url("../svg/icon-angle-down.svg") center center no-repeat;
    content: '';
  }
  .pg-product-category .product-filters .product-filter-block {
    display: none;
  }
  .pg-product-category .product-filters.active .product-filters-trigger {
    margin-bottom: 30px;
  }
  .pg-product-category .product-filters.active .product-filters-trigger:after {
    transform: rotate(180deg);
    transform-origin: center center;
  }
  .pg-product-category .product-filters.active .product-filter-block {
    display: block;
  }
}

.pg-product-category .product-grid {
  font-size: 0;
  overflow: hidden;
}

.pg-product-category .product-grid .title {
  margin: 0 0 20px 0;
  padding-left: 10px;
  color: #444345;
  font: normal 30px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-product-category .product-grid-item {
  position: relative;
  float: left;
  width: 50%;
  padding: 0 10px 20px 10px;
  font: normal 16px/1.25 "Overpass-Light", sans-serif;
}

@media screen and (max-width: 959px) {
  .pg-product-category .product-grid-item:nth-child(2n+1) {
    clear: left;
  }
}

@media screen and (min-width: 960px) {
  .pg-product-category .product-grid-item {
    width: 33.33333%;
  }
  .pg-product-category .product-grid-item:nth-child(3n+1) {
    clear: left;
  }
}

.pg-product-category .product-grid-item:after {
  position: absolute;
  top: 0;
  bottom: 20px;
  left: 10px;
  right: 10px;
  display: block;
  border: solid #8b8b8b 1px;
  content: '';
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.pg-product-category .product-grid-item .product-img {
  position: relative;
  border: solid #ebebeb 1px;
  transition: border-color 0.3s ease;
}

.pg-product-category .product-grid-item .product-img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pg-product-category .product-grid-item .product-img:after {
  position: absolute;
  bottom: -1px;
  left: 10px;
  right: 10px;
  display: block;
  height: 1px;
  background: #ebebeb;
  content: '';
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pg-product-category .product-grid-item .product-img .img-secondary {
  display: none;
}

@media screen and (min-width: 960px) {
  .pg-product-category .product-grid-item .product-img.has-alternate:hover .img-primary {
    display: none;
  }
  .pg-product-category .product-grid-item .product-img.has-alternate:hover .img-secondary {
    display: block;
  }
}

.pg-product-category .product-grid-item .product-data {
  padding: 20px 15px 0 15px;
}

@media screen and (max-width: 459px) {
  .pg-product-category .product-grid-item .product-data {
    position: relative;
  }
}

.pg-product-category .product-grid-item .product-flag {
  position: absolute;
  color: #ffffff;
  font: normal 11px/1.1 "Overpass-Bold", sans-serif;
  overflow: hidden;
  text-transform: uppercase;
  z-index: 0;
}

.pg-product-category .product-grid-item .product-flag div {
  width: 100%;
}

.pg-product-category .product-grid-item .product-flag .word {
  display: block;
}

.pg-product-category .product-grid-item .product-flag:after {
  position: absolute;
  background: #b0001d;
  content: '';
  z-index: -1;
}

@media screen and (max-width: 459px) {
  .pg-product-category .product-grid-item .product-flag {
    bottom: 100%;
    right: 0;
    max-width: calc(100% - 10px);
    padding: 4px 5px 4px 7px;
    border-radius: 4px 0 0 0;
    text-align: right;
  }
  .pg-product-category .product-grid-item .product-flag:after {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
}

@media screen and (min-width: 460px) {
  .pg-product-category .product-grid-item .product-flag {
    top: 0;
    right: 10px;
    display: flex;
    align-items: center;
    height: 72px;
    width: 88px;
    padding-bottom: 12px;
    font-size: 17px;
    text-align: center;
  }
  .pg-product-category .product-grid-item .product-flag .word:not(:first-child) {
    font-size: 11px;
  }
  .pg-product-category .product-grid-item .product-flag:after {
    bottom: 6px;
    left: 0;
    height: calc(100% + 20px);
    width: 100%;
    transform: skewY(8deg);
  }
  .pg-product-category .product-grid-item .product-flag[data-flag="customize"] {
    font-size: 13px;
  }
  .pg-product-category .product-grid-item .product-flag[data-flag="personalize"] {
    font-size: 11px;
  }
  .pg-product-category .product-grid-item .product-flag[data-flag="clubmaker series"] .word:first-child {
    font-size: 13px;
  }
}

.pg-product-category .product-grid-item .product-name {
  margin-bottom: 5px;
  color: #444345;
  font: normal 18px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-product-category .product-grid-item .product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pg-product-category .product-grid-item .product-name a:hover {
  color: #b0001d;
}

@media screen and (min-width: 960px) {
  .pg-product-category .product-grid-item .product-name {
    font-size: 22px;
  }
}

.pg-product-category .product-grid-item .product-tagline {
  color: #6E6E6E;
}

.pg-product-category .product-grid-item .product-meta-wrapper {
  margin-top: 15px;
  color: #6E6E6E;
  font-size: 13px;
  line-height: 1.25;
}

.pg-product-category .product-grid-item .product-meta-color {
  margin-bottom: 5px;
  font-size: 0;
}

.pg-product-category .product-grid-item .product-meta-color .swatch {
  position: relative;
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 6px 6px 0;
  border: solid #818181 1px;
  font-size: 13px;
  overflow: hidden;
  text-indent: -200px;
}

.pg-product-category .product-grid-item .product-meta-color .swatch:last-child {
  margin-right: 0;
}

.pg-product-category .product-grid-item .product-meta-color .swatch:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  border: solid #FFFFFF 1px;
  content: '';
}

.pg-product-category .product-grid-item .product-meta-color .swatch:hover, .pg-product-category .product-grid-item .product-meta-color .swatch.active {
  border-color: #000;
}

.pg-product-category .product-grid-item .product-meta-color .swatch:hover:after, .pg-product-category .product-grid-item .product-meta-color .swatch.active:after {
  display: block;
}

.pg-product-category .product-grid-item .product-meta-size {
  font-size: 0;
}

.pg-product-category .product-grid-item .product-meta-size .label {
  display: inline-block;
  margin-right: 6px;
  color: #343434;
  font: normal 11px/15px "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-product-category .product-grid-item .product-meta-size .swatch {
  display: inline-block;
  height: 15px;
  min-width: 15px;
  margin: 0 6px 6px 0;
  padding-left: 2px;
  padding-right: 2px;
  border: solid #8C8E90 1px;
  color: #8C8E90;
  font: normal 11px/13px "Overpass-Light", sans-serif;
  text-align: center;
}

.pg-product-category .product-grid-item .product-meta-size .swatch:last-child {
  margin-right: 0;
}

.pg-product-category .product-grid-item .product-price {
  margin-top: 18px;
  font-size: 0;
}

.pg-product-category .product-grid-item .product-price .price {
  display: inline-block;
  color: #cf0022;
  font: normal 18px/1 "Overpass-Bold", sans-serif;
}

.pg-product-category .product-grid-item .product-price .price-original {
  display: inline-block;
  margin-left: 10px;
  color: #6E6E6E;
  font: normal 13px/18px "Overpass-Light", sans-serif;
  text-decoration: line-through;
  vertical-align: baseline;
}

.pg-product-category .product-grid-item .product-reviews {
  margin-top: 15px;
}

.pg-product-category .product-grid-item .product-reviews .pr-star-v4 {
  height: 15px;
  width: 15px;
}

.pg-product-category .product-grid-item .product-cta {
  position: relative;
  margin-top: 20px;
  padding: 20px 15px;
  font: normal 12px/1 "Overpass-Bold", sans-serif;
  opacity: 0;
  text-align: right;
  text-transform: uppercase;
}

.pg-product-category .product-grid-item .product-cta:after {
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 1px;
  background: #ebebeb;
  content: '';
  transition: opacity 0.3s ease;
}

.pg-product-category .product-grid-item:hover:after {
  opacity: 1;
}

.pg-product-category .product-grid-item:hover .product-img {
  border-color: transparent;
}

.pg-product-category .product-grid-item:hover .product-img:after {
  opacity: 1;
}

.pg-product-category .product-grid-item:hover .product-cta {
  opacity: 1;
}

.pg-product-category .pagination-form-wrapper {
  clear: both;
  margin-top: 20px;
  overflow: hidden;
}

.pg-product-category .pagination-form {
  float: right;
  overflow: hidden;
}

.pg-product-category .pagination-form .link {
  display: inline-block;
  height: 30px;
  width: 22px;
  padding-top: 5px;
  text-align: center;
}

.pg-product-category .pagination-form .link i {
  position: relative;
  display: inline-block;
  height: 18px;
  width: 18px;
}

.pg-product-category .pagination-form .link svg {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #848286;
  transform: translate(-50%, -50%);
}

.pg-product-category .pagination-form .link.disabled {
  opacity: 0.3;
}

.pg-product-category .pagination-form .link-pg-prev svg,
.pg-product-category .pagination-form .link-pg-next svg {
  height: 19px;
  width: 7px;
}

.pg-product-category .pagination-form .link-pg-first svg,
.pg-product-category .pagination-form .link-pg-last svg {
  height: 19px;
  width: 10px;
}

.pg-product-category .pagination-form .input-wrapper {
  display: inline-block;
  height: 30px;
  margin: 0 5px;
  color: #444345;
  font: normal 13px/30px "Overpass-Light", sans-serif;
  vertical-align: top;
}

.pg-product-category .pagination-form .input-text {
  height: 30px;
  width: 35px;
  margin-right: 4px;
  padding: 0;
  color: #444345;
  font: normal 13px/28px "Overpass-Light", sans-serif;
  text-align: center;
}

.pg-search .section-title {
  margin-bottom: 20px;
  font: normal 30px/1 "Overpass-Bold", sans-serif;
}

.pg-search .content-section.intro .notice {
  color: #444345;
  font: normal 22px/1.25 "Overpass-Light", sans-serif;
}

.pg-search .content-section.intro .suggestions {
  max-width: 700px;
  margin-top: 25px;
  padding: 25px;
  background: #ebebeb;
  color: #444345;
}

.pg-search .content-section.intro .suggestions .title {
  font-family: "Overpass-Bold", sans-serif;
}

.pg-search .content-section.intro .suggestions li:before {
  color: inherit;
  content: "\2022";
}

.pg-search .content-section.other-interests {
  margin-top: 50px;
  padding-top: 45px;
  border-top: solid #d7d7d7 1px;
}

.pg-search .content-section.other-interests .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.pg-search .product-grid {
  font-size: 0;
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .pg-search .product-grid {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pg-search .product-grid-item {
  position: relative;
  float: left;
  width: 50%;
  padding: 0 10px 20px 10px;
  font: normal 16px/1.25 "Overpass-Light", sans-serif;
}

@media screen and (max-width: 959px) {
  .pg-search .product-grid-item:nth-child(2n+1) {
    clear: left;
  }
}

@media screen and (min-width: 960px) {
  .pg-search .product-grid-item {
    width: 25%;
  }
  .pg-search .product-grid-item:nth-child(4n+1) {
    clear: left;
  }
}

.pg-search .product-grid-item:after {
  position: absolute;
  top: 0;
  bottom: 20px;
  left: 10px;
  right: 10px;
  display: block;
  border: solid #8b8b8b 1px;
  content: '';
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.pg-search .product-grid-item .product-img {
  position: relative;
  border: solid #ebebeb 1px;
  transition: border-color 0.3s ease;
}

.pg-search .product-grid-item .product-img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pg-search .product-grid-item .product-img:after {
  position: absolute;
  bottom: -1px;
  left: 10px;
  right: 10px;
  display: block;
  height: 1px;
  background: #ebebeb;
  content: '';
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pg-search .product-grid-item .product-data {
  padding: 20px 15px 0 15px;
}

.pg-search .product-grid-item .product-flag {
  position: absolute;
  top: 20px;
  right: 11px;
  padding: 5px 8px;
  font: normal 14px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-search .product-grid-item .product-flag.new {
  background: #b0001d;
  color: #ffffff;
}

@media screen and (max-width: 479px) {
  .pg-search .product-grid-item .product-flag {
    top: 10px;
    padding: 3px 5px;
    font-size: 12px;
  }
}

.pg-search .product-grid-item .product-name {
  margin-bottom: 5px;
  color: #444345;
  font: normal 16px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-search .product-grid-item .product-tagline {
  color: #6E6E6E;
  font-size: 13px;
}

.pg-search .product-grid-item .product-meta-wrapper {
  margin: 15px 0 18px 0;
  color: #6E6E6E;
  font-size: 13px;
  line-height: 1.25;
}

.pg-search .product-grid-item .product-meta .label {
  display: inline-block;
  margin-right: 3px;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-search .product-grid-item .product-price {
  font-size: 0;
}

.pg-search .product-grid-item .product-price .price {
  display: inline-block;
  color: #444345;
  font: normal 18px/1 "Overpass-Bold", sans-serif;
}

.pg-search .product-grid-item .product-price .price-original {
  display: inline-block;
  margin-left: 10px;
  color: #6E6E6E;
  font: normal 13px/18px "Overpass-Light", sans-serif;
  text-decoration: line-through;
  vertical-align: baseline;
}

.pg-search .product-grid-item .product-cta {
  position: relative;
  margin-top: 20px;
  padding: 20px 15px;
  font: normal 12px/1 "Overpass-Bold", sans-serif;
  opacity: 0;
  text-align: right;
  text-transform: uppercase;
  z-index: 110;
}

.pg-search .product-grid-item .product-cta:after {
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 1px;
  background: #ebebeb;
  content: '';
  transition: opacity 0.3s ease;
}

.pg-search .product-grid-item:hover:after {
  opacity: 1;
}

.pg-search .product-grid-item:hover .product-img {
  border-color: transparent;
}

.pg-search .product-grid-item:hover .product-img:after {
  opacity: 1;
}

.pg-search .product-grid-item:hover .product-cta {
  opacity: 1;
}

.pg-search .content-section.featured-videos {
  margin-top: 50px;
  padding-top: 45px;
  border-top: solid #d7d7d7 1px;
}

.pg-search .content-section.featured-videos .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.pg-search .content-section.featured-videos .video-grid {
  font-size: 0;
}

.pg-search .content-section.featured-videos .video-grid-item {
  margin-bottom: 30px;
}

.pg-search .content-section.featured-videos .video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.pg-search .content-section.featured-videos .video .video-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.pg-search .content-section.featured-videos .video .vjs-big-play-button {
  top: 12px;
  left: 12px;
  height: 34px;
  width: 34px;
  margin: 0;
  background-color: transparent;
  border: 4px solid white;
  font-size: 26px;
  line-height: 1;
}

.pg-search .content-section.featured-videos .video-title {
  margin-top: 8px;
  font: normal 16px/1.25 "Overpass-Bold", sans-serif;
}

@media screen and (max-width: 639px) {
  .pg-search .content-section.featured-videos .video-grid {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 640px) {
  .pg-search .content-section.featured-videos .video-grid-item {
    display: inline-block;
    width: 50%;
    padding: 0 15px;
  }
}

.pg-support .page-feautred-container {
  min-height: 110px;
  background: #000000;
}

.pg-support .page-feautred-container .page-title {
  text-transform: uppercase;
}

.pg-support .section-title {
  margin-bottom: 20px;
  font: normal 30px/1 "Overpass-Bold", sans-serif;
}

.pg-support .support-details {
  color: #6E6E6E;
}

.pg-support .support-form {
  margin-top: 30px;
}

.pg-support .support-form .btn {
  width: 100%;
  max-width: 275px;
}

.pg-support .support-form .disclaimer {
  font-size: 14px;
}

.pg-support .error-msg {
  margin-top: 20px;
}

.pg-support .col-wrapper {
  min-height: 300px;
  overflow: hidden;
}

@media screen and (max-width: 639px) {
  .pg-support .col-wrapper {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .pg-support .col1 {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 640px) {
  .pg-support .col {
    float: left;
    width: 50%;
  }
  .pg-support .col1 {
    padding-right: 20px;
  }
  .pg-support .col2 {
    padding-left: 20px;
  }
}

@media screen and (min-width: 960px) {
  .pg-support .col1 {
    padding-right: 30px;
  }
  .pg-support .col2 {
    padding-left: 30px;
  }
}

.pg-vip-splash .main {
  padding: 0 0 100px 0;
}

.pg-vip-splash .page-wrapper {
  max-width: 450px;
}

.pg-vip-splash .vip-hero img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .pg-vip-splash .page-wrapper {
    max-width: 900px;
  }
}

@media screen and (min-width: 1280px) {
  .pg-vip-splash .page-wrapper {
    max-width: 950px;
  }
}

.pg-vip-splash .vip-status-msg {
  margin-top: 30px;
  padding-left: 25px;
  padding-right: 25px;
}

.pg-vip-splash .vip-status-msg svg {
  margin-right: 15px;
}

.pg-vip-splash .vip-account-forms {
  margin-top: 30px;
}

.pg-vip-splash .vip-account-forms form,
.pg-vip-splash .vip-account-forms .form-row {
  overflow: visible;
}

.pg-vip-splash .vip-entry-form-wrapper {
  margin-bottom: 50px;
}

.pg-vip-splash .vip-entry-form form {
  display: flex;
}

.pg-vip-splash .vip-entry-form .form-row {
  margin: 0;
}

.pg-vip-splash .vip-entry-form .form-row:first-child {
  flex: 1;
  padding-right: 5px;
}

.pg-vip-splash .vip-entry-form .form-row:last-child {
  padding-left: 5px;
}

.pg-vip-splash .vip-entry-form .input-txt {
  height: 50px;
  padding-top: 15px;
  padding-bottom: 0;
}

.pg-vip-splash .vip-entry-form .btn-submit {
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 50px;
}

.pg-vip-splash .vip-entry-form-error-msg {
  margin-top: 20px;
}

.pg-vip-splash .vip-registration-form .form-row.newsletter-optin {
  margin: 40px 0;
}

.pg-vip-splash .vip-registration-form .form-row.newsletter-optin label {
  font-size: 14px;
  line-height: 1.3;
}

.pg-vip-splash .vip-registration-form .submit .btn {
  width: 100%;
  max-width: 300px;
}

.pg-vip-splash .vip-login-form-cta {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.pg-vip-splash .vip-login-form-cta .cta {
  flex: 1;
  margin: 0;
  padding-right: 15px;
  font-size: 0;
  line-height: 1;
}

.pg-vip-splash .vip-login-form-cta .cta:after {
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 8.92857%;
  background: url("https://images.eaton.com/ecm/groups/public/@pub/@estore/@hydr/documents/content/pct_3673521.png") left center no-repeat;
  background-size: contain;
  content: '';
}

.pg-vip-splash .vip-login-form-cta .btn {
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 50px;
}

.pg-vip-splash .vip-login-form .form-ctrls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.pg-vip-splash .vip-login-form .submit .btn {
  width: 100%;
  max-width: 300px;
}

@media screen and (max-width: 959px) {
  .pg-vip-splash .vip-login-form-col {
    margin-top: 80px;
  }
}

@media screen and (min-width: 960px) {
  .pg-vip-splash .vip-account-forms {
    display: flex;
    justify-content: space-between;
  }
  .pg-vip-splash .vip-account-form-col {
    width: 100%;
    max-width: 400px;
  }
  .pg-vip-splash .vip-login-form-col {
    width: 100%;
    max-width: 400px;
  }
}

.error-page #main {
  padding: 65px 0;
}

@media screen and (min-width: 960px) {
  .error-page #main {
    padding: 100px 0;
  }
}

.error-page .page-wrapper {
  padding-left: 20px;
  padding-right: 20px;
}

.error-page__illustration {
  width: 75%;
  max-width: 510px;
  margin: 0 auto 70px auto;
}

.error-page__illustration img {
  display: block;
}

.error-page__logo {
  margin-bottom: 55px;
}

.error-page__logo .logo {
  display: block;
  height: 44px;
  width: 160px;
  background: transparent url("../svg/logo-golf-pride.svg") center center/contain no-repeat;
  text-indent: -9999px;
}

.error-page__heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.error-page__error-type {
  margin-top: 25px;
  font: bold 16px/1 "Overpass-Bold", sans-serif;
}

.error-page__error-title {
  order: -1;
  font: normal 30px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.error-page__error-body {
  font-size: 22px;
}

.error-page__error-body p {
  font-size: inherit;
}

.error-page__error-body > *:first-child {
  margin-top: 0;
}

.error-page__error-body > *:last-child {
  margin-bottom: 0;
}

.error-page__search-form {
  margin-top: 35px;
}

.error-page__search-form form {
  max-width: 350px;
  margin: 0;
}

.error-page__search-form .form-row {
  display: flex;
}

.error-page__search-form .input-txt {
  flex: 1;
  border-width: 1px 0 1px 1px;
  border-radius: 3px 0 0 3px;
}

.error-page__search-form button {
  position: relative;
  width: 50px;
  background-color: #b0001d;
  border: 1px solid #b0001d;
  border-radius: 0 3px 3px 0;
  outline: none;
  text-indent: -9999px;
  transition: all 0.3s;
}

.error-page__search-form button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  transition: all 0.3s;
  fill: white;
}

/*# sourceMappingURL=ecommerce.css.map */
