/****************************
-- Shopping Cart --
****************************/
.cart, 
.cart .cart-link {
  position: relative;
  display: block;
}
  .cart .cart-img {
    max-width: 35px;
    padding-bottom: 25px;
    display: block;
  }
 
  .cart .cart-link:before, .cart .cart-link:after {
    border: 0;
    bottom: -1px;
    content: '';
    height: 0;
    left: 50%;
    opacity: 0;
    position: absolute;
    width: 0;
    -webkit-transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
    transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
  }
  
  .cart:hover > a:before,
  .cart:hover > a:after {
    opacity: 1;
  }
  
  .cart:hover > a:before {
    border-color: transparent transparent #fff transparent;
    border-style: solid;
    border-width: 10px;
    margin-left: -9px;
    z-index: 100;
  }
  
  .cart:hover > a:after {
    border-color: transparent transparent #e2e2e2 transparent ;
    border-style: solid;
    border-width: 11px;
    margin-left: -10px;
    z-index: 1;
  }

  .cart:hover .cart-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  
 @media (min-width: 768px) {
	 .cart.hoverState > a:before {
		border-color: transparent transparent #fff transparent;
		border-style: solid;
		border-width: 10px;
		margin-left: -9px;
		z-index: 100;
		opacity: 1;
	  }
	  
	  .cart.hoverState > a:after {
		border-color: transparent transparent #e2e2e2 transparent ;
		border-style: solid;
		border-width: 11px;
		margin-left: -10px;
		z-index: 1;
		opacity: 1;
	  }

	  .cart.hoverState .cart-dropdown {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
	  }
 }
  
  .cart .red-bubble {
    font-size: 12px;
    font-weight: bold;
    color: white;
    background-color: red;
    position: absolute;
    top: -8px;
    right: -8px;
    border-radius: 50%;
    text-align: center;
    padding: 2px 5px;
  }
  
  .header_desktop .cart .red-bubble {
    top: -7px;
  }
  
  .cart .cart-dropdown {
    position: absolute;
    left: auto;
    right: -20px;
    width: 320px;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
    transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
  }
  
  .cart .cart-dropdown .empty-cart {
      font-size: 14px;
      padding: 30px;
      text-align: center;
  }
  
  .header_desktop .cart:hover .cart-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  
  .cart-dropdown p {
    font-size: 13px;
    line-height: 1.38;
    font-weight: normal;
    color: #000;
    text-transform: none;
  }
  
  @media (min-width: 768px) {
    .cart-dropdown p {
        font-size: 14px;
    }
  }
  
  .cart-dropdown .item-content p:last-child {
    margin-bottom: 0;
  }
  
  .cart .cart-dropdown .cart-container {
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    z-index: 1;
    position: relative;
    min-height: 90px;
  }
  
  .cart-dropdown .cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    font-size: 13px;
  }
  
  @media (min-width: 768px) {
    .cart-dropdown .cart-items {
      border: 1px solid #e2e2e2;
      font-size: 14px;
    }
  }
  
  .cart-dropdown .cart-items li:last-child {
    border-bottom: 0;
  }
  
  .cart-dropdown .cart-items li {
    padding: 11px 17px;
    margin: 0;
    min-height: 92px;
    border-bottom: 1px solid #e2e2e2;
  }
  
  @media (min-width: 768px) {
    .cart-dropdown .cart-items li {
        padding: 20px;
    }
  }
  
  .cart-dropdown .cart-items li .cart-item-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  
  .cart-dropdown .item-image {
    width: 30%;
    text-align: left;
    margin-right: 5%;
  }
  
  .cart-dropdown .item-image img {
    display: inline-block;
    height: auto;
    max-height: 100px;
    vertical-align: middle;
  }
  
  .cart-dropdown .item-content {
    width: 65%;
  }
  
  .cart-dropdown .cart-footer {
    text-align: center;
    padding: 12px;
  }
  
  @media (min-width: 768px) {
    .cart-dropdown .cart-footer {
      border: 1px solid #e2e2e2;
      border-top: 0;
    }
  }
  
  .cart-dropdown .cart-footer .btn {
    width: 100%;
    font-size: 13px;
    padding: 9px 17px;
    line-height: normal;
    letter-spacing: 1px;
  }
  
  .cart-dropdown .more-items {
    margin: 0;
  }
  
  .cart-dropdown .more-items p {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .cart-dropdown .more-items .btn {
    margin-bottom: 6px;
  }
  
  .loader-wrapper {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    background: #000;
    visibility: visible;
    opacity: 0.6;
    z-index: 1;
  }
  
  .loader-wrapper::after {
    content: "";
    background: url(/images/ajax-loader-2.gif) no-repeat center center;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    opacity: 1 !important;
    background-size: contain;
    width: 70px;
    height: 70px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .hide {
    display: none !important;
  }
  
 /****************************
-- Profile Dropdown --
****************************/
 .profile_login_item {
    position: relative;
    color: black;
  }
  
  .profile_login_item > a {
    display: block;
    height: 100%;
    color: black;
  }

.profile_login_item > a:hover {
  color: black;
}
  
  .profile_login_item > a:before, .profile_login_item > a:after {
    border: 0;
    bottom: -1px;
    content: '';
    height: 0;
    left: 50%;
    opacity: 0;
    position: absolute;
    width: 0;
    -webkit-transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
    transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
  }
  
  .profile_login_item:hover > a:before,
  .profile_login_item:hover > a:after {
    opacity: 1;
  }
  
  .profile_login_item.link:hover > a:before,
  .profile_login_item.link:hover > a:after {
    opacity: 0;
  }
  
  .profile_login_item:hover > a:before {
    border-color: transparent transparent #fff transparent;
    border-style: solid;
    border-width: 10px;
    margin-left: -9px;
    z-index: 100;
  }
  
  .profile_login_item:hover > a:after {
    border-color: transparent transparent #e2e2e2 transparent ;
    border-style: solid;
    border-width: 11px;
    margin-left: -10px;
    z-index: 1;
  }
  
  .profile_login_item .link-items {
    position: relative;
  }
  
  .profile_login_item .link-items p {
    font-size: 8.27px;
    line-height: 1.5;
    font-weight: bold;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  
  .header_mobile_profile_toggle .link-items { 
    position: relative;
    margin-top: 10px;
    text-align: center;
  }
  
  .header_mobile_profile_toggle .link-items img {
    margin: 0 auto;
  }
  
  .header_mobile_profile_toggle .link-items p {
    font-size: 8.27px;
    line-height: 1.5;
    font-weight: bold;
    padding-bottom: 0;
    color: #262626;
  }
  
  .profile_login_item .link img {
    max-width: 40px;
    display: block;
    position: static;
    z-index: 1;
    margin: 0 auto;
  } 
  
  .profile_login_item .login-dropdown {
    position: absolute;
    left: auto;
    right: -20px;
    width: 320px;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    -webkit-transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
    transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
  }
  
  .profile_login_item:hover .login-dropdown {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .header_mobile_profile_dropdown {
    width:100%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
  }

  .header_mobile_profile_dropdown.active {
    visibility: visible;
    opacity: 1;
    z-index: 99;
  }
  
  .login-dropdown .container {
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border: 1px solid #e2e2e2;
    background-color: #fff;
    z-index: 1;
    position: relative;
    min-height: 90px;
    padding-left: 30px;
    padding-right: 30px;

  }
  
  .login-dropdown .header,
  .login-dropdown .body  {
    padding: 20px 0;
    border-bottom: 1px solid #000000;
    text-align: left;
  } 
  
  .login-dropdown .header {
    padding-bottom: 10px;
  }
  
  .login-dropdown .body  {
    padding: 10px 0 20px;
  }
  
  .login-dropdown .footer  {
    padding: 20px 0 20px;
  }

  .login-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .login-dropdown ul li {
    position: relative;
    padding-bottom: 6px;
    line-height: 25px;

  }
  
  .login-dropdown ul li, .login-dropdown p, .login-dropdown ul li a {
    padding-bottom: 6px;
    font-size: 16px;
    line-height: 25px;
    font-weight: normal;
    margin-bottom: 0;
    color: #000;
  }
  
  .login-dropdown .welcome {
    font-size: 25px;
    line-height: 1.5;
  }
  
  .login-dropdown .container .btn {
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    padding: 9px 17px;
    line-height: normal;
    letter-spacing: 1px;
    margin-left: 0;
  }
  
  .login-dropdown ul li a {
    color: inherit;
  }
  
  .login-dropdown ul li img {
    display: inline-block;
    vertical-align: middle;
    max-width: 20px;
    margin-right: 10px;
  }
  
  .login-dropdown ul li span {
    vertical-align: middle;
  }
  
  .logged-out .body .btn {
    margin-top: 14px;
  }
  
  .logged-out li {
    padding-left: 20px;
  }
  
  .logged-out li:before { 
    content:"\2713\0020"; 
    padding-right: 5px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

/****************************
-- Buttons --
****************************/

  .cart .btn, 
  .login-dropdown .btn,
  .cart-black.btn {
    border-radius: 3px;
    border: 0;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: normal;
    padding: 9px 17px;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 0;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    color: white;
    margin-left: 0;
}

.cart .btn:hover,
.login-dropdown .btn:hover,
.cart-black.btn:hover {
  border-color: transparent;
  box-shadow: none;
  border-radius: 3px;
}

.login-dropdown .btn.bordered {
  border-left: 2px solid #2C262D;
  border-right: 2px solid #2C262D;
  color: #2C262D;
}

  .cart .btn:before,
  .login-dropdown .btn:before,
  .cart-black.btn:before {
    background-size: 100%;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 200%;
    z-index: -2;
    border: none;
    transform: none;
    border-radius: 0;
    -webkit-transition: transform 300ms ease;
    transition: transform 300ms ease;
    background: rgb(44,38,45);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: none;
}

.cart .btn:after,
.login-dropdown .btn:after,
.cart-black.btn:after {
  bottom: 0;
  box-shadow: inset 0 0 1px 2px rgba(0,0,0,0.25);
  content: '';
  left: -3px;
  position: absolute;
  right: -3px;
  top: -3px;
  z-index: -1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.cart .btn:hover:before,
.login-dropdown .btn:hover:before,
.cart-black.btn:hover:before {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.cart .btn:hover:before,
.login-dropdown .btn:hover:before,
.cart-black.btn:hover:before {
  background-color: rgb(107,107,107);
}

.login-dropdown .btn.bordered.t8:before {
  background: rgb(44,38,45);
}

.login-dropdown .btn.bordered:before {
  background-size: 100%;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: -2;
  -webkit-transition: transform 300ms ease;
  transition: transform 300ms ease;
}

.login-dropdown .btn.bordered:after {
  background-position: 0 0, 0 100% !important;
  background-repeat: no-repeat !important;
  background-size: 100% 2px !important;
  bottom: 0;
  content: '';
  left: -2px;
  position: absolute;
  right: -2px;
  top: 0;
}

.login-dropdown .btn.bordered:after {
  background: rgb(44,38,45);
  background: -moz-linear-gradient(left, rgba(44,38,45,1) 0%, rgba(44,38,45,1) 100%), -moz-linear-gradient(left, rgba(44,38,45,1) 0%, rgba(44,38,45,1) 100%);
  background: -webkit-linear-gradient(left, rgba(44,38,45,1) 0%,rgba(44,38,45,1) 100%), -webkit-linear-gradient(left, rgba(44,38,45,1) 0%,rgba(44,38,45,1) 100%);
  background: -ms-linear-gradient(left, rgba(44,38,45,1) 0%,rgba(44,38,45,1) 100%), -ms-linear-gradient(left, rgba(44,38,45,1) 0%,rgba(44,38,45,1) 100%);
  background: linear-gradient(to right, rgba(44,38,45,1) 0%,rgba(44,38,45,1) 100%), linear-gradient(to right, rgba(44,38,45,1) 0%,rgba(44,38,45,1) 100%);
}

.login-dropdown .btn.bordered:hover {
  color: white;
}

.login-dropdown .btn.bordered:hover:before {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

/*Success Message*/ 
.success-message {
  clear: both;
  margin: 0;
  font-size: 13px;
  height: auto !important;
}

.success-message .checkmark {
  color: green;
  margin-right: 5px; 
  font-weight: bold;  
}

/****************************
-- Custom Modal --
****************************/
.custom-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9001;
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease; 
  color: #000;
}

.custom-modal.active {
  opacity: 1;
  visibility: visible;
  height: auto; 
}

.custom-modal-container {
  height: 100%;
  width: 720px;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; 
}

.custom-modal-container.small {
  width: 500px; 
}

.custom-modal a:hover {
  text-decoration: none;
}

.custom-modal .p {
  margin-bottom: 10px; 
}

.custom-modal .p.small {
  font-size: 12px; 
}

.custom-modal .p.right {
  text-align: right; 
}

.custom-modal .p.uppercase {
  text-transform: uppercase; 
}

.custom-modal .container {
  padding: 30px;
  text-align: center; 
}

.custom-modal .btn {
  text-align: center;
  margin: 0 auto;
  font-weight: normal;
  white-space: normal; 
}

.custom-modal .close-wrapper {
  position: relative; 
}

.custom-modal .close {
  width: 30px;
  height: 30px;
  padding-top: 2px;
  display: inline-block;
  border-radius: 1000px;
  background: #000;
  font-size: 25px;
  text-align: center;
  line-height: 100%;
  color: #fff;
  position: absolute;
  right: -15px;
  top: -15px;
  z-index: 9002; 
}

.custom-modal .img {
  margin: 15px 0; 
}

.custom-modal img {
  display: block;
  margin: 0 auto; 
}

.custom-modal-content {
  position: relative;
  background: #fff;
  border-radius: 5px;
  height: auto;
  max-height: 100%;
  overflow: hidden;
  overflow-y: auto; 
}
  
.custom-modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(43, 40, 38, 0.6);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 800ms ease;
  transition: opacity 800ms ease; 
}

.custom-modal-bg.active {
  opacity: 1;
  visibility: visible; 
}

/****************************
--  Item in Cart Overlay --
****************************/
@media (max-width: 768px) {
  .item-in-cart-overlay {
    bottom: auto;
  }

  .item-in-cart-overlay .custom-modal-container {
    padding: 0;
    width: 100%;
  }

  .item-in-cart-overlay  .custom-modal-content {
    border-radius: 0;
  }

  .custom-modal .close {
    top: 0;
    right: 0;
    background: transparent;
    color: #000;
  }
}

.custom-modal.item-in-cart-overlay .container {
  padding: 15px;
}

.item-in-cart-overlay.active .desktop {
  display: none;
}

.item-in-cart-overlay.active .mobile {
  display: block;
}

.custom-modal.item-in-cart-overlay h3 {
  margin-bottom: 5px; 
  font-size: 24px;
  font-weight: 500;
}

.custom-modal.item-in-cart-overlay {
  font-size: 14px;
  line-height: 1.7;
}

.custom-modal.item-in-cart-overlay .item-image {
  max-width: 300px;
  margin: 25px auto;
}

.custom-modal.item-in-cart-overlay p {
  margin: 0 0 10px 0;
}

.custom-modal.item-in-cart-overlay .btn {
  margin: 5px 0;
  width: 100%;
  padding: 12px 15px;
}

.custom-modal.item-in-cart-overlay .underline {
  border-bottom: 1px solid #808080;
}

.custom-modal.item-in-cart-overlay .excellent-choice img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 16px;
}

@media (min-width: 768px) {
   .custom-modal.item-in-cart-overlay .container {
     padding: 30px;
   }

  .custom-modal.item-in-cart-overlay a.view-my-cart {
    color: #808080;
    display: inline-block;
  }

  .custom-modal.item-in-cart-overlay .excellent-choice {
    position: relative;
    display: inline-block;
    padding-left: 28px;
    color: #000;
  }

  .custom-modal.item-in-cart-overlay .btn  {
    max-width: 250px;
    margin: 20px 0;
  }

  .custom-modal.item-in-cart-overlay p { 
    margin: 0;
  }

  .item-in-cart-overlay.active .desktop {
    display: block;
  }
  
  .item-in-cart-overlay.active .mobile {
    display: none;
  }
}

/****************************
-- Add to Cart Styling--
****************************/

.add-to-cart .item-in-cart {
  position: relative;
  padding-left: 37px;
  margin: 0;
}

.add-to-cart img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 33px;
}

/****************************
-- Netgear Services --
****************************/
.ntgr-services-grid {
  margin: 30px 0;
}

.ntgr-services-col {
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .ntgr-services-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .ntgr-services-col {
    padding: 5px;
    width: 50%;
  }
}

.ntgr-service {
  border: 1px solid #d4d2d3;
  text-align: left;
  height: 100%;
  background: #fff;
}

.ntgr-service.collapse {
	height: auto;
}

.ntgr-service-header p {
  font-size: 14px;
  color: white;
  margin : 0;
  position: relative;
  padding-right: 20px;
}

.ntgr-service-header {
  background: black;
  padding: 10px 15px;
}

.ntgr-service-header .plus {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ntgr-service-header .plus:before {
  opacity: 0;
}

.collapse .ntgr-service-header .plus:before {
  opacity: 1;
}

.ntgr-service-header .plus:after,
.ntgr-service-header .plus:before {
  content: '';
  width: 2px;
  height: 14px;
  background: #d3d3d3;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.ntgr-service-header .plus:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.ntgr-service-body {
  padding: 15px;
  color: #878787;
  background: #fff;
}

.ntgr-service-body p {
  font-size: 12px;
  margin: 0 0 10px 0;
}

.custom-modal.item-in-cart-overlay .ntgr-service-body p {
  margin: 0 0 10px 0;
}

.ntgr-service-body label {
  font-size: 14px;
  color: black;
}

.ntgr-service a,
.ntgr-service a:hover,
.ntgr-service a:active,
.ntgr-service a:focus {
  color: #000;
  border-bottom: 1px solid  #000; 
  text-decoration: none;
}

.ntgr-service-body input[type="checkbox"]{
  vertical-align: middle;
  bottom: 1px;
  margin-right: 5px;
  position: relative;
}

.ntgr-service-body select {
  max-width: 100%;
  font-size: 12px;
  color: black;
  border-color: #b6b6b6;
  border-radius: 6px;
  padding: 2px;
}

.ntgr-service-body select:focus {
  outline-width: 0;
}

.text-green {
  color: #00d036;
}

.text-blue {
  color: #42c2de;
}

p.ntgr-service-promotion {
  font-size: 14px;
}

/****************************
-- Netgear Services Overlay --
****************************/
.service-overlay .container {
  text-align: left;
  font-size: 14px;
}

.service-overlay-content .ntgr-services-col {
  padding: 0 5px 0 0;
}

.service-overlay-content .ntgr-services-col.ntgr-services-img img {
  max-width: 80px;
  margin: 0;
}

@media (min-width: 1024px) {
  .service-overlay-content .ntgr-services-col.ntgr-services-img {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    width: 20%;
  }
  
  .service-overlay-content .ntgr-services-col.ntgr-services-content {
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    width: 80%;
  } 
}

.service-overlay-content .ntgr-services-col p {
  margin: 0 0 5px 0;
  line-height: 1.38;
  font-size: 14px;
}

.service-overlay .ntgr-services-logo {
  margin: 0 0 20px 0;
}

.service-overlay .ntgr-services-grid {
  margin: 0 0 20px 0;
}

.item-in-cart-overlay .ntgr-services-grid {
    margin: 10px 0 0;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 1024px) {
  .service-overlay .ntgr-services-grid {
    margin: 5px 0;
  }
}

/****************************
-- Pricing --
****************************/

.strike-through-price {
	text-decoration: line-through;
  color: #FF2906;
  padding-right: 5px;
}

#price-value {
  padding-right: 5px;
}