@font-face {
  font-family: "Frutiger";
  src: url("../css/Frutiger/Frutiger-Thin.woff2") format("woff2"), url("../css/Frutiger/Frutiger-Thin.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Frutiger";
  src: url("../css/Frutiger/Frutiger-Light.woff2") format("woff2"), url("../css/Frutiger/Frutiger-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Frutiger";
  src: url("../css/Frutiger/Frutiger-Regular.woff2") format("woff2"), url("../css/Frutiger/Frutiger-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Frutiger";
  src: url("../css/Frutiger/Frutiger-Bold.woff2") format("woff2"), url("../css/Frutiger/Frutiger-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Frutiger";
  src: url("../css/Frutiger/Frutiger-ExtraBlack.woff2") format("woff2"), url("../css/Frutiger/Frutiger-ExtraBlack.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.ginput_container_date {
  margin-left: 29%;
}

.gform_wrapper input, .gform_wrapper .textarea, .gform_wrapper .gfield_select, .gform_wrapper .gform_drop_area {
  font-size: 13px !important;
  font-weight: 300;
  color: #494948;
  border-radius: 20px;
  border: 1px solid #CCCCCC;
  padding: 4px 16px !important;
  background-color: white;
  min-height: 34px;
}

.gform_wrapper input::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
  margin-left: 8px;
}

.gform_button {
  color: #FFFFFF;
  background-color: #494948;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  border-radius: 20px;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
  border: 1px solid #494948;
}

.gform_button:hover {
  color: #494948;
  background-color: #FFFFFF;
  border: 1px solid #494948;
}

.gform_legacy_markup_wrapper ul.gform_fields:not(.top_label) .gform_fileupload_multifile .gform_drop_area {
  margin-left: unset !important;
}

.gform_wrapper ul.gform_fields:not(.top_label) .gform_fileupload_multifile .gform_drop_area {
  margin-left: unset !important;
}

@media screen and (min-width: 600px) {
  .gfield .large {
    margin-left: 0 !important;
    width: calc(35% - 8px) !important;
  }
  .gform_wrapper .left_label input.medium {
    width: 70% !important;
  }
}
* {
  transition: 0.2s all ease-in-out;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #FFFFFF;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #000000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #494948;
}

body {
  overflow-x: hidden;
  font-family: "Frutiger", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  background-color: #FFFFFF;
}

a {
  text-decoration: none;
}

p {
  color: #494948;
}

h1, h2, h3, h4, h5, h6, p, small, a, strong {
  color: #494948;
}

.h1, .h2, .h3, .h4, .h5, .h6, p, small, a, strong {
  color: #494948;
}

.container {
  max-width: 1280px;
}

.container-fluid {
  padding: 0 1.875rem;
}

nav.pagination .nav-links {
  width: 100%;
  display: flex;
  justify-content: center;
}
nav.pagination .nav-links span, nav.pagination .nav-links a {
  margin: 0 0.1rem;
  font-size: 13px;
  padding: 0.5rem 1rem;
  color: #494948;
  background-color: #A4A4A3;
}
nav.pagination .nav-links span.current, nav.pagination .nav-links a.current {
  color: #FFFFFF;
  background-color: #494948;
}
nav.pagination .nav-links span:hover, nav.pagination .nav-links a:hover {
  color: #494948;
  background-color: #FFFFFF;
}

#site-content {
  padding: 8rem 0;
}

/* Placeholder gradient animation */
.lazy-image {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading-animation 1.5s infinite;
  width: 100%; /* Ensure proper width */
  height: auto; /* Ensure proper height, or set fixed height */
  display: block;
}

@keyframes loading-animation {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* Remove the gradient once the image is loaded */
.lazy-image.loaded {
  background: none;
}

.video-container {
  width: 100%;
  height: 500px;
  cursor: pointer;
  display: block;
  position: relative;
  background: black;
  border-radius: 20px;
}
.video-container iframe {
  height: 500px;
}

.video-thumbnail {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 60px;
  color: white;
  width: 100px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

@media (max-width: 565px) {
  .video-container {
    width: 100% !important;
    height: 220px;
    cursor: pointer;
    display: block;
    position: relative;
    background: black;
    border-radius: 20px;
  }
  .video-container iframe {
    height: 500px;
  }
  .video-thumbnail {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 60px;
    color: white;
    width: 100px;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }
}
.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 200px;
}

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

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

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  display: flex;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 960px;
}

.video-modal-close {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.absolute {
  position: absolute;
}

.z-2 {
  z-index: 2;
}

.z-20 {
  z-index: 20;
}

.relative {
  position: relative;
}

@media (width >= 48rem) {
  .md\:absolute {
    position: absolute;
  }
}

.added * {
  fill: currentColor !important;
}

.fill-transparent {
  fill: transparent;
}

.SMP-BTN {
  display: block;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  border-radius: 20px;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
}
.SMP-BTN.btn-error {
  color: #fff !important;
  background-color: #dc3545 !important; /* Bootstrap danger red */
  border-color: #dc3545 !important;
}
.SMP-BTN.BTN-Primary {
  color: #494948;
  background-color: transparent;
  border: 1px solid #494948;
}
.SMP-BTN.BTN-Primary:hover {
  color: #FFFFFF;
  background-color: #494948;
}
.SMP-BTN.BTN-Secondary {
  color: #FFFFFF;
  background-color: #aa886a;
  border: 1px solid #aa886a;
}
.SMP-BTN.BTN-Secondary:hover {
  color: #494948;
  background-color: #FFFFFF;
  border: 1px solid #494948;
}
.SMP-BTN.BTN-Dark {
  color: #FFFFFF;
  background-color: #494948;
  border: 1px solid #494948;
}
.SMP-BTN.BTN-Dark:hover {
  color: #494948;
  background-color: #FFFFFF;
  border: 1px solid #494948;
}
.SMP-BTN.BTN-Third {
  color: #FFFFFF;
  background-color: #494948;
  border: 1px solid #FFFFFF;
}
.SMP-BTN.BTN-Third:hover {
  color: #494948;
  background-color: #FFFFFF;
  border: 1px solid #494948;
}
.SMP-BTN.BTN-White {
  color: #494948;
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.SMP-BTN.BTN-White:hover {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  background-color: #494948;
}
.SMP-BTN.BTN-WhiteBlue {
  color: #002138;
  background-color: #FFFFFF;
  border: 1px solid #002138;
}
.SMP-BTN.BTN-WhiteBlue:hover {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  background-color: #002138;
}
.SMP-BTN.BTN-Black {
  padding: 0;
  color: #FFFFFF;
  background-color: #000000;
  border: 1px solid #000000;
}
.SMP-BTN.BTN-Black:hover {
  color: #FFFFFF;
  border: 1px solid #000000;
  background-color: #000000;
}
.SMP-BTN.BTN-Auto {
  width: auto !important;
}
.SMP-BTN.BTN-Medium {
  font-size: 14px;
  text-align: center;
  padding: 0.75rem 2rem;
}
.SMP-BTN.BTN-Large {
  font-size: 16px;
  text-align: center;
  border-radius: 25px;
  padding: 0.75rem 4rem;
}

@media (min-width: 768px) and (max-width: 991px) {
  .SMP-BTN.BTN-Large {
    padding: 0.75rem 2rem;
  }
}
.SMP-Header .dropdown-menu.show {
  max-width: 100vw;
}

/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Header-Campaign {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Header-Campaign .container .row {
    justify-content: center;
  }
  .SMP-Header-Campaign .container .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown {
    width: 400px;
    transform: scale(0.4); /* Adjust this value to control size */
    transform-origin: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group {
    padding-right: 20px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Title {
    display: block;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Discount {
    display: block;
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    padding: 0.25rem 1rem;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Duration {
    display: none;
  }
  .SMP-Header-Campaign .container .row .col-4 img {
    height: auto;
    object-fit: contain;
  }
  .SMP-Header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    position: sticky;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.031372549);
  }
  .SMP-Header .navbar {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid {
    display: block;
    padding: 0 1rem;
  }
  .SMP-Header .navbar .container-fluid .row {
    margin: 0;
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 {
    order: 1;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
    filter: brightness(0);
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button, .SMP-Header .navbar .container-fluid .row .col-md-2 a {
    padding: 0;
    display: block;
    border-width: 0;
    box-shadow: unset;
    position: relative;
    margin-left: 1rem;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    color: #000000;
    stroke: #000000;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button .cart-count, .SMP-Header .navbar .container-fluid .row .col-md-2 a .cart-count {
    position: absolute;
    top: 0;
    right: -5px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 10px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2:last-child {
    order: 2;
    padding: 0;
    justify-content: flex-end;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 {
    order: 3;
    padding: 0;
    margin-top: 1rem;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch {
    width: 100%;
    border-width: 0;
    box-shadow: unset;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background-color: #F6F6F6;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-visible, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-within {
    border-width: 0;
    box-shadow: unset;
    border-color: unset;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch::placeholder {
    font-size: 14px;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.BTN-Dark) {
    padding: 10px 0px;
    color: #494948;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu {
    border-width: 0;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu .container-fluid {
    padding: 0;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu .container-fluid .dropdown-menu img.SMP-Product-Placeholder {
    padding: 0rem;
    object-fit: contain;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu .container-fluid .row .col-12 {
    padding: 0;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu .container-fluid .row .col-12 a.SMP-Menu-Categories {
    font-weight: 300;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu .container-fluid .row .col-12 ul li {
    padding: 10px 0;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid rgba(236, 236, 236, 0.2);
    border-bottom: 1px solid rgba(236, 236, 236, 0.2);
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) #SMP-SearchResults {
    display: none;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header .offcanvas {
    width: 100vw;
    display: flex;
    border-width: 0;
    flex-direction: row-reverse;
    right: unset;
  }
  .SMP-Header .offcanvas cart {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.0823529412);
    max-height: 100vh;
  }
  .SMP-Header .offcanvas cart .offcanvas-header {
    display: flex;
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0;
    letter-spacing: 0;
    line-height: 37px;
    font-style: normal;
    position: relative;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 .cart-count {
    top: 0;
    right: -25px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    position: absolute;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .offcanvas cart .offcanvas-header small {
    font-size: 12px;
    margin-top: 1rem;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .btn-close {
    top: 1.5rem;
    right: 1rem;
    position: absolute;
  }
  .SMP-Header .offcanvas cart .offcanvas-body {
    overflow-y: scroll;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-2 a {
    padding: 5px;
    display: block;
    margin: 0.5rem 0 0;
    background-color: #f9f9f9;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 p {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group {
    width: 120px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control {
    width: 40px;
    height: 30px;
    display: flex;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    align-items: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:hover, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:hover {
    background-color: transparent;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:focus, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:focus {
    box-shadow: unset;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .minus-btn {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .plus-btn {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .remove-btn {
    font-size: 13px;
    font-weight: 200;
    color: #494948;
    text-decoration: underline;
  }
  .SMP-Header .offcanvas cart .offcanvas-body hr {
    margin: 0.75rem 0;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer {
    padding: 1rem;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p strong {
    font-weight: 400;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul {
    padding: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    list-style: none;
    justify-content: center;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul li {
    width: 14%;
    margin-bottom: 0.5rem;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul li svg {
    width: 45px;
    height: 27px;
  }
  .SMP-Header .offcanvas related {
    display: none;
  }
  .SMP-Header .swiper-button-next, .SMP-Header .swiper-button-prev {
    display: none;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Header-Campaign {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Header-Campaign .container .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown {
    transform: scale(0.4); /* Adjust this value to control size */
    transform-origin: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group {
    padding-right: 20px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Title {
    display: block;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Discount {
    display: block;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    padding: 0.25rem 1rem;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Duration {
    display: block;
    padding: 0.25rem 2rem;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
    background-color: #F1F1F1;
    border-left: 5px solid #aa886a;
  }
  .SMP-Header-Campaign .container .row .col-4 img {
    height: auto;
    object-fit: contain;
  }
  .SMP-Header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    position: sticky;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.031372549);
  }
  .SMP-Header .navbar {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid {
    display: block;
    padding: 0 1.875rem;
  }
  .SMP-Header .navbar .container-fluid .row {
    margin: 0;
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 {
    order: 1;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
    filter: brightness(0);
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button, .SMP-Header .navbar .container-fluid .row .col-md-2 a {
    padding: 0;
    display: block;
    border-width: 0;
    box-shadow: unset;
    position: relative;
    margin-left: 1rem;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    color: #000000;
    stroke: #000000;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button .cart-count, .SMP-Header .navbar .container-fluid .row .col-md-2 a .cart-count {
    position: absolute;
    top: 0;
    right: -5px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 10px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2:last-child {
    order: 2;
    padding: 0;
    justify-content: flex-end;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 {
    order: 3;
    padding: 0;
    margin-top: 1rem;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch {
    width: 100%;
    border-width: 0;
    box-shadow: unset;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background-color: #F6F6F6;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-visible, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-within {
    border-width: 0;
    box-shadow: unset;
    border-color: unset;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch::placeholder {
    font-size: 14px;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.BTN-Dark) {
    padding: 10px 0px;
    color: #494948;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu {
    border-width: 0;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu .container-fluid {
    padding: 0;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu .container-fluid .dropdown-menu img.SMP-Product-Placeholder {
    padding: 1rem;
    object-fit: contain;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu .container-fluid .row .col-12 {
    padding: 0;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu .container-fluid .row .col-12 a.SMP-Menu-Categories {
    font-weight: 300;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu .container-fluid .row .col-12 ul li {
    padding: 10px 0;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid rgba(236, 236, 236, 0.2);
    border-bottom: 1px solid rgba(236, 236, 236, 0.2);
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) #SMP-SearchResults {
    display: none;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header .offcanvas {
    width: 650px;
    display: flex;
    border-width: 0;
    flex-direction: row-reverse;
  }
  .SMP-Header .offcanvas cart {
    width: 550px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.0823529412);
  }
  .SMP-Header .offcanvas cart .offcanvas-header {
    display: flex;
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0;
    letter-spacing: 0;
    line-height: 37px;
    font-style: normal;
    position: relative;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 .cart-count {
    top: 0;
    right: -25px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    position: absolute;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .offcanvas cart .offcanvas-header small {
    font-size: 12px;
    margin-top: 1rem;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .btn-close {
    top: 1.5rem;
    right: 1rem;
    position: absolute;
  }
  .SMP-Header .offcanvas cart .offcanvas-body {
    overflow-y: scroll;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-2 a {
    padding: 5px;
    display: block;
    margin: 0.5rem 0 0;
    background-color: #f9f9f9;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 p {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group {
    width: 120px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control {
    width: 40px;
    height: 30px;
    display: flex;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    align-items: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:hover, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:hover {
    background-color: transparent;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:focus, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:focus {
    box-shadow: unset;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .minus-btn {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .plus-btn {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .remove-btn {
    font-size: 13px;
    font-weight: 200;
    color: #494948;
    text-decoration: underline;
  }
  .SMP-Header .offcanvas cart .offcanvas-body hr {
    margin: 0.75rem 0;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer {
    padding: 1rem;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p strong {
    font-weight: 400;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul {
    padding: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    list-style: none;
    justify-content: center;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul li {
    width: 14%;
    margin-bottom: 0.5rem;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul li svg {
    width: 45px;
    height: 27px;
  }
  .SMP-Header .offcanvas related {
    width: 225px;
    padding: 1rem;
    overflow-y: scroll;
  }
  .SMP-Header .offcanvas related .h5 {
    padding: 1rem;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 37px;
  }
  .SMP-Header .offcanvas related .col-12 {
    padding: 1rem;
  }
  .SMP-Header .offcanvas related .col-12 img {
    padding: 0.25rem;
  }
  .SMP-Header .offcanvas related .col-12 .product-title {
    font-size: 10px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Header .offcanvas related .col-12 .product-price {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Header .offcanvas related .col-12 .SMP-BTN {
    padding: 0.5rem;
    font-size: 10px;
  }
  .SMP-Header .swiper-button-next, .SMP-Header .swiper-button-prev {
    display: none;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Header-Campaign {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Header-Campaign .container .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown {
    transform: scale(0.5); /* Adjust this value to control size */
    transform-origin: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group {
    padding-right: 20px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Title {
    display: block;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Discount {
    display: block;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    padding: 0.25rem 1rem;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Duration {
    display: block;
    padding: 0.25rem 2rem;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
    background-color: #F1F1F1;
    border-left: 5px solid #aa886a;
  }
  .SMP-Header-Campaign .container .row .col-4 img {
    height: auto;
    object-fit: contain;
  }
  .SMP-Header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    position: sticky;
    background-color: #FFFFFF;
  }
  .SMP-Header .navbar {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid {
    display: block;
    padding: 0 1.875rem;
  }
  .SMP-Header .navbar .container-fluid .row {
    margin: 0;
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 {
    display: flex;
    align-items: center;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
    filter: brightness(0);
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button, .SMP-Header .navbar .container-fluid .row .col-md-2 a {
    padding: 0;
    display: block;
    border-width: 0;
    box-shadow: unset;
    margin-left: 1rem;
    position: relative;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    stroke: #494948;
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button .cart-count, .SMP-Header .navbar .container-fluid .row .col-md-2 a .cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 10px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-toggler {
    width: 20px;
    height: 20px;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-toggler span {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2:last-child {
    padding: 0;
    justify-content: flex-end;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch {
    width: 100%;
    border-width: 0;
    box-shadow: unset;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background-color: #F6F6F6;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-visible, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-within {
    border-width: 0;
    box-shadow: unset;
    border-color: unset;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch::placeholder {
    font-size: 14px;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse {
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li a {
    color: #494948;
    padding: 10px 0px;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu {
    padding: 0;
    border-width: 0;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li .dropdown-menu .container-fluid img.SMP-Product-Placeholder {
    padding: 1rem;
    object-fit: contain;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid rgba(236, 236, 236, 0.2);
    border-bottom: 1px solid rgba(236, 236, 236, 0.2);
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) #SMP-SearchResults {
    display: none;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header .offcanvas {
    width: 650px;
    display: flex;
    border-width: 0;
    flex-direction: row-reverse;
  }
  .SMP-Header .offcanvas cart {
    width: 550px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.0823529412);
  }
  .SMP-Header .offcanvas cart .offcanvas-header {
    display: flex;
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0;
    letter-spacing: 0;
    line-height: 37px;
    font-style: normal;
    position: relative;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 .cart-count {
    top: 0;
    right: -25px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    position: absolute;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .offcanvas cart .offcanvas-header small {
    font-size: 12px;
    margin-top: 1rem;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .btn-close {
    top: 1.5rem;
    right: 1rem;
    position: absolute;
  }
  .SMP-Header .offcanvas cart .offcanvas-body {
    overflow-y: scroll;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-2 a {
    padding: 5px;
    display: block;
    margin: 0.5rem 0 0;
    background-color: #f9f9f9;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 p {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group {
    width: 120px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control {
    width: 40px;
    height: 30px;
    display: flex;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    align-items: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:hover, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:hover {
    background-color: transparent;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:focus, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:focus {
    box-shadow: unset;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .minus-btn {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .plus-btn {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .remove-btn {
    font-size: 13px;
    font-weight: 200;
    color: #494948;
    text-decoration: underline;
  }
  .SMP-Header .offcanvas cart .offcanvas-body hr {
    margin: 0.75rem 0;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer {
    padding: 1rem;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p strong {
    font-weight: 400;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul {
    padding: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    list-style: none;
    justify-content: center;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul li {
    width: 14%;
    margin-bottom: 0.5rem;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul li svg {
    width: 45px;
    height: 27px;
  }
  .SMP-Header .offcanvas related {
    width: 225px;
    padding: 1rem;
    overflow-y: scroll;
  }
  .SMP-Header .offcanvas related .h5 {
    padding: 1rem;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 37px;
  }
  .SMP-Header .offcanvas related .col-12 {
    padding: 1rem;
  }
  .SMP-Header .offcanvas related .col-12 img {
    padding: 0.25rem;
  }
  .SMP-Header .offcanvas related .col-12 .product-title {
    font-size: 10px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Header .offcanvas related .col-12 .product-price {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Header .offcanvas related .col-12 .SMP-BTN {
    padding: 0.5rem;
    font-size: 10px;
  }
  .SMP-Header .swiper-button-next, .SMP-Header .swiper-button-prev {
    display: none;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Header-Campaign {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Header-Campaign .container .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown {
    transform: scale(0.7); /* Adjust this value to control size */
    transform-origin: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group {
    padding-right: 20px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Title {
    display: block;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Discount {
    display: block;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    padding: 0.25rem 1rem;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Duration {
    display: block;
    padding: 0.25rem 2rem;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
    background-color: #F1F1F1;
    border-left: 5px solid #aa886a;
  }
  .SMP-Header-Campaign .container .row .col-4 img {
    height: auto;
    object-fit: contain;
  }
  .SMP-Header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    position: sticky;
    margin-bottom: -112px;
  }
  .SMP-Header:hover, .SMP-Header.SMP-Header-Light {
    background-color: #FFFFFF;
  }
  .SMP-Header:hover .navbar, .SMP-Header.SMP-Header-Light .navbar {
    padding: 0;
    flex-wrap: wrap;
    background-color: #FFFFFF;
  }
  .SMP-Header:hover .navbar .container-fluid, .SMP-Header.SMP-Header-Light .navbar .container-fluid {
    position: relative;
    padding: 0 1.875rem;
  }
  .SMP-Header:hover .navbar .container-fluid .row, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row {
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 {
    padding: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 .navbar-brand, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 .navbar-brand img, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
    filter: brightness(0);
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 button, .SMP-Header:hover .navbar .container-fluid .row .col-md-2 a, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 button, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 a {
    display: block;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header:hover .navbar .container-fluid .row .col-md-2 a svg, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    stroke: #000000;
    color: #000000;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 .navbar-toggler, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 .navbar-toggler {
    display: none;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse {
    flex-wrap: wrap;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .phone, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .phone {
    color: #494948;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li {
    position: unset;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN), .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN) {
    padding: 8px 15px;
    color: #494948;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu {
    left: 0;
    opacity: 1;
    width: 100%;
    display: block;
    border-width: 0;
    border-radius: 0;
    position: absolute;
    visibility: visible;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid {
    padding: 1rem 1.875rem 1rem;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 {
    padding: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 .SMP-Menu-Categories, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 .SMP-Menu-Categories {
    display: block;
    font-size: 13px;
    font-weight: 400;
    padding: 0.75rem 0;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li {
    padding: 0;
    width: 33.3333%;
    border-width: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a {
    display: block;
    padding: 0.5rem 0;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a:hover, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a:hover {
    color: #000000;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu .container-fluid img.SMP-Product-Placeholder, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu .container-fluid img.SMP-Product-Placeholder {
    padding: 1rem !important;
    object-fit: contain;
  }
  .SMP-Header:hover .navbar .container-fluid:nth-child(2), .SMP-Header.SMP-Header-Light .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
  }
  .SMP-Header:hover .navbar .container-fluid:nth-child(2) .row, .SMP-Header.SMP-Header-Light .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header:hover .navbar .SMP-Overlay, .SMP-Header.SMP-Header-Light .navbar .SMP-Overlay {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8549019608);
  }
  .SMP-Header.SMP-Header-Overlay::before {
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    content: "";
    height: 200vh;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8549019608);
  }
  .SMP-Header.SMP-Header-Light-Static {
    background-color: #FFFFFF;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar {
    padding: 0;
    flex-wrap: wrap;
    background-color: #FFFFFF;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row {
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 {
    padding: 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
    filter: brightness(0);
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 button, .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 a {
    display: block;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    stroke: #000000;
    color: #000000;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 .navbar-toggler {
    display: none;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .navbar-collapse {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .navbar-collapse .phone {
    color: #000000;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN) {
    color: #000000;
    padding: 8px 15px;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults {
    padding: 2rem 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 {
    padding-right: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 span {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li {
    margin-bottom: 1rem;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a {
    margin: 0;
    font-size: 13px;
    padding: 0.5rem 1rem;
    border-radius: 35px;
    background-color: #f9f9f9;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a:hover {
    color: #FFFFFF;
    background-color: #000000;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-10 {
    display: flex;
    flex-wrap: wrap;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md img {
    height: 243px;
    max-width: 100%;
    object-fit: contain;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md h2 {
    font-size: 13px;
    color: #494948;
  }
  .SMP-Header .navbar {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid {
    display: block;
    padding: 0 1.875rem;
  }
  .SMP-Header .navbar .container-fluid .row {
    margin: 0;
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button, .SMP-Header .navbar .container-fluid .row .col-md-2 a {
    padding: 0;
    display: block;
    border-width: 0;
    box-shadow: unset;
    margin-left: 2rem;
    position: relative;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    stroke: #FFFFFF;
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button .cart-count, .SMP-Header .navbar .container-fluid .row .col-md-2 a .cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 10px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-toggler {
    display: none;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2:last-child {
    padding: 0;
    justify-content: flex-end;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch {
    width: 100%;
    border-width: 0;
    box-shadow: unset;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background-color: #F6F6F6;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-visible, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-within {
    border-width: 0;
    box-shadow: unset;
    border-color: unset;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch::placeholder {
    font-size: 14px;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .phone {
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN) {
    color: #FFFFFF;
    padding: 8px 15px;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid rgba(236, 236, 236, 0.2);
    border-bottom: 1px solid rgba(236, 236, 236, 0.2);
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) #SMP-SearchResults {
    display: none;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults {
    padding: 1rem 0;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .h3 {
    font-size: 14px;
    margin-bottom: 0;
    text-transform: uppercase;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 {
    padding-right: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 span {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li {
    margin-bottom: 1rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a {
    margin: 0;
    font-size: 13px;
    padding: 0.5rem 1rem;
    border-radius: 35px;
    background-color: #f9f9f9;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a:hover {
    color: #000000;
    background-color: #C2C2C2;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 {
    display: flex;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md {
    padding: 1rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card {
    padding: 0rem;
    display: flex;
    border-width: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card img {
    top: 1rem;
    width: 100%;
    height: 250px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover .badge {
    right: -62px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover img {
    top: -30px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -30px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .h3 {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .card {
    padding: 0;
    height: 300px;
    position: relative;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .card img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .card:hover img {
    top: unset;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .h4 {
    font-size: 20px;
    margin-top: 1rem;
    margin-bottom: 0;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .offcanvas {
    width: 775px;
    display: flex;
    border-width: 0;
    flex-direction: row-reverse;
  }
  .SMP-Header .offcanvas cart {
    width: 550px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.0823529412);
  }
  .SMP-Header .offcanvas cart .offcanvas-header {
    display: flex;
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0;
    letter-spacing: 0;
    line-height: 37px;
    font-style: normal;
    position: relative;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 .cart-count {
    top: 0;
    right: -25px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    position: absolute;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .offcanvas cart .offcanvas-header small {
    font-size: 12px;
    margin-top: 1rem;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .btn-close {
    top: 1.5rem;
    right: 1rem;
    position: absolute;
  }
  .SMP-Header .offcanvas cart .offcanvas-body {
    overflow-y: scroll;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-2 a {
    padding: 5px;
    display: block;
    margin: 0.5rem 0 0;
    background-color: #f9f9f9;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 p {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group {
    width: 120px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control {
    width: 40px;
    height: 30px;
    display: flex;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    align-items: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:hover, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:hover {
    background-color: transparent;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:focus, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:focus {
    box-shadow: unset;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .minus-btn {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .plus-btn {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .remove-btn {
    font-size: 13px;
    font-weight: 200;
    color: #494948;
    text-decoration: underline;
  }
  .SMP-Header .offcanvas cart .offcanvas-body hr {
    margin: 0.75rem 0;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer {
    padding: 1rem;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p strong {
    font-weight: 400;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul {
    padding: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    list-style: none;
    justify-content: center;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul li {
    width: 14%;
    margin-bottom: 0.5rem;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul li svg {
    width: 45px;
    height: 27px;
  }
  .SMP-Header .offcanvas related {
    width: 225px;
    padding: 1rem;
    overflow-y: scroll;
  }
  .SMP-Header .offcanvas related .h5 {
    padding: 1rem;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 37px;
  }
  .SMP-Header .offcanvas related .col-12 {
    padding: 1rem;
  }
  .SMP-Header .offcanvas related .col-12 img {
    padding: 1rem 2rem;
  }
  .SMP-Header .offcanvas related .col-12 .product-title {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Header .offcanvas related .col-12 .product-price {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Header .swiper-button-next, .SMP-Header .swiper-button-prev {
    display: none;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Header-Campaign {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Header-Campaign .container .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown {
    transform: scale(0.7); /* Adjust this value to control size */
    transform-origin: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group {
    padding-right: 20px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Title {
    display: block;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Discount {
    display: block;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    padding: 0.25rem 1rem;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Duration {
    display: block;
    padding: 0.25rem 2rem;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
    background-color: #F1F1F1;
    border-left: 5px solid #aa886a;
  }
  .SMP-Header-Campaign .container .row .col-4 img {
    height: auto;
    object-fit: contain;
  }
  .SMP-Header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    position: sticky;
    margin-bottom: -112px;
  }
  .SMP-Header:hover, .SMP-Header.SMP-Header-Light {
    background-color: #FFFFFF;
  }
  .SMP-Header:hover .navbar, .SMP-Header.SMP-Header-Light .navbar {
    padding: 0;
    flex-wrap: wrap;
    background-color: #FFFFFF;
  }
  .SMP-Header:hover .navbar .container-fluid, .SMP-Header.SMP-Header-Light .navbar .container-fluid {
    position: relative;
    padding: 0 1.875rem;
  }
  .SMP-Header:hover .navbar .container-fluid .row, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row {
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 {
    padding: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 .navbar-brand, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 .navbar-brand img, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
    filter: brightness(0);
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 button, .SMP-Header:hover .navbar .container-fluid .row .col-md-2 a, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 button, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 a {
    display: block;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header:hover .navbar .container-fluid .row .col-md-2 a svg, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    stroke: #000000;
    color: #000000;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 .navbar-toggler, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 .navbar-toggler {
    display: none;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse {
    flex-wrap: wrap;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .phone, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .phone {
    color: #494948;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li {
    position: unset;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN), .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN) {
    padding: 8px 15px;
    color: #494948;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu {
    left: 0;
    opacity: 1;
    width: 100%;
    display: block;
    border-width: 0;
    border-radius: 0;
    position: absolute;
    visibility: visible;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid {
    padding: 1rem 1.875rem 1rem;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 {
    padding: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 .SMP-Menu-Categories, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 .SMP-Menu-Categories {
    display: block;
    font-size: 13px;
    font-weight: 400;
    padding: 0.75rem 0;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li {
    padding: 0;
    width: 33.3333%;
    border-width: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a {
    display: block;
    padding: 0.5rem 0;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a:hover, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a:hover {
    color: #000000;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu .container-fluid img.SMP-Product-Placeholder, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu .container-fluid img.SMP-Product-Placeholder {
    padding: 2rem !important;
    object-fit: contain;
  }
  .SMP-Header:hover .navbar .container-fluid:nth-child(2), .SMP-Header.SMP-Header-Light .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
  }
  .SMP-Header:hover .navbar .container-fluid:nth-child(2) .row, .SMP-Header.SMP-Header-Light .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header:hover .navbar .SMP-Overlay, .SMP-Header.SMP-Header-Light .navbar .SMP-Overlay {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8549019608);
  }
  .SMP-Header.SMP-Header-Overlay::before {
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    content: "";
    height: 200vh;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8549019608);
  }
  .SMP-Header.SMP-Header-Light-Static {
    background-color: #FFFFFF;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar {
    padding: 0;
    flex-wrap: wrap;
    background-color: #FFFFFF;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row {
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 {
    padding: 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
    filter: brightness(0);
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 button, .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 a {
    display: block;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    stroke: #000000;
    color: #000000;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 .navbar-toggler {
    display: none;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .navbar-collapse {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .navbar-collapse .phone {
    color: #000000;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN) {
    color: #000000;
    padding: 8px 15px;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults {
    padding: 2rem 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 {
    padding-right: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 span {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li {
    margin-bottom: 1rem;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a {
    margin: 0;
    font-size: 13px;
    padding: 0.5rem 1rem;
    border-radius: 35px;
    background-color: #f9f9f9;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a:hover {
    color: #FFFFFF;
    background-color: #000000;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-10 {
    display: flex;
    flex-wrap: wrap;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md img {
    height: 243px;
    max-width: 100%;
    object-fit: contain;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md h2 {
    font-size: 13px;
    color: #494948;
  }
  .SMP-Header .navbar {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid {
    display: block;
    padding: 0 1.875rem;
  }
  .SMP-Header .navbar .container-fluid .row {
    margin: 0;
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button, .SMP-Header .navbar .container-fluid .row .col-md-2 a {
    padding: 0;
    display: block;
    border-width: 0;
    box-shadow: unset;
    margin-left: 2rem;
    position: relative;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    stroke: #FFFFFF;
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button .cart-count, .SMP-Header .navbar .container-fluid .row .col-md-2 a .cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 10px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-toggler {
    display: none;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2:last-child {
    padding: 0;
    justify-content: flex-end;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch {
    width: 100%;
    border-width: 0;
    box-shadow: unset;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background-color: #F6F6F6;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-visible, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-within {
    border-width: 0;
    box-shadow: unset;
    border-color: unset;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch::placeholder {
    font-size: 14px;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .phone {
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN) {
    color: #FFFFFF;
    padding: 8px 15px;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid rgba(236, 236, 236, 0.2);
    border-bottom: 1px solid rgba(236, 236, 236, 0.2);
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) #SMP-SearchResults {
    display: none;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults {
    padding: 1rem 0;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .h3 {
    font-size: 14px;
    margin-bottom: 0;
    text-transform: uppercase;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 {
    padding-right: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 span {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li {
    margin-bottom: 1rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a {
    margin: 0;
    font-size: 13px;
    padding: 0.5rem 1rem;
    border-radius: 35px;
    background-color: #f9f9f9;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a:hover {
    color: #000000;
    background-color: #C2C2C2;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 {
    display: flex;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md {
    padding: 1rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card {
    padding: 0rem;
    display: flex;
    border-width: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card img {
    top: 1rem;
    width: 100%;
    height: 250px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover .badge {
    right: -62px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover img {
    top: -30px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -30px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .h3 {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .card {
    padding: 0;
    height: 300px;
    position: relative;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .card img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .card:hover img {
    top: unset;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .h4 {
    font-size: 20px;
    margin-top: 1rem;
    margin-bottom: 0;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .offcanvas {
    width: 775px;
    display: flex;
    border-width: 0;
    flex-direction: row-reverse;
  }
  .SMP-Header .offcanvas cart {
    width: 550px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.0823529412);
  }
  .SMP-Header .offcanvas cart .offcanvas-header {
    display: flex;
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0;
    letter-spacing: 0;
    line-height: 37px;
    font-style: normal;
    position: relative;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 .cart-count {
    top: 0;
    right: -25px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    position: absolute;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .offcanvas cart .offcanvas-header small {
    font-size: 12px;
    margin-top: 1rem;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .btn-close {
    top: 1.5rem;
    right: 1rem;
    position: absolute;
  }
  .SMP-Header .offcanvas cart .offcanvas-body {
    overflow-y: scroll;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-2 a {
    padding: 5px;
    display: block;
    margin: 0.5rem 0 0;
    background-color: #f9f9f9;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 p {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group {
    width: 120px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control {
    width: 40px;
    height: 30px;
    display: flex;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    align-items: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:hover, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:hover {
    background-color: transparent;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:focus, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:focus {
    box-shadow: unset;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .minus-btn {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .plus-btn {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .remove-btn {
    font-size: 13px;
    font-weight: 200;
    color: #494948;
    text-decoration: underline;
  }
  .SMP-Header .offcanvas cart .offcanvas-body hr {
    margin: 0.75rem 0;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer {
    padding: 1rem;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p strong {
    font-weight: 400;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul {
    padding: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    list-style: none;
    justify-content: center;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul li {
    width: 14%;
    margin-bottom: 0.5rem;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul li svg {
    width: 45px;
    height: 27px;
  }
  .SMP-Header .offcanvas related {
    width: 225px;
    padding: 1rem;
    overflow-y: scroll;
  }
  .SMP-Header .offcanvas related .h5 {
    padding: 1rem;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 37px;
  }
  .SMP-Header .offcanvas related .col-12 {
    padding: 1rem;
  }
  .SMP-Header .offcanvas related .col-12 img {
    padding: 1rem 2rem;
  }
  .SMP-Header .offcanvas related .col-12 .product-title {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Header .offcanvas related .col-12 .product-price {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Header .swiper-button-next, .SMP-Header .swiper-button-prev {
    display: none;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .SMP-Header-Campaign {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Header-Campaign .container .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown {
    transform: scale(0.7); /* Adjust this value to control size */
    transform-origin: center;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group {
    padding-right: 20px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before {
    left: 110px;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Title {
    display: block;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Discount {
    display: block;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    padding: 0.25rem 1rem;
  }
  .SMP-Header-Campaign .container .row .col-4 .SMP-Header-Campaign-Duration {
    display: block;
    padding: 0.25rem 2rem;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
    background-color: #F1F1F1;
    border-left: 5px solid #aa886a;
  }
  .SMP-Header-Campaign .container .row .col-4 img {
    height: auto;
    object-fit: contain;
  }
  .SMP-Header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    position: sticky;
    margin-bottom: -112px;
  }
  .SMP-Header .nav-item.dropdown {
    position: unset;
  }
  .SMP-Header .dropdown-menu.show {
    width: 100vw;
  }
  .SMP-Header .dropdown-menu.show .container-fluid {
    padding: 1rem 1.875rem 1rem;
  }
  .SMP-Header .dropdown-menu.show .container-fluid .row .col-md-6 {
    padding: 0;
  }
  .SMP-Header .dropdown-menu.show .container-fluid .row .col-md-6 .SMP-Menu-Categories {
    display: block;
    font-size: 13px;
    font-weight: 400;
    padding: 0.75rem 0;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Header .dropdown-menu.show .container-fluid .row .col-md-6 ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .SMP-Header .dropdown-menu.show .container-fluid .row .col-md-6 ul li {
    padding: 0;
    width: 33.3333%;
    border-width: 0;
  }
  .SMP-Header .dropdown-menu.show .container-fluid .row .col-md-6 ul li a {
    display: block;
    padding: 0.5rem 0;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .dropdown-menu.show .container-fluid .row .col-md-6 ul li a:hover {
    color: #000000;
  }
  .SMP-Header:hover, .SMP-Header.SMP-Header-Light {
    background-color: #FFFFFF;
  }
  .SMP-Header:hover .navbar, .SMP-Header.SMP-Header-Light .navbar {
    padding: 0;
    flex-wrap: wrap;
    background-color: #FFFFFF;
  }
  .SMP-Header:hover .navbar .container-fluid, .SMP-Header.SMP-Header-Light .navbar .container-fluid {
    position: relative;
    padding: 0 1.875rem;
  }
  .SMP-Header:hover .navbar .container-fluid .row, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row {
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 {
    padding: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 .navbar-brand, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 .navbar-brand img, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
    filter: brightness(0);
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 button, .SMP-Header:hover .navbar .container-fluid .row .col-md-2 a, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 button, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 a {
    display: block;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header:hover .navbar .container-fluid .row .col-md-2 a svg, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    stroke: #000000;
    color: #000000;
  }
  .SMP-Header:hover .navbar .container-fluid .row .col-md-2 .navbar-toggler, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .col-md-2 .navbar-toggler {
    display: none;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse {
    flex-wrap: wrap;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .phone, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .phone {
    color: #494948;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li {
    position: unset;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN), .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN) {
    padding: 8px 15px;
    color: #494948;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu {
    left: 0;
    opacity: 1;
    width: 100%;
    display: block;
    border-width: 0;
    border-radius: 0;
    position: absolute;
    visibility: visible;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid {
    padding: 1rem 1.875rem 1rem;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 {
    padding: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 .SMP-Menu-Categories, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 .SMP-Menu-Categories {
    display: block;
    font-size: 13px;
    font-weight: 400;
    padding: 0.75rem 0;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li {
    padding: 0;
    width: 33.3333%;
    border-width: 0;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a {
    display: block;
    padding: 0.5rem 0;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a:hover, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu .container-fluid .row .col-md-6 ul li a:hover {
    color: #000000;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  .SMP-Header:hover .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu .container-fluid img.SMP-Product-Placeholder, .SMP-Header.SMP-Header-Light .navbar .container-fluid .row .navbar-collapse .navbar-nav li.dropdown .dropdown-menu .container-fluid img.SMP-Product-Placeholder {
    padding: 5rem !important;
    object-fit: contain;
  }
  .SMP-Header:hover .navbar .container-fluid:nth-child(2), .SMP-Header.SMP-Header-Light .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
  }
  .SMP-Header:hover .navbar .container-fluid:nth-child(2) .row, .SMP-Header.SMP-Header-Light .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header:hover .navbar .SMP-Overlay, .SMP-Header.SMP-Header-Light .navbar .SMP-Overlay {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8549019608);
  }
  .SMP-Header.SMP-Header-Overlay::before {
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    content: "";
    height: 200vh;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8549019608);
  }
  .SMP-Header.SMP-Header-Light-Static {
    background-color: #FFFFFF;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar {
    padding: 0;
    flex-wrap: wrap;
    background-color: #FFFFFF;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row {
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 {
    padding: 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
    filter: brightness(0);
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 button, .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 a {
    display: block;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    stroke: #000000;
    color: #000000;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .col-md-2 .navbar-toggler {
    display: none;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .navbar-collapse {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .navbar-collapse .phone {
    color: #000000;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN) {
    color: #000000;
    padding: 8px 15px;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults {
    padding: 2rem 0;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 {
    padding-right: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 span {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li {
    margin-bottom: 1rem;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a {
    margin: 0;
    font-size: 13px;
    padding: 0.5rem 1rem;
    border-radius: 35px;
    background-color: #f9f9f9;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a:hover {
    color: #FFFFFF;
    background-color: #000000;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-10 {
    display: flex;
    flex-wrap: wrap;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md img {
    height: 243px;
    max-width: 100%;
    object-fit: contain;
  }
  .SMP-Header.SMP-Header-Light-Static .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md h2 {
    font-size: 13px;
    color: #494948;
  }
  .SMP-Header .navbar {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid {
    display: block;
    padding: 0 1.875rem;
  }
  .SMP-Header .navbar .container-fluid .row {
    margin: 0;
    width: 100%;
    padding: 15px 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand {
    margin: 0;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-brand img {
    width: 84px;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button, .SMP-Header .navbar .container-fluid .row .col-md-2 a {
    padding: 0;
    display: block;
    border-width: 0;
    box-shadow: unset;
    margin-left: 2rem;
    position: relative;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button svg, .SMP-Header .navbar .container-fluid .row .col-md-2 a svg {
    width: 20px;
    stroke: #FFFFFF;
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 button .cart-count, .SMP-Header .navbar .container-fluid .row .col-md-2 a .cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 10px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2 .navbar-toggler {
    display: none;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-2:last-child {
    padding: 0;
    justify-content: flex-end;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch {
    width: 100%;
    border-width: 0;
    box-shadow: unset;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background-color: #F6F6F6;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-visible, .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch:focus-within {
    border-width: 0;
    box-shadow: unset;
    border-color: unset;
  }
  .SMP-Header .navbar .container-fluid .row .col-md-8 #SMP-LiveSearch::placeholder {
    font-size: 14px;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse {
    padding: 0;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .phone {
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid .row .navbar-collapse .navbar-nav li a:not(.SMP-BTN) {
    color: #FFFFFF;
    padding: 8px 15px;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) {
    border-top: 1px solid rgba(236, 236, 236, 0.2);
    border-bottom: 1px solid rgba(236, 236, 236, 0.2);
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) #SMP-SearchResults {
    display: none;
  }
  .SMP-Header .navbar .container-fluid:nth-child(2) .row {
    padding: 0;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults {
    padding: 1rem 0;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .h3 {
    font-size: 14px;
    margin-bottom: 0;
    text-transform: uppercase;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 {
    padding-right: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 span {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li {
    margin-bottom: 1rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a {
    margin: 0;
    font-size: 13px;
    padding: 0.5rem 1rem;
    border-radius: 35px;
    background-color: #f9f9f9;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-2 ul li a:hover {
    color: #000000;
    background-color: #C2C2C2;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 {
    display: flex;
    flex-wrap: wrap;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md {
    padding: 1rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card {
    padding: 0rem;
    display: flex;
    border-width: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card img {
    top: 1rem;
    width: 100%;
    height: 250px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover .badge {
    right: -62px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover img {
    top: -30px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -30px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row .col-md-10 .col-md .card:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .h3 {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .card {
    padding: 0;
    height: 300px;
    position: relative;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .card img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .card:hover img {
    top: unset;
  }
  .SMP-Header .navbar .container-fluid #SMP-SearchResults .row.SMP-TopCategories .col-md .h4 {
    font-size: 20px;
    margin-top: 1rem;
    margin-bottom: 0;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .offcanvas {
    width: 775px;
    display: flex;
    border-width: 0;
    flex-direction: row-reverse;
  }
  .SMP-Header .offcanvas cart {
    width: 550px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.0823529412);
  }
  .SMP-Header .offcanvas cart .offcanvas-header {
    display: flex;
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0;
    letter-spacing: 0;
    line-height: 37px;
    font-style: normal;
    position: relative;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .h4 .cart-count {
    top: 0;
    right: -25px;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    position: absolute;
    border-radius: 9px;
    background-color: #aa886a;
  }
  .SMP-Header .offcanvas cart .offcanvas-header small {
    font-size: 12px;
    margin-top: 1rem;
  }
  .SMP-Header .offcanvas cart .offcanvas-header .btn-close {
    top: 1.5rem;
    right: 1rem;
    position: absolute;
  }
  .SMP-Header .offcanvas cart .offcanvas-body {
    overflow-y: scroll;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-2 a {
    padding: 5px;
    display: block;
    margin: 0.5rem 0 0;
    background-color: #f9f9f9;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 p {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group {
    width: 150px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control {
    width: 40px;
    height: 30px;
    display: flex;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    align-items: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:hover, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:hover {
    background-color: transparent;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .btn:focus, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .form-control:focus {
    box-shadow: unset;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .minus-btn {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input {
    width: 60px;
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:hover::-webkit-inner-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-outer-spin-button, .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .qty-input:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .input-group .plus-btn {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-Header .offcanvas cart .offcanvas-body .cart-item .col-md-10 .cart-quantity .remove-btn {
    font-size: 13px;
    font-weight: 200;
    color: #494948;
    text-decoration: underline;
  }
  .SMP-Header .offcanvas cart .offcanvas-body hr {
    margin: 0.75rem 0;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer {
    padding: 1rem;
    border-top: 1px solid #ECECEC;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer .SMP-Cart-Subtotal .col-12 p strong {
    font-weight: 400;
  }
  .SMP-Header .offcanvas cart .offcanvas-footer ul {
    display: none;
  }
  .SMP-Header .offcanvas related {
    width: 225px;
    padding: 1rem;
    overflow-y: scroll;
  }
  .SMP-Header .offcanvas related .h5 {
    padding: 1rem;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 37px;
  }
  .SMP-Header .offcanvas related .col-12 {
    padding: 1rem;
  }
  .SMP-Header .offcanvas related .col-12 img {
    padding: 1rem 2rem;
  }
  .SMP-Header .offcanvas related .col-12 .product-title {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Header .offcanvas related .col-12 .product-price {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Header .swiper-button-next, .SMP-Header .swiper-button-prev {
    display: none;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  #campaignModal {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  #campaignModal .modal-content {
    border-radius: 10px;
  }
  #campaignModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    left: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #campaignModal .modal-content .modal-body {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row {
    flex-direction: column-reverse;
  }
  #campaignModal .modal-content .modal-body .row .col-8 {
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  #campaignModal .modal-content .modal-body .row .col-8 h5 {
    font-size: 30px;
    font-weight: 100;
    color: #494948;
    letter-spacing: -3px;
    text-transform: capitalize;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Discount {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin: 0.5rem 0 1rem;
    text-transform: uppercase;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Duration {
    font-size: 20px;
    font-weight: 100;
    color: #494948;
    letter-spacing: 5px;
  }
  #campaignModal .modal-content .modal-body .row .col-4 {
    width: 100%;
  }
  #campaignModal .modal-content .modal-body .row .col-4 img {
    width: 100%;
    border-radius: 10px;
  }
  #newsletterModal .modal-content {
    padding: 0.5rem;
    min-height: 350px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    background-image: url("../images/email-bg.webp");
  }
  #newsletterModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #newsletterModal .modal-content .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 .modal-title {
    font-size: 20px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 p {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .form-control {
    font-size: 12px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group {
    width: 100%;
    flex-direction: column;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group a {
    padding: 0.5rem;
    font-size: 12px;
    width: 100% !important;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 small {
    font-size: 12px;
    font-weight: 500;
    color: #494948;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  #campaignModal .modal-content {
    border-radius: 0;
  }
  #campaignModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    left: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #campaignModal .modal-content .modal-body {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-8 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  #campaignModal .modal-content .modal-body .row .col-8 h5 {
    font-size: 30px;
    font-weight: 100;
    color: #494948;
    letter-spacing: -3px;
    text-transform: capitalize;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Discount {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin: 0.5rem 0 1rem;
    text-transform: uppercase;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Duration {
    font-size: 20px;
    font-weight: 100;
    color: #494948;
    letter-spacing: 5px;
  }
  #campaignModal .modal-content .modal-body .row .col-4 {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-4 img {
    width: 100%;
  }
  #newsletterModal .modal-content {
    padding: 0.5rem;
    min-height: 350px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    background-image: url("../images/email-bg.webp");
  }
  #newsletterModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #newsletterModal .modal-content .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 .modal-title {
    font-size: 20px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 p {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .form-control {
    font-size: 12px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group {
    width: 100%;
    flex-direction: column;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group a {
    padding: 0.5rem;
    font-size: 12px;
    width: 100% !important;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 small {
    font-size: 12px;
    font-weight: 500;
    color: #494948;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  #campaignModal .modal-content {
    border-radius: 0;
  }
  #campaignModal .modal-content .modal-body {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-8 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  #campaignModal .modal-content .modal-body .row .col-8 h5 {
    font-size: 30px;
    font-weight: 100;
    color: #494948;
    letter-spacing: -3px;
    text-transform: capitalize;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Discount {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin: 0.5rem 0 1rem;
    text-transform: uppercase;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Duration {
    font-size: 20px;
    font-weight: 100;
    color: #494948;
    letter-spacing: 5px;
  }
  #campaignModal .modal-content .modal-body .row .col-4 {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-4 img {
    width: 100%;
  }
  #newsletterModal .modal-content {
    padding: 0.5rem;
    min-height: 350px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    background-image: url("../images/email-bg.webp");
  }
  #newsletterModal .modal-content .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 .modal-title {
    font-size: 20px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 p {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .form-control {
    font-size: 12px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group {
    width: 100%;
    flex-direction: column;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group a {
    padding: 0.5rem;
    font-size: 12px;
    width: 100% !important;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 small {
    font-size: 12px;
    font-weight: 500;
    color: #494948;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  #campaignModal .modal-content {
    border-radius: 0;
  }
  #campaignModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    left: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #campaignModal .modal-content .modal-body {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-8 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  #campaignModal .modal-content .modal-body .row .col-8 h5 {
    font-size: 50px;
    font-weight: 100;
    color: #494948;
    letter-spacing: -3px;
    text-transform: capitalize;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Discount {
    font-size: 30px;
    font-weight: 300;
    color: #494948;
    text-transform: uppercase;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Duration {
    font-size: 30px;
    font-weight: 100;
    color: #494948;
    letter-spacing: 5px;
  }
  #campaignModal .modal-content .modal-body .row .col-4 {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-4 img {
    width: 100%;
  }
  #newsletterModal .modal-content {
    padding: 1.5rem;
    min-height: 350px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    background-image: url("../images/email-bg.webp");
  }
  #newsletterModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #newsletterModal .modal-content .modal-body {
    display: flex;
    align-items: center;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 .modal-title {
    font-size: 40px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 p {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .form-control {
    font-size: 12px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group {
    width: 100%;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group a {
    padding: 0.5rem;
    font-size: 12px;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 small {
    font-size: 12px;
    font-weight: 500;
    color: #494948;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  #campaignModal .modal-content {
    border-radius: 0;
  }
  #campaignModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    left: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #campaignModal .modal-content .modal-body {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-8 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  #campaignModal .modal-content .modal-body .row .col-8 h5 {
    font-size: 50px;
    font-weight: 100;
    color: #494948;
    letter-spacing: -3px;
    text-transform: capitalize;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Discount {
    font-size: 30px;
    font-weight: 300;
    color: #494948;
    text-transform: uppercase;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Duration {
    font-size: 30px;
    font-weight: 100;
    color: #494948;
    letter-spacing: 5px;
  }
  #campaignModal .modal-content .modal-body .row .col-4 {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-4 img {
    width: 100%;
  }
  #newsletterModal .modal-content {
    padding: 1.5rem;
    min-height: 350px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    background-image: url("../images/email-bg.webp");
  }
  #newsletterModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #newsletterModal .modal-content .modal-body {
    display: flex;
    align-items: center;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 .modal-title {
    font-size: 40px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 p {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .form-control {
    font-size: 12px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group {
    width: 100%;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group a {
    padding: 0.5rem;
    font-size: 12px;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 small {
    font-size: 12px;
    font-weight: 500;
    color: #494948;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  #campaignModal .modal-content {
    border-radius: 0;
  }
  #campaignModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    left: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #campaignModal .modal-content .modal-body {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-8 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  #campaignModal .modal-content .modal-body .row .col-8 h5 {
    font-size: 50px;
    font-weight: 100;
    color: #494948;
    letter-spacing: -3px;
    text-transform: capitalize;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Discount {
    font-size: 30px;
    font-weight: 300;
    color: #494948;
    text-transform: uppercase;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Duration {
    font-size: 30px;
    font-weight: 100;
    color: #494948;
    letter-spacing: 5px;
  }
  #campaignModal .modal-content .modal-body .row .col-4 {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-4 img {
    width: 100%;
  }
  #newsletterModal .modal-content {
    padding: 1.5rem;
    min-height: 350px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    background-image: url("../images/email-bg.webp");
  }
  #newsletterModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #newsletterModal .modal-content .modal-body {
    display: flex;
    align-items: center;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 .modal-title {
    font-size: 40px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 p {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .form-control {
    font-size: 12px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group {
    width: 100%;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group a {
    padding: 0.5rem;
    font-size: 12px;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 small {
    font-size: 12px;
    font-weight: 500;
    color: #494948;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  #campaignModal .modal-content {
    border-radius: 0;
  }
  #campaignModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    left: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #campaignModal .modal-content .modal-body {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-8 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  #campaignModal .modal-content .modal-body .row .col-8 h5 {
    font-size: 50px;
    font-weight: 100;
    color: #494948;
    letter-spacing: -3px;
    text-transform: capitalize;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Discount {
    font-size: 30px;
    font-weight: 300;
    color: #494948;
    text-transform: uppercase;
  }
  #campaignModal .modal-content .modal-body .row .col-8 .SMP-Header-Campaign-Duration {
    font-size: 30px;
    font-weight: 100;
    color: #494948;
    letter-spacing: 5px;
  }
  #campaignModal .modal-content .modal-body .row .col-4 {
    padding: 0;
  }
  #campaignModal .modal-content .modal-body .row .col-4 img {
    width: 100%;
  }
  #newsletterModal .modal-content {
    padding: 1.5rem;
    min-height: 350px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    background-image: url("../images/email-bg.webp");
  }
  #newsletterModal .modal-content .modal-close {
    top: 1rem;
    z-index: 1;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    color: #494948;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
  }
  #newsletterModal .modal-content .modal-body {
    display: flex;
    align-items: center;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 .modal-title {
    font-size: 40px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 p {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .form-control {
    font-size: 12px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group {
    width: 100%;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 form .btn-group a {
    padding: 0.5rem;
    font-size: 12px;
  }
  #newsletterModal .modal-content .modal-body .row .col-md-8 small {
    font-size: 12px;
    font-weight: 500;
    color: #494948;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Hero {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding-top: 0rem;
    background-color: #494948;
  }
  .SMP-Hero::after {
    top: 0;
    right: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
  }
  .SMP-Hero video {
    height: 100%;
    object-fit: cover;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Hero {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding-top: 0rem;
    background-color: #494948;
  }
  .SMP-Hero::after {
    top: 0;
    right: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
  }
  .SMP-Hero video {
    height: 100%;
    object-fit: cover;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Hero {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding-top: 0rem;
    background-color: #494948;
  }
  .SMP-Hero::after {
    top: 0;
    right: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
  }
  .SMP-Hero video {
    height: 100%;
    object-fit: cover;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Hero {
    position: relative;
    width: 100%;
    height: 500px;
    display: block;
    background-color: #494948;
  }
  .SMP-Hero::after {
    top: 0;
    right: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
  }
  .SMP-Hero video {
    height: 500px;
    object-fit: cover;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Hero {
    position: relative;
    width: 100%;
    height: 600px;
    display: block;
    background-color: #494948;
  }
  .SMP-Hero::after {
    top: 0;
    right: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
  }
  .SMP-Hero video {
    height: 600px;
    object-fit: cover;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .SMP-Hero {
    width: 100%;
    height: 800px;
    display: block;
    position: relative;
    background-color: #010101;
  }
  .SMP-Hero::after {
    top: 0;
    right: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
  }
  .SMP-Hero video {
    width: 100%;
    height: 700px;
    margin-top: 6rem;
    object-fit: contain;
    object-position: bottom;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Login {
    padding: 0;
  }
  .SMP-Login .container-fluid {
    padding: 0;
  }
  .SMP-Login .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6:first-child {
    display: none;
  }
  .SMP-Login .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h2 {
    font-size: 30px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Login {
    padding: 0;
  }
  .SMP-Login .container-fluid {
    padding: 0;
  }
  .SMP-Login .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6:first-child {
    display: none;
  }
  .SMP-Login .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Login {
    padding: 0;
  }
  .SMP-Login .container-fluid {
    padding: 0;
  }
  .SMP-Login .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Login .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Login {
    padding: 7rem 0 0;
  }
  .SMP-Login .container-fluid {
    padding: 0;
  }
  .SMP-Login .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Login .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Login {
    padding: 7rem 0 0;
  }
  .SMP-Login .container-fluid {
    padding: 0;
  }
  .SMP-Login .container-fluid .row .col-md-6 {
    padding: 6rem;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Login .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .SMP-Login {
    padding: 7rem 0 0;
  }
  .SMP-Login .container-fluid {
    padding: 0;
  }
  .SMP-Login .container-fluid .row .col-md-6 {
    padding: 6rem;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Login .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Login .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Login .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Login .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Login .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Login .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Register {
    padding: 0;
  }
  .SMP-Register .container-fluid {
    padding: 0;
  }
  .SMP-Register .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6:first-child {
    display: none;
  }
  .SMP-Register .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h2 {
    font-size: 30px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Register {
    padding: 0;
  }
  .SMP-Register .container-fluid {
    padding: 0;
  }
  .SMP-Register .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6:first-child {
    display: none;
  }
  .SMP-Register .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Register {
    padding: 0;
  }
  .SMP-Register .container-fluid {
    padding: 0;
  }
  .SMP-Register .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Register .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Register {
    padding: 7rem 0 0;
  }
  .SMP-Register .container-fluid {
    padding: 0;
  }
  .SMP-Register .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Register .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Register {
    padding: 7rem 0 0;
  }
  .SMP-Register .container-fluid {
    padding: 0;
  }
  .SMP-Register .container-fluid .row .col-md-6 {
    padding: 6rem;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Register .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .SMP-Register {
    padding: 7rem 0 0;
  }
  .SMP-Register .container-fluid {
    padding: 0;
  }
  .SMP-Register .container-fluid .row .col-md-6 {
    padding: 6rem;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Register .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-Register .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-Register .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-Register .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-Register .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-Register .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-LostPassword {
    padding: 0;
  }
  .SMP-LostPassword .container-fluid {
    padding: 0;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6:first-child {
    display: none;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h2 {
    font-size: 30px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-LostPassword {
    padding: 0;
  }
  .SMP-LostPassword .container-fluid {
    padding: 0;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6:first-child {
    display: none;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-LostPassword {
    padding: 0;
  }
  .SMP-LostPassword .container-fluid {
    padding: 0;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-LostPassword {
    padding: 7rem 0 0;
  }
  .SMP-LostPassword .container-fluid {
    padding: 0;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 {
    padding: 4rem;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-LostPassword {
    padding: 7rem 0 0;
  }
  .SMP-LostPassword .container-fluid {
    padding: 0;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 {
    padding: 6rem;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .SMP-LostPassword {
    padding: 7rem 0 0;
  }
  .SMP-LostPassword .container-fluid {
    padding: 0;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 {
    padding: 6rem;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6:first-child {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p label {
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input {
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 20px;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p input.button {
    width: auto;
    color: #FFFFFF;
    font-weight: 200;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    background-color: #302F2D;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    color: #FFFFFF;
    align-items: center;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 form p.login-remember label input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 hr {
    margin: 2rem 0;
    border: 1px solid #FFFFFF;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a {
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .SMP-LostPassword .container-fluid .row .col-md-6 p a.SMP-BTN {
    width: 210px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #FFFFFF;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-About {
    padding: 1rem 0;
  }
  .SMP-About header {
    width: 100%;
    height: 30vh;
    padding: 0 5rem;
    position: relative;
  }
  .SMP-About header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 300px;
    max-height: 30vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-About header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-About header .SMP-Page-Content .container {
    padding: 1rem;
  }
  .SMP-About header .SMP-Page-Content .container h1 {
    font-size: 30px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-About header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-About header .SMP-Page-Content .container p a {
    color: #aa886a;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-About article {
    padding: 1rem;
  }
  .SMP-About article .container {
    max-width: 720px;
  }
  .SMP-About article .container .row .col-md-6 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-About article .container .row .col-md-6 h2 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 h3 {
    font-size: 18px;
    font-weight: 300;
    color: #aa886a;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 .about-description {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-About article .container .row .col-md-6 img {
    width: 100%;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-About {
    padding: 1rem 0;
  }
  .SMP-About header {
    width: 100%;
    height: 30vh;
    padding: 0 5rem;
    position: relative;
  }
  .SMP-About header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 30vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-About header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-About header .SMP-Page-Content .container {
    max-width: 720px;
  }
  .SMP-About header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-About header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-About article {
    padding: 1rem;
  }
  .SMP-About article .container {
    max-width: 720px;
  }
  .SMP-About article .container .row .col-md-6 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-About article .container .row .col-md-6 h2 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 h3 {
    font-size: 18px;
    font-weight: 300;
    color: #aa886a;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 .about-description {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-About article .container .row .col-md-6 img {
    width: 100%;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-About {
    padding: 5rem 0;
  }
  .SMP-About header {
    width: 100%;
    height: 40vh;
    padding: 0 5rem;
    position: relative;
  }
  .SMP-About header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 40vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-About header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-About header .SMP-Page-Content .container {
    max-width: 720px;
  }
  .SMP-About header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-About header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-About article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-About article .container {
    max-width: 720px;
  }
  .SMP-About article .container .row .col-md-6 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-About article .container .row .col-md-6 h2 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 h3 {
    font-size: 18px;
    font-weight: 300;
    color: #aa886a;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 .about-description {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-About article .container .row .col-md-6 img {
    width: 100%;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-About {
    padding: 5rem 0;
  }
  .SMP-About header {
    width: 100%;
    height: 50vh;
    padding: 0 5rem;
    position: relative;
  }
  .SMP-About header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-About header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-About header .SMP-Page-Content .container {
    max-width: 1140px;
  }
  .SMP-About header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-About header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-About article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-About article .container {
    max-width: 1140px;
  }
  .SMP-About article .container .row .col-md-6 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-About article .container .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 h3 {
    font-size: 20px;
    font-weight: 300;
    color: #aa886a;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 .about-description {
    font-size: 16px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-About article .container .row .col-md-6 img {
    width: 100%;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-About {
    padding: 5rem 0;
  }
  .SMP-About header {
    width: 100%;
    height: 70vh;
    padding: 0 5rem;
    position: relative;
  }
  .SMP-About header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-About header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-About header .SMP-Page-Content .container {
    max-width: 1140px;
  }
  .SMP-About header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-About header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-About article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-About article .container {
    max-width: 1140px;
  }
  .SMP-About article .container .row .col-md-6 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-About article .container .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 h3 {
    font-size: 20px;
    font-weight: 300;
    color: #aa886a;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 .about-description {
    font-size: 16px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-About article .container .row .col-md-6 img {
    width: 100%;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-About {
    padding: 5rem 0;
  }
  .SMP-About header {
    width: 100%;
    height: 70vh;
    padding: 0 5rem;
    position: relative;
  }
  .SMP-About header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-About header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-About header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-About header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-About article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-About article .container .row .col-md-6 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-About article .container .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 h3 {
    font-size: 20px;
    font-weight: 300;
    color: #aa886a;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 .about-description {
    font-size: 16px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-About article .container .row .col-md-6 img {
    width: 100%;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-About {
    padding: 5rem 0;
  }
  .SMP-About header {
    width: 100%;
    height: 80vh;
    padding: 0 5rem;
    position: relative;
  }
  .SMP-About header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 80vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-About header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-About header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-About header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-About header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-About header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-About article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-About article .container {
    max-width: 1550px;
  }
  .SMP-About article .container .row .col-md-6 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-About article .container .row .col-md-6 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 h3 {
    font-size: 20px;
    font-weight: 300;
    color: #aa886a;
    margin-bottom: 1rem;
  }
  .SMP-About article .container .row .col-md-6 .about-description {
    font-size: 16px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-About article .container .row .col-md-6 img {
    width: 100%;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Press {
    padding: 7rem 0;
  }
  .SMP-Press header {
    width: 100%;
    height: 25vh;
    padding: 0 5rem;
    position: relative;
    overflow: hidden;
    background-color: #F3F3F3;
  }
  .SMP-Press header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Press header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Press header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Press header .SMP-Page-Content .container h1 {
    font-size: 30px;
    color: #FFFFFF;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Press header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
    text-align: center;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Press article {
    padding: 1rem;
  }
  .SMP-Press article.container {
    max-width: 1550px;
  }
  .SMP-Press article.container .row .col-lg-6 h2 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body h3 {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body a {
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover {
    background-color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body h3 {
    color: #FFFFFF;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body a {
    color: #494948;
    background-color: #FFFFFF;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Press {
    padding: 5rem 0;
  }
  .SMP-Press header {
    width: 100%;
    height: 30vh;
    padding: 0 5rem;
    position: relative;
    overflow: hidden;
    background-color: #F3F3F3;
  }
  .SMP-Press header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 40vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Press header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Press header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Press header .SMP-Page-Content .container h1 {
    font-size: 30px;
    color: #FFFFFF;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Press header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
    text-align: center;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Press article {
    padding: 1rem;
  }
  .SMP-Press article.container {
    max-width: 1550px;
  }
  .SMP-Press article.container .row .col-lg-6 h2 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body h3 {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body a {
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover {
    background-color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body h3 {
    color: #FFFFFF;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body a {
    color: #494948;
    background-color: #FFFFFF;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Press {
    padding: 5rem 0;
  }
  .SMP-Press header {
    width: 100%;
    height: 40vh;
    padding: 0 5rem;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Press header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 40vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Press header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Press header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Press header .SMP-Page-Content .container h1 {
    font-size: 30px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Press header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Press article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-Press article.container {
    max-width: 1550px;
  }
  .SMP-Press article.container .row .col-lg-6 h2 {
    font-size: 25px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body h3 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body a {
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover {
    background-color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body h3 {
    color: #FFFFFF;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body a {
    color: #494948;
    background-color: #FFFFFF;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Press {
    padding: 5rem 0;
  }
  .SMP-Press header {
    width: 100%;
    height: 40vh;
    padding: 0 5rem;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Press header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 40vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Press header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Press header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Press header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Press header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Press article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-Press article.container {
    max-width: 1550px;
  }
  .SMP-Press article.container .row .col-lg-6 h2 {
    font-size: 25px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body h3 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body a {
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover {
    background-color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body h3 {
    color: #FFFFFF;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body a {
    color: #494948;
    background-color: #FFFFFF;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Press {
    padding: 5rem 0;
  }
  .SMP-Press header {
    width: 100%;
    height: 40vh;
    padding: 0 5rem;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Press header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 40vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Press header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Press header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Press header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Press header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Press article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-Press article.container {
    max-width: 1550px;
  }
  .SMP-Press article.container .row .col-lg-6 h2 {
    font-size: 30px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body a {
    font-size: 16px;
    font-weight: 300;
    text-transform: capitalize;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover {
    background-color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body h3 {
    color: #FFFFFF;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body a {
    color: #494948;
    background-color: #FFFFFF;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Press {
    padding: 5rem 0;
  }
  .SMP-Press header {
    width: 100%;
    height: 40vh;
    padding: 0 5rem;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Press header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 40vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Press header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Press header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Press header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Press header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Press article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-Press article.container {
    max-width: 1550px;
  }
  .SMP-Press article.container .row .col-lg-6 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body a {
    font-size: 16px;
    font-weight: 300;
    text-transform: capitalize;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover {
    background-color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body h3 {
    color: #FFFFFF;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body a {
    color: #494948;
    background-color: #FFFFFF;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Press {
    padding: 5rem 0;
  }
  .SMP-Press header {
    width: 100%;
    height: 40vh;
    padding: 0 5rem;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Press header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 40vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Press header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Press header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Press header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Press header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Press header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Press article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-Press article.container {
    max-width: 1550px;
  }
  .SMP-Press article.container .row .col-lg-6 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card .card-body a {
    font-size: 16px;
    font-weight: 300;
    text-transform: capitalize;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover {
    background-color: #494948;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body h3 {
    color: #FFFFFF;
  }
  .SMP-Press article.container .row .col-lg-6 .card:hover .card-body a {
    color: #494948;
    background-color: #FFFFFF;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Team {
    padding: 1rem 0;
  }
  .SMP-Team header {
    width: 100%;
    height: 50vh;
    padding: 0 5rem;
    position: relative;
    background-color: #000000;
  }
  .SMP-Team header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Team header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Team header .SMP-Page-Content .container {
    max-width: 1280px;
  }
  .SMP-Team header .SMP-Page-Content .container h1 {
    font-size: 30px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Team header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
    line-height: 38px;
  }
  .SMP-Team header .SMP-Page-Content .container p a {
    color: #aa886a;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Team article {
    padding: 1rem;
  }
  .SMP-Team article .container .row .col-md-4 {
    padding: 1rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-4 img {
    filter: saturate(0);
    margin-bottom: 2rem;
  }
  .SMP-Team article .container .row .col-md-4 h2 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Team article .container .row .col-md-4 p {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Team article .container .row .col-md-4:hover img {
    filter: saturate(1);
  }
  .SMP-Team article .container .row .col-md-3 {
    padding: 1rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-3 img {
    filter: saturate(0);
    margin-bottom: 2rem;
  }
  .SMP-Team article .container .row .col-md-3 h2 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Team article .container .row .col-md-3 p {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Team article .container .row .col-md-3:hover img {
    filter: saturate(1);
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Team {
    padding: 1rem 0;
  }
  .SMP-Team header {
    width: 100%;
    height: 50vh;
    padding: 0 5rem;
    position: relative;
    background-color: #000000;
  }
  .SMP-Team header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Team header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Team header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Team header .SMP-Page-Content .container p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
    line-height: 38px;
  }
  .SMP-Team header .SMP-Page-Content .container p a {
    color: #aa886a;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Team article {
    padding: 1rem;
  }
  .SMP-Team article .container .row .col-md-4 {
    padding: 2rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-4 img {
    filter: saturate(0);
    margin-bottom: 2rem;
  }
  .SMP-Team article .container .row .col-md-4 h2 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Team article .container .row .col-md-4 p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Team article .container .row .col-md-4:hover img {
    filter: saturate(1);
  }
  .SMP-Team article .container .row .col-md-3 {
    padding: 2rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-3 img {
    filter: saturate(0);
    margin-bottom: 2rem;
  }
  .SMP-Team article .container .row .col-md-3 h2 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Team article .container .row .col-md-3 p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Team article .container .row .col-md-3:hover img {
    filter: saturate(1);
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Team {
    padding: 2rem 0;
  }
  .SMP-Team header {
    width: 100%;
    height: 50vh;
    padding: 0 5rem;
    position: relative;
    background-color: #000000;
  }
  .SMP-Team header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Team header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Team header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Team header .SMP-Page-Content .container p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
    line-height: 38px;
  }
  .SMP-Team header .SMP-Page-Content .container p a {
    color: #aa886a;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Team article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-Team article .container .row .col-md-4 {
    padding: 2rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-4 img {
    filter: saturate(0);
    margin-bottom: 2rem;
  }
  .SMP-Team article .container .row .col-md-4 h2 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Team article .container .row .col-md-4 p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Team article .container .row .col-md-4:hover img {
    filter: saturate(1);
  }
  .SMP-Team article .container .row .col-md-3 {
    padding: 0.5rem 1rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-3 img {
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: saturate(0);
  }
  .SMP-Team article .container .row .col-md-3 h2 {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0rem;
  }
  .SMP-Team article .container .row .col-md-3 p {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Team article .container .row .col-md-3:hover img {
    filter: saturate(1);
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Team {
    padding: 2rem 0;
  }
  .SMP-Team header {
    width: 100%;
    height: 50vh;
    padding: 0 5rem;
    position: relative;
    background-color: #000000;
  }
  .SMP-Team header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Team header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Team header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Team header .SMP-Page-Content .container p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
    line-height: 38px;
  }
  .SMP-Team header .SMP-Page-Content .container p a {
    color: #aa886a;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Team article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-Team article .container .row .col-md-4 {
    padding: 2rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-4 img {
    filter: saturate(0);
    margin-bottom: 2rem;
  }
  .SMP-Team article .container .row .col-md-4 h2 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Team article .container .row .col-md-4 p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Team article .container .row .col-md-4:hover img {
    filter: saturate(1);
  }
  .SMP-Team article .container .row .col-md-3 {
    padding: 0.5rem 1rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-3 img {
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: saturate(0);
  }
  .SMP-Team article .container .row .col-md-3 h2 {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0rem;
  }
  .SMP-Team article .container .row .col-md-3 p {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Team article .container .row .col-md-3:hover img {
    filter: saturate(1);
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Team {
    padding: 2rem 0;
  }
  .SMP-Team header {
    width: 100%;
    height: 50vh;
    padding: 0 5rem;
    position: relative;
    background-color: #000000;
  }
  .SMP-Team header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Team header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Team header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Team header .SMP-Page-Content .container p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
    line-height: 38px;
  }
  .SMP-Team header .SMP-Page-Content .container p a {
    color: #aa886a;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Team article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-Team article .container .row .col-md-4 {
    padding: 2rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-4 img {
    filter: saturate(0);
    margin-bottom: 2rem;
  }
  .SMP-Team article .container .row .col-md-4 h2 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Team article .container .row .col-md-4 p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Team article .container .row .col-md-4:hover img {
    filter: saturate(1);
  }
  .SMP-Team article .container .row .col-md-3 {
    padding: 0.5rem 1rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-3 img {
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: saturate(0);
  }
  .SMP-Team article .container .row .col-md-3 h2 {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0rem;
  }
  .SMP-Team article .container .row .col-md-3 p {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Team article .container .row .col-md-3:hover img {
    filter: saturate(1);
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Team {
    padding: 2rem 0;
  }
  .SMP-Team header {
    width: 100%;
    height: 50vh;
    padding: 0 5rem;
    position: relative;
    background-color: #000000;
  }
  .SMP-Team header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Team header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Team header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Team header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Team header .SMP-Page-Content .container p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
    line-height: 38px;
  }
  .SMP-Team header .SMP-Page-Content .container p a {
    color: #aa886a;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Team article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-Team article .container {
    max-width: 1550px;
  }
  .SMP-Team article .container .row .col-md-4 {
    padding: 2rem 6rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-4 img {
    filter: saturate(0);
    margin-bottom: 2rem;
  }
  .SMP-Team article .container .row .col-md-4 h2 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Team article .container .row .col-md-4 p {
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Team article .container .row .col-md-4:hover img {
    filter: saturate(1);
  }
  .SMP-Team article .container .row .col-md-3 {
    padding: 0.5rem 2rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-3 img {
    height: 260px;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: saturate(0);
  }
  .SMP-Team article .container .row .col-md-3 h2 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Team article .container .row .col-md-3 p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Team article .container .row .col-md-3:hover img {
    filter: saturate(1);
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Team {
    padding: 2rem 0;
  }
  .SMP-Team header {
    width: 100%;
    height: 50vh;
    padding: 0 5rem;
    position: relative;
    background-color: #000000;
  }
  .SMP-Team header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Team header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Team header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Team header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Team header .SMP-Page-Content .container p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
    line-height: 38px;
  }
  .SMP-Team header .SMP-Page-Content .container p a {
    color: #aa886a;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Team header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Team article {
    padding: 5rem 5rem 1rem;
  }
  .SMP-Team article .container {
    max-width: 1550px;
  }
  .SMP-Team article .container .row .col-md-4 {
    padding: 2rem 6rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-4 img {
    filter: saturate(0);
    margin-bottom: 2rem;
  }
  .SMP-Team article .container .row .col-md-4 h2 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Team article .container .row .col-md-4 p {
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Team article .container .row .col-md-4:hover img {
    filter: saturate(1);
  }
  .SMP-Team article .container .row .col-md-3 {
    padding: 0.5rem 2rem;
    transition: 0.3s all ease-in-out;
  }
  .SMP-Team article .container .row .col-md-3 img {
    height: 260px;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: saturate(0);
  }
  .SMP-Team article .container .row .col-md-3 h2 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Team article .container .row .col-md-3 p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Team article .container .row .col-md-3:hover img {
    filter: saturate(1);
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Blog {
    padding: 8rem 0;
  }
  .SMP-Blog .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper {
    padding: 0;
    width: 100%;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    overflow-x: scroll;
    border-bottom: 1px solid #ECECEC;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide {
    padding: 0.5rem 0;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    text-transform: uppercase;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a:hover {
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar {
    width: 4px;
    height: 1px;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb {
    background: #000000;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb:hover {
    background: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts header {
    padding: 2rem 0;
  }
  .SMP-Blog .SMP-Blog-Posts header h1 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Blog .SMP-Blog-Posts header p {
    font-size: 14px;
    margin-top: 1rem;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body h3 {
    font-size: 18px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Blog {
    padding: 5rem 0;
  }
  .SMP-Blog .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper {
    padding: 0;
    width: 100%;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    overflow-x: scroll;
    border-bottom: 1px solid #ECECEC;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide {
    padding: 1rem 0;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: #A4A4A3;
    text-transform: uppercase;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a:hover {
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar {
    width: 4px;
    height: 1px;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb {
    background: #000000;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb:hover {
    background: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts header {
    padding: 4rem 0;
  }
  .SMP-Blog .SMP-Blog-Posts header h1 {
    font-size: 40px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Blog .SMP-Blog-Posts header p {
    font-size: 14px;
    margin-top: 1rem;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body h3 {
    font-size: 18px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Blog {
    padding: 5rem 0;
  }
  .SMP-Blog .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper {
    padding: 0;
    width: 100%;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    overflow-x: scroll;
    border-bottom: 1px solid #ECECEC;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide {
    padding: 1rem 0;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: #A4A4A3;
    text-transform: uppercase;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a:hover {
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar {
    width: 4px;
    height: 1px;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb {
    background: #000000;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb:hover {
    background: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts header {
    padding: 4rem 0;
  }
  .SMP-Blog .SMP-Blog-Posts header h1 {
    font-size: 40px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Blog .SMP-Blog-Posts header p {
    font-size: 14px;
    margin-top: 1rem;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body h3 {
    font-size: 18px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Blog {
    padding: 8rem 0;
  }
  .SMP-Blog .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper {
    padding: 0;
    width: 100%;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    overflow-x: scroll;
    border-bottom: 1px solid #ECECEC;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide {
    padding: 0.5rem 0;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a {
    display: block;
    font-size: 10px;
    font-weight: 300;
    color: #A4A4A3;
    text-transform: uppercase;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a:hover {
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar {
    width: 4px;
    height: 1px;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb {
    background: #000000;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb:hover {
    background: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts header {
    padding: 4rem 0;
  }
  .SMP-Blog .SMP-Blog-Posts header h1 {
    font-size: 40px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Blog .SMP-Blog-Posts header p {
    font-size: 14px;
    margin-top: 1rem;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body h3 {
    font-size: 18px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Blog {
    padding: 8rem 0;
  }
  .SMP-Blog .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper {
    padding: 0;
    width: 100%;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    overflow-x: scroll;
    border-bottom: 1px solid #ECECEC;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide {
    padding: 0.5rem 0;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a {
    display: block;
    font-size: 10px;
    font-weight: 300;
    color: #A4A4A3;
    text-transform: uppercase;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a:hover {
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar {
    width: 4px;
    height: 1px;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb {
    background: #000000;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb:hover {
    background: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts header {
    padding: 4rem 0;
  }
  .SMP-Blog .SMP-Blog-Posts header h1 {
    font-size: 40px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Blog .SMP-Blog-Posts header p {
    font-size: 14px;
    margin-top: 1rem;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body h3 {
    font-size: 18px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Blog {
    padding: 8rem 0;
  }
  .SMP-Blog .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper {
    padding: 0;
    width: 100%;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    overflow-x: scroll;
    border-bottom: 1px solid #ECECEC;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide {
    padding: 0.5rem 0;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a {
    display: block;
    font-size: 10px;
    font-weight: 300;
    color: #A4A4A3;
    text-transform: uppercase;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a:hover {
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar {
    width: 4px;
    height: 1px;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb {
    background: #000000;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb:hover {
    background: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts header {
    padding: 4rem 0;
  }
  .SMP-Blog .SMP-Blog-Posts header h1 {
    font-size: 40px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Blog .SMP-Blog-Posts header p {
    font-size: 14px;
    margin-top: 1rem;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card a img {
    width: 100%;
    height: 350px;
    object-fit: contain;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body h3 {
    font-size: 24px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Blog {
    padding: 7rem 0;
  }
  .SMP-Blog .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper {
    padding: 0;
    width: 100%;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    overflow-x: scroll;
    border-bottom: 1px solid #ECECEC;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper {
    padding: 0 1.875rem;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide {
    padding: 1.5rem 0;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: #A4A4A3;
    text-transform: uppercase;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper .swiper-wrapper .swiper-slide a:hover {
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar {
    width: 4px;
    height: 1px;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb {
    background: #000000;
  }
  .SMP-Blog .SMP-Blog-Categories .BlogSwiper::-webkit-scrollbar-thumb:hover {
    background: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts header {
    padding: 4rem 0;
  }
  .SMP-Blog .SMP-Blog-Posts header h1 {
    font-size: 40px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Blog .SMP-Blog-Posts header p {
    font-size: 14px;
    margin-top: 1rem;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card a img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body h3 {
    font-size: 24px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Blog .SMP-Blog-Posts .row .col-lg-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-FAQ {
    padding: 1rem;
  }
  .SMP-FAQ header {
    padding: 6rem 0 0;
  }
  .SMP-FAQ header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-FAQ article {
    margin-top: 5rem;
  }
  .SMP-FAQ article .container-fluid {
    padding: 0;
  }
  .SMP-FAQ article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-FAQ article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-FAQ article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus, .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus-visible {
    box-shadow: unset;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:not(.collapsed) {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-body {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-FAQ {
    padding: 1rem;
  }
  .SMP-FAQ header {
    padding: 6rem 0 0;
  }
  .SMP-FAQ header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-FAQ article {
    margin-top: 5rem;
  }
  .SMP-FAQ article .container-fluid {
    padding: 0;
  }
  .SMP-FAQ article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-FAQ article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-FAQ article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus, .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus-visible {
    box-shadow: unset;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:not(.collapsed) {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-body {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-FAQ {
    padding: 5rem 0;
  }
  .SMP-FAQ header {
    padding: 6rem 0 0;
  }
  .SMP-FAQ header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-FAQ article {
    margin-top: 5rem;
  }
  .SMP-FAQ article .container-fluid {
    padding: 0;
  }
  .SMP-FAQ article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-FAQ article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-FAQ article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus, .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus-visible {
    box-shadow: unset;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:not(.collapsed) {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-body {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-FAQ {
    padding: 5rem 0;
  }
  .SMP-FAQ header {
    padding: 6rem 0 0;
  }
  .SMP-FAQ header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-FAQ article {
    margin-top: 5rem;
  }
  .SMP-FAQ article .container-fluid {
    padding: 0;
  }
  .SMP-FAQ article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-FAQ article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-FAQ article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus, .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus-visible {
    box-shadow: unset;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:not(.collapsed) {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-body {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-FAQ {
    padding: 5rem 0;
  }
  .SMP-FAQ header {
    padding: 6rem 0 0;
  }
  .SMP-FAQ header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-FAQ article {
    margin-top: 5rem;
  }
  .SMP-FAQ article .container-fluid {
    padding: 0;
  }
  .SMP-FAQ article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-FAQ article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-FAQ article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus, .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus-visible {
    box-shadow: unset;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:not(.collapsed) {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-body {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-FAQ {
    padding: 5rem 0;
  }
  .SMP-FAQ header {
    padding: 6rem 0 0;
  }
  .SMP-FAQ header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-FAQ article {
    margin-top: 5rem;
  }
  .SMP-FAQ article .container-fluid {
    padding: 0;
  }
  .SMP-FAQ article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-FAQ article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-FAQ article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus, .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus-visible {
    box-shadow: unset;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:not(.collapsed) {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-body {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-FAQ {
    padding: 5rem 0;
  }
  .SMP-FAQ header {
    padding: 6rem 0 0;
  }
  .SMP-FAQ header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-FAQ article {
    margin-top: 5rem;
  }
  .SMP-FAQ article .container-fluid {
    padding: 0;
  }
  .SMP-FAQ article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-FAQ article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-FAQ article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus, .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:focus-visible {
    box-shadow: unset;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-header button:not(.collapsed) {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-FAQ article .container-fluid .row .tab-content .tab-pane .accordion .accordion-item .accordion-body {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
form label {
  margin: 0.5rem 0;
  font-size: 13px;
  font-weight: 300;
  color: #494948;
}
form .form-control {
  font-size: 13px;
  font-weight: 300;
  color: #494948;
  border-radius: 20px;
  border: 1px solid #CCCCCC;
}
form .form-control:focus, form .form-control:focus-visible {
  box-shadow: unset;
  border: 1px solid #494948;
}

@media (max-width: 565px) {
  .SMP-Support {
    padding: 5rem 0;
  }
  .SMP-Support header {
    padding: 2rem 0 0;
  }
  .SMP-Support header h1 {
    font-size: 28px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Support article {
    margin-top: 2rem;
  }
  .SMP-Support article .container-fluid {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Support article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Support article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 {
    width: 100%;
    padding: 3rem;
    background-color: #f9f9f9;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 h2 {
    font-size: 24px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 {
    padding: 2rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 h3 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 p {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) h3 {
    text-align: center;
    margin-bottom: 2rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card {
    display: flex;
    padding: 2rem 1rem;
    border-width: 0;
    border-radius: 0;
    flex-direction: column;
    background-color: #f9f9f9;
    align-items: center;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card img {
    width: 20px;
    margin-bottom: 1rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card h4 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card a {
    font-size: 12px;
    padding: 0.5rem;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Support {
    padding: 5rem 0;
  }
  .SMP-Support header {
    padding: 2rem 0 0;
  }
  .SMP-Support header h1 {
    font-size: 28px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Support article {
    margin-top: 2rem;
  }
  .SMP-Support article .container-fluid {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Support article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Support article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 {
    width: 100%;
    padding: 3rem;
    background-color: #f9f9f9;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 h2 {
    font-size: 24px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus, .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 {
    padding: 4rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 h3 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 p {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) h3 {
    text-align: center;
    margin-bottom: 4rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card {
    display: flex;
    padding: 2rem;
    border-width: 0;
    border-radius: 0;
    flex-direction: column;
    background-color: #f9f9f9;
    align-items: center;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card img {
    width: 30px;
    margin-bottom: 2rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card h4 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card a {
    font-size: 12px;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Support {
    padding: 5rem 0;
  }
  .SMP-Support header {
    padding: 2rem 0 0;
  }
  .SMP-Support header h1 {
    font-size: 28px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Support article {
    margin-top: 2rem;
  }
  .SMP-Support article .container-fluid {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Support article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Support article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 {
    width: 100%;
    padding: 5rem;
    background-color: #f9f9f9;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 h2 {
    font-size: 24px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus, .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 {
    padding: 4rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 h3 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 p {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) h3 {
    text-align: center;
    margin-bottom: 4rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card {
    display: flex;
    padding: 4rem;
    border-width: 0;
    border-radius: 0;
    flex-direction: column;
    background-color: #f9f9f9;
    align-items: center;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card img {
    width: 50px;
    margin-bottom: 2rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card h4 {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card a {
    margin-top: 1rem;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Support {
    padding: 5rem 0;
  }
  .SMP-Support header {
    padding: 6rem 0 0;
  }
  .SMP-Support header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Support article {
    margin-top: 5rem;
  }
  .SMP-Support article .container-fluid {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Support article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Support article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 {
    padding: 5rem 8rem;
    background-color: #f9f9f9;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 h2 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus, .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 {
    padding: 4rem 2rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 h3 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 p {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) h3 {
    text-align: center;
    margin-bottom: 4rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card {
    display: flex;
    padding: 4rem;
    border-width: 0;
    border-radius: 0;
    flex-direction: column;
    background-color: #f9f9f9;
    align-items: center;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card img {
    width: 50px;
    margin-bottom: 2rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card h4 {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card a {
    margin-top: 1rem;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Support {
    padding: 5rem 0;
  }
  .SMP-Support header {
    padding: 6rem 0 0;
  }
  .SMP-Support header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Support article {
    margin-top: 5rem;
  }
  .SMP-Support article .container-fluid {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Support article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Support article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 {
    padding: 5rem 8rem;
    background-color: #f9f9f9;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 h2 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus, .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 {
    padding: 4rem 2rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 h3 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 p {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) h3 {
    text-align: center;
    margin-bottom: 4rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card {
    display: flex;
    padding: 4rem;
    border-width: 0;
    border-radius: 0;
    flex-direction: column;
    background-color: #f9f9f9;
    align-items: center;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card img {
    width: 50px;
    margin-bottom: 2rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card h4 {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card a {
    margin-top: 1rem;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Support {
    padding: 5rem 0;
  }
  .SMP-Support header {
    padding: 6rem 0 0;
  }
  .SMP-Support header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Support article {
    margin-top: 5rem;
  }
  .SMP-Support article .container-fluid {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Support article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Support article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 {
    padding: 5rem 8rem;
    background-color: #f9f9f9;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 h2 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus, .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 {
    padding: 4rem 0;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 h3 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 p {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) h3 {
    text-align: center;
    margin-bottom: 4rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card {
    display: flex;
    padding: 4rem;
    border-width: 0;
    border-radius: 0;
    flex-direction: column;
    background-color: #f9f9f9;
    align-items: center;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card img {
    width: 50px;
    margin-bottom: 2rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card h4 {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card a {
    margin-top: 1rem;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Support {
    padding: 5rem 0;
  }
  .SMP-Support header {
    padding: 6rem 0 0;
  }
  .SMP-Support header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Support article {
    margin-top: 5rem;
  }
  .SMP-Support article .container-fluid {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .nav {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Support article .container-fluid .row .nav li button {
    bottom: -2px;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 1rem 2rem;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Support article .container-fluid .row .nav li button.active {
    font-weight: 300;
    border-bottom: 1px solid #000000;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 {
    padding: 5rem 8rem;
    background-color: #f9f9f9;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 h2 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus, .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-10 form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 {
    padding: 4rem 0;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 h3 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12 p {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) {
    padding: 0;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) h3 {
    text-align: center;
    margin-bottom: 4rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card {
    display: flex;
    padding: 4rem;
    border-width: 0;
    border-radius: 0;
    flex-direction: column;
    background-color: #f9f9f9;
    align-items: center;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card img {
    width: 50px;
    margin-bottom: 2rem;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card h4 {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Support article .container-fluid .row .tab-content .tab-pane .row .col-md-12:nth-child(3) .d-flex .card a {
    margin-top: 1rem;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Partner {
    padding: 4rem 0;
  }
  .SMP-Partner header {
    padding: 4rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Partner header h1 {
    font-size: 28px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Partner article .container {
    padding: 2rem;
  }
  .SMP-Partner article .container .row .col-md-12 {
    padding: 1rem 0 1rem;
  }
  .SMP-Partner article .container .row .col-md-12 h2, .SMP-Partner article .container .row .col-md-12 h3 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #494948;
  }
  .SMP-Partner article .container .row .col-md-12 h2 strong, .SMP-Partner article .container .row .col-md-12 h3 strong {
    font-weight: 300;
  }
  .SMP-Partner article .container .row .col-md-12 p {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Partner article .container .row .col-md-12 .w-25 {
    width: 100% !important;
  }
  .SMP-Partner article .container .row #PartnerForm {
    padding: 1rem;
    background-color: #f9f9f9;
  }
  .SMP-Partner article .container .row #PartnerForm h2 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Partner article .container .row #PartnerForm p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control:focus, .SMP-Partner article .container .row #PartnerForm form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form .col-6 {
    width: 100%;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Partner {
    padding: 4rem 0;
  }
  .SMP-Partner header {
    padding: 4rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Partner header h1 {
    font-size: 28px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Partner article .container {
    padding: 2rem;
  }
  .SMP-Partner article .container .row .col-md-12 {
    padding: 1rem 0 1rem;
  }
  .SMP-Partner article .container .row .col-md-12 h2, .SMP-Partner article .container .row .col-md-12 h3 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #494948;
  }
  .SMP-Partner article .container .row .col-md-12 h2 strong, .SMP-Partner article .container .row .col-md-12 h3 strong {
    font-weight: 300;
  }
  .SMP-Partner article .container .row .col-md-12 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm {
    padding: 2rem;
    background-color: #f9f9f9;
  }
  .SMP-Partner article .container .row #PartnerForm h2 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Partner article .container .row #PartnerForm p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control:focus, .SMP-Partner article .container .row #PartnerForm form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Partner {
    padding: 4rem 0;
  }
  .SMP-Partner header {
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Partner header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Partner article .container {
    padding: 2rem;
  }
  .SMP-Partner article .container .row .col-md-12 {
    padding: 1rem 0 1rem;
  }
  .SMP-Partner article .container .row .col-md-12 h2, .SMP-Partner article .container .row .col-md-12 h3 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #494948;
  }
  .SMP-Partner article .container .row .col-md-12 h2 strong, .SMP-Partner article .container .row .col-md-12 h3 strong {
    font-weight: 300;
  }
  .SMP-Partner article .container .row .col-md-12 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm {
    padding: 5rem;
    background-color: #f9f9f9;
  }
  .SMP-Partner article .container .row #PartnerForm h2 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Partner article .container .row #PartnerForm p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control:focus, .SMP-Partner article .container .row #PartnerForm form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Partner {
    padding: 4rem 0;
  }
  .SMP-Partner header {
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Partner header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Partner article .container {
    padding: 2rem;
  }
  .SMP-Partner article .container .row .col-md-12 {
    padding: 1rem 0 1rem;
  }
  .SMP-Partner article .container .row .col-md-12 h2, .SMP-Partner article .container .row .col-md-12 h3 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #494948;
  }
  .SMP-Partner article .container .row .col-md-12 h2 strong, .SMP-Partner article .container .row .col-md-12 h3 strong {
    font-weight: 300;
  }
  .SMP-Partner article .container .row .col-md-12 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm {
    padding: 5rem 10rem;
    background-color: #f9f9f9;
  }
  .SMP-Partner article .container .row #PartnerForm h2 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Partner article .container .row #PartnerForm p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control:focus, .SMP-Partner article .container .row #PartnerForm form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Partner {
    padding: 5rem 0;
  }
  .SMP-Partner header {
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Partner header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Partner article .container {
    padding: 2rem;
  }
  .SMP-Partner article .container .row .col-md-12 {
    padding: 4rem 0 1rem;
  }
  .SMP-Partner article .container .row .col-md-12 h2, .SMP-Partner article .container .row .col-md-12 h3 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #494948;
  }
  .SMP-Partner article .container .row .col-md-12 h2 strong, .SMP-Partner article .container .row .col-md-12 h3 strong {
    font-weight: 300;
  }
  .SMP-Partner article .container .row .col-md-12 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm {
    padding: 5rem 10rem;
    background-color: #f9f9f9;
  }
  .SMP-Partner article .container .row #PartnerForm h2 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Partner article .container .row #PartnerForm p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control:focus, .SMP-Partner article .container .row #PartnerForm form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Partner {
    padding: 5rem 0;
  }
  .SMP-Partner header {
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Partner header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Partner article .container {
    padding: 0;
  }
  .SMP-Partner article .container .row .col-md-12 {
    padding: 4rem 0 1rem;
  }
  .SMP-Partner article .container .row .col-md-12 h2, .SMP-Partner article .container .row .col-md-12 h3 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #494948;
  }
  .SMP-Partner article .container .row .col-md-12 h2 strong, .SMP-Partner article .container .row .col-md-12 h3 strong {
    font-weight: 300;
  }
  .SMP-Partner article .container .row .col-md-12 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm {
    padding: 5rem 10rem;
    background-color: #f9f9f9;
  }
  .SMP-Partner article .container .row #PartnerForm h2 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Partner article .container .row #PartnerForm p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control:focus, .SMP-Partner article .container .row #PartnerForm form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Partner {
    padding: 5rem 0;
  }
  .SMP-Partner header {
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Partner header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Partner article .container {
    padding: 0;
  }
  .SMP-Partner article .container .row .col-md-12 {
    padding: 4rem 0 1rem;
  }
  .SMP-Partner article .container .row .col-md-12 h2, .SMP-Partner article .container .row .col-md-12 h3 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #494948;
  }
  .SMP-Partner article .container .row .col-md-12 h2 strong, .SMP-Partner article .container .row .col-md-12 h3 strong {
    font-weight: 300;
  }
  .SMP-Partner article .container .row .col-md-12 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm {
    padding: 5rem 10rem;
    background-color: #f9f9f9;
  }
  .SMP-Partner article .container .row #PartnerForm h2 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Partner article .container .row #PartnerForm p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form label {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control {
    font-size: 13px;
    font-weight: 300;
    color: #494948;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
  }
  .SMP-Partner article .container .row #PartnerForm form .form-control:focus, .SMP-Partner article .container .row #PartnerForm form .form-control:focus-visible {
    box-shadow: unset;
    border: 1px solid #494948;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Bundles {
    padding: 2rem 0 4rem;
    background-color: #F6F6F6;
  }
  .SMP-Bundles .container .nav {
    border-width: 0;
  }
  .SMP-Bundles .container .nav .col-md-3 button {
    width: 100%;
    display: flex;
    padding: 1rem;
    border-width: 0;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Bundles .container .nav .col-md-3 button img {
    width: 100%;
    height: 80px;
    object-fit: contain;
  }
  .SMP-Bundles .container .nav .col-md-3 button h3 {
    font-size: 14px;
    margin-top: 0.5rem;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Bundles .container .nav .col-md-3 button a {
    font-size: 12px;
    padding: 0.5rem 1rem;
  }
  .SMP-Bundles .container .tab-content {
    padding: 1rem 0;
    overflow-x: scroll;
  }
  .SMP-Bundles .container .tab-content .tab-pane .container {
    width: 1480px;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .SMP-Bundles .container .row {
    justify-content: center;
  }
  .SMP-Bundles .container .row .col-md-2 {
    width: 180px;
    padding: 0.5rem;
    display: flex;
    background: #FFFFFF;
    flex-direction: column;
    align-items: center;
    border: 1px solid #F6F6F6;
    justify-content: flex-start;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md-2 a {
    text-align: center;
  }
  .SMP-Bundles .container .row .col-md-2 img {
    width: 100%;
    height: 100px;
    object-fit: contain;
  }
  .SMP-Bundles .container .row .col-md-2 p {
    font-size: 16px;
    font-weight: bold;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md-2 p del {
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md {
    width: 155px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #F6F6F6;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md p, .SMP-Bundles .container .row .col-md span {
    font-size: 16px;
    font-weight: bold;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md p del, .SMP-Bundles .container .row .col-md span del {
    font-weight: 700;
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md a {
    padding: 0.5rem;
    font-size: 12px;
    margin-top: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md svg {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
  }
  .SMP-Bundles .container .row .col-md svg path, .SMP-Bundles .container .row .col-md svg use {
    fill: #59b99d;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md-2 {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:last-child .col-md-2 {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Bundles .container .row:last-child .col-md {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Deals {
    padding: 0 0;
  }
  .SMP-Deals header {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Deals header h2, .SMP-Deals header h4 {
    text-align: center;
  }
  .SMP-Deals header.SMP-Deals-Default-Banner {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/Hot-deals-banner.jpg");
  }
  .SMP-Deals article section {
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals article section h2 {
    padding: 4rem;
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 200;
    text-align: center;
    background-size: cover;
    text-transform: capitalize;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Deals article section .container {
    margin-top: 2rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card {
    padding: 1rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h3 {
    font-size: 14px;
    font-weight: 200;
    min-height: 60px;
    text-align: center;
    color: #494948;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 {
    font-size: 12px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 strong {
    font-size: 14px;
    font-weight: 400;
    color: #AA886A;
    letter-spacing: -2px;
  }
  .SMP-Deals article section .container .row .col-md-4 .card img {
    height: 120px;
    object-fit: contain;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text {
    display: flex;
    font-size: 12px;
    font-weight: 200;
    align-items: center;
    color: #494948;
    flex-direction: column;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span :not(:last-child) {
    margin-bottom: 1rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span ins {
    font-weight: 600;
    border-bottom: 0;
    color: #AA886A;
    text-decoration: none;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer {
    padding: 0;
    display: flex;
    border-width: 0;
    flex-direction: column;
    background-color: transparent;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button {
    width: 100%;
    padding: 0.5rem;
    font-size: 12px;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a:first-child, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button:first-child {
    margin-bottom: 1rem;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Bundles {
    padding: 2rem 0 4rem;
    background-color: #F6F6F6;
  }
  .SMP-Bundles .container .nav {
    border-width: 0;
  }
  .SMP-Bundles .container .nav .col-md-3 button {
    width: 100%;
    display: flex;
    padding: 1rem;
    border-width: 0;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Bundles .container .nav .col-md-3 button img {
    width: 100%;
    height: 80px;
    object-fit: contain;
  }
  .SMP-Bundles .container .nav .col-md-3 button h3 {
    font-size: 14px;
    margin-top: 0.5rem;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Bundles .container .nav .col-md-3 button a {
    font-size: 12px;
    padding: 0.5rem 1rem;
  }
  .SMP-Bundles .container .tab-content {
    padding: 4rem 0;
  }
  .SMP-Bundles .container .row {
    justify-content: center;
    flex-wrap: nowrap;
  }
  .SMP-Bundles .container .row .col-md-2 {
    width: 80px;
    padding: 0.5rem;
    display: flex;
    background: #FFFFFF;
    flex-direction: column;
    align-items: center;
    border: 1px solid #F6F6F6;
    justify-content: flex-start;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md-2 img {
    width: 100%;
    height: 100px;
    object-fit: contain;
  }
  .SMP-Bundles .container .row .col-md-2 p {
    font-size: 16px;
    font-weight: bold;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md-2 p del {
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md {
    width: 155px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #F6F6F6;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md p, .SMP-Bundles .container .row .col-md span {
    font-size: 16px;
    font-weight: bold;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md p del, .SMP-Bundles .container .row .col-md span del {
    font-weight: 700;
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md a {
    padding: 0.5rem;
    font-size: 12px;
    margin-top: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md svg {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
  }
  .SMP-Bundles .container .row .col-md svg path, .SMP-Bundles .container .row .col-md svg use {
    fill: #59b99d;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md-2 {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:last-child .col-md-2 {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Bundles .container .row:last-child .col-md {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Deals {
    padding: 0 0;
  }
  .SMP-Deals header {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Deals header.SMP-Deals-Default-Banner {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/Hot-deals-banner.jpg");
  }
  .SMP-Deals article section {
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals article section h2 {
    padding: 4rem;
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 200;
    text-align: center;
    background-size: cover;
    text-transform: capitalize;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Deals article section .container {
    margin-top: 2rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card {
    padding: 2rem 1rem 1rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h3 {
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 strong {
    font-size: 22px;
    font-weight: 400;
    color: #AA886A;
    letter-spacing: -2px;
  }
  .SMP-Deals article section .container .row .col-md-4 .card img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text {
    display: flex;
    font-size: 16px;
    font-weight: 200;
    align-items: center;
    color: #494948;
    flex-direction: column;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span :not(:last-child) {
    margin-bottom: 1rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span ins {
    font-weight: 600;
    border-bottom: 0;
    color: #AA886A;
    text-decoration: none;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer {
    display: flex;
    border-width: 0;
    flex-direction: column;
    background-color: transparent;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button {
    width: 70%;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a:first-child, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button:first-child {
    margin-bottom: 1rem;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Bundles {
    padding: 2rem 0 4rem;
    background-color: #F6F6F6;
  }
  .SMP-Bundles .container .nav {
    border-width: 0;
  }
  .SMP-Bundles .container .nav .col-md-3 button {
    width: 100%;
    display: flex;
    padding: 1rem;
    border-width: 0;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Bundles .container .nav .col-md-3 button img {
    width: 100%;
    height: 80px;
    object-fit: contain;
  }
  .SMP-Bundles .container .nav .col-md-3 button h3 {
    font-size: 14px;
    margin-top: 0.5rem;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Bundles .container .nav .col-md-3 button a {
    font-size: 12px;
    padding: 0.5rem 1rem;
  }
  .SMP-Bundles .container .tab-content {
    padding: 4rem 0;
  }
  .SMP-Bundles .container .row .col-md-2 {
    width: 100px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    border: 1px solid #F6F6F6;
    justify-content: flex-start;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md-2 img {
    width: 100%;
    height: 100px;
    object-fit: contain;
  }
  .SMP-Bundles .container .row .col-md-2 p {
    font-size: 14px;
    font-weight: 700;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md-2 p del {
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md {
    width: 155px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #F6F6F6;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md p, .SMP-Bundles .container .row .col-md span {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md p del, .SMP-Bundles .container .row .col-md span del {
    font-weight: 700;
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md a {
    margin-top: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md svg {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
  }
  .SMP-Bundles .container .row .col-md svg path, .SMP-Bundles .container .row .col-md svg use {
    fill: #59b99d;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md-2 {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:last-child .col-md-2 {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Bundles .container .row:last-child .col-md {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Deals {
    padding: 0 0;
  }
  .SMP-Deals header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Deals header.SMP-Deals-Default-Banner {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/Hot-deals-banner.jpg");
  }
  .SMP-Deals article section {
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals article section h2 {
    padding: 5rem;
    font-size: 40px;
    color: #FFFFFF;
    font-weight: 200;
    text-align: center;
    background-size: cover;
    text-transform: capitalize;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Deals article section .container {
    margin-top: 2rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card {
    padding: 2rem 1rem 1rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h3 {
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 strong {
    font-size: 22px;
    font-weight: 400;
    color: #AA886A;
    letter-spacing: -2px;
  }
  .SMP-Deals article section .container .row .col-md-4 .card img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text {
    display: flex;
    font-size: 16px;
    font-weight: 200;
    align-items: center;
    color: #494948;
    flex-direction: column;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span :not(:last-child) {
    margin-bottom: 1rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span ins {
    font-weight: 600;
    border-bottom: 0;
    color: #AA886A;
    text-decoration: none;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer {
    display: flex;
    border-width: 0;
    flex-direction: column;
    background-color: transparent;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button {
    width: 70%;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a:first-child, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button:first-child {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .tab-content .container .row:first-child {
    position: sticky;
    top: 112px;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Bundles {
    padding: 2rem 0 4rem;
    background-color: #F6F6F6;
  }
  .SMP-Bundles .container .nav {
    border-width: 0;
    justify-content: center;
  }
  .SMP-Bundles .container .nav .col-md-3 button {
    width: 100%;
    display: flex;
    padding: 1rem;
    border-width: 0;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Bundles .container .nav .col-md-3 button img {
    width: 100%;
    height: 100px;
    object-fit: contain;
  }
  .SMP-Bundles .container .nav .col-md-3 button h3 {
    font-size: 14px;
    margin-top: 0.5rem;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Bundles .container .nav .col-md-3 button a {
    font-size: 12px;
    padding: 0.5rem 1rem;
  }
  .SMP-Bundles .container .tab-content {
    padding: 4rem 0;
  }
  .SMP-Bundles .container .row .col-md-2 {
    padding: 1rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    border: 1px solid #F6F6F6;
    justify-content: flex-start;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md-2 img {
    width: 100%;
    height: 100px;
    object-fit: contain;
  }
  .SMP-Bundles .container .row .col-md-2 p {
    font-size: 16px;
    font-weight: 700;
    color: #494948;
  }
  .SMP-Bundles .container .row .col-md-2 p del {
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md {
    padding: 1rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #F6F6F6;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md p, .SMP-Bundles .container .row .col-md span {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Bundles .container .row .col-md p del, .SMP-Bundles .container .row .col-md span del {
    font-weight: 700;
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md a {
    margin-top: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md svg {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
  }
  .SMP-Bundles .container .row .col-md svg path, .SMP-Bundles .container .row .col-md svg use {
    fill: #59b99d;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md-2 {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:last-child .col-md-2 {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Bundles .container .row:last-child .col-md {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Deals {
    padding: 5rem 0 0;
  }
  .SMP-Deals header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Deals header.SMP-Deals-Default-Banner {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/Hot-deals-banner.jpg");
  }
  .SMP-Deals article section {
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals article section h2 {
    padding: 5rem;
    font-size: 40px;
    color: #FFFFFF;
    font-weight: 200;
    text-align: center;
    background-size: cover;
    text-transform: capitalize;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Deals article section .container {
    margin-top: 2rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card {
    padding: 2rem 1rem 1rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h3 {
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 strong {
    font-size: 22px;
    font-weight: 400;
    color: #AA886A;
    letter-spacing: -2px;
  }
  .SMP-Deals article section .container .row .col-md-4 .card img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text {
    display: flex;
    font-size: 16px;
    font-weight: 200;
    align-items: center;
    color: #494948;
    flex-direction: column;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span :not(:last-child) {
    margin-bottom: 1rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span ins {
    font-weight: 600;
    border-bottom: 0;
    color: #AA886A;
    text-decoration: none;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer {
    display: flex;
    border-width: 0;
    flex-direction: column;
    background-color: transparent;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button {
    width: 70%;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a:first-child, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button:first-child {
    margin-bottom: 1rem;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Bundles {
    padding: 2rem 0 4rem;
    background-color: #F6F6F6;
  }
  .SMP-Bundles .container .nav {
    border-width: 0;
    justify-content: center;
  }
  .SMP-Bundles .container .nav .col-md-3 button {
    width: 100%;
    display: flex;
    padding: 2rem;
    border-width: 0;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Bundles .container .nav .col-md-3 button img {
    width: 100%;
    height: 150px;
    object-fit: contain;
  }
  .SMP-Bundles .container .nav .col-md-3 button h3 {
    font-size: 18px;
    margin-top: 1rem;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Bundles .container .tab-content {
    padding: 4rem 0;
  }
  .SMP-Bundles .container .row .col-md-2 {
    padding: 1rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    border: 1px solid #F6F6F6;
    justify-content: flex-start;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md-2 img {
    width: 100%;
    height: 100px;
    object-fit: contain;
  }
  .SMP-Bundles .container .row .col-md-2 p {
    font-size: 16px;
    font-weight: 700;
    color: #494948;
  }
  .SMP-Bundles .container .row .col-md-2 p del {
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md {
    padding: 1rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #F6F6F6;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md p, .SMP-Bundles .container .row .col-md span {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Bundles .container .row .col-md p del, .SMP-Bundles .container .row .col-md span del {
    font-weight: 700;
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md a {
    margin-top: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md svg {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
  }
  .SMP-Bundles .container .row .col-md svg path, .SMP-Bundles .container .row .col-md svg use {
    fill: #59b99d;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md-2 {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:last-child .col-md-2 {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Bundles .container .row:last-child .col-md {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Deals {
    padding: 5rem 0 0;
  }
  .SMP-Deals header {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Deals header.SMP-Deals-Default-Banner {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/Hot-deals-banner.jpg");
  }
  .SMP-Deals article section {
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals article section h2 {
    padding: 5rem;
    font-size: 40px;
    color: #FFFFFF;
    font-weight: 200;
    text-align: center;
    background-size: cover;
    text-transform: capitalize;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Deals article section .container {
    margin-top: 2rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card {
    padding: 2rem 1rem 1rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h3 {
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 strong {
    font-size: 22px;
    font-weight: 400;
    color: #AA886A;
    letter-spacing: -2px;
  }
  .SMP-Deals article section .container .row .col-md-4 .card img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text {
    display: flex;
    font-size: 16px;
    font-weight: 200;
    align-items: center;
    color: #494948;
    flex-direction: column;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span :not(:last-child) {
    margin-bottom: 1rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span ins {
    font-weight: 600;
    border-bottom: 0;
    color: #AA886A;
    text-decoration: none;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer {
    display: flex;
    border-width: 0;
    flex-direction: column;
    background-color: transparent;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button {
    width: 70%;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a:first-child, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button:first-child {
    margin-bottom: 1rem;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Bundles {
    padding: 2rem 0 4rem;
    background-color: #F6F6F6;
  }
  .SMP-Bundles .container .nav {
    border-width: 0;
    justify-content: center;
  }
  .SMP-Bundles .container .nav .col-md-3 button {
    width: 100%;
    display: flex;
    padding: 2rem;
    border-width: 0;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Bundles .container .nav .col-md-3 button img {
    width: 100%;
    height: 150px;
    object-fit: contain;
  }
  .SMP-Bundles .container .nav .col-md-3 button h3 {
    font-size: 18px;
    margin-top: 1rem;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Bundles .container .tab-content {
    padding: 4rem 0;
  }
  .SMP-Bundles .container .row .col-md-2 {
    padding: 1rem;
    display: flex;
    background: #FFFFFF;
    flex-direction: column;
    align-items: center;
    border: 1px solid #F6F6F6;
    justify-content: flex-start;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md-2 img {
    width: 100%;
    height: 100px;
    object-fit: contain;
  }
  .SMP-Bundles .container .row .col-md-2 p {
    font-size: 16px;
    font-weight: 700;
    color: #494948;
  }
  .SMP-Bundles .container .row .col-md-2 p del {
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md {
    padding: 1rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #F6F6F6;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md p, .SMP-Bundles .container .row .col-md span {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Bundles .container .row .col-md p del, .SMP-Bundles .container .row .col-md span del {
    font-weight: 700;
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md a {
    margin-top: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md svg {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
  }
  .SMP-Bundles .container .row .col-md svg path, .SMP-Bundles .container .row .col-md svg use {
    fill: #59b99d;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md-2 {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:last-child .col-md-2 {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Bundles .container .row:last-child .col-md {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Deals {
    padding: 5rem 0 0;
  }
  .SMP-Deals header {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Deals header h2, .SMP-Deals header h4 {
    text-align: center;
  }
  .SMP-Deals header.SMP-Deals-Default-Banner {
    background-size: cover;
    background-position: center center;
    background-image: url("../images/Hot-deals-banner.jpg");
  }
  .SMP-Deals article section {
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals article section h2 {
    padding: 5rem;
    font-size: 40px;
    color: #FFFFFF;
    font-weight: 200;
    text-align: center;
    background-size: cover;
    text-transform: capitalize;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Deals article section .container {
    margin-top: 2rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card {
    padding: 2rem 1rem 1rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h3 {
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 strong {
    font-size: 22px;
    font-weight: 400;
    color: #AA886A;
    letter-spacing: -2px;
  }
  .SMP-Deals article section .container .row .col-md-4 .card img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text {
    display: flex;
    font-size: 16px;
    font-weight: 200;
    align-items: center;
    color: #494948;
    flex-direction: column;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span :not(:last-child) {
    margin-bottom: 1rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span ins {
    font-weight: 600;
    border-bottom: 0;
    color: #AA886A;
    text-decoration: none;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer {
    display: flex;
    border-width: 0;
    flex-direction: column;
    background-color: transparent;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button {
    width: 70%;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a:first-child, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button:first-child {
    margin-bottom: 1rem;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Bundles {
    padding: 2rem 0 4rem;
    background-color: #F6F6F6;
  }
  .SMP-Bundles .container .nav {
    border-width: 0;
    justify-content: center;
  }
  .SMP-Bundles .container .nav .col-md-3 button {
    width: 100%;
    display: flex;
    padding: 2rem;
    border-width: 0;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Bundles .container .nav .col-md-3 button img {
    width: 100%;
    height: 150px;
    object-fit: contain;
  }
  .SMP-Bundles .container .nav .col-md-3 button h3 {
    font-size: 18px;
    margin-top: 1rem;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Bundles .container .tab-content {
    padding: 4rem 0;
  }
  .SMP-Bundles .container .row .col-md-2 {
    padding: 1rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    border: 1px solid #F6F6F6;
    justify-content: flex-start;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md-2 img {
    width: 100%;
    height: 100px;
    object-fit: contain;
  }
  .SMP-Bundles .container .row .col-md-2 p {
    font-size: 16px;
    font-weight: 700;
    color: #494948;
  }
  .SMP-Bundles .container .row .col-md-2 p del {
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md {
    padding: 1rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #F6F6F6;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .SMP-Bundles .container .row .col-md p, .SMP-Bundles .container .row .col-md span {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Bundles .container .row .col-md p del, .SMP-Bundles .container .row .col-md span del {
    font-weight: 700;
    color: #6D6D6D;
  }
  .SMP-Bundles .container .row .col-md a {
    margin-top: 0.5rem;
  }
  .SMP-Bundles .container .row .col-md svg {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
  }
  .SMP-Bundles .container .row .col-md svg path, .SMP-Bundles .container .row .col-md svg use {
    fill: #59b99d;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md-2 {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:not(:first-child) .col-md {
    border-radius: 5px;
  }
  .SMP-Bundles .container .row:last-child .col-md-2 {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Bundles .container .row:last-child .col-md {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .SMP-Deals {
    padding: 5rem 0 0;
  }
  .SMP-Deals header {
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals header.SMP-Deals-Default-Banner {
    height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    justify-content: center;
    background-position: center center;
    background-image: url("../images/Hot-deals-banner.jpg");
  }
  .SMP-Deals header.SMP-Deals-Default-Banner h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Deals header.SMP-Deals-Campaign-Banner {
    padding: 10rem 0;
  }
  .SMP-Deals header.SMP-Deals-Campaign-Banner h1 {
    font-size: 44px;
    font-weight: 200;
    margin-bottom: 1rem;
  }
  .SMP-Deals header.SMP-Deals-Campaign-Banner h2 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 1rem;
  }
  .SMP-Deals header.SMP-Deals-Campaign-Banner h3 {
    font-size: 25px;
    font-weight: 200;
  }
  .SMP-Deals article section {
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Deals article section h2 {
    padding: 5rem;
    font-size: 40px;
    color: #FFFFFF;
    font-weight: 200;
    text-align: center;
    background-size: cover;
    text-transform: capitalize;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Deals article section .container {
    margin-top: 2rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card {
    padding: 2rem 1rem 1rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h3 {
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card h4 strong {
    font-size: 22px;
    font-weight: 400;
    color: #AA886A;
    letter-spacing: -2px;
  }
  .SMP-Deals article section .container .row .col-md-4 .card img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text {
    display: flex;
    font-size: 16px;
    font-weight: 200;
    align-items: center;
    color: #494948;
    flex-direction: column;
    text-transform: uppercase;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span :not(:last-child) {
    margin-bottom: 1rem;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-body .card-text span ins {
    font-weight: 600;
    border-bottom: 0;
    color: #AA886A;
    text-decoration: none;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer {
    display: flex;
    border-width: 0;
    flex-direction: column;
    background-color: transparent;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button {
    width: 70%;
  }
  .SMP-Deals article section .container .row .col-md-4 .card .card-footer a:first-child, .SMP-Deals article section .container .row .col-md-4 .card .card-footer button:first-child {
    margin-bottom: 1rem;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Reviews {
    padding: 0;
  }
  .SMP-Reviews header {
    padding: 2rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Reviews header h1 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Reviews article .container {
    padding: 2rem 0;
  }
  .SMP-Reviews article .container .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card {
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #ECECEC;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card img {
    width: 40px;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-rate {
    display: block;
    font-size: 18px;
    color: #ffbc00;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card h2 {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content p {
    margin-bottom: 0;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Reviews {
    padding: 0;
  }
  .SMP-Reviews header {
    padding: 2rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Reviews header h1 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Reviews article .container {
    padding: 2rem 0;
  }
  .SMP-Reviews article .container .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card {
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #ECECEC;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card img {
    width: 40px;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-rate {
    display: block;
    font-size: 18px;
    color: #ffbc00;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card h2 {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content p {
    margin-bottom: 0;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Reviews {
    padding: 0;
  }
  .SMP-Reviews header {
    padding: 2rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Reviews header h1 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Reviews article .container {
    padding: 2rem 0;
  }
  .SMP-Reviews article .container .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card {
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #ECECEC;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card img {
    width: 40px;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-rate {
    display: block;
    font-size: 18px;
    color: #ffbc00;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card h2 {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content p {
    margin-bottom: 0;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Reviews {
    padding: 5rem 0;
  }
  .SMP-Reviews header {
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Reviews header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Reviews article .container {
    padding: 2rem 0;
  }
  .SMP-Reviews article .container .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card {
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #ECECEC;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card img {
    width: 40px;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-rate {
    display: block;
    font-size: 18px;
    color: #ffbc00;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card h2 {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content {
    font-size: 16px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content p {
    margin-bottom: 0;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Reviews {
    padding: 5rem 0;
  }
  .SMP-Reviews header {
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Reviews header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Reviews article .container {
    padding: 2rem 0;
  }
  .SMP-Reviews article .container .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card {
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #ECECEC;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card img {
    width: 40px;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-rate {
    display: block;
    font-size: 18px;
    color: #ffbc00;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card h2 {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content {
    font-size: 16px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content p {
    margin-bottom: 0;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Reviews {
    padding: 5rem 0;
  }
  .SMP-Reviews header {
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Reviews header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Reviews article .container {
    padding: 2rem 0;
  }
  .SMP-Reviews article .container .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card {
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #ECECEC;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card img {
    width: 40px;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-rate {
    display: block;
    font-size: 18px;
    color: #ffbc00;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card h2 {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content {
    font-size: 16px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content p {
    margin-bottom: 0;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Reviews {
    padding: 5rem 0;
  }
  .SMP-Reviews header {
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Reviews header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Reviews article .container {
    padding: 2rem 0;
  }
  .SMP-Reviews article .container .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card {
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #ECECEC;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card img {
    width: 40px;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-rate {
    display: block;
    font-size: 18px;
    color: #ffbc00;
    margin-bottom: 0.5rem;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card h2 {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content {
    font-size: 16px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Reviews article .container .row .col-md-4 .review-card .review-content p {
    margin-bottom: 0;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Landing {
    padding: 1rem;
  }
  .SMP-Landing header {
    display: none;
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing header nav {
    display: flex;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid {
    padding: 0rem;
  }
  .SMP-Landing article .container-fluid section .row {
    flex-wrap: wrap;
  }
  .SMP-Landing article .container-fluid .row {
    flex-wrap: wrap-reverse;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 {
    width: 100%;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide {
    padding: 0.5rem 0.5rem 0;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide {
    padding: 0.5rem;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide img, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 50px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2, .SMP-Landing article .container-fluid .row .col-md-5 h3, .SMP-Landing article .container-fluid .row .col-md-5 h4 {
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2 {
    font-size: 22px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 ul li {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.25rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 200;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation #word {
    margin-left: 0.25rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav {
    display: flex;
    border-width: 0;
    justify-content: space-between;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li {
    width: 48%;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button {
    width: 100%;
    padding: 1rem;
    border-radius: 0px;
    border: 2px solid #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 strong {
    font-size: 14px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button img {
    height: 80px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button.active, .SMP-Landing article .container-fluid .row .col-md-5 .nav li button:hover {
    border-radius: 0px;
    border: 2px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li .SMP-BTN {
    padding: 0.5rem;
    font-size: 12px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row {
    flex-wrap: wrap;
    padding: 2rem 1rem 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row h4 {
    font-size: 22px;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 strong {
    font-weight: 400;
    min-height: 40px;
    line-height: 28px;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support .container-fluid h4 {
    font-size: 22px;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p {
    font-size: 12px !important;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge h4 {
    text-align: center;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge p {
    text-align: center;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge a {
    text-align: center;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-SimpledBanner {
    background-size: cover;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-App {
    margin: 0;
    padding: 0;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests {
    padding: 2rem;
    background-image: unset;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 h4 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 p {
    font-size: 16px;
    font-weight: 300;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces {
    padding: 2rem 0 0;
    background-color: #F3F3F3;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container h3 {
    font-size: 18px;
    line-height: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0rem;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 h4 {
    margin: 1rem 0;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Technology {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing {
    padding: 2rem 0;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-2 p {
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-6 {
    padding: 0 8rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-6 img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-PressKit {
    border-bottom: 1px solid #ECECEC;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Landing {
    padding: 1rem;
  }
  .SMP-Landing header {
    display: none;
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing header nav {
    display: flex;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid {
    padding: 0rem;
  }
  .SMP-Landing article .container-fluid section .row {
    flex-wrap: wrap;
  }
  .SMP-Landing article .container-fluid .row {
    flex-wrap: wrap-reverse;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 {
    width: 100%;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide {
    padding: 1rem 1rem 0;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide {
    padding: 1rem;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide img, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2, .SMP-Landing article .container-fluid .row .col-md-5 h3, .SMP-Landing article .container-fluid .row .col-md-5 h4 {
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2 {
    font-size: 22px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 ul li {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.25rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 200;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation #word {
    margin-left: 0.25rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav {
    display: flex;
    border-width: 0;
    justify-content: space-between;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li {
    width: 48%;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button {
    width: 100%;
    padding: 1rem;
    border-radius: 0px;
    border: 2px solid #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 strong {
    font-size: 16px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button img {
    height: 150px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button p {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button.active, .SMP-Landing article .container-fluid .row .col-md-5 .nav li button:hover {
    border-radius: 0px;
    border: 2px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li .SMP-BTN {
    padding: 0.5rem 1rem;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row {
    flex-wrap: wrap;
    padding: 2rem 1rem 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row h4 {
    font-size: 22px;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 strong {
    font-weight: 400;
    min-height: 40px;
    line-height: 28px;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support .container-fluid h4 {
    font-size: 22px;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p {
    font-size: 12px !important;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge h4 {
    text-align: center;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge p {
    text-align: center;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge a {
    text-align: center;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-SimpledBanner {
    background-size: cover;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-App {
    margin: 0;
    padding: 0;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests {
    padding: 2rem;
    background-image: unset;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 h4 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 p {
    font-size: 16px;
    font-weight: 300;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces {
    padding: 2rem 0 0;
    background-color: #F3F3F3;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container h3 {
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 h4 {
    margin: 1rem 0;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Technology {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing {
    padding: 2rem 0;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-2 p {
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-6 {
    padding: 0 8rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-6 img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-PressKit {
    border-bottom: 1px solid #ECECEC;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Landing {
    padding: 0;
  }
  .SMP-Landing header {
    display: none;
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing header nav {
    display: flex;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid {
    padding: 0rem;
  }
  .SMP-Landing article .container-fluid section .row {
    flex-wrap: wrap;
  }
  .SMP-Landing article .container-fluid .row {
    flex-wrap: wrap-reverse;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 {
    width: 100%;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide {
    padding: 1rem 1rem 0;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide {
    padding: 1rem;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide img, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2, .SMP-Landing article .container-fluid .row .col-md-5 h3, .SMP-Landing article .container-fluid .row .col-md-5 h4 {
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2 {
    font-size: 22px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 ul li {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.25rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 200;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation #word {
    margin-left: 0.25rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav {
    display: flex;
    border-width: 0;
    justify-content: space-between;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li {
    width: 48%;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button {
    width: 100%;
    padding: 1rem;
    border-radius: 0px;
    border: 2px solid #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 strong {
    font-size: 16px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button img {
    height: 150px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button p {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button.active, .SMP-Landing article .container-fluid .row .col-md-5 .nav li button:hover {
    border-radius: 0px;
    border: 2px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li .SMP-BTN {
    padding: 0.5rem 1rem;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row {
    flex-wrap: wrap;
    padding: 2rem 1rem 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row h4 {
    font-size: 22px;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 strong {
    font-weight: 400;
    min-height: 40px;
    line-height: 28px;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support .container-fluid h4 {
    font-size: 22px;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p {
    font-size: 12px !important;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge h4 {
    text-align: center;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge p {
    text-align: center;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge a {
    text-align: center;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-SimpledBanner {
    background-size: cover;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-App {
    margin: 0;
    padding: 0;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests {
    padding: 2rem 5rem;
    background-image: unset;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 h4 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 p {
    font-size: 16px;
    font-weight: 300;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces {
    padding: 2rem 0 0;
    background-color: #F3F3F3;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container h3 {
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 h4 {
    margin: 1rem 0;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Technology {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing {
    padding: 2rem 0;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-2 p {
    font-size: 32px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-6 {
    padding: 0 8rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-PressKit {
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .SMP-SingleProduct-FAQ {
    padding: 2rem;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Landing {
    padding: 7rem 0;
  }
  .SMP-Landing header {
    display: none;
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing header nav {
    display: flex;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid {
    padding: 0rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide {
    padding: 1rem 1rem 0;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide {
    padding: 1rem;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide img, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 {
    padding: 1rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2, .SMP-Landing article .container-fluid .row .col-md-5 h3, .SMP-Landing article .container-fluid .row .col-md-5 h4 {
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2 {
    font-size: 22px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 ul li {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.25rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 200;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation #word {
    margin-left: 0.25rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav {
    display: flex;
    border-width: 0;
    justify-content: space-between;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li {
    width: 45%;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button {
    width: 100%;
    padding: 1rem;
    border-radius: 0px;
    border: 2px solid #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 strong {
    font-size: 16px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button img {
    height: 100px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button p {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button.active, .SMP-Landing article .container-fluid .row .col-md-5 .nav li button:hover {
    border-radius: 0px;
    border: 2px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li .SMP-BTN {
    padding: 0.5rem 1rem;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row {
    padding: 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row h4 {
    font-size: 22px;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 strong {
    font-weight: 400;
    min-height: 40px;
    line-height: 28px;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support .container-fluid h4 {
    font-size: 22px;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p {
    font-size: 12px !important;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-SimpledBanner {
    background-size: cover;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-App {
    margin: 0;
    padding: 0;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests {
    padding: 5rem;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/guest-experience.jpg");
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 h4 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 p {
    font-size: 16px;
    font-weight: 300;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces {
    padding: 2rem 0 0;
    background-color: #F3F3F3;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container h3 {
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 h4 {
    margin: 1rem 0;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Technology {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing {
    padding: 2rem 0;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-2 p {
    font-size: 32px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-6 {
    padding: 0 8rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-PressKit {
    border-bottom: 1px solid #ECECEC;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Landing {
    padding: 7rem 0;
  }
  .SMP-Landing header {
    display: none;
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing header nav {
    display: flex;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid {
    padding: 0rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide {
    padding: 1rem 1rem 0;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide {
    padding: 1rem;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide img, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 {
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2, .SMP-Landing article .container-fluid .row .col-md-5 h3, .SMP-Landing article .container-fluid .row .col-md-5 h4 {
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2 {
    font-size: 25px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 ul li {
    font-size: 20px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 200;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation #word {
    margin-left: 0.25rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav {
    display: flex;
    border-width: 0;
    justify-content: space-between;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li {
    width: 45%;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button {
    width: 100%;
    padding: 2rem;
    border-radius: 0px;
    border: 2px solid #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 strong {
    font-size: 18px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button img {
    height: 100px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button p {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button.active, .SMP-Landing article .container-fluid .row .col-md-5 .nav li button:hover {
    border-radius: 0px;
    border: 2px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li .SMP-BTN {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row {
    padding: 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row h4 {
    font-size: 22px;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 strong {
    font-weight: 400;
    min-height: 40px;
    line-height: 28px;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests {
    padding: 5rem 0;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/guest-experience.jpg");
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 h4 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 p {
    font-size: 16px;
    font-weight: 300;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces {
    padding: 2rem 0 0;
    background-color: #F3F3F3;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container h3 {
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 h4 {
    margin: 1rem 0;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Technology {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing {
    padding: 2rem 0;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-2 p {
    font-size: 32px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-6 {
    padding: 0 8rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-PressKit {
    border-bottom: 1px solid #ECECEC;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Landing {
    padding: 7rem 0;
  }
  .SMP-Landing header {
    display: none;
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing header nav {
    display: flex;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid {
    padding: 0rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide {
    padding: 1rem 1rem 0;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 650px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide {
    padding: 1rem;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide img, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 {
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2, .SMP-Landing article .container-fluid .row .col-md-5 h3, .SMP-Landing article .container-fluid .row .col-md-5 h4 {
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2 {
    font-size: 30px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 ul li {
    font-size: 20px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 200;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation #word {
    margin-left: 0.25rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav {
    display: flex;
    border-width: 0;
    justify-content: space-between;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li {
    width: 45%;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button {
    width: 100%;
    padding: 2rem;
    border-radius: 0px;
    border: 2px solid #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 {
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 strong {
    font-size: 24px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button p {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button.active, .SMP-Landing article .container-fluid .row .col-md-5 .nav li button:hover {
    border-radius: 0px;
    border: 2px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li .SMP-BTN {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row h4 {
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 strong {
    font-weight: 400;
    min-height: 40px;
    line-height: 28px;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests {
    padding: 10rem 0;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/guest-experience.jpg");
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 h4 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 p {
    font-size: 16px;
    font-weight: 300;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces {
    padding: 4rem 0;
    background-color: #F3F3F3;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container h3 {
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 h4 {
    margin: 1rem 0;
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Technology {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing {
    padding: 2rem 0;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-2 p {
    font-size: 32px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-6 {
    padding: 0 8rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-PressKit {
    border-bottom: 1px solid #ECECEC;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Landing {
    padding: 7rem 0 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing header {
    display: none;
    padding: 6rem 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing header nav {
    display: flex;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid {
    padding: 0rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide {
    padding: 1rem 1rem 0;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 650px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper {
    padding: 0;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide {
    padding: 1rem;
    background-color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiper .swiper-wrapper .swiper-slide img, .SMP-Landing article .container-fluid .row .col-md-7 .swiper.landingSwiperSF .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 {
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2, .SMP-Landing article .container-fluid .row .col-md-5 h3, .SMP-Landing article .container-fluid .row .col-md-5 h4 {
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 h2 {
    font-size: 30px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 ul li {
    font-size: 20px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 200;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .SMP-TypingAnimation #word {
    margin-left: 0.25rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav {
    display: flex;
    border-width: 0;
    justify-content: space-between;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li {
    width: 45%;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button {
    width: 100%;
    padding: 2rem;
    border-radius: 0px;
    border: 2px solid #FFFFFF;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 {
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button h3 strong {
    font-size: 24px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button p {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li button.active, .SMP-Landing article .container-fluid .row .col-md-5 .nav li button:hover {
    border-radius: 0px;
    border: 2px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .nav li .SMP-BTN {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row h4 {
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-Landing article .container-fluid .row .col-md-5 .row .col-4 h5 strong {
    font-weight: 400;
    min-height: 40px;
    line-height: 28px;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge {
    padding: 2rem;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge .container .row .col-md-5 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Bridge .container .row #buyboth p {
    font-size: 20px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests {
    padding: 10rem 0;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/guest-experience.jpg");
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 h4 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Guests .container .row .col-md-5 p {
    font-size: 16px;
    font-weight: 300;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces {
    padding: 4rem 0;
    background-color: #F3F3F3;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container h3 {
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 {
    padding: 2rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-MostPlaces .container .row .col-md-4 h4 {
    margin: 1rem 0;
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Support {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-Technology {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing {
    padding: 2rem 0;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-2 p {
    font-size: 32px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-TechnicalDrawing .container .row .col-md-6 {
    padding: 0 8rem;
  }
  .SMP-Landing article .container-fluid .SMP-SingleProduct-PressKit {
    border-bottom: 1px solid #ECECEC;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Hotels {
    padding: 0 0;
  }
  .SMP-Hotels header {
    height: 35vh;
    padding: 1rem;
    background-size: cover;
    background-position: center;
    background-image: url("../images/hotels/hospitality.webp");
  }
  .SMP-Hotels header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels header .container .row {
    width: 100%;
  }
  .SMP-Hotels header .container .row .col-md-6 h1 {
    font-size: 20px;
    margin-bottom: 1rem;
  }
  .SMP-Hotels header .container .row .col-md-6 a {
    width: 100%;
    font-size: 14px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock {
    padding: 1rem;
    height: auto !important;
    background-size: cover;
    background-image: url("../images/hotels/smart-hotel.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 h2 {
    font-size: 18px;
    font-weight: 900;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits {
    width: 100%;
    height: auto;
    padding: 1rem;
    background-size: cover;
    background-image: url("../images/hotels/guest-benefits.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers {
    width: 100%;
    height: auto;
    padding: 1rem;
    background-size: cover;
    background-image: url("../images/hotels/hotel-managers.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work {
    padding: 1rem;
    background-color: #F6F6F6;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row h3 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card {
    border-width: 0;
    margin-bottom: 4rem;
    background-color: transparent;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card h4 {
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience {
    display: flex;
    padding: 1rem;
    min-height: 400px;
    align-items: center;
    background-size: cover;
    background-position: right center;
    background-image: url("../images/hotels/guest-convenience.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind {
    display: flex;
    padding: 1rem;
    min-height: 350px;
    align-items: center;
    background-size: cover;
    background-position: right center;
    background-image: unset;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence {
    display: flex;
    padding: 1rem;
    min-height: 300px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #f0eff2;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System {
    display: flex;
    padding: 1rem;
    min-height: 300px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #FFFFFF;
    background-image: unset;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control {
    display: flex;
    padding: 1rem;
    min-height: 300px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #f0eff2;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy {
    display: flex;
    padding: 1rem;
    min-height: 300px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #FFFFFF;
    background-image: unset;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology {
    display: flex;
    padding: 1rem;
    min-height: 300px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #f0eff2;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security {
    display: flex;
    padding: 1rem;
    min-height: 200px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #FFFFFF;
    background-image: unset;
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose {
    padding: 1rem;
    background-color: #eee6d7;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h3 {
    font-size: 22px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h4 {
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose {
    padding: 1rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h3 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h4 {
    font-size: 22px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose iframe {
    width: 800px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable h2 {
    padding: 1rem;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid {
    overflow-x: scroll;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row {
    min-width: 1800px;
    justify-content: flex-start;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 {
    display: flex;
    min-height: 250px;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 img {
    width: 100px;
    object-fit: contain;
    filter: brightness(0);
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p {
    display: flex;
    font-size: 12px;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 300;
    padding-left: 0.5rem;
    color: #494948;
    flex-direction: row;
    align-items: center;
    text-transform: capitalize;
    justify-content: flex-start;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p img {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm:last-child {
    border-right: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 {
    min-height: 250px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 img {
    width: 100%;
    height: 200px;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 36px;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 del {
    display: block;
    font-size: 18px;
    font-weight: 200;
    color: #6D6D6D;
    text-align: center;
    text-decoration: line-through;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 price {
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p {
    display: flex;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 200;
    color: #494948;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg path {
    fill: #59b99d;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg path {
    fill: #bbbbbb;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Hotels {
    padding: 0 0;
  }
  .SMP-Hotels header {
    height: 35vh;
    padding: 1rem;
    background-size: cover;
    background-position: center;
    background-image: url("../images/hotels/hospitality.webp");
  }
  .SMP-Hotels header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels header .container .row {
    width: 100%;
  }
  .SMP-Hotels header .container .row .col-md-6 h1 {
    font-size: 20px;
    margin-bottom: 1rem;
  }
  .SMP-Hotels header .container .row .col-md-6 a {
    width: 100%;
    font-size: 14px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock {
    padding: 1rem;
    height: auto !important;
    background-size: cover;
    background-image: url("../images/hotels/smart-hotel.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 h2 {
    font-size: 18px;
    font-weight: 900;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits {
    width: 100%;
    height: auto;
    padding: 1rem;
    background-size: cover;
    background-image: url("../images/hotels/guest-benefits.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers {
    width: 100%;
    height: auto;
    padding: 1rem;
    background-size: cover;
    background-image: url("../images/hotels/hotel-managers.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work {
    padding: 1rem;
    background-color: #F6F6F6;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row h3 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card {
    border-width: 0;
    margin-bottom: 4rem;
    background-color: transparent;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card h4 {
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience {
    display: flex;
    padding: 1rem;
    min-height: 400px;
    align-items: center;
    background-size: cover;
    background-position: right center;
    background-image: url("../images/hotels/guest-convenience.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind {
    display: flex;
    padding: 1rem;
    min-height: 350px;
    align-items: center;
    background-size: cover;
    background-position: right center;
    background-image: unset;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence {
    display: flex;
    padding: 1rem;
    min-height: 300px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #f0eff2;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System {
    display: flex;
    padding: 1rem;
    min-height: 300px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #FFFFFF;
    background-image: unset;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control {
    display: flex;
    padding: 1rem;
    min-height: 300px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #f0eff2;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy {
    display: flex;
    padding: 1rem;
    min-height: 300px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #FFFFFF;
    background-image: unset;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology {
    display: flex;
    padding: 1rem;
    min-height: 300px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #f0eff2;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security {
    display: flex;
    padding: 1rem;
    min-height: 200px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-color: #FFFFFF;
    background-image: unset;
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row h3 {
    font-size: 22px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose {
    padding: 1rem;
    background-color: #eee6d7;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h3 {
    font-size: 22px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h4 {
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose {
    padding: 1rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h3 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h4 {
    font-size: 22px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose iframe {
    width: 800px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable h2 {
    padding: 1rem;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid {
    overflow-x: scroll;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row {
    min-width: 1800px;
    justify-content: flex-start;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 {
    display: flex;
    min-height: 250px;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 img {
    width: 100px;
    object-fit: contain;
    filter: brightness(0);
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p {
    display: flex;
    font-size: 12px;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 300;
    padding-left: 0.5rem;
    color: #494948;
    flex-direction: row;
    align-items: center;
    text-transform: capitalize;
    justify-content: flex-start;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p img {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm:last-child {
    border-right: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 {
    min-height: 250px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 img {
    width: 100%;
    height: 200px;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 36px;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 del {
    display: block;
    font-size: 18px;
    font-weight: 200;
    color: #6D6D6D;
    text-align: center;
    text-decoration: line-through;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 price {
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p {
    display: flex;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 200;
    color: #494948;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg path {
    fill: #59b99d;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg path {
    fill: #bbbbbb;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Hotels {
    padding: 5rem 0 0;
  }
  .SMP-Hotels header {
    height: 100vh;
    background-size: cover;
    background-image: url("../images/hotels/hospitality.webp");
  }
  .SMP-Hotels header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels header .container .row {
    width: 100%;
  }
  .SMP-Hotels header .container .row .col-md-6 h1 {
    margin-bottom: 2rem;
  }
  .SMP-Hotels header .container .row .col-md-6 a {
    width: 300px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock {
    background-size: cover;
    background-image: url("../images/hotels/smart-hotel.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 h2 {
    font-size: 35px;
    font-weight: 900;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-image: url("../images/hotels/guest-benefits.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-image: url("../images/hotels/hotel-managers.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work {
    padding: 5rem 0;
    background-color: #F6F6F6;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row h3 {
    font-size: 35px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card {
    border-width: 0;
    margin-bottom: 4rem;
    background-color: transparent;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card h4 {
    font-size: 25px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/guest-convenience.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/staff.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/guest-presence.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/integrated-security.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/remote-control.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/occupancy.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/smart-tech.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/security.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose {
    background-color: #eee6d7;
    padding: 4rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h4 {
    font-size: 25px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose p {
    font-size: 14px;
    font-weight: 200;
    line-height: 32px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose {
    padding: 4rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h3 {
    font-size: 35px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h4 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose p {
    font-size: 16px;
    font-weight: 200;
    line-height: 32px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose iframe {
    width: 800px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable h2 {
    padding: 4rem 0;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid {
    overflow-x: scroll;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row {
    min-width: 1800px;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 {
    display: flex;
    min-height: 250px;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 img {
    width: 100px;
    object-fit: contain;
    filter: brightness(0);
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p {
    display: flex;
    font-size: 12px;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 300;
    padding-left: 0.5rem;
    color: #494948;
    flex-direction: row;
    align-items: center;
    text-transform: capitalize;
    justify-content: flex-start;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p img {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm:last-child {
    border-right: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 {
    min-height: 250px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 img {
    width: 100%;
    height: 200px;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 36px;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 del {
    display: block;
    font-size: 18px;
    font-weight: 200;
    color: #6D6D6D;
    text-align: center;
    text-decoration: line-through;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 price {
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p {
    display: flex;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 200;
    color: #494948;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg path {
    fill: #59b99d;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg path {
    fill: #bbbbbb;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Hotels {
    padding: 5rem 0 0;
  }
  .SMP-Hotels header {
    height: 100vh;
    background-size: cover;
    background-image: url("../images/hotels/hospitality.webp");
  }
  .SMP-Hotels header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels header .container .row {
    width: 100%;
  }
  .SMP-Hotels header .container .row .col-md-6 h1 {
    margin-bottom: 2rem;
  }
  .SMP-Hotels header .container .row .col-md-6 a {
    width: 300px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock {
    background-size: cover;
    background-image: url("../images/hotels/smart-hotel.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 h2 {
    font-size: 35px;
    font-weight: 900;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-image: url("../images/hotels/guest-benefits.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-image: url("../images/hotels/hotel-managers.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work {
    padding: 5rem 0;
    background-color: #F6F6F6;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row h3 {
    font-size: 35px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card {
    border-width: 0;
    margin-bottom: 4rem;
    background-color: transparent;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card h4 {
    font-size: 25px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/guest-convenience.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/staff.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/guest-presence.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/integrated-security.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/remote-control.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/occupancy.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/smart-tech.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/security.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose {
    background-color: #eee6d7;
    padding: 4rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h4 {
    font-size: 25px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose p {
    font-size: 14px;
    font-weight: 200;
    line-height: 32px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose {
    padding: 4rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h3 {
    font-size: 35px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h4 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose p {
    font-size: 16px;
    font-weight: 200;
    line-height: 32px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose iframe {
    width: 800px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable h2 {
    padding: 4rem 0;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row {
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 {
    display: flex;
    min-height: 250px;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 img {
    width: 200px;
    object-fit: contain;
    filter: brightness(0);
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p {
    display: flex;
    font-size: 14px;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 300;
    padding-left: 1rem;
    color: #494948;
    flex-direction: row;
    align-items: center;
    text-transform: capitalize;
    justify-content: flex-start;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p img {
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm:last-child {
    border-right: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 {
    min-height: 250px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 img {
    width: 100%;
    height: 200px;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 36px;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 del {
    display: block;
    font-size: 18px;
    font-weight: 200;
    color: #6D6D6D;
    text-align: center;
    text-decoration: line-through;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 price {
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p {
    display: flex;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 200;
    color: #494948;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg path {
    fill: #59b99d;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg path {
    fill: #bbbbbb;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Hotels {
    padding: 5rem 0 0;
  }
  .SMP-Hotels header {
    height: 100vh;
    background-size: cover;
    background-image: url("../images/hotels/hospitality.webp");
  }
  .SMP-Hotels header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels header .container .row {
    width: 100%;
  }
  .SMP-Hotels header .container .row .col-md-6 h1 {
    margin-bottom: 2rem;
  }
  .SMP-Hotels header .container .row .col-md-6 a {
    width: 300px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock {
    background-size: cover;
    background-image: url("../images/hotels/smart-hotel.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 h2 {
    font-size: 35px;
    font-weight: 900;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-image: url("../images/hotels/guest-benefits.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-image: url("../images/hotels/hotel-managers.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work {
    padding: 5rem 0;
    background-color: #F6F6F6;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row h3 {
    font-size: 35px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card {
    border-width: 0;
    margin-bottom: 4rem;
    background-color: transparent;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card h4 {
    font-size: 25px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/guest-convenience.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/staff.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/guest-presence.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/integrated-security.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/remote-control.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/occupancy.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/smart-tech.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/security.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose {
    background-color: #eee6d7;
    padding: 4rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h4 {
    font-size: 25px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose p {
    font-size: 14px;
    font-weight: 200;
    line-height: 32px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose {
    padding: 4rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h3 {
    font-size: 35px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h4 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose p {
    font-size: 16px;
    font-weight: 200;
    line-height: 32px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose iframe {
    width: 800px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable h2 {
    padding: 4rem 0;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row {
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 {
    display: flex;
    min-height: 250px;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 img {
    width: 200px;
    object-fit: contain;
    filter: brightness(0);
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p {
    display: flex;
    font-size: 14px;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 300;
    padding-left: 1rem;
    color: #494948;
    flex-direction: row;
    align-items: center;
    text-transform: capitalize;
    justify-content: flex-start;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p img {
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm:last-child {
    border-right: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 {
    min-height: 250px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 img {
    width: 100%;
    height: 200px;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 36px;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 del {
    display: block;
    font-size: 18px;
    font-weight: 200;
    color: #6D6D6D;
    text-align: center;
    text-decoration: line-through;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 price {
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p {
    display: flex;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 200;
    color: #494948;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg path {
    fill: #59b99d;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg path {
    fill: #bbbbbb;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Hotels {
    padding: 5rem 0 0;
  }
  .SMP-Hotels header {
    height: 100vh;
    background-size: cover;
    background-image: url("../images/hotels/hospitality.webp");
  }
  .SMP-Hotels header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels header .container .row {
    width: 100%;
  }
  .SMP-Hotels header .container .row .col-md-6 h1 {
    margin-bottom: 2rem;
  }
  .SMP-Hotels header .container .row .col-md-6 a {
    width: 300px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock {
    background-size: cover;
    background-image: url("../images/hotels/smart-hotel.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 h2 {
    font-size: 35px;
    font-weight: 900;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-image: url("../images/hotels/guest-benefits.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-image: url("../images/hotels/hotel-managers.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work {
    padding: 5rem 0;
    background-color: #F6F6F6;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row h3 {
    font-size: 35px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card {
    border-width: 0;
    margin-bottom: 4rem;
    background-color: transparent;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card h4 {
    font-size: 25px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/guest-convenience.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/staff.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/guest-presence.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/integrated-security.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/remote-control.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/occupancy.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/smart-tech.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/security.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose {
    background-color: #eee6d7;
    padding: 4rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h4 {
    font-size: 25px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose p {
    font-size: 14px;
    font-weight: 200;
    line-height: 32px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose {
    padding: 4rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h3 {
    font-size: 35px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h4 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose p {
    font-size: 16px;
    font-weight: 200;
    line-height: 32px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose iframe {
    width: 800px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable h2 {
    padding: 4rem 0;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row {
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 {
    display: flex;
    min-height: 320px;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: brightness(0);
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p {
    display: flex;
    font-size: 14px;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 300;
    padding-left: 1rem;
    color: #494948;
    flex-direction: row;
    align-items: center;
    text-transform: capitalize;
    justify-content: flex-start;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p img {
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm:last-child {
    border-right: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 {
    min-height: 320px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 img {
    width: 100%;
    height: 200px;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 36px;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 del {
    display: block;
    font-size: 18px;
    font-weight: 200;
    color: #6D6D6D;
    text-align: center;
    text-decoration: line-through;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 price {
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p {
    display: flex;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 200;
    color: #494948;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg path {
    fill: #59b99d;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg path {
    fill: #bbbbbb;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Hotels {
    padding: 5rem 0 0;
  }
  .SMP-Hotels header {
    height: 100vh;
    background-size: cover;
    background-image: url("../images/hotels/hospitality.webp");
  }
  .SMP-Hotels header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels header .container .row {
    width: 100%;
  }
  .SMP-Hotels header .container .row .col-md-6 h1 {
    margin-bottom: 2rem;
  }
  .SMP-Hotels header .container .row .col-md-6 a {
    width: 300px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock {
    background-size: cover;
    background-image: url("../images/hotels/smart-hotel.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 h2 {
    font-size: 35px;
    font-weight: 900;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Hotel_Lock .container .row .col-12 p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-image: url("../images/hotels/guest-benefits.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-image: url("../images/hotels/hotel-managers.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Benefits_Managers .container .row .col-md-6 ul li {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work {
    padding: 5rem 0;
    background-color: #F6F6F6;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row {
    width: 100%;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row h3 {
    font-size: 35px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card {
    border-width: 0;
    margin-bottom: 4rem;
    background-color: transparent;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card h4 {
    font-size: 25px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_Does_it_Work .container .row .col-md-8 .card p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/guest-convenience.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Conveinience .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/staff.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Peace_Of_Mind .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/guest-presence.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Guest_Presence .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/integrated-security.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security_System .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/remote-control.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Remote_Control .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/occupancy.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Occupancy .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/smart-tech.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Smart_Technology .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_Security {
    display: flex;
    padding: 5rem 0;
    min-height: 500px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/hotels/security.webp");
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row h3 {
    font-size: 30px;
    font-weight: 200;
  }
  .SMP-Hotels article section.SMP-Hotels_Security .container .row p {
    font-size: 18px;
    font-weight: 200;
    line-height: 36px;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose {
    background-color: #eee6d7;
    padding: 4rem;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose h4 {
    font-size: 25px;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_How_to_Choose p {
    font-size: 14px;
    font-weight: 200;
    line-height: 32px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose {
    padding: 4rem;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h3 {
    font-size: 35px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose h4 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose p {
    font-size: 16px;
    font-weight: 200;
    line-height: 32px;
  }
  .SMP-Hotels article section.SMP-Hotels_Which_to_Choose iframe {
    width: 800px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable h2 {
    padding: 4rem 0;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row {
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 {
    display: flex;
    min-height: 320px;
    align-items: center;
    justify-content: center;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 .col-12 img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: brightness(0);
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p {
    display: flex;
    font-size: 14px;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 300;
    padding-left: 1rem;
    color: #494948;
    flex-direction: row;
    align-items: center;
    text-transform: capitalize;
    justify-content: flex-start;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm-2 p img {
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm {
    padding: 0rem;
    border-top: 1px solid #ECECEC;
    border-left: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm:last-child {
    border-right: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 {
    min-height: 320px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 img {
    height: 200px;
    object-fit: contain;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 36px;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 del {
    display: block;
    font-size: 18px;
    font-weight: 200;
    color: #6D6D6D;
    text-align: center;
    text-decoration: line-through;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm .col-12 price {
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #494948;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p {
    display: flex;
    min-height: 60px;
    margin-bottom: 0;
    font-weight: 200;
    color: #494948;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p:first-of-type {
    border-top: 1px solid #ECECEC;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-checked svg path {
    fill: #59b99d;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Hotels article section.SMP-ProductCategory-ComparisonTable .container-fluid .row .col-sm p.feature-unchecked svg path {
    fill: #bbbbbb;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Account {
    padding: 0;
  }
  .SMP-Account header {
    padding: 2rem 0;
  }
  .SMP-Account header h1 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account header h2 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account article {
    padding: 0;
  }
  .SMP-Account article .container {
    padding: 0 1.875rem;
  }
  .SMP-Account article .container .woocommerce {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation {
    padding: 0;
    position: relative;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul {
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a {
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 1px;
    padding: 0.75rem 1rem;
    background-color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a.active {
    background-color: #000000;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) {
    margin-bottom: 0.1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content {
    padding: 1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
    border-radius: 20px;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td {
    font-size: 12px;
    font-weight: 300;
    padding: 0.5rem 1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td span {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a {
    padding: 0.5rem;
    font-size: 12px;
    margin: 0 0.25rem;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.view, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.view {
    color: #FFFFFF;
    background-color: #aa886a;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.pay, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.pay {
    color: #FFFFFF;
    background-color: #59b99d;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.cancel, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.cancel {
    color: #FFFFFF;
    background-color: #bbbbbb;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table tr, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tr {
    text-align: center;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination {
    display: flex;
    justify-content: space-between;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header {
    padding: 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header h2 {
    font-size: 18px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #FFFFFF;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 200;
    padding: 0.5rem 0 0;
    color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form h2 {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form label {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form input, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form select, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .select2-selection--single {
    height: 50px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .button {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Account {
    padding: 0;
  }
  .SMP-Account header {
    padding: 2rem 0;
  }
  .SMP-Account header h1 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account header h2 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account article {
    padding: 0;
  }
  .SMP-Account article .container {
    padding: 0 1.875rem;
  }
  .SMP-Account article .container .woocommerce {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation {
    padding: 0;
    position: relative;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul {
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a {
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 1px;
    padding: 0.75rem 1rem;
    background-color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a.active {
    background-color: #000000;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) {
    margin-bottom: 0.1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content {
    padding: 1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
    border-radius: 20px;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td {
    font-size: 12px;
    font-weight: 300;
    padding: 0.5rem 1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td span {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a {
    padding: 0.5rem;
    font-size: 12px;
    margin: 0 0.25rem;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.view, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.view {
    color: #FFFFFF;
    background-color: #aa886a;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.pay, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.pay {
    color: #FFFFFF;
    background-color: #59b99d;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.cancel, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.cancel {
    color: #FFFFFF;
    background-color: #bbbbbb;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table tr, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tr {
    text-align: center;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination {
    display: flex;
    justify-content: space-between;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header {
    padding: 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header h2 {
    font-size: 18px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #FFFFFF;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 200;
    padding: 0.5rem 0 0;
    color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form h2 {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form label {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form input, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form select, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .select2-selection--single {
    height: 50px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .button {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Account {
    padding: 0;
  }
  .SMP-Account header {
    padding: 2rem 0;
  }
  .SMP-Account header h1 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account header h2 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account article {
    padding: 0;
  }
  .SMP-Account article .container {
    padding: 0 1.875rem;
  }
  .SMP-Account article .container .woocommerce {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation {
    padding: 0;
    position: relative;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul {
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    background-color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a.active {
    background-color: #000000;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) {
    margin-bottom: 0.1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content {
    padding: 2rem 2rem 2rem 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
    border-radius: 20px;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td {
    font-size: 12px;
    font-weight: 300;
    padding: 0.5rem 1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td span {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a {
    padding: 0.5rem;
    font-size: 12px;
    margin: 0 0.25rem;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.view, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.view {
    color: #FFFFFF;
    background-color: #aa886a;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.pay, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.pay {
    color: #FFFFFF;
    background-color: #59b99d;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.cancel, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.cancel {
    color: #FFFFFF;
    background-color: #bbbbbb;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table tr, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tr {
    text-align: center;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination {
    display: flex;
    justify-content: space-between;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header {
    padding: 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header h2 {
    font-size: 18px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #FFFFFF;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 200;
    padding: 0.5rem 0 0;
    color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form h2 {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form label {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form input, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form select, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .select2-selection--single {
    height: 50px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .button {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Account {
    padding: 5rem 0 0;
  }
  .SMP-Account header {
    padding: 6rem 0;
  }
  .SMP-Account header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account header h2 {
    font-size: 22px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account article {
    padding: 0;
  }
  .SMP-Account article .container {
    padding: 0 1.875rem;
  }
  .SMP-Account article .container .woocommerce {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation {
    padding: 0;
    position: relative;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul {
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    background-color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a.active {
    background-color: #000000;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) {
    margin-bottom: 0.1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content {
    padding: 2rem 2rem 2rem 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
    border-radius: 20px;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td {
    font-size: 12px;
    font-weight: 300;
    padding: 0.5rem 1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td span {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a {
    padding: 0.5rem;
    font-size: 12px;
    margin: 0 0.25rem;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.view, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.view {
    color: #FFFFFF;
    background-color: #aa886a;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.pay, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.pay {
    color: #FFFFFF;
    background-color: #59b99d;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.cancel, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.cancel {
    color: #FFFFFF;
    background-color: #bbbbbb;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table tr, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tr {
    text-align: center;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination {
    display: flex;
    justify-content: space-between;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header {
    padding: 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header h2 {
    font-size: 18px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #FFFFFF;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 200;
    padding: 0.5rem 0 0;
    color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form h2 {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form label {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form input, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form select, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .select2-selection--single {
    height: 50px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .button {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Account {
    padding: 5rem 0 0;
  }
  .SMP-Account header {
    padding: 6rem 0;
  }
  .SMP-Account header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account header h2 {
    font-size: 22px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account article {
    padding: 0;
  }
  .SMP-Account article .container {
    padding: 0 1.875rem;
  }
  .SMP-Account article .container .woocommerce {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation {
    padding: 0;
    position: relative;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul {
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    background-color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a.active {
    background-color: #000000;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) {
    margin-bottom: 0.1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content {
    padding: 2rem 2rem 2rem 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
    border-radius: 20px;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td {
    font-size: 12px;
    font-weight: 300;
    padding: 0.5rem 1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td span {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a {
    padding: 0.5rem;
    font-size: 12px;
    margin: 0 0.25rem;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.view, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.view {
    color: #FFFFFF;
    background-color: #aa886a;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.pay, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.pay {
    color: #FFFFFF;
    background-color: #59b99d;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.cancel, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.cancel {
    color: #FFFFFF;
    background-color: #bbbbbb;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table tr, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tr {
    text-align: center;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination {
    display: flex;
    justify-content: space-between;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header {
    padding: 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header h2 {
    font-size: 18px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #FFFFFF;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 200;
    padding: 0.5rem 0 0;
    color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form h2 {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form label {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form input, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form select, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .select2-selection--single {
    height: 50px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .button {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Account {
    padding: 5rem 0 0;
  }
  .SMP-Account header {
    padding: 6rem 0;
  }
  .SMP-Account header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account header h2 {
    font-size: 22px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account article {
    padding: 0;
  }
  .SMP-Account article .container {
    padding: 0 1.875rem;
  }
  .SMP-Account article .container .woocommerce {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation {
    padding: 0;
    position: relative;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul {
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    background-color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a.active {
    background-color: #000000;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) {
    margin-bottom: 0.1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content {
    padding: 2rem 2rem 2rem 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
    border-radius: 20px;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td {
    font-size: 12px;
    font-weight: 300;
    padding: 0.5rem 1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td span {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a {
    padding: 0.5rem;
    font-size: 12px;
    margin: 0 0.25rem;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.view, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.view {
    color: #FFFFFF;
    background-color: #aa886a;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.pay, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.pay {
    color: #FFFFFF;
    background-color: #59b99d;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.cancel, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.cancel {
    color: #FFFFFF;
    background-color: #bbbbbb;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table tr, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tr {
    text-align: center;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination {
    display: flex;
    justify-content: space-between;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header {
    padding: 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header h2 {
    font-size: 18px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #FFFFFF;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 200;
    padding: 0.5rem 0 0;
    color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form h2 {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form label {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form input, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form select, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .select2-selection--single {
    height: 50px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .button {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Account {
    padding: 5rem 0 0;
  }
  .SMP-Account header {
    padding: 6rem 0;
  }
  .SMP-Account header h1 {
    font-size: 44px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account header h2 {
    font-size: 22px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Account article {
    padding: 0;
  }
  .SMP-Account article .container {
    padding: 0 1.875rem;
  }
  .SMP-Account article .container .woocommerce {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation {
    padding: 0;
    position: relative;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul {
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    background-color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a.active {
    background-color: #000000;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) {
    margin-bottom: 0.1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content {
    padding: 2rem 2rem 2rem 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
    border-radius: 20px;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td {
    font-size: 12px;
    font-weight: 300;
    padding: 0.5rem 1rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table th span, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td span {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a {
    padding: 0.5rem;
    font-size: 12px;
    margin: 0 0.25rem;
    font-weight: 300;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.view, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.view {
    color: #FFFFFF;
    background-color: #aa886a;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.pay, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.pay {
    color: #FFFFFF;
    background-color: #59b99d;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table td a.cancel, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table td a.cancel {
    color: #FFFFFF;
    background-color: #bbbbbb;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .shop_table tr, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tr {
    text-align: center;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination {
    display: flex;
    justify-content: space-between;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header {
    padding: 0rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header h2 {
    font-size: 18px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #FFFFFF;
    text-align: center;
    border-radius: 20px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit:hover {
    color: #494948;
    background-color: #FFFFFF;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 200;
    padding: 0.5rem 0 0;
    color: #494948;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form h2 {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form label {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form input, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form select, .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .select2-selection--single {
    height: 50px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
  }
  .SMP-Account article .container .woocommerce .woocommerce-MyAccount-content form .button {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    border-radius: 20px;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    background-color: #494948;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Single {
    padding: 5rem 0;
  }
  .SMP-Single header {
    width: 100%;
    height: 25vh;
    padding: 0 5rem;
    overflow: hidden;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Single header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: ocver;
    position: absolute;
  }
  .SMP-Single header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Single header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Single header .SMP-Page-Content .container h1 {
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Single header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Single article.container {
    padding: 1rem;
    max-width: 1550px;
  }
  .SMP-Single article.container .row .col-12 h2 {
    font-size: 25px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Single article.container .row .col-12 h2 strong {
    font-weight: 400;
  }
  .SMP-Single article.container .row .col-12 p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
    color: #494948;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Single {
    padding: 5rem 0;
  }
  .SMP-Single header {
    width: 100%;
    height: 30vh;
    padding: 0 5rem;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Single header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 30vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Single header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Single header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Single header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Single header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Single article.container {
    padding: 4rem 1rem;
    max-width: 1550px;
  }
  .SMP-Single article.container .row .col-12 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Single article.container .row .col-12 h2 strong {
    font-weight: 400;
  }
  .SMP-Single article.container .row .col-12 p {
    font-size: 18px;
    font-weight: 200;
    line-height: 32px;
    color: #494948;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Single {
    padding: 5rem 0;
  }
  .SMP-Single header {
    width: 100%;
    height: 30vh;
    padding: 0 5rem;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Single header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 30vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Single header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Single header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Single header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Single header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Single article.container {
    padding: 4rem 1rem;
    max-width: 1550px;
  }
  .SMP-Single article.container .row .col-12 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Single article.container .row .col-12 h2 strong {
    font-weight: 400;
  }
  .SMP-Single article.container .row .col-12 p {
    font-size: 18px;
    font-weight: 200;
    line-height: 32px;
    color: #494948;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Single {
    padding: 5rem 0;
  }
  .SMP-Single header {
    width: 100%;
    height: 30vh;
    padding: 0 5rem;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Single header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 30vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Single header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Single header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Single header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Single header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Single article.container {
    padding: 4rem 1rem;
    max-width: 1550px;
  }
  .SMP-Single article.container .row .col-12 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Single article.container .row .col-12 h2 strong {
    font-weight: 400;
  }
  .SMP-Single article.container .row .col-12 p {
    font-size: 18px;
    font-weight: 200;
    line-height: 32px;
    color: #494948;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Single {
    padding: 5rem 0;
  }
  .SMP-Single header {
    width: 100%;
    height: 40vh;
    padding: 0 5rem;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Single header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 40vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Single header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Single header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Single header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Single header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Single article.container {
    padding: 4rem 1rem;
    max-width: 1550px;
  }
  .SMP-Single article.container .row .col-12 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Single article.container .row .col-12 h2 strong {
    font-weight: 400;
  }
  .SMP-Single article.container .row .col-12 p {
    font-size: 18px;
    font-weight: 200;
    line-height: 32px;
    color: #494948;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Single {
    padding: 5rem 0;
  }
  .SMP-Single header {
    width: 100%;
    height: 40vh;
    padding: 0 5rem;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Single header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 40vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Single header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Single header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Single header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Single header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Single article.container {
    padding: 4rem 1rem;
    max-width: 1550px;
  }
  .SMP-Single article.container .row .col-12 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Single article.container .row .col-12 h2 strong {
    font-weight: 400;
  }
  .SMP-Single article.container .row .col-12 p {
    font-size: 18px;
    font-weight: 200;
    line-height: 32px;
    color: #494948;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Single {
    padding: 5rem 0;
  }
  .SMP-Single header {
    width: 100%;
    height: 40vh;
    padding: 0 5rem;
    position: relative;
    background-color: #F3F3F3;
  }
  .SMP-Single header img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 40vh;
    object-fit: contain;
    position: absolute;
  }
  .SMP-Single header .SMP-Page-Content {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.438) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .SMP-Single header .SMP-Page-Content .container {
    max-width: 1550px;
  }
  .SMP-Single header .SMP-Page-Content .container h1 {
    font-size: 55px;
    color: #FFFFFF;
    font-weight: 200;
  }
  .SMP-Single header .SMP-Page-Content .container p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li a {
    color: #FFFFFF;
  }
  .SMP-Single header .SMP-Page-Content .container nav ol li::before {
    color: #FFFFFF;
  }
  .SMP-Single article.container {
    padding: 4rem 0;
    max-width: 1550px;
  }
  .SMP-Single article.container .row .col-12 h2 {
    font-size: 40px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Single article.container .row .col-12 h2 strong {
    font-weight: 400;
  }
  .SMP-Single article.container .row .col-12 p {
    font-size: 18px;
    font-weight: 200;
    line-height: 32px;
    color: #494948;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Product-Support .container {
    padding: 4rem 1rem;
  }
  .SMP-Product-Support .container .col-md-10 {
    margin: auto;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-8 img {
    width: 100%;
    height: 300px;
    object-fit: contain;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 h1 {
    width: 100%;
    font-size: 26px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a {
    width: 45%;
    padding: 0.5rem;
    font-size: 14px;
    margin-bottom: 0rem;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a svg {
    width: 100%;
    height: 40px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos {
    padding: 1rem 0 1rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ h2, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos h2 {
    margin: 1rem 0;
    font-size: 22px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row {
    margin-top: 0.5rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe {
    width: 100%;
    height: 220px;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item h4, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item h4 {
    margin: 1rem 0;
    font-size: 14px;
    min-height: 60px;
    font-weight: 300;
    line-height: 20px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion {
    width: 100%;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header {
    margin: 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    padding: 1rem 0;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button:focus, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-collapse .accordion-body, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .SMP-BTN, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-Product-Support .SMP-Support-Header {
    padding: 2rem 0;
    background-size: cover;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row {
    padding: 2rem 0;
    justify-content: center;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 {
    padding: 0;
    position: relative;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 h1 {
    font-size: 25px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 p {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 input {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    border-radius: 20px;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row {
    left: 1rem;
    width: 100%;
    z-index: 1;
    padding: 1rem;
    border-radius: 8px;
    max-width: 100%;
    position: absolute;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.7058823529);
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card {
    border-width: 0;
    cursor: pointer;
    background-color: transparent;
    max-width: 170px;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card img {
    width: 100%;
    padding: 1rem;
    border-radius: 20px;
    background-color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card span {
    font-size: 18px;
    font-weight: 200;
    color: #FFFFFF;
    padding: 1rem 0 0;
    text-align: center;
  }
  .SMP-Product-Support .SMP-Support-Divider h2 {
    font-size: 20px;
    padding: 2rem 0;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Product-Support .SMP-Support-SmartLock h3 {
    width: 100%;
    font-size: 18px;
    padding: 1rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/door-viewer.jpg");
  }
  .SMP-Product-Support .SMP-Support-DoorViewers h3 {
    width: 100%;
    font-size: 18px;
    padding: 2rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Product-Support .container {
    padding: 4rem 1rem;
  }
  .SMP-Product-Support .container .col-md-10 {
    margin: auto;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-8 img {
    width: 100%;
    height: 300px;
    object-fit: contain;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 h1 {
    width: 100%;
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a {
    width: 45%;
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a svg {
    height: 50px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos {
    padding: 1rem 0 1rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ h2, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos h2 {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: 2rem 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row {
    margin-top: 0.5rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe {
    width: 100%;
    height: 220px;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item h4, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item h4 {
    margin: 1rem 0;
    font-size: 14px;
    min-height: 60px;
    font-weight: 300;
    line-height: 30px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion {
    width: 100%;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header {
    margin: 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    padding: 1rem 0;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button:focus, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-collapse .accordion-body, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .SMP-BTN, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-Product-Support .SMP-Support-Header {
    padding: 4rem 0;
    background-size: cover;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row {
    padding: 2rem 0;
    justify-content: center;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 {
    padding: 0;
    position: relative;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 h1 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 p {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 input {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    border-radius: 20px;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row {
    left: 1rem;
    border-radius: 8px;
    width: 100%;
    z-index: 1;
    padding: 1rem;
    max-width: 100%;
    position: absolute;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.7058823529);
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card {
    border-width: 0;
    cursor: pointer;
    background-color: transparent;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card img {
    width: 100%;
    padding: 1rem;
    border-radius: 20px;
    background-color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card span {
    font-size: 18px;
    font-weight: 200;
    color: #FFFFFF;
    padding: 1rem 0 0;
    text-align: center;
  }
  .SMP-Product-Support .SMP-Support-Divider h2 {
    font-size: 30px;
    padding: 2rem 0;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Product-Support .SMP-Support-SmartLock h3 {
    width: 100%;
    font-size: 20px;
    padding: 1rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/door-viewer.jpg");
  }
  .SMP-Product-Support .SMP-Support-DoorViewers h3 {
    width: 100%;
    font-size: 25px;
    padding: 2rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Product-Support .container {
    padding: 2rem 0;
  }
  .SMP-Product-Support .container .col-md-10 {
    margin: auto;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-8 img {
    width: 100%;
    height: 350px;
    object-fit: contain;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 h1 {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a {
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a svg {
    height: 50px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos {
    padding: 2rem 0 2rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ h2, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos h2 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: 2rem 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row {
    margin-top: 1rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe {
    width: 100%;
    height: 150px;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item h4, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item h4 {
    margin: 1rem 0;
    font-size: 14px;
    min-height: 60px;
    font-weight: 300;
    line-height: 30px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion {
    width: 100%;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header {
    margin: 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    padding: 1rem 0;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button:focus, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-collapse .accordion-body, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .SMP-BTN, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-Product-Support .SMP-Support-Header {
    padding: 4rem 0;
    background-size: cover;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row {
    padding: 2rem 0;
    justify-content: center;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 {
    padding: 0;
    position: relative;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 h1 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 p {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 input {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    border-radius: 20px;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row {
    left: 1rem;
    border-radius: 8px;
    width: 100%;
    z-index: 1;
    padding: 1rem;
    max-width: 100%;
    position: absolute;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.7058823529);
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card {
    border-width: 0;
    cursor: pointer;
    background-color: transparent;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card img {
    width: 100%;
    padding: 1rem;
    border-radius: 20px;
    background-color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card span {
    font-size: 18px;
    font-weight: 200;
    color: #FFFFFF;
    padding: 1rem 0 0;
    text-align: center;
  }
  .SMP-Product-Support .SMP-Support-Divider h2 {
    font-size: 30px;
    padding: 2rem 0;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Product-Support .SMP-Support-SmartLock h3 {
    width: 100%;
    font-size: 20px;
    padding: 1rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/door-viewer.jpg");
  }
  .SMP-Product-Support .SMP-Support-DoorViewers h3 {
    width: 100%;
    font-size: 25px;
    padding: 2rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Product-Support .container {
    padding: 8rem 0;
  }
  .SMP-Product-Support .container .col-md-10 {
    margin: auto;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-8 img {
    width: 100%;
    height: 350px;
    object-fit: contain;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 h1 {
    font-size: 28px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a {
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a svg {
    height: 50px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos {
    padding: 2rem 0 2rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ h2, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos h2 {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: 2rem 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row {
    margin-top: 1rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe {
    width: 100%;
    height: 200px;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item h4, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item h4 {
    margin: 1rem 0;
    font-size: 14px;
    min-height: 60px;
    font-weight: 300;
    line-height: 30px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion {
    width: 100%;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header {
    margin: 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    padding: 1rem 0;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button:focus, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-collapse .accordion-body, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .SMP-BTN, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-Product-Support .SMP-Support-Header {
    padding: 15rem 0 10rem;
    background-size: cover;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row {
    padding: 2rem 0;
    justify-content: center;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 {
    padding: 0;
    position: relative;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 h1 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 p {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 input {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    border-radius: 20px;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row {
    left: 1rem;
    width: 100%;
    z-index: 1;
    border-radius: 8px;
    padding: 1rem;
    max-width: 100%;
    position: absolute;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.7058823529);
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card {
    border-width: 0;
    cursor: pointer;
    background-color: transparent;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card img {
    width: 100%;
    padding: 1rem;
    border-radius: 20px;
    background-color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card span {
    font-size: 18px;
    font-weight: 200;
    color: #FFFFFF;
    padding: 1rem 0 0;
    text-align: center;
  }
  .SMP-Product-Support .SMP-Support-Divider h2 {
    font-size: 30px;
    padding: 2rem 0;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Product-Support .SMP-Support-SmartLock h3 {
    width: 100%;
    font-size: 25px;
    padding: 2rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/door-viewer.jpg");
  }
  .SMP-Product-Support .SMP-Support-DoorViewers h3 {
    width: 100%;
    font-size: 25px;
    padding: 2rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Product-Support .container {
    padding: 8rem 0;
  }
  .SMP-Product-Support .container .col-md-10 {
    margin: auto;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-8 img {
    width: 100%;
    height: 350px;
    object-fit: contain;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 h1 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a {
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a svg {
    height: 50px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos {
    padding: 2rem 0 2rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ h2, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos h2 {
    font-size: 36px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: 2rem 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row {
    margin-top: 2rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe {
    width: 100%;
    height: 200px;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item h4, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item h4 {
    margin: 1rem 0;
    font-size: 16px;
    min-height: 60px;
    font-weight: 300;
    line-height: 30px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion {
    width: 100%;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header {
    margin: 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    padding: 1rem 0;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button:focus, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-collapse .accordion-body, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .SMP-BTN, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-Product-Support .SMP-Support-Header {
    padding: 15rem 0 10rem;
    background-size: cover;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row {
    padding: 2rem 0;
    justify-content: center;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 {
    padding: 0;
    position: relative;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 h1 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 p {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 input {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    border-radius: 20px;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row {
    left: 1rem;
    width: 100%;
    border-radius: 8px;
    z-index: 1;
    padding: 1rem;
    max-width: 100%;
    position: absolute;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.7058823529);
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card {
    border-width: 0;
    cursor: pointer;
    background-color: transparent;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card img {
    width: 100%;
    padding: 1rem;
    border-radius: 20px;
    background-color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card span {
    font-size: 18px;
    font-weight: 200;
    color: #FFFFFF;
    padding: 1rem 0 0;
    text-align: center;
  }
  .SMP-Product-Support .SMP-Support-Divider h2 {
    font-size: 30px;
    padding: 2rem 0;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Product-Support .SMP-Support-SmartLock h3 {
    width: 100%;
    font-size: 25px;
    padding: 2rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/door-viewer.jpg");
  }
  .SMP-Product-Support .SMP-Support-DoorViewers h3 {
    width: 100%;
    font-size: 25px;
    padding: 2rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-Product-Support .container {
    padding: 8rem 0;
  }
  .SMP-Product-Support .container .col-md-10 {
    margin: auto;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-8 img {
    width: 100%;
    height: 350px;
    object-fit: contain;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 h1 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a {
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a svg {
    height: 50px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos {
    padding: 4rem 0 2rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ h2, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos h2 {
    font-size: 36px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: 2rem 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row {
    margin-top: 2rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe {
    width: 100%;
    height: 200px;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item h4, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item h4 {
    margin: 1rem 0;
    font-size: 16px;
    min-height: 60px;
    font-weight: 300;
    line-height: 30px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion {
    width: 100%;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header {
    margin: 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    padding: 1rem 0;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button:focus, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-collapse .accordion-body, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .SMP-BTN, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-Product-Support .SMP-Support-Header {
    padding: 15rem 0 10rem;
    background-size: cover;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row {
    padding: 2rem 0;
    justify-content: center;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 {
    padding: 0;
    position: relative;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 h1 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 p {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 input {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    border-radius: 20px;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row {
    left: 1rem;
    width: 100%;
    z-index: 1;
    border-radius: 8px;
    padding: 1rem;
    max-width: 100%;
    position: absolute;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.7058823529);
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card {
    border-width: 0;
    cursor: pointer;
    background-color: transparent;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card img {
    width: 100%;
    padding: 1rem;
    border-radius: 20px;
    background-color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card span {
    font-size: 18px;
    font-weight: 200;
    color: #FFFFFF;
    padding: 1rem 0 0;
    text-align: center;
  }
  .SMP-Product-Support .SMP-Support-Divider h2 {
    font-size: 30px;
    padding: 2rem 0;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Product-Support .SMP-Support-SmartLock h3 {
    width: 100%;
    font-size: 25px;
    padding: 2rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/door-viewer.jpg");
  }
  .SMP-Product-Support .SMP-Support-DoorViewers h3 {
    width: 100%;
    font-size: 25px;
    padding: 2rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-Product-Support .container {
    padding: 10rem 0;
  }
  .SMP-Product-Support .container .col-md-10 {
    margin: auto;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-8 img {
    width: 100%;
    height: 350px;
    object-fit: contain;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 h1 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a {
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .container .col-md-10 .row .col-md-4 a svg {
    height: 50px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos {
    padding: 4rem 0 2rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ h2, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos h2 {
    font-size: 36px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: 2rem 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row {
    margin-top: 2rem;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe {
    width: 100%;
    height: 200px;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-wrapper iframe.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper img.play-icon, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-wrapper iframe.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item {
    overflow: hidden;
    border-radius: 5px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .row .col-md-4 .video-item h4, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .row .col-md-4 .video-item h4 {
    margin: 1rem 0;
    font-size: 16px;
    min-height: 60px;
    font-weight: 300;
    line-height: 30px;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion {
    width: 100%;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header {
    margin: 0;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    padding: 1rem 0;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-header .accordion-button:focus, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .accordion .accordion-item .accordion-collapse .accordion-body, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-FAQ .SMP-BTN, .SMP-Product-Support .container .col-md-10.SMP-SingleProduct-Videos .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-Product-Support .SMP-Support-Header {
    padding: 15rem 0 10rem;
    background-size: cover;
    background-image: url("../images/support-banner.jpg");
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row {
    padding: 2rem 0;
    justify-content: center;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 {
    padding: 0;
    position: relative;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 h1 {
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 p {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 input {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    border-radius: 20px;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row {
    left: 1rem;
    width: 100%;
    border-radius: 8px;
    z-index: 1;
    padding: 1rem;
    max-width: 100%;
    border-radius: 8px;
    position: absolute;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.7058823529);
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card {
    border-width: 0;
    cursor: pointer;
    background-color: transparent;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card img {
    width: 100%;
    padding: 1rem;
    border-radius: 20px;
    background-color: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-Header .container-fluid .row .col-md-5 .search-results-container.row .col-md-4 .card span {
    font-size: 18px;
    font-weight: 200;
    color: #FFFFFF;
    padding: 1rem 0 0;
    text-align: center;
  }
  .SMP-Product-Support .SMP-Support-Divider h2 {
    font-size: 30px;
    padding: 2rem 0;
    font-weight: 200;
    text-align: center;
    color: #494948;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/hot-offers-bg.jpg");
  }
  .SMP-Product-Support .SMP-Support-SmartLock h3 {
    width: 100%;
    font-size: 25px;
    padding: 2rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-SmartLock svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    background-image: url("../images/door-viewer.jpg");
  }
  .SMP-Product-Support .SMP-Support-DoorViewers h3 {
    width: 100%;
    font-size: 25px;
    padding: 2rem 0 0;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
  }
  .SMP-Product-Support .SMP-Support-DoorViewers svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }
}
/* Global Styles */
.SMP-ProductLoop-Menu:hover .card-title {
  bottom: 33px !important;
}

.SMP-ProductLoop {
  padding: 0;
  display: flex;
  overflow: hidden;
  max-height: 56vh;
  position: relative;
  margin-bottom: 1.5rem;
  flex-direction: column;
  transition: 0.3s all ease;
  background-color: #f9f9f9;
}
.SMP-ProductLoop .badge {
  top: 15px;
  z-index: 3;
  right: -1px;
  padding: 0.4rem;
  border-radius: 0;
  position: absolute;
  background-color: #00a8e2;
}
.SMP-ProductLoop .badge p {
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0.03em;
}
.SMP-ProductLoop .badge.SMP-Wishlist {
  top: 15px;
  z-index: 2;
  right: 1rem;
  padding: 0.4rem;
  border-radius: 0;
  position: absolute;
  background-color: transparent;
}
.SMP-ProductLoop .badge.SMP-Wishlist button {
  padding: 0;
  border-width: 0;
  box-shadow: unset;
  background-color: transparent;
}
.SMP-ProductLoop .badge.SMP-Wishlist button svg {
  width: 19px;
  height: 19px;
  stroke: #FFFFFF;
}
.SMP-ProductLoop .badge.SMP-Wishlist button svg path {
  stroke: #FFFFFF;
}
.SMP-ProductLoop .badge.BadgeSecondary {
  background-color: #aa886a;
}
.SMP-ProductLoop img {
  top: 1rem;
  width: 100%;
  position: relative;
  object-fit: contain;
  margin-bottom: 4rem;
}
.SMP-ProductLoop img.SMP-Product-Gallery {
  top: 0;
  left: 0;
  opacity: 0;
  padding: 0;
  z-index: 1;
  width: 105%;
  height: 105%;
  margin-bottom: 0;
  object-fit: cover;
  position: absolute;
  background-color: #000000;
}
.SMP-ProductLoop img.SMP-Product-Placeholder {
  padding: 4rem;
}
.SMP-ProductLoop .h2, .SMP-ProductLoop .h3 {
  bottom: 0;
  z-index: 3;
  margin-bottom: 0;
  font-size: 13px;
  padding: 0 1rem;
  font-weight: 300;
  position: inherit;
  color: #494948;
  letter-spacing: 0.03em;
  min-height: 47px;
}
.SMP-ProductLoop price {
  bottom: 0;
  z-index: 3;
  padding: 0 1rem 1rem;
  display: block;
  font-size: 13px;
  font-weight: 400;
  position: inherit;
  letter-spacing: 0.03em;
  transition: 0s all ease;
}
.SMP-ProductLoop price .woocommerce-Price-amount {
  transition: 0s all ease;
}
.SMP-ProductLoop price .woocommerce-Price-amount.amount {
  transition: 0s all ease;
}
.SMP-ProductLoop price .woocommerce-Price-amount.amount bdi {
  display: flex;
  align-items: center;
  transition: 0s all ease;
}
.SMP-ProductLoop a.SMP-Product-Link {
  left: 0;
  z-index: 5;
  width: 100%;
  height: 51px;
  bottom: -52px;
  padding: 1rem;
  display: flex;
  font-size: 13px;
  font-weight: 400;
  color: #FFFFFF;
  margin-top: 1rem;
  position: absolute;
  text-align: center;
  border-radius: 0px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background-color: #494948;
  justify-content: space-between;
}
.SMP-ProductLoop a.SMP-Product-Link svg {
  width: 19px;
  height: 19px;
}
.SMP-ProductLoop:hover .accessory-hover {
  color: #000000 !important;
  transition: color 0.3s ease;
}
.SMP-ProductLoop:hover .badge {
  right: -62px;
}
.SMP-ProductLoop:hover .badge.SMP-Wishlist {
  top: 15px;
  z-index: 2;
  right: 1rem;
  padding: 0.4rem;
  border-radius: 0;
  position: absolute;
  background-color: transparent;
}
.SMP-ProductLoop:hover img {
  top: -50px;
}
.SMP-ProductLoop:hover img.SMP-Product-Gallery {
  opacity: 1;
  top: -50px;
}
.SMP-ProductLoop:hover .h2, .SMP-ProductLoop:hover .h3 {
  bottom: 60px;
  color: #FFFFFF;
}
.SMP-ProductLoop:hover price {
  bottom: 60px;
  color: #FFFFFF;
}
.SMP-ProductLoop:hover a.SMP-Product-Link {
  bottom: 0px;
}
.SMP-ProductLoop.SMP-ProductLoop-Menu img {
  top: 1rem;
  width: 100%;
  height: 140px;
  position: relative;
  object-fit: contain;
  margin-bottom: 2rem;
}
.SMP-ProductLoop.SMP-ProductLoop-Menu img.SMP-Product-Gallery {
  top: 0;
  left: 0;
  opacity: 0;
  padding: 0;
  z-index: 1;
  width: 105%;
  height: 105%;
  margin-bottom: 0;
  object-fit: cover;
  position: absolute;
  background-color: #000000;
}
.SMP-ProductLoop.SMP-ProductLoop-Menu h2 {
  bottom: 0;
  z-index: 3;
  font-size: 10px;
  padding: 0 1rem;
  min-height: 30px;
  font-weight: 300;
  position: inherit;
  line-height: 16px;
  color: #494948;
  letter-spacing: 0.03em;
}
.SMP-ProductLoop.SMP-ProductLoop-Menu price {
  font-size: 12px;
  padding: 0 1rem 1rem;
  display: flex;
  justify-content: space-between;
}
.SMP-ProductLoop.SMP-ProductLoop-Menu a.SMP-Product-Link {
  font-size: 14px;
  padding: 1rem !important;
  transition: 0s all ease-in-out;
}
.SMP-ProductLoop.SMP-ProductLoop-Menu a.SMP-Product-Link svg {
  transition: 0s all ease-in-out;
}
.SMP-ProductLoop.SMP-ProductLoop-Menu:hover img {
  top: -50px;
}
.SMP-ProductLoop.SMP-ProductLoop-Menu:hover img.SMP-Product-Gallery {
  opacity: 1;
  top: -30px;
}
.SMP-ProductLoop.SMP-ProductLoop-Menu:hover h2 {
  bottom: 40px;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.031372549);
}
.SMP-ProductLoop.SMP-ProductLoop-Menu:hover price {
  bottom: 40px;
  font-size: 14px;
}
.SMP-ProductLoop.SMP-ProductLoop-Menu:hover a.SMP-Product-Link {
  bottom: 0px;
  color: #FFFFFF !important;
}
.SMP-ProductLoop.SMP-ProductLoop-Menu:hover a.SMP-Product-Link svg {
  width: 14px;
  height: 14px;
}

/* Media Queries for Different Screen Sizes */
/* Extra Small Devices (Max Width 565px) */
@media (max-width: 565px) {
  .SMP-ProductLoop .h2, .SMP-ProductLoop .h3 {
    font-size: 13px;
  }
  .SMP-ProductLoop img {
    height: 150px;
  }
  .SMP-ProductLoop price {
    font-size: 13px;
  }
  .SMP-ProductLoop a.SMP-Product-Link {
    font-size: 13px;
  }
}
/* Small Devices (From 565px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-ProductLoop .h2, .SMP-ProductLoop .h3 {
    font-size: 13px;
  }
  .SMP-ProductLoop img {
    height: 150px;
  }
  .SMP-ProductLoop price {
    font-size: 13px;
  }
  .SMP-ProductLoop a.SMP-Product-Link {
    font-size: 13px;
  }
}
/* Medium Devices (From 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-ProductLoop img {
    height: 200px;
  }
  .SMP-ProductLoop .h2, .SMP-ProductLoop .h3 {
    font-size: 13px;
  }
  .SMP-ProductLoop price {
    font-size: 13px;
  }
  .SMP-ProductLoop a.SMP-Product-Link {
    font-size: 13px;
  }
}
/* Large Devices (From 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-ProductLoop img {
    height: 200px;
  }
  .SMP-ProductLoop .h2, .SMP-ProductLoop .h3 {
    font-size: 13px;
  }
  .SMP-ProductLoop price {
    font-size: 13px;
  }
  .SMP-ProductLoop a.SMP-Product-Link {
    font-size: 13px;
  }
}
/* X-Large Devices (From 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-ProductLoop img {
    height: 250px;
  }
  .SMP-ProductLoop .h2, .SMP-ProductLoop .h3 {
    font-size: 13px;
  }
  .SMP-ProductLoop price {
    font-size: 13px;
  }
  .SMP-ProductLoop a.SMP-Product-Link {
    font-size: 13px;
  }
}
/* XX-Large Devices (From 1400px and Up) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-ProductLoop img {
    height: 250px;
  }
  .SMP-ProductLoop .h2, .SMP-ProductLoop .h3 {
    font-size: 13px;
  }
  .SMP-ProductLoop price {
    font-size: 13px;
  }
  .SMP-ProductLoop a.SMP-Product-Link {
    font-size: 13px;
  }
}
/* XXX-Large Devices (From 1600px and Up) */
@media (min-width: 1600px) {
  .SMP-ProductLoop img {
    height: 400px;
  }
  .SMP-ProductLoop .h2, .SMP-ProductLoop .h3 {
    font-size: 13px;
  }
  .SMP-ProductLoop price {
    font-size: 13px;
  }
  .SMP-ProductLoop a.SMP-Product-Link {
    font-size: 13px;
  }
}
.product-gallery-layout {
  grid-gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
}

.product-gallery-layout > *:nth-child(-n+3) {
  grid-column: span 2;
}

.product-video-wrapper {
  position: relative;
  cursor: pointer;
}

.product-video-wrapper img {
  width: 100%;
  display: block;
}

.product-video-wrapper video {
  width: 100%;
  display: none; /* hide video initially */
}

.product-video-wrapper:hover img {
  display: none; /* hide placeholder on hover */
}

.product-video-wrapper:hover video {
  display: block; /* show video on hover */
}

.make-image-fit {
  height: 100% !important;
  object-fit: cover;
}

/* variation - selection capability */
.variations select#pa_capability {
  border-radius: 30px;
  padding: 4px 8px;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  #swipe-up-cart .variations tbody {
    display: flex;
  }
  .variations select#pa_capability {
    min-width: 300px !important;
  }
}
@media (max-width: 992px) {
  .SMP-SP-Detail-Gallery {
    margin: auto;
  }
  .product-galley-as-images, .product-gallery-layout {
    display: none;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-SingleProduct {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid {
    padding: 0rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main {
    padding: 0 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb {
    font-size: 12px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a :not(:first-child) {
    margin: 0 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail {
    padding: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 {
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile {
    display: block;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile img {
    padding: 0 1rem 2rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-indicators {
    bottom: 0;
    padding: 1rem;
    margin-left: 0;
    margin-right: 0;
    background: rgb(73, 73, 72);
    background: -moz-linear-gradient(0deg, rgb(73, 73, 72) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgb(73, 73, 72) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgb(73, 73, 72) 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#494948", endColorstr="#ffffff", GradientType=1);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-next {
    top: 40%;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #494948;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-next span {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-next::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-prev {
    top: 40%;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #494948;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-prev span {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-prev::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 {
    padding: 0 1.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top {
    top: 7rem;
    z-index: 1;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top h1 {
    font-size: 24px;
    font-weight: 300;
    line-height: 34px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex {
    margin: 0 0 1rem;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price {
    font-size: 16px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price {
    font-size: 16px;
    font-weight: 300;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating {
    display: flex;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .woocommerce-product-rating {
    display: flex;
    margin-bottom: 0;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating p {
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating a {
    font-size: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .star-rating {
    margin: 0;
    width: 4rem;
    height: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .star-rating::before {
    font-size: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .star-rating span::before {
    font-size: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control {
    width: 40px;
    flex: unset;
    display: block;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart del,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart ins {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart {
    border-width: 0;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr {
    display: flex;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td select {
    width: 100%;
    padding: 0.5rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 40px;
    flex: unset;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 1rem;
    font-weight: 500;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #494948;
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews {
    padding: 0;
    list-style: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating .star-rating {
    float: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:first-child) {
    padding: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:last-child) {
    padding: 0 0 1rem;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    padding: 0.75rem 2rem;
    color: #494948;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a:hover {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .h4 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 img {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 .h5 {
    font-size: 12px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle h2 {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row {
    padding: 0rem;
    flex-direction: row;
    background-color: #F0F0F0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product {
    width: 33.33333%;
    position: relative;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a {
    display: block;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a img {
    padding: 0.5rem;
    height: 160px;
    object-fit: contain;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product:not(:first-child)::before {
    content: "+";
    top: 38px;
    left: -5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    position: absolute;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header {
    margin: 1rem 0 0;
    text-align: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    font-size: 16px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse {
    padding: 1rem;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p {
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p strong {
    font-weight: 400;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p:first-child {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice {
    border-width: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p strong {
    font-weight: 300;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p small {
    font-size: 16px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart {
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    position: fixed;
    padding: 0.5rem;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1019607843);
    transition: transform 0.3s ease;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-up {
    transform: translateY(0);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-down {
    transform: translateY(100%);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity {
    height: 50px;
    width: 215px;
    display: flex;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart {
    display: flex;
    border-width: 0;
    margin-bottom: 0;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-title {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations {
    width: 100%;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr {
    display: flex;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value select {
    width: 100%;
    padding: 0.5rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-description {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 40px;
    width: 50%;
    display: flex;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 40px;
    flex: unset;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 40px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct-Support {
    padding: 1rem 0;
  }
  .SMP-SingleProduct-Support .container-fluid {
    padding: 0 0.5rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .h4 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 {
    width: 50%;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card {
    padding: 0.5rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-3 {
    padding: 1rem;
    text-align: center;
    border-radius: 0.375rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p:first-child {
    min-height: 50px;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p:last-child {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover {
    background-color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-3 {
    text-align: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p:last-child {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SingleProduct-SimpledBanner {
    display: none;
  }
  .SMP-SingleProduct-UserBanner {
    display: none;
  }
  .SMP-SingleProduct-Intro-Default {
    display: none;
  }
  .SMP-SingleProduct-Intro {
    display: none;
  }
  .SMP-SingleProduct-Banner a {
    width: 100%;
    display: block;
  }
  .SMP-SingleProduct-Banner a img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
  }
  .SMP-SingleProduct-Features {
    padding: 1rem;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Features .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 {
    width: 50%;
    padding: 1rem;
    align-items: center;
    justify-content: flex-start;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 span {
    width: 70%;
    font-size: 10px;
    text-align: center;
  }
  .SMP-SingleProduct-Structure {
    display: none;
  }
  .SMP-SingleProduct-AditionalContent {
    padding: 2rem 0rem;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6 {
    padding: 8px 0;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 {
    display: none;
  }
  .SMP-SingleProduct-InstallationCost {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:first-child {
    background-color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) {
    display: flex;
    padding: 0.5rem 4rem;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span {
    margin: 0.5rem 0;
    display: block;
    font-size: 28px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:first-child {
    color: #AA886A;
    font-size: 30px;
    font-weight: 300;
    background: linear-gradient(to top, #d6b279 0%, #8b590a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for non-webkit browsers */
    display: inline-block;
    /* Ensures it works as a text span */
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(2) {
    color: #000000;
    font-weight: 300;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(3) {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-Saving {
    padding: 1rem;
    background-color: #494948;
  }
  .SMP-SingleProduct-Saving .container-fluid .row {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row span {
    display: block;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row .SMP-BTN {
    width: auto;
    margin: 1rem 0;
    font-size: 14px;
    line-height: 32px;
    border-radius: 50px;
  }
  .SMP-SingleProduct-Saving .container-fluid .row p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
  }
  .SMP-SingleProduct-App {
    display: none;
  }
  .SMP-SingleProduct-Feature-Access {
    background-color: #F1F1F1;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Image {
    display: none;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features {
    padding: 1rem;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 {
    width: 50%;
    display: flex;
    padding: 0.5rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 img {
    height: 40px;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 p {
    display: flex;
    font-size: 14px;
    margin: 1rem 0 0;
    min-height: 50px;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 20px;
    text-align: center;
    color: #494948;
    align-items: center;
  }
  .SMP-SingleProduct-Delivery {
    padding: 1rem;
    background-color: #494948;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 {
    display: flex;
    width: 33.33%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 img {
    width: 50px;
    height: 40px;
    filter: invert(1);
    margin-bottom: 1rem;
    object-fit: contain;
    object-position: top;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 p {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
    color: #FFFFFF;
    text-align: center;
  }
  .SMP-SingleProduct-Technology {
    padding: 1rem;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 {
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 p {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:first-child {
    width: 100%;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(2), .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(3), .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(4) {
    width: 33.33%;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(2) img, .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(3) img, .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(4) img {
    width: 90px;
    height: 50px;
    object-fit: contain;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(2)::after, .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(3)::after {
    top: 0;
    width: 2px;
    right: -1px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: #ECECEC;
  }
  .SMP-SingleProduct-PressKit {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-PressKit .container .row {
    flex-direction: column;
  }
  .SMP-SingleProduct-PressKit .container .row h2 {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .SMP-BTN {
    margin-bottom: 1rem;
    width: 80% !important;
  }
  .SMP-SingleProduct-FAQ {
    padding: 1rem;
  }
  .SMP-SingleProduct-FAQ .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-FAQ .container .row h2 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 12px;
    padding: 1rem 0;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 12px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-Reviews {
    padding: 1rem;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Reviews .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-Reviews .container .row h2 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 {
    display: flex;
    padding: 1rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating {
    display: flex;
    margin: 0 0 2rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating .star-rating {
    float: unset;
    font-size: 25px;
    padding: 1rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating p {
    font-size: 12px;
    margin-bottom: 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews {
    padding: 0;
    width: 100%;
    list-style: none;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta {
    display: flex;
    justify-content: space-between;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-author {
    font-size: 16px;
    font-weight: 300;
    color: #2C2C2C;
    text-transform: capitalize;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-date {
    font-size: 12px;
    font-weight: 200;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-rating {
    display: flex;
    font-size: 14px;
    margin: 0.5rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    font-weight: 300;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination {
    gap: 5rem;
    width: 100%;
    display: flex;
    padding: 1rem 0 0;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination li,
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination a {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-GoogleAlexa {
    height: 150px;
    display: flex;
    align-items: center;
    background-size: cover;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/products/app/alexa-and-google.jpg");
  }
  .SMP-SingleProduct-GoogleAlexa .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-GoogleAlexa .container .row .col-md-4 p {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Frequently-Products {
    padding: 4rem 0;
    position: relative;
    background-color: #FFFFFF;
  }
  .SMP-Frequently-Products .container {
    max-width: 1550px;
  }
  .SMP-Frequently-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Frequently-Products .container .row .col-12 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Frequently-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid {
    padding: 0;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 400px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Related-Products {
    padding: 0rem;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container {
    max-width: 1550px;
  }
  .SMP-Related-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Related-Products .container .row .col-12 h3 {
    width: 100%;
    margin: 1rem 0;
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Related-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid {
    padding: 0;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper {
    padding: 0rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 120px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-SingleProduct {
    padding: 4.5rem 0 0;
  }
  .SMP-SingleProduct .container-fluid {
    padding: 0rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main {
    padding: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb {
    font-size: 12px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a :not(:first-child) {
    margin: 0 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail {
    padding: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 {
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile {
    display: block;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile img {
    padding: 0 1rem 2rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-indicators {
    bottom: 0;
    padding: 1rem;
    margin-left: 0;
    margin-right: 0;
    background: rgb(73, 73, 72);
    background: -moz-linear-gradient(0deg, rgb(73, 73, 72) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgb(73, 73, 72) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgb(73, 73, 72) 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#494948", endColorstr="#ffffff", GradientType=1);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-next {
    top: 40%;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #494948;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-next span {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-next::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-prev {
    top: 40%;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #494948;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-prev span {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-prev::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 {
    padding: 0 1.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top {
    top: 7rem;
    z-index: 1;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top h1 {
    font-size: 24px;
    font-weight: 300;
    line-height: 34px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex {
    margin: 0 0 1rem;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price {
    font-size: 16px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price {
    font-size: 16px;
    font-weight: 300;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating {
    display: flex;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .woocommerce-product-rating {
    display: flex;
    margin-bottom: 0;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating p {
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating a {
    font-size: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .star-rating {
    margin: 0;
    width: 4rem;
    height: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .star-rating::before {
    font-size: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .star-rating span::before {
    font-size: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart del,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart ins {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart {
    border-width: 0;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr {
    display: flex;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td select {
    width: 100%;
    padding: 0.5rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 40px;
    flex: unset;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    font-size: 16px;
    font-weight: 500;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #494948;
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews {
    padding: 0;
    list-style: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating .star-rating {
    float: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:first-child) {
    padding: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:last-child) {
    padding: 0 0 1rem;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    padding: 0.75rem 2rem;
    color: #494948;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a:hover {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .h4 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 img {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 .h5 {
    font-size: 12px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle h2 {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row {
    padding: 0rem;
    flex-direction: row;
    background-color: #F0F0F0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product {
    width: 33.33333%;
    position: relative;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a {
    display: block;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a img {
    padding: 0.5rem;
    height: 160px;
    object-fit: contain;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product:not(:first-child)::before {
    content: "+";
    top: 38px;
    left: -5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    position: absolute;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header {
    margin: 1rem 0 0;
    text-align: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    font-size: 16px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse {
    padding: 1rem;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p {
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p strong {
    font-weight: 400;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p:first-child {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice {
    border-width: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p strong {
    font-weight: 300;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p small {
    font-size: 16px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart {
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    position: fixed;
    padding: 0.5rem;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1019607843);
    transition: transform 0.3s ease;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-up {
    transform: translateY(0);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-down {
    transform: translateY(100%);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity {
    height: 50px;
    width: 215px;
    display: flex;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart {
    display: flex;
    border-width: 0;
    margin-bottom: 0;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-title {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations {
    width: 100%;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr {
    display: flex;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value select {
    width: 100%;
    padding: 0.5rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-description {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 40px;
    width: 50%;
    display: flex;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 40px;
    flex: unset;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 40px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct-Support {
    padding: 1rem 0;
  }
  .SMP-SingleProduct-Support .container-fluid {
    padding: 0 0.5rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .h4 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 {
    width: 50%;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card {
    padding: 0.5rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-3 {
    padding: 1rem;
    text-align: center;
    border-radius: 0.375rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p:first-child {
    min-height: 50px;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p:last-child {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover {
    background-color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-3 {
    text-align: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p:last-child {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SingleProduct-SimpledBanner {
    display: none;
  }
  .SMP-SingleProduct-UserBanner {
    display: none;
  }
  .SMP-SingleProduct-Intro-Default {
    display: none;
  }
  .SMP-SingleProduct-Intro {
    display: none;
  }
  .SMP-SingleProduct-Banner a {
    width: 100%;
    display: block;
  }
  .SMP-SingleProduct-Banner a img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
  }
  .SMP-SingleProduct-Features {
    padding: 1rem;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Features .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 {
    width: 50%;
    padding: 1rem;
    align-items: center;
    justify-content: flex-start;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 span {
    width: 70%;
    font-size: 10px;
    text-align: center;
  }
  .SMP-SingleProduct-Structure {
    height: 150px;
    display: flex;
    padding: 1rem;
    align-items: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:first-child {
    background-color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) {
    display: flex;
    padding: 0.5rem 4rem;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span {
    margin: 0.5rem 0;
    display: block;
    font-size: 28px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:first-child {
    color: #AA886A;
    font-size: 30px;
    font-weight: 300;
    background: linear-gradient(to top, #d6b279 0%, #8b590a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for non-webkit browsers */
    display: inline-block;
    /* Ensures it works as a text span */
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(2) {
    color: #000000;
    font-weight: 300;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(3) {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-Saving {
    padding: 1rem;
    background-color: #494948;
  }
  .SMP-SingleProduct-Saving .container-fluid .row {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row span {
    display: block;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row .SMP-BTN {
    width: auto;
    margin: 1rem 0;
    font-size: 14px;
    line-height: 32px;
    border-radius: 50px;
  }
  .SMP-SingleProduct-Saving .container-fluid .row p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
  }
  .SMP-SingleProduct-App {
    display: none;
  }
  .SMP-SingleProduct-Feature-Access {
    background-color: #F1F1F1;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Image {
    display: none;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features {
    padding: 1rem;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 {
    width: 50%;
    display: flex;
    padding: 0.5rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 img {
    height: 40px;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 p {
    display: flex;
    font-size: 14px;
    margin: 1rem 0 0;
    min-height: 50px;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 20px;
    text-align: center;
    color: #494948;
    align-items: center;
  }
  .SMP-SingleProduct-Delivery {
    padding: 1rem;
    background-color: #494948;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 {
    display: flex;
    width: 33.33%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 img {
    width: 50px;
    height: 40px;
    filter: invert(1);
    margin-bottom: 1rem;
    object-fit: contain;
    object-position: top;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 p {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
    color: #FFFFFF;
    text-align: center;
  }
  .SMP-SingleProduct-Technology {
    padding: 1rem;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 {
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 p {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:first-child {
    width: 100%;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(2), .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(3), .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(4) {
    width: 33.33%;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(2) img, .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(3) img, .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(4) img {
    width: 90px;
    height: 50px;
    object-fit: contain;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(2)::after, .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(3)::after {
    top: 0;
    width: 2px;
    right: -1px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: #ECECEC;
  }
  .SMP-SingleProduct-PressKit {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-PressKit .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-PressKit .container .row h2 {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .SMP-BTN {
    width: 40% !important;
  }
  .SMP-SingleProduct-FAQ {
    padding: 1rem;
  }
  .SMP-SingleProduct-FAQ .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-FAQ .container .row h2 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-Reviews {
    padding: 1rem;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Reviews .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-Reviews .container .row h2 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 {
    display: flex;
    padding: 1rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating {
    display: flex;
    margin: 0 0 2rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating .star-rating {
    float: unset;
    font-size: 25px;
    padding: 1rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating p {
    font-size: 12px;
    margin-bottom: 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews {
    padding: 0;
    width: 100%;
    list-style: none;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta {
    display: flex;
    justify-content: space-between;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-author {
    font-size: 16px;
    font-weight: 300;
    color: #2C2C2C;
    text-transform: capitalize;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-date {
    font-size: 12px;
    font-weight: 200;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-rating {
    display: flex;
    font-size: 14px;
    margin: 0.5rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    font-weight: 300;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination {
    gap: 5rem;
    width: 100%;
    display: flex;
    padding: 1rem 0 0;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination li,
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination a {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-GoogleAlexa {
    height: 150px;
    display: flex;
    align-items: center;
    background-size: cover;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/products/app/alexa-and-google.jpg");
  }
  .SMP-SingleProduct-GoogleAlexa .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-GoogleAlexa .container .row .col-md-4 p {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Frequently-Products {
    padding: 4rem 0;
    position: relative;
    background-color: #FFFFFF;
  }
  .SMP-Frequently-Products .container {
    max-width: 1550px;
  }
  .SMP-Frequently-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Frequently-Products .container .row .col-12 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Frequently-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid {
    padding: 0;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 400px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Related-Products {
    padding: 0rem;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container {
    max-width: 1550px;
  }
  .SMP-Related-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Related-Products .container .row .col-12 h3 {
    width: 100%;
    margin: 1rem 0;
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Related-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid {
    padding: 0;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper {
    padding: 0rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 120px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-SingleProduct {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid {
    padding: 0rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main {
    padding: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb {
    font-size: 12px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a :not(:first-child) {
    margin: 0 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 {
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile {
    width: 100%;
    display: block;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile img {
    height: 400px;
    padding: 2rem;
    object-fit: cover;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-indicators {
    bottom: 0;
    padding: 1rem;
    margin-left: 0;
    margin-right: 0;
    background: rgb(73, 73, 72);
    background: -moz-linear-gradient(0deg, rgb(73, 73, 72) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgb(73, 73, 72) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgb(73, 73, 72) 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#494948", endColorstr="#ffffff", GradientType=1);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-next {
    top: 40%;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #494948;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-next span {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-next::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-prev {
    top: 40%;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #494948;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-prev span {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile .carousel-control-prev::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 {
    width: 100%;
    padding: 0 1.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top {
    top: 5rem;
    z-index: 1;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top h1 {
    font-size: 24px;
    font-weight: 300;
    line-height: 34px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex {
    padding: 0;
    margin: 0 0 1rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price {
    font-size: 16px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price {
    font-size: 16px;
    font-weight: 300;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating {
    display: flex;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .woocommerce-product-rating {
    display: flex;
    margin-bottom: 0;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating p {
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating a {
    font-size: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .star-rating {
    margin: 0;
    width: 4rem;
    height: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .star-rating::before {
    font-size: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .star-rating span::before {
    font-size: 10px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control {
    width: 60px !important;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control {
    width: 40px;
    flex: unset;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart del,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart ins {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart {
    border-width: 0;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr {
    display: flex;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td select {
    width: 100%;
    padding: 0.5rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 40px;
    flex: unset;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 1rem;
    font-weight: 500;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #494948;
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews {
    padding: 0;
    list-style: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating .star-rating {
    float: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:first-child) {
    padding: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:last-child) {
    padding: 0 0 1rem;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    padding: 0.75rem 2rem;
    color: #494948;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a:hover {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .h4 {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 img {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 .h5 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle h2 {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row {
    padding: 0rem;
    flex-direction: row;
    background-color: #F0F0F0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product {
    width: 33.33333%;
    position: relative;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a {
    display: block;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a img {
    padding: 0.5rem;
    height: 160px;
    object-fit: contain;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product:not(:first-child)::before {
    content: "+";
    top: 38px;
    left: -5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    position: absolute;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header {
    margin: 1rem 0 0;
    text-align: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    font-size: 16px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse {
    padding: 1rem;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p {
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p strong {
    font-weight: 400;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p:first-child {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice {
    border-width: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p strong {
    font-weight: 300;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p small {
    font-size: 16px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart {
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    position: fixed;
    padding: 0.5rem;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1019607843);
    transition: transform 0.3s ease;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-up {
    transform: translateY(0);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-down {
    transform: translateY(100%);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart {
    display: flex;
    border-width: 0;
    margin-bottom: 0;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-title {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations {
    width: 100%;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr {
    display: flex;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value select {
    width: 100%;
    padding: 0.5rem;
    border-radius: 25px;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-description {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 40px;
    width: 50%;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 40px;
    flex: unset;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 40px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct-Support {
    padding: 1rem 0;
  }
  .SMP-SingleProduct-Support .container-fluid {
    padding: 0 0.5rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .h4 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 {
    width: 50%;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card {
    padding: 0.5rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-3 {
    padding: 1rem;
    text-align: center;
    border-radius: 0.375rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p:first-child {
    min-height: 50px;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p:last-child {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover {
    background-color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-3 {
    text-align: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p:last-child {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SingleProduct-SimpledBanner {
    height: 250px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    background-image: url("../images/products/who-is-simpled-blue.webp");
  }
  .SMP-SingleProduct-SimpledBanner .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-SimpledBanner .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-SimpledBanner .container .row .col-md-6 p {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-UserBanner {
    display: none;
  }
  .SMP-SingleProduct-Intro-Default {
    height: 250px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-image: url("../images/products/product-intro-1.webp");
  }
  .SMP-SingleProduct-Intro-Default .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 p:first-child {
    font-size: 16px;
    color: #aa886a;
  }
  .SMP-SingleProduct-Intro {
    height: 250px;
    display: flex;
    align-items: center;
    background-size: cover;
  }
  .SMP-SingleProduct-Intro .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 h2,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h3,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h4,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h5,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h6 {
    font-size: 16px;
    color: #494948;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 p {
    font-size: 16px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h2,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h3,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h4,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h5,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h6 {
    font-weight: 300;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Banner a {
    width: 100%;
    display: block;
  }
  .SMP-SingleProduct-Banner a img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
  }
  .SMP-SingleProduct-Features {
    padding: 1rem;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Features .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 {
    padding: 0rem;
    align-items: center;
    justify-content: flex-start;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 2rem;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 span {
    width: 70%;
    font-size: 12px;
    text-align: center;
  }
  .SMP-SingleProduct-Structure {
    height: 250px;
    display: flex;
    padding: 4rem 2rem;
    align-items: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:first-child {
    background-color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) {
    display: flex;
    padding: 0.5rem 4rem;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span {
    margin: 0.5rem 0;
    display: block;
    font-size: 28px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:first-child {
    color: #AA886A;
    font-size: 30px;
    font-weight: 300;
    background: linear-gradient(to top, #d6b279 0%, #8b590a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for non-webkit browsers */
    display: inline-block;
    /* Ensures it works as a text span */
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(2) {
    color: #000000;
    font-weight: 300;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(3) {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-Saving {
    padding: 1rem;
    background-color: #494948;
  }
  .SMP-SingleProduct-Saving .container-fluid .row {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row span {
    display: block;
    font-size: 25px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row .SMP-BTN {
    width: auto;
    margin: 2rem 0;
    font-size: 16px;
    line-height: 32px;
    border-radius: 50px;
  }
  .SMP-SingleProduct-Saving .container-fluid .row p {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
  }
  .SMP-SingleProduct-App {
    padding: 0;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-App .container {
    position: relative;
  }
  .SMP-SingleProduct-App .container .h4 {
    top: 1rem;
    width: 100%;
    font-size: 20px;
    font-weight: 300;
    position: absolute;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-App .container .row .col-7 {
    padding: 7rem 0 2rem;
  }
  .SMP-SingleProduct-App .container .row .col-3 {
    top: 0;
    left: 0;
    position: absolute;
  }
  .SMP-SingleProduct-App .container .row .col-2 {
    top: 0;
    right: 4rem;
    position: absolute;
  }
  .SMP-SingleProduct-Feature-Access {
    background-color: #F1F1F1;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Image img {
    height: 100%;
    object-fit: contain;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features {
    padding: 5rem 0;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 {
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 img {
    height: 40px;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 p {
    display: flex;
    font-size: 14px;
    margin: 1rem 0 0;
    min-height: 50px;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 20px;
    text-align: center;
    color: #494948;
    align-items: center;
  }
  .SMP-SingleProduct-Delivery {
    padding: 2rem 0;
    background-color: #494948;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 img {
    margin-bottom: 1rem;
    filter: invert(1);
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
    color: #FFFFFF;
    text-align: center;
  }
  .SMP-SingleProduct-Technology {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 {
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 img {
    width: 80px;
    height: 60px;
    object-fit: contain;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(2)::after, .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(3)::after {
    top: 0;
    width: 2px;
    right: -1px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: #ECECEC;
  }
  .SMP-SingleProduct-PressKit {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-PressKit .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-PressKit .container .row h2 {
    font-size: 36px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-FAQ {
    padding: 1rem 0;
  }
  .SMP-SingleProduct-FAQ .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-FAQ .container .row h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 {
    width: 100%;
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-Reviews {
    padding: 2rem 0 0;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Reviews .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-Reviews .container .row h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating {
    display: flex;
    margin: 0 0 2rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating .star-rating {
    float: unset;
    font-size: 25px;
    padding: 1rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating p {
    font-size: 12px;
    margin-bottom: 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews {
    padding: 0;
    width: 100%;
    list-style: none;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review {
    padding: 2rem 0;
    border-bottom: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta {
    display: flex;
    justify-content: space-between;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-author {
    font-size: 16px;
    font-weight: 300;
    color: #2C2C2C;
    text-transform: capitalize;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-date {
    font-size: 12px;
    font-weight: 200;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-rating {
    display: flex;
    font-size: 14px;
    margin: 0.5rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    font-weight: 300;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination {
    gap: 5rem;
    width: 100%;
    display: flex;
    padding: 2rem 0 0;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination li,
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination a {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-GoogleAlexa {
    height: 250px;
    display: flex;
    align-items: center;
    background-size: cover;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/products/app/alexa-and-google.jpg");
  }
  .SMP-SingleProduct-GoogleAlexa .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-GoogleAlexa .container .row .col-md-4 p {
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Frequently-Products {
    padding: 4rem 0;
    position: relative;
    background-color: #FFFFFF;
  }
  .SMP-Frequently-Products .container {
    max-width: 1550px;
  }
  .SMP-Frequently-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Frequently-Products .container .row .col-12 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Frequently-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid {
    padding: 0;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 400px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Related-Products {
    padding: 1rem 0;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container {
    max-width: 1550px;
  }
  .SMP-Related-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Related-Products .container .row .col-12 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Related-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid {
    padding: 0;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 200px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-SingleProduct {
    padding: 6rem 0 0;
  }
  .SMP-SingleProduct .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb {
    font-size: 12px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a :not(:first-child) {
    margin: 0 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail {
    padding: 0 0 2rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 {
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail {
    width: 70px;
    height: 100vh;
    padding-right: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 {
    top: 8rem;
    position: sticky;
    position: -webkit-sticky;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery {
    height: 100%;
    overflow: scroll;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery img,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery video {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery {
    width: 100%;
    height: auto;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery img,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery video {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top {
    top: 7rem;
    z-index: 1;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top h1 {
    font-size: 18px;
    font-weight: 500;
    line-height: 34px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex {
    margin: 0 0 1rem;
    padding: 1rem 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price {
    font-size: 16px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price {
    font-size: 16px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating {
    display: flex;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .woocommerce-product-rating {
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating p {
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity {
    height: 40px !important;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control {
    width: 40px !important;
    flex: unset;
    display: block;
    font-size: 14px !important;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 40px !important;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart del,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart ins {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart {
    border-width: 0;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr {
    display: flex;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    font-size: 14px;
    font-weight: 500;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #494948;
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews {
    padding: 0;
    list-style: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating .star-rating {
    float: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:first-child) {
    padding: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:last-child) {
    padding: 0 0 1rem;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    padding: 0.75rem 2rem;
    color: #494948;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a:hover {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .h4 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 img {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 .h5 {
    font-size: 12px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle h2 {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row {
    padding: 1.5rem 1rem;
    flex-direction: row;
    background-color: #F0F0F0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product {
    width: 33.33333%;
    position: relative;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a {
    display: block;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a img {
    padding: 4px;
    height: 160px;
    object-fit: contain;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product:not(:first-child)::before {
    content: "+";
    top: 38px;
    left: -5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    position: absolute;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header {
    margin: 1rem 0 0;
    text-align: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    font-size: 16px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse {
    padding: 1rem;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p {
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p strong {
    font-weight: 400;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p:first-child {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice {
    border-width: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p strong {
    font-weight: 300;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p small {
    font-size: 16px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart {
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    position: fixed;
    padding: 1rem 1.875rem;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1019607843);
    transition: transform 0.3s ease;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-up {
    transform: translateY(0);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-down {
    transform: translateY(100%);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart {
    display: flex;
    border-width: 0;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-title {
    width: 100%;
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price {
    width: 180px;
    font-size: 14px;
    font-weight: 400;
    margin-right: 1rem;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price .price {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price .price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations {
    width: auto;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr {
    display: flex;
    flex-direction: row;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 {
    display: flex;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-description {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 40px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 40px;
    flex: unset;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    padding: 0;
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 40px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct-Support {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-Support .container-fluid .row .h4 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card {
    padding: 1rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-3 {
    padding: 1rem;
    text-align: center;
    border-radius: 0.375rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p:last-child {
    font-size: 20px;
    font-weight: 300;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover {
    background-color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-3 {
    text-align: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p:last-child {
    font-size: 20px;
    font-weight: 300;
  }
  .SMP-SingleProduct-SimpledBanner {
    height: 400px;
    display: flex;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../images/products/who-is-simpled-blue.webp");
  }
  .SMP-SingleProduct-SimpledBanner .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-SimpledBanner .container .row .col-md-6 {
    padding: 8rem;
  }
  .SMP-SingleProduct-SimpledBanner .container .row .col-md-6 p {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-UserBanner .container-fluid {
    position: relative;
  }
  .SMP-SingleProduct-UserBanner .container-fluid h4 {
    top: 3rem;
    width: 100%;
    font-size: 26px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    position: absolute;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row .col-6 img {
    height: 400px;
    object-fit: cover;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center {
    width: 100%;
    bottom: 1rem;
    position: absolute;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2 p {
    display: flex;
    padding: 0.5rem;
    font-size: 14px;
    font-weight: 300;
    color: #FFFFFF;
    position: relative;
    flex-direction: column;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2 img {
    border-radius: 10px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Question p {
    background: rgba(0, 0, 0, 0.8549019608);
    border-radius: 16px 16px 0px 16px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Question p::after {
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    bottom: -15px;
    border-top: solid 20px #09090a;
    border-left: solid 20px transparent;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer {
    padding-top: 8rem;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer p {
    color: #494948;
    background: rgba(255, 255, 255, 0.8549019608);
    border-radius: 16px 16px 16px 0px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer p::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    bottom: -20px;
    border-top: solid 20px rgba(255, 255, 255, 0.8549019608);
    border-right: solid 20px transparent;
  }
  .SMP-SingleProduct-Intro-Default {
    height: 400px;
    display: flex;
    align-items: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/products/product-intro-1.webp");
  }
  .SMP-SingleProduct-Intro-Default .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 {
    padding: 4rem;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 p:first-child {
    font-size: 28px;
    color: #aa886a;
  }
  .SMP-SingleProduct-Intro {
    height: 300px;
    display: flex;
    align-items: center;
    background-size: cover;
  }
  .SMP-SingleProduct-Intro .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 h2,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h3,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h4,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h5,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h6 {
    color: #494948;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h2,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h3,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h4,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h5,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h6 {
    font-weight: 300;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Banner a {
    width: 100%;
    display: block;
  }
  .SMP-SingleProduct-Banner a img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
  }
  .SMP-SingleProduct-Features {
    padding: 4rem 0 2rem;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Features .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 {
    padding: 2rem;
    align-items: center;
    justify-content: flex-start;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 img {
    width: 110px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 span {
    width: 70%;
    text-align: center;
  }
  .SMP-SingleProduct-Structure {
    height: 550px;
    display: flex;
    padding: 4rem 2rem;
    align-items: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:first-child {
    background-color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) {
    display: flex;
    padding: 0.5rem 4rem;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span {
    margin: 0.5rem 0;
    display: block;
    font-size: 28px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:first-child {
    color: #AA886A;
    font-size: 30px;
    font-weight: 300;
    background: linear-gradient(to top, #d6b279 0%, #8b590a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for non-webkit browsers */
    display: inline-block;
    /* Ensures it works as a text span */
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(2) {
    color: #000000;
    font-weight: 300;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(3) {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-Saving {
    padding: 2rem;
    background-color: #494948;
  }
  .SMP-SingleProduct-Saving .container-fluid .row {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row span {
    display: block;
    font-size: 25px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row .SMP-BTN {
    width: auto;
    margin: 2rem 0;
    font-size: 16px;
    line-height: 32px;
    border-radius: 50px;
  }
  .SMP-SingleProduct-Saving .container-fluid .row p {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
  }
  .SMP-SingleProduct-App {
    padding: 2rem 0 0;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-App .container {
    position: relative;
  }
  .SMP-SingleProduct-App .container .h4 {
    top: 1rem;
    width: 100%;
    font-size: 36px;
    font-weight: 300;
    position: absolute;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-App .container .row .col-7 {
    padding: 7rem 0 2rem;
  }
  .SMP-SingleProduct-App .container .row .col-3 {
    top: 0;
    left: 0;
    position: absolute;
  }
  .SMP-SingleProduct-App .container .row .col-2 {
    top: 0;
    right: 4rem;
    position: absolute;
  }
  .SMP-SingleProduct-Feature-Access {
    background-color: #F1F1F1;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Image img {
    height: 100%;
    object-fit: contain;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features {
    padding: 5rem 0;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 {
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 img {
    height: 40px;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 p {
    display: flex;
    font-size: 14px;
    margin: 1rem 0 0;
    min-height: 50px;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 20px;
    text-align: center;
    color: #494948;
    align-items: center;
  }
  .SMP-SingleProduct-Delivery {
    padding: 2rem 0;
    background-color: #494948;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 img {
    margin-bottom: 1rem;
    filter: invert(1);
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
    color: #FFFFFF;
    text-align: center;
  }
  .SMP-SingleProduct-Technology {
    padding: 4rem 0;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 {
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 p {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 img {
    width: 120px;
    height: 80px;
    object-fit: contain;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(2)::after, .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(3)::after {
    top: 0;
    width: 2px;
    right: -1px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: #ECECEC;
  }
  .SMP-SingleProduct-PressKit {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-PressKit .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-PressKit .container .row h2 {
    font-size: 36px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-FAQ {
    padding: 5rem 0;
  }
  .SMP-SingleProduct-FAQ .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-FAQ .container .row .h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-Reviews {
    padding: 5rem 0 0;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Reviews .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-Reviews .container .row .h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating {
    display: flex;
    margin: 0 0 2rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating .star-rating {
    float: unset;
    font-size: 25px;
    padding: 1rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating p {
    font-size: 12px;
    margin-bottom: 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews {
    padding: 0;
    width: 100%;
    list-style: none;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review {
    padding: 2rem 0;
    border-bottom: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta {
    display: flex;
    justify-content: space-between;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-author {
    font-size: 16px;
    font-weight: 300;
    color: #2C2C2C;
    text-transform: capitalize;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-date {
    font-size: 12px;
    font-weight: 200;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-rating {
    display: flex;
    font-size: 14px;
    margin: 0.5rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    font-weight: 300;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination {
    gap: 5rem;
    width: 100%;
    display: flex;
    padding: 2rem 0 0;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination li,
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination a {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-GoogleAlexa {
    height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/products/app/alexa-and-google.jpg");
  }
  .SMP-SingleProduct-GoogleAlexa .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-GoogleAlexa .container .row .col-md-4 p {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Frequently-Products {
    padding: 4rem 0;
    position: relative;
    background-color: #FFFFFF;
  }
  .SMP-Frequently-Products .container {
    max-width: 1140px !important;
  }
  .SMP-Frequently-Products .container .row {
    padding: 2rem;
  }
  .SMP-Frequently-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Frequently-Products .container .row .col-12 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Frequently-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid {
    padding: 0;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 300px;
    position: relative;
    object-fit: contain;
    margin-bottom: 3rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Related-Products {
    padding: 4rem 0;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container {
    max-width: 1140px;
  }
  .SMP-Related-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Related-Products .container .row .col-12 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Related-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid {
    padding: 0;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 200px;
    position: relative;
    object-fit: contain;
    margin-bottom: 2rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .variations select#pa_capability {
    height: 40px;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-SingleProduct {
    padding: 6rem 0 0;
  }
  .SMP-SingleProduct .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb {
    font-size: 12px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a :not(:first-child) {
    margin: 0 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail {
    padding: 0 0 2rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 {
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail {
    width: 70px;
    height: 100vh;
    padding-right: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 {
    top: 8rem;
    position: sticky;
    position: -webkit-sticky;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery {
    height: 100%;
    overflow: scroll;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery img,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery video {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery {
    width: 100%;
    height: auto;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery img,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery video {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top {
    top: 7rem;
    z-index: 1;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top h1 {
    font-size: 18px;
    font-weight: 500;
    line-height: 34px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex {
    margin: 0 0 1rem;
    padding: 1rem 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price {
    font-size: 16px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price {
    font-size: 16px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating {
    display: flex;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .woocommerce-product-rating {
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating p {
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity {
    height: 40px !important;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control {
    width: 40px !important;
    flex: unset;
    display: block;
    font-size: 14px !important;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 40px !important;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart del,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart ins {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart {
    border-width: 0;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr {
    display: flex;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 1rem;
    font-weight: 500;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #494948;
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews {
    padding: 0;
    list-style: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating .star-rating {
    float: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:first-child) {
    padding: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:last-child) {
    padding: 0 0 1rem;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    padding: 0.75rem 2rem;
    color: #494948;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a:hover {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle h2 {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row {
    padding: 1.5rem 1rem;
    flex-direction: row;
    background-color: #F0F0F0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product {
    width: 33.33333%;
    position: relative;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a {
    display: block;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a img {
    padding: 4px;
    height: 160px;
    object-fit: contain;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product:not(:first-child)::before {
    content: "+";
    top: 38px;
    left: -5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    position: absolute;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header {
    margin: 1rem 0 0;
    text-align: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    font-size: 16px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse {
    padding: 1rem;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p {
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p strong {
    font-weight: 400;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p:first-child {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice {
    border-width: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p strong {
    font-weight: 300;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p small {
    font-size: 16px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart {
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    position: fixed;
    padding: 1rem 1.875rem;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1019607843);
    transition: transform 0.3s ease;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-up {
    transform: translateY(0);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-down {
    transform: translateY(100%);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart {
    display: flex;
    border-width: 0;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-title {
    width: 100%;
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price {
    width: 180px;
    font-size: 14px;
    font-weight: 400;
    margin-right: 1rem;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price .price {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price .price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations {
    width: auto;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr {
    display: flex;
    flex-direction: row;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 {
    display: flex;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-description {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 40px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 40px;
    flex: unset;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    padding: 0;
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 40px;
    display: flex;
    font-size: 13px;
    border-width: 0;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-4 .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct-Support {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-Support .container-fluid .row .h4 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card {
    padding: 1rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-3 {
    padding: 1rem;
    text-align: center;
    border-radius: 0.375rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p:last-child {
    font-size: 20px;
    font-weight: 300;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover {
    background-color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-3 {
    text-align: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p:last-child {
    font-size: 20px;
    font-weight: 300;
  }
  .SMP-SingleProduct-SimpledBanner {
    height: 400px;
    display: flex;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../images/products/who-is-simpled-blue.webp");
  }
  .SMP-SingleProduct-SimpledBanner .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-SimpledBanner .container .row .col-md-6 {
    padding: 8rem;
  }
  .SMP-SingleProduct-SimpledBanner .container .row .col-md-6 p {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-UserBanner .container-fluid {
    position: relative;
  }
  .SMP-SingleProduct-UserBanner .container-fluid h4 {
    top: 5rem;
    width: 100%;
    font-size: 28px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    position: absolute;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row .col-6 img {
    height: 560px;
    object-fit: cover;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center {
    width: 100%;
    bottom: 1rem;
    position: absolute;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2 p {
    display: flex;
    padding: 1rem;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    position: relative;
    flex-direction: column;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2 img {
    border-radius: 10px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Question p {
    background: rgba(0, 0, 0, 0.8549019608);
    border-radius: 16px 16px 0px 16px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Question p::after {
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    bottom: -15px;
    border-top: solid 20px #09090a;
    border-left: solid 20px transparent;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer {
    padding-top: 8rem;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer p {
    color: #494948;
    background: rgba(255, 255, 255, 0.8549019608);
    border-radius: 16px 16px 16px 0px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer p::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    bottom: -20px;
    border-top: solid 20px rgba(255, 255, 255, 0.8549019608);
    border-right: solid 20px transparent;
  }
  .SMP-SingleProduct-Intro-Default {
    height: 400px;
    display: flex;
    align-items: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/products/product-intro-1.webp");
  }
  .SMP-SingleProduct-Intro-Default .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 {
    padding: 4rem;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 p:first-child {
    font-size: 28px;
    color: #aa886a;
  }
  .SMP-SingleProduct-Intro {
    height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
  }
  .SMP-SingleProduct-Intro .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 h2,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h3,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h4,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h5,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h6 {
    color: #494948;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h2,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h3,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h4,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h5,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h6 {
    font-weight: 300;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Banner a {
    width: 100%;
    display: block;
  }
  .SMP-SingleProduct-Banner a img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
  }
  .SMP-SingleProduct-Features {
    padding: 4rem 0 2rem;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Features .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 {
    padding: 2rem;
    align-items: center;
    justify-content: flex-start;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 img {
    width: 110px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 span {
    width: 70%;
    text-align: center;
  }
  .SMP-SingleProduct-Structure {
    height: 550px;
    display: flex;
    padding: 4rem 2rem;
    align-items: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:first-child {
    background-color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) {
    display: flex;
    padding: 0.5rem 4rem;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span {
    margin: 0.5rem 0;
    display: block;
    font-size: 28px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:first-child {
    color: #AA886A;
    font-size: 30px;
    font-weight: 300;
    background: linear-gradient(to top, #d6b279 0%, #8b590a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for non-webkit browsers */
    display: inline-block;
    /* Ensures it works as a text span */
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(2) {
    color: #000000;
    font-weight: 300;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(3) {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-Saving {
    padding: 2rem;
    background-color: #494948;
  }
  .SMP-SingleProduct-Saving .container-fluid .row {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row span {
    display: block;
    font-size: 25px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row .SMP-BTN {
    width: auto;
    margin: 2rem 0;
    font-size: 16px;
    line-height: 32px;
    border-radius: 50px;
  }
  .SMP-SingleProduct-Saving .container-fluid .row p {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
  }
  .SMP-SingleProduct-App {
    padding: 2rem 0 0;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-App .container {
    position: relative;
  }
  .SMP-SingleProduct-App .container .h4 {
    top: 1rem;
    width: 100%;
    font-size: 36px;
    font-weight: 300;
    position: absolute;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-App .container .row .col-7 {
    padding: 7rem 0 2rem;
  }
  .SMP-SingleProduct-App .container .row .col-3 {
    top: 0;
    left: 0;
    position: absolute;
  }
  .SMP-SingleProduct-App .container .row .col-2 {
    top: 0;
    right: 4rem;
    position: absolute;
  }
  .SMP-SingleProduct-Feature-Access {
    background-color: #F1F1F1;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Image img {
    height: 100%;
    object-fit: contain;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features {
    padding: 5rem 0;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 {
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 img {
    height: 40px;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 p {
    display: flex;
    font-size: 14px;
    margin: 1rem 0 0;
    min-height: 50px;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 20px;
    text-align: center;
    color: #494948;
    align-items: center;
  }
  .SMP-SingleProduct-Delivery {
    padding: 2rem 0;
    background-color: #494948;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 img {
    margin-bottom: 1rem;
    filter: invert(1);
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
    color: #FFFFFF;
    text-align: center;
  }
  .SMP-SingleProduct-Technology {
    padding: 4rem 0;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 {
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 p {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 img {
    width: 120px;
    height: 80px;
    object-fit: contain;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(2)::after, .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(3)::after {
    top: 0;
    width: 2px;
    right: -1px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: #ECECEC;
  }
  .SMP-SingleProduct-PressKit {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-PressKit .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-PressKit .container .row h2 {
    font-size: 36px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-FAQ {
    padding: 5rem 0;
  }
  .SMP-SingleProduct-FAQ .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-FAQ .container .row .h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-Reviews {
    padding: 5rem 0 0;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Reviews .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-Reviews .container .row .h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating {
    display: flex;
    margin: 0 0 2rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating .star-rating {
    float: unset;
    font-size: 25px;
    padding: 1rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating p {
    font-size: 12px;
    margin-bottom: 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews {
    padding: 0;
    width: 100%;
    list-style: none;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review {
    padding: 2rem 0;
    border-bottom: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta {
    display: flex;
    justify-content: space-between;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-author {
    font-size: 16px;
    font-weight: 300;
    color: #2C2C2C;
    text-transform: capitalize;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-date {
    font-size: 12px;
    font-weight: 200;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-rating {
    display: flex;
    font-size: 14px;
    margin: 0.5rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    font-weight: 300;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination {
    gap: 5rem;
    width: 100%;
    display: flex;
    padding: 2rem 0 0;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination li,
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination a {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-GoogleAlexa {
    height: 450px;
    display: flex;
    align-items: center;
    background-size: cover;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/products/app/alexa-and-google.jpg");
  }
  .SMP-SingleProduct-GoogleAlexa .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-GoogleAlexa .container .row .col-md-4 p {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Frequently-Products {
    padding: 4rem 0;
    position: relative;
    background-color: #FFFFFF;
  }
  .SMP-Frequently-Products .container {
    max-width: 1140px !important;
  }
  .SMP-Frequently-Products .container .row {
    padding: 2rem;
  }
  .SMP-Frequently-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Frequently-Products .container .row .col-12 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Frequently-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid {
    padding: 0;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 300px;
    position: relative;
    object-fit: contain;
    margin-bottom: 3rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Related-Products {
    padding: 4rem 0;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container {
    max-width: 1140px;
  }
  .SMP-Related-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Related-Products .container .row .col-12 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Related-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid {
    padding: 0;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 300px;
    position: relative;
    object-fit: contain;
    margin-bottom: 3rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .variations select#pa_capability {
    height: 40px;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-SingleProduct {
    padding: 6rem 0 0;
  }
  .SMP-SingleProduct .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb {
    font-size: 12px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a :not(:first-child) {
    margin: 0 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail {
    padding: 0 0 2rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 {
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail {
    width: 70px;
    height: 100vh;
    padding-right: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 {
    top: 8rem;
    position: sticky;
    position: -webkit-sticky;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery {
    height: 100%;
    overflow: scroll;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery img,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery video {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery {
    width: 100%;
    height: auto;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery img,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery video {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top {
    top: 7rem;
    z-index: 1;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex {
    margin: 0 0 1rem;
    padding: 1rem 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price {
    font-size: 20px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price {
    font-size: 20px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating {
    display: flex;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .woocommerce-product-rating {
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating p {
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control {
    width: 40px;
    flex: unset;
    padding: 0.5rem;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart del,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart ins {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart {
    border-width: 0;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr {
    display: flex;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item {
    border-width: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header {
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 1rem 0;
    font-weight: 500;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #494948;
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body {
    max-height: unset;
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    overflow: hidden;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body h3 {
    font-size: 18px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body p, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body ul, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body li {
    font-size: 14px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews {
    padding: 0;
    list-style: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating .star-rating {
    float: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:first-child) {
    padding: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:last-child) {
    padding: 0 0 1rem;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    padding: 0.75rem 2rem;
    color: #494948;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a:hover {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .SMP-TypingAnimation #word {
    margin-left: 0.25rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row {
    padding: 2rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .h4 {
    font-size: 22px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 .h5 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 .h5 strong {
    font-weight: 400;
    min-height: 40px;
    line-height: 28px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle h2 {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row {
    padding: 1.5rem 1rem;
    flex-direction: row;
    background-color: #F0F0F0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product {
    width: 33.33333%;
    position: relative;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a {
    display: block;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a img {
    padding: 4px;
    height: 160px;
    object-fit: contain;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product:not(:first-child)::before {
    content: "+";
    top: 38px;
    left: -5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    position: absolute;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header {
    margin: 1rem 0 0;
    text-align: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    font-size: 16px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse {
    padding: 1rem;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p {
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p strong {
    font-weight: 400;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p:first-child {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice {
    border-width: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p strong {
    font-weight: 300;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p small {
    font-size: 16px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart {
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    position: fixed;
    padding: 1rem 1.875rem;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1019607843);
    transition: transform 0.3s ease;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-up {
    transform: translateY(0);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-down {
    transform: translateY(100%);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart {
    display: flex;
    border-width: 0;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-title {
    width: 100%;
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price {
    width: 180px;
    font-size: 14px;
    font-weight: 400;
    margin-right: 1rem;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price .price {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price .price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations {
    width: auto;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr {
    display: flex;
    flex-direction: row;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-description {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct-Support {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-Support .container-fluid .row .h4 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card {
    padding: 1rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-3 {
    padding: 1rem;
    text-align: center;
    border-radius: 0.375rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p:last-child {
    font-size: 20px;
    font-weight: 300;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover {
    background-color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-3 {
    text-align: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p:last-child {
    font-size: 20px;
    font-weight: 300;
  }
  .SMP-SingleProduct-SimpledBanner {
    height: 500px;
    display: flex;
    align-items: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/products/who-is-simpled-blue.webp");
  }
  .SMP-SingleProduct-SimpledBanner .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-SimpledBanner .container .row .col-md-6 {
    padding: 8rem;
  }
  .SMP-SingleProduct-SimpledBanner .container .row .col-md-6 p {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-UserBanner .container-fluid {
    position: relative;
  }
  .SMP-SingleProduct-UserBanner .container-fluid h4 {
    top: 5rem;
    width: 100%;
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    position: absolute;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row .col-6 img {
    height: 560px;
    object-fit: cover;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center {
    width: 100%;
    bottom: 1rem;
    position: absolute;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2 p {
    display: flex;
    padding: 1rem;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    position: relative;
    flex-direction: column;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2 img {
    border-radius: 10px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Question p {
    background: rgba(0, 0, 0, 0.8549019608);
    border-radius: 16px 16px 0px 16px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Question p::after {
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    bottom: -15px;
    border-top: solid 20px #09090a;
    border-left: solid 20px transparent;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer {
    padding-top: 8rem;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer p {
    color: #494948;
    background: rgba(255, 255, 255, 0.8549019608);
    border-radius: 16px 16px 16px 0px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer p::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    bottom: -20px;
    border-top: solid 20px rgba(255, 255, 255, 0.8549019608);
    border-right: solid 20px transparent;
  }
  .SMP-SingleProduct-Intro-Default {
    height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-image: url("../images/products/product-intro-1.webp");
  }
  .SMP-SingleProduct-Intro-Default .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 {
    padding: 8rem;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 p:first-child {
    font-size: 28px;
    color: #aa886a;
  }
  .SMP-SingleProduct-Intro {
    height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
  }
  .SMP-SingleProduct-Intro .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 h2,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h3,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h4,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h5,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h6 {
    color: #494948;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h2,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h3,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h4,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h5,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h6 {
    font-weight: 300;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Banner a {
    width: 100%;
    display: block;
  }
  .SMP-SingleProduct-Banner a img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
  }
  .SMP-SingleProduct-Features {
    padding: 4rem 0 2rem;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Features .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 {
    padding: 2rem;
    align-items: center;
    justify-content: flex-start;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 img {
    width: 110px;
    height: 90px;
    margin-bottom: 2rem;
    object-fit: contain;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 span {
    width: 70%;
    text-align: center;
  }
  .SMP-SingleProduct-Structure {
    height: 550px;
    display: flex;
    padding: 4rem 2rem;
    align-items: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:first-child {
    background-color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) {
    display: flex;
    padding: 0.5rem 4rem;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span {
    margin: 0.5rem 0;
    display: block;
    font-size: 28px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:first-child {
    color: #AA886A;
    font-size: 30px;
    font-weight: 300;
    background: linear-gradient(to top, #d6b279 0%, #8b590a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for non-webkit browsers */
    display: inline-block;
    /* Ensures it works as a text span */
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(2) {
    color: #000000;
    font-weight: 300;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(3) {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-Saving {
    padding: 4rem;
    background-color: #494948;
  }
  .SMP-SingleProduct-Saving .container-fluid .row {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row span {
    display: block;
    font-size: 25px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row .SMP-BTN {
    width: auto;
    margin: 2rem 0;
    font-size: 16px;
    line-height: 32px;
    border-radius: 50px;
  }
  .SMP-SingleProduct-Saving .container-fluid .row p {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
  }
  .SMP-SingleProduct-App {
    padding: 2rem 0 0;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-App .container {
    position: relative;
  }
  .SMP-SingleProduct-App .container .h4 {
    top: 1rem;
    width: 100%;
    font-size: 36px;
    font-weight: 300;
    position: absolute;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-App .container .row .col-7 {
    padding: 7rem 0 2rem;
  }
  .SMP-SingleProduct-App .container .row .col-3 {
    top: 0;
    left: 0;
    position: absolute;
  }
  .SMP-SingleProduct-App .container .row .col-2 {
    top: 0;
    right: 4rem;
    position: absolute;
  }
  .SMP-SingleProduct-Feature-Access {
    background-color: #F1F1F1;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Image img {
    height: 100%;
    object-fit: contain;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features {
    padding: 5rem 0;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 {
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 img {
    height: 40px;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 p {
    display: flex;
    font-size: 14px;
    margin: 1rem 0 0;
    min-height: 50px;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 20px;
    text-align: center;
    color: #494948;
    align-items: center;
  }
  .SMP-SingleProduct-Delivery {
    padding: 2rem 0;
    background-color: #494948;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 img {
    margin-bottom: 1rem;
    filter: invert(1);
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
    color: #FFFFFF;
    text-align: center;
  }
  .SMP-SingleProduct-Technology {
    padding: 4rem 0;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 {
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 p {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 img {
    width: 120px;
    height: 80px;
    object-fit: contain;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(2)::after, .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(3)::after {
    top: 0;
    width: 2px;
    right: -1px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: #ECECEC;
  }
  .SMP-SingleProduct-PressKit {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-PressKit .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-PressKit .container .row h2 {
    font-size: 36px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-FAQ {
    padding: 5rem 0;
  }
  .SMP-SingleProduct-FAQ .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-FAQ .container .row .h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-Reviews {
    padding: 5rem 0 0;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Reviews .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-Reviews .container .row .h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating {
    display: flex;
    margin: 0 0 2rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating .star-rating {
    float: unset;
    font-size: 25px;
    padding: 1rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating p {
    font-size: 12px;
    margin-bottom: 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews {
    padding: 0;
    width: 100%;
    list-style: none;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review {
    padding: 2rem 0;
    border-bottom: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta {
    display: flex;
    justify-content: space-between;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-author {
    font-size: 16px;
    font-weight: 300;
    color: #2C2C2C;
    text-transform: capitalize;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-date {
    font-size: 12px;
    font-weight: 200;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-rating {
    display: flex;
    font-size: 14px;
    margin: 0.5rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    font-weight: 300;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination {
    gap: 5rem;
    width: 100%;
    display: flex;
    padding: 2rem 0 0;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination li,
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination a {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-GoogleAlexa {
    height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/products/app/alexa-and-google.jpg");
  }
  .SMP-SingleProduct-GoogleAlexa .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-GoogleAlexa .container .row .col-md-4 p {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Frequently-Products {
    padding: 4rem 0;
    position: relative;
    background-color: #FFFFFF;
  }
  .SMP-Frequently-Products .container {
    max-width: 1550px;
  }
  .SMP-Frequently-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Frequently-Products .container .row .col-12 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Frequently-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid {
    padding: 0;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 400px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Related-Products {
    padding: 4rem 0;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container {
    max-width: 1550px;
  }
  .SMP-Related-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Related-Products .container .row .col-12 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Related-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid {
    padding: 0;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 400px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-SingleProduct {
    padding: 6rem 0 0;
  }
  .SMP-SingleProduct .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb {
    font-size: 12px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Breadcrumb .product-breadcrumb #primary #main .woocommerce-breadcrumb a :not(:first-child) {
    margin: 0 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail {
    padding: 0 0 2rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 {
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail {
    width: 70px;
    height: 100vh;
    padding-right: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 {
    top: 8rem;
    position: sticky;
    position: -webkit-sticky;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery {
    height: 100%;
    overflow: scroll;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery img,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Thumbnail .col-12 .custom-media-gallery video {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery-Mobile {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery {
    width: 100%;
    height: auto;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery img,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-8 .SMP-SP-Detail-Gallery video {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top {
    top: 7rem;
    z-index: 1;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex {
    margin: 0 0 1rem;
    padding: 1rem 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price {
    font-size: 20px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price {
    font-size: 20px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price .price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating {
    display: flex;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating .woocommerce-product-rating {
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .product-rating p {
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control {
    width: 50px;
    flex: unset;
    padding: 0.5rem;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart del,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .cart ins {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart {
    border-width: 0;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr {
    display: flex;
    flex-direction: column;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .variations_form.cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item {
    border-width: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header {
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 1rem 0;
    font-weight: 500;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #494948;
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body {
    max-height: unset;
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    overflow: hidden;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body h3 {
    font-size: 18px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body p, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body ul, .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body li {
    font-size: 14px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews {
    padding: 0;
    list-style: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating {
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-rating .star-rating {
    float: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:first-child) {
    padding: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .woocommerce-reviews .woocommerce-review:not(:last-child) {
    padding: 0 0 1rem;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a {
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    padding: 0.75rem 2rem;
    color: #494948;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body a:hover {
    color: #FFFFFF;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .SMP-TypingAnimation {
    display: flex;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .SMP-TypingAnimation #word {
    margin-left: 0.25rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row {
    padding: 2rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .h4 {
    font-size: 22px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 .h5 {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .accordion .accordion-item .accordion-collapse .accordion-body .row .col-4 .h5 strong {
    font-weight: 400;
    min-height: 40px;
    line-height: 28px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle h2 {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
    margin: 1rem 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row {
    padding: 1.5rem 1rem;
    flex-direction: row;
    background-color: #F0F0F0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product {
    width: 33.33333%;
    position: relative;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a {
    display: block;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product a img {
    padding: 4px;
    height: 160px;
    object-fit: contain;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .bundle-product:not(:first-child)::before {
    content: "+";
    top: 38px;
    left: -5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    position: absolute;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header {
    margin: 1rem 0 0;
    text-align: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    font-size: 16px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button::after {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse {
    padding: 1rem;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p {
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p strong {
    font-weight: 400;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row p:first-child {
    margin-bottom: 0.5rem;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice {
    border-width: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p strong {
    font-weight: 300;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .row.SMP-TotalPrice p small {
    font-size: 16px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail .row .col-md-4 .sticky-top .SMP-SingleProduct-Bundle .row .accordion .accordion-item .accordion-collapse .accordion-body .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart {
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    position: fixed;
    padding: 1rem 1.875rem;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1019607843);
    transition: transform 0.3s ease;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-up {
    transform: translateY(0);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart.swipe-down {
    transform: translateY(100%);
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid {
    padding: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart {
    display: flex;
    border-width: 0;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-title {
    width: 100%;
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price {
    width: 180px;
    font-size: 14px;
    font-weight: 400;
    margin-right: 1rem;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price .price {
    font-size: 14px;
    font-weight: 400;
    color: #494948;
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .product-price .price ins {
    text-decoration: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations {
    width: auto;
    margin-bottom: 0;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr {
    display: flex;
    flex-direction: row;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.label label .SMP-SelectedAttribute {
    font-weight: 500;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .radio-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option .color-swatch span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:target, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:checked, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-visible, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option:focus-within {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations tbody tr td.value .color-options label.color-option input[type=radio]:checked + .color-swatch {
    border: 1px solid #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .col-md-7 .variations .hidden-variation {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-description {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-price,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .woocommerce-variation.single_variation .woocommerce-variation-availability {
    display: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex {
    border-width: 0;
    flex-flow: row nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity {
    height: 50px;
    width: 215px;
    display: flex;
    flex-wrap: nowrap;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control {
    width: 50px;
    flex: unset;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
    border: 1px solid #ECECEC;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:hover,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:hover {
    background-color: transparent;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .btn:focus,
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .form-control:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .minus {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty {
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
    /* Hide up/down arrows on hover in Chrome, Safari, Edge, Opera */
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:hover::-webkit-inner-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-outer-spin-button, .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .qty:focus::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .quantity .plus {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    display: flex;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #494948;
  }
  .SMP-SingleProduct .container-fluid .SMP-SP-Detail #swipe-up-cart .container-fluid .cart .single_variation_wrap .single_variation_button .d-flex .single_add_to_cart_button:hover {
    background-color: #aa886a;
  }
  .SMP-SingleProduct-Support {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-Support .container-fluid .row .h4 {
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card {
    padding: 1rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-3 {
    padding: 1rem;
    text-align: center;
    border-radius: 0.375rem;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card .row .col-md-9 p:last-child {
    font-size: 20px;
    font-weight: 300;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover {
    background-color: #494948;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-3 {
    text-align: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Support .container-fluid .row .col-3 .card:hover .row .col-md-9 p:last-child {
    font-size: 20px;
    font-weight: 300;
  }
  .SMP-SingleProduct-SimpledBanner {
    height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/products/who-is-simpled-blue.webp");
  }
  .SMP-SingleProduct-SimpledBanner .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-SimpledBanner .container .row .col-md-6 {
    padding: 8rem;
  }
  .SMP-SingleProduct-SimpledBanner .container .row .col-md-6 p {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-UserBanner .container-fluid {
    position: relative;
  }
  .SMP-SingleProduct-UserBanner .container-fluid h4 {
    top: 4rem;
    width: 100%;
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    position: absolute;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row .col-6 img {
    height: 560px;
    object-fit: cover;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center {
    width: 100%;
    bottom: 1rem;
    position: absolute;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2 p {
    display: flex;
    padding: 1rem;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    position: relative;
    flex-direction: column;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2 img {
    border-radius: 10px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Question p {
    background: rgba(0, 0, 0, 0.8549019608);
    border-radius: 16px 16px 0px 16px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Question p::after {
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    bottom: -15px;
    border-top: solid 20px #09090a;
    border-left: solid 20px transparent;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer {
    padding-top: 8rem;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer p {
    color: #494948;
    background: rgba(255, 255, 255, 0.8549019608);
    border-radius: 16px 16px 16px 0px;
  }
  .SMP-SingleProduct-UserBanner .container-fluid .row.justify-content-center .col-2.User-Answer p::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    bottom: -20px;
    border-top: solid 20px rgba(255, 255, 255, 0.8549019608);
    border-right: solid 20px transparent;
  }
  .SMP-SingleProduct-Intro-Default {
    height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-image: url("../images/products/product-intro-1.webp");
  }
  .SMP-SingleProduct-Intro-Default .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 {
    padding: 8rem;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Intro-Default .container .row .col-md-6 p:first-child {
    font-size: 28px;
    color: #aa886a;
  }
  .SMP-SingleProduct-Intro {
    height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
  }
  .SMP-SingleProduct-Intro .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 h2,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h3,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h4,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h5,
  .SMP-SingleProduct-Intro .container .row .col-md-6 h6 {
    color: #494948;
  }
  .SMP-SingleProduct-Intro .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row {
    align-items: center;
    justify-content: end;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 {
    padding: 2rem;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h2,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h3,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h4,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h5,
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 h6 {
    font-weight: 300;
    color: #FFFFFF;
  }
  .SMP-SingleProduct-Intro.Dark-Mode .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 1rem;
  }
  .SMP-SingleProduct-Banner a {
    width: 100%;
    display: block;
  }
  .SMP-SingleProduct-Banner a img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
  }
  .SMP-SingleProduct-Features {
    padding: 4rem 0 2rem;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Features .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 {
    padding: 2rem;
    align-items: center;
    justify-content: flex-start;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 img {
    width: 110px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 2rem;
  }
  .SMP-SingleProduct-Features .container .row .col-md-3 span {
    width: 70%;
    text-align: center;
  }
  .SMP-SingleProduct-Structure {
    height: 550px;
    display: flex;
    padding: 4rem 2rem;
    align-items: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Structure .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent .container-fluid .row .col-md-6:first-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 {
    padding: 0rem 2rem;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6 img {
    width: 100%;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child h3 {
    font-size: 35px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-AditionalContent-2 .container-fluid .row .col-md-6:last-child .description {
    font-size: 16px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:first-child {
    background-color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) {
    display: flex;
    padding: 0.5rem 4rem;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span {
    margin: 0.5rem 0;
    display: block;
    font-size: 28px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:first-child {
    color: #AA886A;
    font-size: 30px;
    font-weight: 300;
    background: linear-gradient(to top, #d6b279 0%, #8b590a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for non-webkit browsers */
    display: inline-block;
    /* Ensures it works as a text span */
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(2) {
    color: #000000;
    font-weight: 300;
  }
  .SMP-SingleProduct-InstallationCost .container-fluid .row .col-md-6:nth-child(2) span:nth-child(3) {
    font-size: 22px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SingleProduct-Saving {
    padding: 4rem;
    background-color: #494948;
  }
  .SMP-SingleProduct-Saving .container-fluid .row {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row span {
    display: block;
    font-size: 25px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
  }
  .SMP-SingleProduct-Saving .container-fluid .row .SMP-BTN {
    width: auto;
    margin: 2rem 0;
    font-size: 16px;
    line-height: 32px;
    border-radius: 50px;
  }
  .SMP-SingleProduct-Saving .container-fluid .row p {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
  }
  .SMP-SingleProduct-App {
    padding: 2rem 0 0;
    background-color: #FFFFFF;
  }
  .SMP-SingleProduct-App .container {
    position: relative;
  }
  .SMP-SingleProduct-App .container .h4 {
    top: 1rem;
    width: 100%;
    font-size: 36px;
    font-weight: 300;
    position: absolute;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-App .container .row .col-7 {
    padding: 7rem 0 2rem;
  }
  .SMP-SingleProduct-App .container .row .col-3 {
    top: 0;
    left: 0;
    position: absolute;
  }
  .SMP-SingleProduct-App .container .row .col-2 {
    top: 0;
    right: 4rem;
    position: absolute;
  }
  .SMP-SingleProduct-Feature-Access {
    background-color: #F1F1F1;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Image img {
    height: 100%;
    object-fit: contain;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features {
    padding: 5rem 0;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 {
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 img {
    height: 40px;
  }
  .SMP-SingleProduct-Feature-Access .container .row .col-md-6.SMP-SingleProduct-Feature-Access-Features .row .col-md-3 p {
    display: flex;
    font-size: 14px;
    margin: 1rem 0 0;
    min-height: 50px;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 20px;
    text-align: center;
    color: #494948;
    align-items: center;
  }
  .SMP-SingleProduct-Delivery {
    padding: 2rem 0;
    background-color: #494948;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 img {
    margin-bottom: 1rem;
    filter: invert(1);
  }
  .SMP-SingleProduct-Delivery .container .row .col-md-3 p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
    color: #FFFFFF;
    text-align: center;
  }
  .SMP-SingleProduct-Technology {
    padding: 4rem 0;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 {
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 p {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2 img {
    width: 120px;
    height: 80px;
    object-fit: contain;
  }
  .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(2)::after, .SMP-SingleProduct-Technology .container .row .col-md-2:nth-child(3)::after {
    top: 0;
    width: 2px;
    right: -1px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: #ECECEC;
  }
  .SMP-SingleProduct-PressKit {
    padding: 2rem 0;
  }
  .SMP-SingleProduct-PressKit .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-PressKit .container .row h2 {
    font-size: 36px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-PressKit .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-PressKit .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-FAQ {
    padding: 5rem 0;
  }
  .SMP-SingleProduct-FAQ .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-FAQ .container .row .h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion {
    width: 100%;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
    letter-spacing: 0.5px;
    background-color: transparent;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
  }
  .SMP-SingleProduct-FAQ .container .row .col-md-7 .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-FAQ .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-Reviews {
    padding: 5rem 0 0;
    background-color: #f9f9f9;
  }
  .SMP-SingleProduct-Reviews .container .row {
    align-items: center;
  }
  .SMP-SingleProduct-Reviews .container .row .h2 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #F3F3F3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating {
    display: flex;
    margin: 0 0 2rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating .star-rating {
    float: unset;
    font-size: 25px;
    padding: 1rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .average-rating p {
    font-size: 12px;
    margin-bottom: 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews {
    padding: 0;
    width: 100%;
    list-style: none;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review {
    padding: 2rem 0;
    border-bottom: 1px solid #E3E3E3;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta {
    display: flex;
    justify-content: space-between;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-author {
    font-size: 16px;
    font-weight: 300;
    color: #2C2C2C;
    text-transform: capitalize;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-meta .review-date {
    font-size: 12px;
    font-weight: 200;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-rating {
    display: flex;
    font-size: 14px;
    margin: 0.5rem 0;
    color: #656468;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews .woocommerce-review .review-content p {
    font-size: 14px;
    font-weight: 300;
    color: #2C2C2C;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination {
    gap: 5rem;
    width: 100%;
    display: flex;
    padding: 2rem 0 0;
    justify-content: center;
  }
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination li,
  .SMP-SingleProduct-Reviews .container .row .col-md-7 .woocommerce-reviews-pagination a {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SingleProduct-Reviews .container .row .SMP-BTN {
    width: 185px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
  }
  .SMP-SingleProduct-GoogleAlexa {
    height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/products/app/alexa-and-google.jpg");
  }
  .SMP-SingleProduct-GoogleAlexa .container .row {
    justify-content: center;
  }
  .SMP-SingleProduct-GoogleAlexa .container .row .col-md-4 p {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0;
    color: #494948;
  }
  .SMP-Frequently-Products {
    padding: 4rem 0;
    position: relative;
    background-color: #FFFFFF;
  }
  .SMP-Frequently-Products .container {
    max-width: 1550px;
  }
  .SMP-Frequently-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Frequently-Products .container .row .col-12 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Frequently-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid {
    padding: 0;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 400px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Frequently-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
  .SMP-Related-Products {
    padding: 4rem 0;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container {
    max-width: 1550px;
  }
  .SMP-Related-Products .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Related-Products .container .row .col-12 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Related-Products .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid {
    padding: 0;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 400px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 18px;
    height: 18px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Related-Products .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
@media (min-width: 992px) {
  #swipe-up-cart .color-options {
    margin-left: 45px;
    display: flex;
    gap: 10px;
  }
  div#swipe-up-cart .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 37px;
  }
}
.SMP-SB article .container-fluid .col-md-7 a {
  font-weight: bold !important;
  color: #9e650c !important;
}
.SMP-SB article .container-fluid .col-md-7 a:hover {
  color: #d3ad6e !important;
}

a.buy-now-button {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 196px;
  height: 60px;
  position: relative;
}
a.buy-now-button span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 48px;
  color: #fff;
  border-radius: 30px;
  background: #e3cba3;
  background: linear-gradient(to bottom, #e3cba3 0%, #d3ad6e 13%, #9e650c 82%);
}
a.buy-now-button span img {
  margin-right: 15px;
}
a.buy-now-button::before, a.buy-now-button::after {
  display: block;
  content: "";
  position: absolute;
  height: 100%;
  top: -1px;
}
a.buy-now-button::before {
  right: 0;
  width: 45%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-left: none;
  border-radius: 0 30px 30px 0;
  transition: all linear 0.1s 0.2s;
}
a.buy-now-button::after {
  left: 0;
  width: 55%;
  border: 1px solid #dab67b;
  border-right: none;
  transform-origin: left bottom;
  transform: perspective(253px) rotateX(-27deg);
  transition: width cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.5s, border-right 0.5s 0.5s;
  border-radius: 30px 0 0 30px;
}
a.buy-now-button:hover::after {
  width: 89%;
  transform: perspective(250px) rotateX(0);
}
a.buy-now-button:hover::before {
  border: 1px solid #dab67b;
  border-left: none;
}

.read-more-article {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 20px 0;
  border: 0;
  background: white;
}
.read-more-article .read-more-button {
  width: 100%;
  height: 30px;
  color: #fff !important;
  text-align: center;
  border-radius: 30px;
  margin: 0 !important;
  background: #e3cba3;
  background: linear-gradient(to bottom, #e3cba3 0%, #d3ad6e 13%, #09090a 82%);
}
.read-more-article .article-title {
  width: 100%;
  height: 70px;
  border-radius: 15px;
  position: relative;
  margin: 1px 0 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.read-more-article .article-title::before, .read-more-article .article-title::after {
  display: block;
  content: "";
  position: absolute;
  height: 100%;
  top: 1px;
}
.read-more-article .article-title::before {
  right: 0;
  width: 45%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-left: none;
  border-radius: 0 15px 15px 0;
  transition: all linear 0.1s 0.2s;
}
.read-more-article .article-title::after {
  left: 0;
  width: 55%;
  border: 1px solid #dab67b;
  border-right: none;
  transform-origin: left bottom;
  transform: perspective(264px) rotateX(-30deg);
  transition: width cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.5s, border-right 0.5s 0.5s;
  border-radius: 15px 0 0 15px;
}
.read-more-article .article-title:hover::after {
  width: 89%;
  transform: perspective(250px) rotateX(0);
}
.read-more-article .article-title:hover::before {
  border: 1px solid #dab67b;
  border-left: none;
}

/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-SB article header {
    padding: 10rem 1.875rem 2rem;
    background: rgb(170, 173, 0);
    background: -moz-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: -webkit-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#aaad00",endColorstr="#ffffff",GradientType=1);
  }
  .SMP-SB article header .SMP-SB-Header-Content {
    padding: 0rem 0rem 2rem;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 300;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li a {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li.active {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content a.SMP-SB-Category {
    display: block;
    padding: 1rem 0;
    font-size: 13px;
    font-weight: 200;
    color: #FFFFFF;
    text-transform: uppercase;
  }
  .SMP-SB article header .SMP-SB-Header-Content h1 {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
  }
  .SMP-SB article header figure img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.031372549);
  }
  .SMP-SB article .container-fluid {
    padding: 2rem;
  }
  .SMP-SB article .container-fluid .col-md-7 iframe {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 h1, .SMP-SB article .container-fluid .col-md-7 h2, .SMP-SB article .container-fluid .col-md-7 h3, .SMP-SB article .container-fluid .col-md-7 h4, .SMP-SB article .container-fluid .col-md-7 h5, .SMP-SB article .container-fluid .col-md-7 h6, .SMP-SB article .container-fluid .col-md-7 a {
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 h2 {
    font-size: 36px;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 p, .SMP-SB article .container-fluid .col-md-7 li {
    font-size: 18px;
    color: rgba(49, 49, 48, 0.7019607843);
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.5px;
    text-align: justify;
  }
  .SMP-SB article .container-fluid .col-md-7 a {
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: capitalize;
  }
  .SMP-SB article .container-fluid .col-md-7 img {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments {
    padding: 1rem 0 0;
    border-top: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h2 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h3 {
    font-size: 18px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments p {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment {
    display: flex;
    flex-direction: column;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url label {
    width: 100px;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url input {
    width: 50%;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit {
    color: #FFFFFF;
    padding: 0.5rem 4rem;
    border-radius: 20px;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit:hover {
    color: #494948;
    background-color: #FFFFFF;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid aside .search-form {
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: #F6F6F6;
  }
  .SMP-SB article .container-fluid aside .search-form form {
    display: flex;
    padding: 0.5rem;
    overflow: hidden;
    border-radius: 25px;
    background-color: #FFFFFF;
    justify-content: space-between;
  }
  .SMP-SB article .container-fluid aside .search-form form label {
    width: 100%;
  }
  .SMP-SB article .container-fluid aside .search-form form label input {
    width: 100%;
    border-width: 0;
    padding: 0.5rem 1rem;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form form label input:focus, .SMP-SB article .container-fluid aside .search-form form label input:focus-visible {
    box-shadow: unset;
    border-width: 0;
  }
  .SMP-SB article .container-fluid aside .search-form form button {
    border-width: 0;
    padding: 0.5rem 2rem;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product {
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card {
    display: block;
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card a img {
    width: 100%;
    height: 120px;
    padding: 0.5rem;
    object-fit: contain;
    background-color: #FFFFFF;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 {
    margin: 0.5rem 0;
    font-size: 14px;
    font-weight: 300;
    min-height: 60px;
    line-height: 20px;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 span {
    font-weight: 400;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card button {
    width: 100%;
    padding: 0.5rem;
    font-size: 12px;
    text-transform: uppercase;
  }
  .SMP-SB article .container-fluid aside .SMP-LatestPosts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts {
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SB-RelatedPosts .container {
    padding: 2rem;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-SB-RelatedPosts .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card a img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories a {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 0.5rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body h3 {
    font-size: 16px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 0.5rem;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 0.5rem;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-SB article header {
    padding: 10rem 1.875rem 2rem;
    background: rgb(170, 173, 0);
    background: -moz-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: -webkit-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#aaad00",endColorstr="#ffffff",GradientType=1);
  }
  .SMP-SB article header .SMP-SB-Header-Content {
    padding: 0rem 4rem 2rem;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 300;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li a {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li.active {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content a.SMP-SB-Category {
    display: block;
    padding: 1rem 0;
    font-size: 13px;
    font-weight: 200;
    color: #FFFFFF;
    text-transform: uppercase;
  }
  .SMP-SB article header .SMP-SB-Header-Content h1 {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
  }
  .SMP-SB article header figure img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.031372549);
  }
  .SMP-SB article .container-fluid {
    padding: 2rem;
  }
  .SMP-SB article .container-fluid .col-md-7 iframe {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 h1, .SMP-SB article .container-fluid .col-md-7 h2, .SMP-SB article .container-fluid .col-md-7 h3, .SMP-SB article .container-fluid .col-md-7 h4, .SMP-SB article .container-fluid .col-md-7 h5, .SMP-SB article .container-fluid .col-md-7 h6, .SMP-SB article .container-fluid .col-md-7 a {
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 h2 {
    font-size: 36px;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 p, .SMP-SB article .container-fluid .col-md-7 li {
    font-size: 18px;
    color: rgba(49, 49, 48, 0.7019607843);
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.5px;
    text-align: justify;
  }
  .SMP-SB article .container-fluid .col-md-7 a {
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: capitalize;
  }
  .SMP-SB article .container-fluid .col-md-7 img {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments {
    padding: 1rem 0 0;
    border-top: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h2 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h3 {
    font-size: 18px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments p {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment {
    display: flex;
    flex-direction: column;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url label {
    width: 100px;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url input {
    width: 50%;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit {
    color: #FFFFFF;
    padding: 0.5rem 4rem;
    border-radius: 20px;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit:hover {
    color: #494948;
    background-color: #FFFFFF;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid aside .search-form {
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: #F6F6F6;
  }
  .SMP-SB article .container-fluid aside .search-form form {
    display: flex;
    padding: 0.5rem;
    overflow: hidden;
    border-radius: 25px;
    background-color: #FFFFFF;
    justify-content: space-between;
  }
  .SMP-SB article .container-fluid aside .search-form form label {
    width: 100%;
  }
  .SMP-SB article .container-fluid aside .search-form form label input {
    width: 100%;
    border-width: 0;
    padding: 0.5rem 1rem;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form form label input:focus, .SMP-SB article .container-fluid aside .search-form form label input:focus-visible {
    box-shadow: unset;
    border-width: 0;
  }
  .SMP-SB article .container-fluid aside .search-form form button {
    border-width: 0;
    padding: 0.5rem 2rem;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product {
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card {
    display: block;
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card a img {
    width: 100%;
    height: 250px;
    padding: 0.5rem;
    object-fit: contain;
    background-color: #FFFFFF;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 {
    margin: 0.5rem 0;
    font-size: 14px;
    font-weight: 300;
    min-height: 60px;
    line-height: 20px;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 span {
    font-weight: 400;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card button {
    width: 100%;
    padding: 0.5rem;
    font-size: 12px;
    text-transform: uppercase;
  }
  .SMP-SB article .container-fluid aside .SMP-LatestPosts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts {
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SB-RelatedPosts .container {
    padding: 2rem;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-SB-RelatedPosts .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card a img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories a {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 0.5rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body h3 {
    font-size: 16px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 0.5rem;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 0.5rem;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-SB article header {
    padding: 12rem 1.875rem 2rem;
    background: rgb(170, 173, 0);
    background: -moz-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: -webkit-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#aaad00",endColorstr="#ffffff",GradientType=1);
  }
  .SMP-SB article header .SMP-SB-Header-Content {
    padding: 0rem 4rem 5rem;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 300;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li a {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li.active {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content a.SMP-SB-Category {
    display: block;
    padding: 1rem 0;
    font-size: 13px;
    font-weight: 200;
    color: #FFFFFF;
    text-transform: uppercase;
  }
  .SMP-SB article header .SMP-SB-Header-Content h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
  }
  .SMP-SB article header figure img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.031372549);
  }
  .SMP-SB article .container-fluid {
    padding: 2rem;
  }
  .SMP-SB article .container-fluid .col-md-7 iframe {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 h1, .SMP-SB article .container-fluid .col-md-7 h2, .SMP-SB article .container-fluid .col-md-7 h3, .SMP-SB article .container-fluid .col-md-7 h4, .SMP-SB article .container-fluid .col-md-7 h5, .SMP-SB article .container-fluid .col-md-7 h6, .SMP-SB article .container-fluid .col-md-7 a {
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 h2 {
    font-size: 36px;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 p, .SMP-SB article .container-fluid .col-md-7 li {
    font-size: 18px;
    color: rgba(49, 49, 48, 0.7019607843);
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.5px;
    text-align: justify;
  }
  .SMP-SB article .container-fluid .col-md-7 a {
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: capitalize;
  }
  .SMP-SB article .container-fluid .col-md-7 img {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments {
    padding: 1rem 0 0;
    border-top: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h2 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h3 {
    font-size: 18px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments p {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment {
    display: flex;
    flex-direction: column;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url label {
    width: 100px;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url input {
    width: 50%;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit {
    color: #FFFFFF;
    padding: 0.5rem 4rem;
    border-radius: 20px;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit:hover {
    color: #494948;
    background-color: #FFFFFF;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid aside .search-form {
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: #F6F6F6;
  }
  .SMP-SB article .container-fluid aside .search-form form {
    display: flex;
    padding: 0.5rem;
    overflow: hidden;
    border-radius: 25px;
    background-color: #FFFFFF;
    justify-content: space-between;
  }
  .SMP-SB article .container-fluid aside .search-form form label {
    width: 100%;
  }
  .SMP-SB article .container-fluid aside .search-form form label input {
    width: 100%;
    border-width: 0;
    padding: 0.5rem 1rem;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form form label input:focus, .SMP-SB article .container-fluid aside .search-form form label input:focus-visible {
    box-shadow: unset;
    border-width: 0;
  }
  .SMP-SB article .container-fluid aside .search-form form button {
    border-width: 0;
    padding: 0.5rem 2rem;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product {
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card {
    display: block;
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card a img {
    width: 100%;
    height: 120px;
    padding: 0.5rem;
    object-fit: contain;
    background-color: #FFFFFF;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 {
    margin: 0.5rem 0;
    font-size: 10px;
    font-weight: 300;
    min-height: 60px;
    line-height: 20px;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 span {
    font-weight: 400;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card button {
    width: 100%;
    padding: 0.5rem;
    font-size: 12px;
    text-transform: uppercase;
  }
  .SMP-SB article .container-fluid aside .SMP-LatestPosts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts {
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SB-RelatedPosts .container {
    padding: 2rem;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-SB-RelatedPosts .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 0.5rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body h3 {
    font-size: 16px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 0.5rem;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body p {
    font-size: 12px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 0.5rem;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-SB article header {
    padding: 12rem 1.875rem 2rem;
    background: rgb(170, 173, 0);
    background: -moz-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: -webkit-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#aaad00",endColorstr="#ffffff",GradientType=1);
  }
  .SMP-SB article header .SMP-SB-Header-Content {
    padding: 0rem 4rem 5rem;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 300;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li a {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li.active {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content a.SMP-SB-Category {
    display: block;
    padding: 1rem 0;
    font-size: 13px;
    font-weight: 200;
    color: #FFFFFF;
    text-transform: uppercase;
  }
  .SMP-SB article header .SMP-SB-Header-Content h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
  }
  .SMP-SB article header figure img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.031372549);
  }
  .SMP-SB article .container-fluid {
    padding: 2rem;
  }
  .SMP-SB article .container-fluid .col-md-7 iframe {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 h1, .SMP-SB article .container-fluid .col-md-7 h2, .SMP-SB article .container-fluid .col-md-7 h3, .SMP-SB article .container-fluid .col-md-7 h4, .SMP-SB article .container-fluid .col-md-7 h5, .SMP-SB article .container-fluid .col-md-7 h6, .SMP-SB article .container-fluid .col-md-7 a {
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 h2 {
    font-size: 36px;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 p, .SMP-SB article .container-fluid .col-md-7 li {
    font-size: 18px;
    color: rgba(49, 49, 48, 0.7019607843);
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.5px;
    text-align: justify;
  }
  .SMP-SB article .container-fluid .col-md-7 a {
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: capitalize;
  }
  .SMP-SB article .container-fluid .col-md-7 img {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments {
    padding: 1rem 0 0;
    border-top: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h2 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h3 {
    font-size: 18px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments p {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment {
    display: flex;
    flex-direction: column;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url label {
    width: 100px;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url input {
    width: 50%;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit {
    color: #FFFFFF;
    padding: 0.5rem 4rem;
    border-radius: 20px;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit:hover {
    color: #494948;
    background-color: #FFFFFF;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid aside .search-form {
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: #F6F6F6;
  }
  .SMP-SB article .container-fluid aside .search-form form {
    display: flex;
    padding: 0.5rem;
    overflow: hidden;
    border-radius: 25px;
    background-color: #FFFFFF;
    justify-content: space-between;
  }
  .SMP-SB article .container-fluid aside .search-form form label {
    width: 100%;
  }
  .SMP-SB article .container-fluid aside .search-form form label input {
    width: 100%;
    border-width: 0;
    padding: 0.5rem 1rem;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form form label input:focus, .SMP-SB article .container-fluid aside .search-form form label input:focus-visible {
    box-shadow: unset;
    border-width: 0;
  }
  .SMP-SB article .container-fluid aside .search-form form button {
    border-width: 0;
    padding: 0.5rem 2rem;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product {
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card {
    display: block;
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card a img {
    width: 100%;
    height: 120px;
    padding: 0.5rem;
    object-fit: contain;
    background-color: #FFFFFF;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 {
    margin: 0.5rem 0;
    font-size: 10px;
    font-weight: 300;
    min-height: 60px;
    line-height: 20px;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 span {
    font-weight: 400;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card button {
    width: 100%;
    padding: 0.5rem;
    font-size: 12px;
    text-transform: uppercase;
  }
  .SMP-SB article .container-fluid aside .SMP-LatestPosts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts {
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SB-RelatedPosts .container {
    padding: 2rem;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 h3 {
    font-size: 24px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-SB-RelatedPosts .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 0.5rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body h3 {
    font-size: 16px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 0.5rem;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body p {
    font-size: 12px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 0.5rem;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-SB article header {
    padding: 12rem 1.875rem 2rem;
    background: rgb(170, 173, 0);
    background: -moz-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: -webkit-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#aaad00",endColorstr="#ffffff",GradientType=1);
  }
  .SMP-SB article header .SMP-SB-Header-Content {
    padding: 0rem 4rem 5rem;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 300;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li a {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li.active {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content a.SMP-SB-Category {
    display: block;
    padding: 1rem 0;
    font-size: 13px;
    font-weight: 200;
    color: #FFFFFF;
    text-transform: uppercase;
  }
  .SMP-SB article header .SMP-SB-Header-Content h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
  }
  .SMP-SB article header figure img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.031372549);
  }
  .SMP-SB article .container-fluid {
    padding: 4rem;
  }
  .SMP-SB article .container-fluid .col-md-7 iframe {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 h1, .SMP-SB article .container-fluid .col-md-7 h2, .SMP-SB article .container-fluid .col-md-7 h3, .SMP-SB article .container-fluid .col-md-7 h4, .SMP-SB article .container-fluid .col-md-7 h5, .SMP-SB article .container-fluid .col-md-7 h6, .SMP-SB article .container-fluid .col-md-7 a {
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 h2 {
    font-size: 36px;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 p, .SMP-SB article .container-fluid .col-md-7 li {
    font-size: 18px;
    color: rgba(49, 49, 48, 0.7019607843);
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.5px;
    text-align: justify;
  }
  .SMP-SB article .container-fluid .col-md-7 a {
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: capitalize;
  }
  .SMP-SB article .container-fluid .col-md-7 img {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments {
    padding: 2rem 0 0;
    border-top: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h2 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h3 {
    font-size: 18px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments p {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment {
    display: flex;
    flex-direction: column;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url label {
    width: 100px;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url input {
    width: 50%;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit {
    color: #FFFFFF;
    padding: 0.5rem 4rem;
    border-radius: 20px;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit:hover {
    color: #494948;
    background-color: #FFFFFF;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid aside .search-form {
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: #F6F6F6;
  }
  .SMP-SB article .container-fluid aside .search-form form {
    display: flex;
    padding: 0.5rem;
    overflow: hidden;
    border-radius: 25px;
    background-color: #FFFFFF;
    justify-content: space-between;
  }
  .SMP-SB article .container-fluid aside .search-form form label {
    width: 100%;
  }
  .SMP-SB article .container-fluid aside .search-form form label input {
    width: 100%;
    border-width: 0;
    padding: 0.5rem 1rem;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form form label input:focus, .SMP-SB article .container-fluid aside .search-form form label input:focus-visible {
    box-shadow: unset;
    border-width: 0;
  }
  .SMP-SB article .container-fluid aside .search-form form button {
    border-width: 0;
    padding: 0.5rem 2rem;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product {
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card {
    display: block;
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card a img {
    width: 100%;
    height: 120px;
    padding: 0.5rem;
    object-fit: contain;
    background-color: #FFFFFF;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 {
    margin: 0.5rem 0;
    font-size: 10px;
    font-weight: 300;
    min-height: 50px;
    line-height: 20px;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 span {
    font-weight: 400;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card button {
    width: 100%;
    font-size: 13px;
    text-transform: uppercase;
  }
  .SMP-SB article .container-fluid aside .SMP-LatestPosts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts {
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SB-RelatedPosts .container {
    padding: 2rem 0;
    max-width: 1550px;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-SB-RelatedPosts .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card a img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body h3 {
    font-size: 24px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-next::after {
    display: none;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-prev::after {
    display: none;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* XX-Large devices (large desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-SB article header {
    padding: 12rem 1.875rem 2rem;
    background: rgb(170, 173, 0);
    background: -moz-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: -webkit-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#aaad00",endColorstr="#ffffff",GradientType=1);
  }
  .SMP-SB article header .SMP-SB-Header-Content {
    padding: 0rem 4rem 5rem;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 300;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li a {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li.active {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content a.SMP-SB-Category {
    display: block;
    padding: 1rem 0;
    font-size: 13px;
    font-weight: 200;
    color: #FFFFFF;
    text-transform: uppercase;
  }
  .SMP-SB article header .SMP-SB-Header-Content h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
  }
  .SMP-SB article header figure img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.031372549);
  }
  .SMP-SB article .container-fluid {
    padding: 4rem;
  }
  .SMP-SB article .container-fluid .col-md-7 iframe {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 h1, .SMP-SB article .container-fluid .col-md-7 h2, .SMP-SB article .container-fluid .col-md-7 h3, .SMP-SB article .container-fluid .col-md-7 h4, .SMP-SB article .container-fluid .col-md-7 h5, .SMP-SB article .container-fluid .col-md-7 h6, .SMP-SB article .container-fluid .col-md-7 a {
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 h2 {
    font-size: 36px;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 p, .SMP-SB article .container-fluid .col-md-7 li {
    font-size: 18px;
    color: rgba(49, 49, 48, 0.7019607843);
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.5px;
    text-align: justify;
  }
  .SMP-SB article .container-fluid .col-md-7 a {
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: capitalize;
  }
  .SMP-SB article .container-fluid .col-md-7 img {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments {
    padding: 2rem 0 0;
    border-top: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h2 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h3 {
    font-size: 18px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments p {
    font-size: 14px;
    font-weight: 300;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment {
    display: flex;
    flex-direction: column;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url label {
    width: 100px;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url input {
    width: 50%;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit {
    color: #FFFFFF;
    padding: 0.5rem 4rem;
    border-radius: 20px;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit:hover {
    color: #494948;
    background-color: #FFFFFF;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid aside .search-form {
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: #F6F6F6;
  }
  .SMP-SB article .container-fluid aside .search-form form {
    display: flex;
    padding: 0.5rem;
    overflow: hidden;
    border-radius: 25px;
    background-color: #FFFFFF;
    justify-content: space-between;
  }
  .SMP-SB article .container-fluid aside .search-form form label {
    width: 100%;
  }
  .SMP-SB article .container-fluid aside .search-form form label input {
    width: 100%;
    border-width: 0;
    padding: 0.5rem 1rem;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form form label input:focus, .SMP-SB article .container-fluid aside .search-form form label input:focus-visible {
    box-shadow: unset;
    border-width: 0;
  }
  .SMP-SB article .container-fluid aside .search-form form button {
    border-width: 0;
    padding: 0.5rem 2rem;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product {
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card {
    display: block;
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card a img {
    width: 100%;
    height: 120px;
    padding: 0.5rem;
    object-fit: contain;
    background-color: #FFFFFF;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 {
    margin: 0.5rem 0;
    font-size: 10px;
    font-weight: 300;
    min-height: 50px;
    line-height: 20px;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 span {
    font-weight: 400;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card button {
    width: 100%;
    font-size: 13px;
    text-transform: uppercase;
  }
  .SMP-SB article .container-fluid aside .SMP-LatestPosts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts {
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SB-RelatedPosts .container {
    padding: 2rem 0;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-SB-RelatedPosts .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card a img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body h3 {
    font-size: 24px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-next::after {
    display: none;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-prev::after {
    display: none;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-SB article header {
    padding: 12rem 1.875rem 2rem;
    background: rgb(170, 173, 0);
    background: -moz-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: -webkit-linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    background: linear-gradient(180deg, rgb(170, 173, 0) 80%, rgb(255, 255, 255) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#aaad00",endColorstr="#ffffff",GradientType=1);
  }
  .SMP-SB article header .SMP-SB-Header-Content {
    padding: 0rem 4rem 5rem;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 300;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li a {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content nav ol li.active {
    color: #FFFFFF;
  }
  .SMP-SB article header .SMP-SB-Header-Content a.SMP-SB-Category {
    display: block;
    padding: 1rem 0;
    font-size: 13px;
    font-weight: 200;
    color: #FFFFFF;
    text-transform: uppercase;
  }
  .SMP-SB article header .SMP-SB-Header-Content h1 {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
  }
  .SMP-SB article header figure img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.031372549);
  }
  .SMP-SB article .container-fluid {
    padding: 4rem 12rem;
  }
  .SMP-SB article .container-fluid .col-md-7 iframe {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 h1, .SMP-SB article .container-fluid .col-md-7 h2, .SMP-SB article .container-fluid .col-md-7 h3, .SMP-SB article .container-fluid .col-md-7 h4, .SMP-SB article .container-fluid .col-md-7 h5, .SMP-SB article .container-fluid .col-md-7 h6, .SMP-SB article .container-fluid .col-md-7 a {
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 h2 {
    font-size: 36px;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 p, .SMP-SB article .container-fluid .col-md-7 li {
    font-size: 18px;
    color: rgba(49, 49, 48, 0.7019607843);
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.5px;
    text-align: justify;
  }
  .SMP-SB article .container-fluid .col-md-7 a {
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: capitalize;
  }
  .SMP-SB article .container-fluid .col-md-7 img {
    width: 100%;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments {
    padding: 2rem 0 0;
    border-top: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments h3 {
    font-size: 20px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments p {
    font-size: 16px;
    font-weight: 300;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment {
    display: flex;
    flex-direction: column;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-comment textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email label, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url label {
    width: 100px;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-author input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-email input, .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments .comment-form-url input {
    width: 50%;
    border: 1px solid #ECECEC;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit {
    color: #FFFFFF;
    padding: 0.5rem 4rem;
    border-radius: 20px;
    text-transform: uppercase;
    background-color: #494948;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid .col-md-7 .SMP-SB-Comments #submit:hover {
    color: #494948;
    background-color: #FFFFFF;
    border: 1px solid #494948;
  }
  .SMP-SB article .container-fluid aside .search-form {
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: #F6F6F6;
  }
  .SMP-SB article .container-fluid aside .search-form form {
    display: flex;
    padding: 0.5rem;
    overflow: hidden;
    border-radius: 25px;
    background-color: #FFFFFF;
    justify-content: space-between;
  }
  .SMP-SB article .container-fluid aside .search-form form label {
    width: 100%;
  }
  .SMP-SB article .container-fluid aside .search-form form label input {
    width: 100%;
    border-width: 0;
    padding: 0.5rem 1rem;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form form label input:focus, .SMP-SB article .container-fluid aside .search-form form label input:focus-visible {
    box-shadow: unset;
    border-width: 0;
  }
  .SMP-SB article .container-fluid aside .search-form form button {
    border-width: 0;
    padding: 0.5rem 2rem;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product {
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card {
    display: block;
    padding: 0.5rem;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card a img {
    width: 100%;
    height: 200px;
    padding: 0.5rem;
    object-fit: contain;
    background-color: #FFFFFF;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 {
    margin: 0.5rem 0;
    font-size: 13px;
    font-weight: 300;
    min-height: 50px;
    line-height: 24px;
    color: #494948;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card h3 span {
    font-weight: 400;
  }
  .SMP-SB article .container-fluid aside .search-form .SMP-RelatedProducts .SMP-RelatedProducts-Product .SMP-RelatedProducts-Product-Card button {
    width: 100%;
    font-size: 13px;
    text-transform: uppercase;
  }
  .SMP-SB article .container-fluid aside .SMP-LatestPosts h2 {
    font-size: 24px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts {
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-SB-RelatedPosts .container {
    padding: 2rem 0;
    max-width: 1550px;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-SB-RelatedPosts .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 {
    padding: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card {
    border-width: 0;
    border-radius: 0;
    position: relative;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card a img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories {
    right: 0;
    top: 1rem;
    position: absolute;
    background-color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-categories a {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 200;
    padding: 5px 10px;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body h3 {
    font-size: 24px;
    font-weight: 200;
    line-height: 29px;
    margin-bottom: 1rem;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .col-md-4 .card .card-body p {
    font-size: 14px;
    font-weight: 200;
    color: #A4A4A3;
    margin-bottom: 1rem;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-next::after {
    display: none;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-prev::after {
    display: none;
  }
  .SMP-SB-RelatedPosts .container-fluid .row .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
.cmp-compare-section h2 {
  padding: 4rem 0;
  font-size: 35px;
  font-weight: 300;
  text-align: center;
  color: #494948;
}
@media (min-width: 1024px) {
  .cmp-compare-section h2 {
    font-size: 30px;
    padding: 3rem 0;
  }
}
@media (min-width: 480px) {
  .cmp-compare-section h2 {
    font-size: 25px;
    padding: 2rem 0;
  }
}

/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-ProductCategory {
    padding: 0;
  }
  .SMP-ProductCategory header .container {
    padding: 0rem;
  }
  .SMP-ProductCategory header .container .row .col-md-6 {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory header .container .row .col-md-6 h1 {
    font-size: 30px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 .col-12 {
    flex-direction: column;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li {
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li a {
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li::before {
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo {
    padding: 1rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 250px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo {
    padding: 1rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row:nth-child(2) {
    padding: 0.5rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 250px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 {
    display: flex;
    padding: 0.5rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 img {
    width: 40px;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 12px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo {
    display: flex;
    min-height: 200px;
    align-items: center;
    flex-direction: column;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 {
    width: 100%;
    padding: 1rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 h3 {
    font-size: 16px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne {
    display: flex;
    min-height: 200px;
    align-items: center;
    flex-direction: column;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 {
    width: 100%;
    padding: 1rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 h3 {
    font-size: 16px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features {
    padding: 1rem;
    background-color: #E1E1E1;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .h3 {
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 img {
    width: 80px;
    border-radius: 50%;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison h2 {
    padding: 2rem 0;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row {
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select {
    width: 100%;
    font-size: 12px;
    font-weight: 300;
    border-radius: 5px;
    padding: 17px 14px;
    border: 1px solid #E8E8ED;
    text-transform: uppercase;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select option {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-visible, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-within {
    box-shadow: unset;
    outline-color: unset;
    border: 1px solid #E8E8ED;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary h3 {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    min-height: 70px;
    text-align: center;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary img {
    height: 180px;
    padding: 1rem 0;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p {
    display: flex;
    text-decoration: none;
    justify-content: space-around;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p ins, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p del {
    margin: 1rem 0;
    font-size: 12px;
    text-decoration: none;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products h2 {
    padding: 4rem 0;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination {
    display: flex;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span {
    padding: 1rem;
    margin: 0 0.5rem;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a.current, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span.current {
    color: #FFFFFF;
    background-color: #494948;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-ProductCategory {
    padding: 0;
  }
  .SMP-ProductCategory header .container {
    padding: 0rem;
  }
  .SMP-ProductCategory header .container .row .col-md-6 {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory header .container .row .col-md-6 h1 {
    font-size: 30px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li {
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li a {
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li::before {
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo {
    padding: 1rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo {
    padding: 1rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row:nth-child(2) {
    padding: 2rem 0;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 img {
    width: 40px;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo {
    display: flex;
    min-height: 300px;
    align-items: center;
    flex-direction: column;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 {
    padding: 4rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 h3, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 h3 {
    font-size: 16px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 p, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features {
    padding: 4rem;
    background-color: #E1E1E1;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .h3 {
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 img {
    width: 80px;
    border-radius: 50%;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison h2 {
    padding: 4rem 0;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row {
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select {
    width: 100%;
    font-size: 12px;
    font-weight: 300;
    border-radius: 5px;
    padding: 17px 14px;
    border: 1px solid #E8E8ED;
    text-transform: uppercase;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select option {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-visible, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-within {
    box-shadow: unset;
    outline-color: unset;
    border: 1px solid #E8E8ED;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary h3 {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    min-height: 70px;
    text-align: center;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary img {
    height: 180px;
    padding: 1rem 0;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p {
    display: flex;
    text-decoration: none;
    justify-content: space-around;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p ins, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p del {
    margin: 1rem 0;
    font-size: 12px;
    text-decoration: none;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products h2 {
    padding: 4rem 0;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination {
    display: flex;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span {
    padding: 1rem;
    margin: 0 0.5rem;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a.current, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span.current {
    color: #FFFFFF;
    background-color: #494948;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-ProductCategory {
    padding: 0;
  }
  .SMP-ProductCategory header .container {
    padding: 0rem;
  }
  .SMP-ProductCategory header .container .row .col-md-6 {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory header .container .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li {
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li a {
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li::before {
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo {
    padding: 4rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 250px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo {
    padding: 4rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row:nth-child(2) {
    padding: 2rem 0;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 250px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 img {
    width: 80px;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo {
    display: flex;
    min-height: 300px;
    align-items: center;
    flex-direction: column;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne img, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo img {
    position: absolute;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 {
    padding: 4rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 h3, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 h3 {
    font-size: 22px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 p, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features {
    padding: 4rem;
    background-color: #E1E1E1;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .h3 {
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 img {
    width: 150px;
    border-radius: 50%;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison h2 {
    padding: 4rem 0;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row {
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select {
    width: 100%;
    font-size: 12px;
    font-weight: 300;
    border-radius: 5px;
    padding: 17px 14px;
    border: 1px solid #E8E8ED;
    text-transform: uppercase;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select option {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-visible, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-within {
    box-shadow: unset;
    outline-color: unset;
    border: 1px solid #E8E8ED;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary h3 {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    min-height: 70px;
    text-align: center;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary img {
    height: 180px;
    padding: 1rem 0;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p {
    display: flex;
    text-decoration: none;
    justify-content: space-around;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p ins, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p del {
    margin: 1rem 0;
    font-size: 12px;
    text-decoration: none;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products h2 {
    padding: 4rem 0;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination {
    display: flex;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span {
    padding: 1rem;
    margin: 0 0.5rem;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a.current, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span.current {
    color: #FFFFFF;
    background-color: #494948;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-ProductCategory {
    padding: 5rem 0;
  }
  .SMP-ProductCategory header .container {
    padding: 2rem 0;
  }
  .SMP-ProductCategory header .container .row .col-md-6 {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory header .container .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li {
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li a {
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li::before {
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo {
    padding: 4rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo {
    padding: 4rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row:nth-child(2) {
    padding: 2rem 0;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 img {
    width: 100px;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo {
    display: flex;
    min-height: 400px;
    align-items: center;
    flex-direction: column;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne img, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo img {
    position: absolute;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 {
    padding: 4rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 h3, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 p, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 p {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features {
    padding: 4rem;
    background-color: #E1E1E1;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .h3 {
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 img {
    width: 250px;
    border-radius: 50%;
    object-fit: none;
    height: 250px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison h2 {
    padding: 4rem 0;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row {
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select {
    width: 100%;
    font-size: 12px;
    font-weight: 300;
    border-radius: 5px;
    padding: 17px 14px;
    border: 1px solid #E8E8ED;
    text-transform: uppercase;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select option {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-visible, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-within {
    box-shadow: unset;
    outline-color: unset;
    border: 1px solid #E8E8ED;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary h3 {
    padding: 1rem 0;
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary img {
    height: 180px;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p {
    display: flex;
    text-decoration: none;
    justify-content: space-around;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p ins, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p del {
    margin: 1rem 0;
    font-size: 12px;
    text-decoration: none;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products h2 {
    padding: 4rem 0;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination {
    display: flex;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span {
    padding: 1rem;
    margin: 0 0.5rem;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a.current, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span.current {
    color: #FFFFFF;
    background-color: #494948;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-ProductCategory {
    padding: 5rem 0;
  }
  .SMP-ProductCategory header .container {
    padding: 2rem 0;
  }
  .SMP-ProductCategory header .container .row .col-md-6 {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory header .container .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li {
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li a {
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li::before {
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo {
    padding: 4rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo {
    padding: 4rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row:nth-child(2) {
    padding: 2rem 0;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 img {
    width: 100px;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo {
    display: flex;
    min-height: 400px;
    align-items: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne img, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo img {
    position: absolute;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 {
    padding: 4rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 h3, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 p, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 p {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features {
    padding: 4rem;
    background-color: #E1E1E1;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .h3 {
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 img {
    width: 250px;
    border-radius: 50%;
    object-fit: none;
    height: 250px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison h2 {
    padding: 4rem 0;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row {
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    padding: 17px 14px;
    border: 1px solid #E8E8ED;
    text-transform: uppercase;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select option {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-visible, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-within {
    box-shadow: unset;
    outline-color: unset;
    border: 1px solid #E8E8ED;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary h3 {
    padding: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary img {
    height: 250px;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p {
    display: flex;
    text-decoration: none;
    justify-content: space-around;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p ins, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p del {
    margin: 1rem 0;
    font-size: 16px;
    text-decoration: none;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products h2 {
    padding: 4rem 0;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination {
    display: flex;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span {
    padding: 1rem;
    margin: 0 0.5rem;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a.current, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span.current {
    color: #FFFFFF;
    background-color: #494948;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-ProductCategory {
    padding: 5rem 0;
  }
  .SMP-ProductCategory header .container {
    padding: 4rem 0;
  }
  .SMP-ProductCategory header .container .row .col-md-6 {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory header .container .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li {
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li a {
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li::before {
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo {
    padding: 4rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo {
    padding: 4rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row:nth-child(2) {
    padding: 2rem 0;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 img {
    width: 100px;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo {
    display: flex;
    min-height: 500px;
    align-items: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne img, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo img {
    position: absolute;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 {
    padding: 4rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 h3, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 p, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 p {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features {
    padding: 4rem;
    background-color: #E1E1E1;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .h3 {
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 img {
    width: 250px;
    border-radius: 50%;
    object-fit: none;
    height: 250px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison h2 {
    padding: 4rem 0;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row {
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    padding: 17px 14px;
    border: 1px solid #E8E8ED;
    text-transform: uppercase;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select option {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-visible, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-within {
    box-shadow: unset;
    outline-color: unset;
    border: 1px solid #E8E8ED;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary h3 {
    padding: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary img {
    height: 250px;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p {
    display: flex;
    text-decoration: none;
    justify-content: space-around;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p ins, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p del {
    margin: 1rem 0;
    font-size: 16px;
    text-decoration: none;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products h2 {
    padding: 4rem 0;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination {
    display: flex;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span {
    padding: 1rem;
    margin: 0 0.5rem;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a.current, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span.current {
    color: #FFFFFF;
    background-color: #494948;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-ProductCategory {
    padding: 7rem 0;
  }
  .SMP-ProductCategory header .container {
    padding: 4rem 0;
  }
  .SMP-ProductCategory header .container .row .col-md-6 {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory header .container .row .col-md-6 h1 {
    font-size: 40px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li {
    color: #494948;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li a {
    color: #aa886a;
  }
  .SMP-ProductCategory header .container .row .col-md-6 nav ol li::before {
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo {
    padding: 4rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin-bottom: 2rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-IntroVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo {
    padding: 4rem;
    background-color: #F3F3F3;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .h3 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row:nth-child(2) {
    padding: 2rem 0;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-md-8 iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 img {
    width: 100px;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-SecondVideo .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo {
    display: flex;
    min-height: 550px;
    align-items: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne img, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo img {
    position: absolute;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 {
    padding: 4rem;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 h3, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 h3 {
    font-size: 30px;
    font-weight: 200;
    color: #aa886a;
  }
  .SMP-ProductCategory .SMP-ProductCategory-FeatureOne .container .row .col-md-6 p, .SMP-ProductCategory .SMP-ProductCategory-FeatureTwo .container .row .col-md-6 p {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features {
    padding: 4rem;
    background-color: #E1E1E1;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .h3 {
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 img {
    width: 250px;
    border-radius: 50%;
    object-fit: none;
    height: 250px;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Features .container .row .col-4 h4 {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison h2 {
    padding: 4rem 0;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row {
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    padding: 17px 14px;
    border: 1px solid #E8E8ED;
    text-transform: uppercase;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select option {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-visible, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 select:focus-within {
    box-shadow: unset;
    outline-color: unset;
    border: 1px solid #E8E8ED;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary h3 {
    padding: 1rem 0;
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
    text-align: center;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary img {
    height: 250px;
    object-fit: contain;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p {
    display: flex;
    text-decoration: none;
    justify-content: space-around;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p ins, .SMP-ProductCategory .SMP-ProductCategory-Comparison .container .row .col-3 .product-summary p del {
    margin: 1rem 0;
    font-size: 16px;
    text-decoration: none;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products h2 {
    padding: 4rem 0;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination {
    display: flex;
    justify-content: center;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span {
    padding: 1rem;
    margin: 0 0.5rem;
    color: #494948;
  }
  .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination a.current, .SMP-ProductCategory .SMP-ProductCategory-Products .container-fluid .pagination span.current {
    color: #FFFFFF;
    background-color: #494948;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
/* Small devices (landscape phones, 576px to 767px) */
/* Medium devices (tablets, 768px to 991px) */
/* Large devices (desktops, 992px to 1199px) */
/* X-Large devices (large desktops, 1200px to 1399px) */
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .SMP-Why-Not {
    padding: 4rem 0;
    position: relative;
    background-color: #FFFFFF;
  }
  .SMP-Why-Not .container {
    max-width: 1550px;
  }
  .SMP-Why-Not .container .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Why-Not .container .row .col-12 h3 {
    font-size: 36px;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #494948;
  }
  .SMP-Why-Not .container .row .col-12 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Why-Not .container-fluid {
    padding: 0;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.3s all ease;
    background-color: #f9f9f9;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide .badge {
    top: 15px;
    z-index: 3;
    right: -1px;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: #00a8e2;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide .badge p {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.03em;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button {
    padding: 0;
    border-width: 0;
    box-shadow: unset;
    background-color: transparent;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg {
    width: 19px;
    height: 19px;
    stroke: #FFFFFF;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide .badge.SMP-Wishlist button svg path {
    stroke: #FFFFFF;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide img {
    top: 1rem;
    width: 100%;
    height: 400px;
    position: relative;
    object-fit: contain;
    margin-bottom: 4rem;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Gallery {
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0;
    z-index: 1;
    width: 105%;
    height: 105%;
    margin-bottom: 0;
    object-fit: cover;
    position: absolute;
    background-color: #000000;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide h2 {
    bottom: 0;
    z-index: 2;
    font-size: 13px;
    font-weight: 300;
    position: inherit;
    color: #494948;
    letter-spacing: 0.03em;
    padding: 0 1rem;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide price {
    bottom: 0;
    z-index: 2;
    padding: 0 1rem 1rem;
    display: block;
    font-size: 13px;
    font-weight: 400;
    position: inherit;
    letter-spacing: 0.03em;
    transition: 0s all ease;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount {
    transition: 0s all ease;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount {
    transition: 0s all ease;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide price .woocommerce-Price-amount.amount bdi {
    display: flex;
    align-items: center;
    transition: 0s all ease;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link {
    left: 0;
    z-index: 2;
    width: 100%;
    height: 51px;
    bottom: -52px;
    padding: 1rem;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 1rem;
    position: absolute;
    text-align: center;
    border-radius: 0px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: #494948;
    justify-content: space-between;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide a.SMP-Product-Link svg {
    width: 19px;
    height: 19px;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge {
    right: -62px;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide:hover .badge.SMP-Wishlist {
    top: 15px;
    z-index: 2;
    right: 1rem;
    padding: 0.4rem;
    border-radius: 0;
    position: absolute;
    background-color: transparent;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img {
    top: -50px;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide:hover img.SMP-Product-Gallery {
    opacity: 1;
    top: -50px;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide:hover h2 {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide:hover price {
    bottom: 60px;
    color: #FFFFFF;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-wrapper .swiper-slide:hover a.SMP-Product-Link {
    bottom: 0px;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Why-Not .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Categories {
    padding: 0rem;
  }
  .SMP-Categories .container {
    max-width: 1550px;
  }
  .SMP-Categories .container .row .col-md-6 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Categories .container .row .col-md-6 h3 {
    width: 100%;
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6 p {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6:last-child {
    align-items: center;
    padding-bottom: 1rem;
  }
  .SMP-Categories .container-fluid {
    padding: 0;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide {
    height: 300px;
    overflow: hidden;
    position: relative;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Placeholder {
    padding: 5rem;
    object-fit: contain;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide::after {
    left: 0;
    bottom: 0;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide .h4 {
    left: 0;
    z-index: 3;
    width: 100%;
    bottom: 2rem;
    font-size: 22px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide:hover img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 102%;
    height: 102%;
    object-fit: cover;
    position: absolute;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Categories {
    padding: 1rem 0 0;
  }
  .SMP-Categories .container {
    max-width: 1550px;
  }
  .SMP-Categories .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Categories .container .row .col-md-6 h3 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-Categories .container-fluid {
    padding: 0;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide {
    height: 400px;
    overflow: hidden;
    position: relative;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Placeholder {
    padding: 10rem;
    object-fit: contain;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide::after {
    left: 0;
    bottom: 0;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide .h4 {
    left: 0;
    z-index: 3;
    width: 100%;
    bottom: 2rem;
    font-size: 22px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide:hover img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 102%;
    height: 102%;
    object-fit: cover;
    position: absolute;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Categories {
    padding: 1rem 0 0;
  }
  .SMP-Categories .container {
    max-width: 1550px;
  }
  .SMP-Categories .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Categories .container .row .col-md-6 h3 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-Categories .container-fluid {
    padding: 0;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide {
    height: 400px;
    overflow: hidden;
    position: relative;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Placeholder {
    padding: 10rem;
    object-fit: contain;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide::after {
    left: 0;
    bottom: 0;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide .h4 {
    left: 0;
    z-index: 3;
    width: 100%;
    bottom: 2rem;
    font-size: 22px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide:hover img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 102%;
    height: 102%;
    object-fit: cover;
    position: absolute;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Categories {
    padding: 2rem 0;
  }
  .SMP-Categories .container {
    max-width: 1550px;
  }
  .SMP-Categories .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Categories .container .row .col-md-6 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide {
    height: 300px;
    overflow: hidden;
    position: relative;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Placeholder {
    padding: 7rem;
    object-fit: contain;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide::after {
    left: 0;
    bottom: 0;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide .h4 {
    left: 0;
    z-index: 3;
    width: 100%;
    bottom: 2rem;
    font-size: 22px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide:hover img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 102%;
    height: 102%;
    object-fit: cover;
    position: absolute;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Categories {
    padding: 2rem 0;
  }
  .SMP-Categories .container {
    max-width: 1550px;
  }
  .SMP-Categories .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Categories .container .row .col-md-6 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide {
    height: 400px;
    overflow: hidden;
    position: relative;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Placeholder {
    padding: 9rem;
    object-fit: contain;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide::after {
    left: 0;
    bottom: 0;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide .h4 {
    left: 0;
    z-index: 3;
    width: 100%;
    bottom: 2rem;
    font-size: 22px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide:hover img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 102%;
    height: 102%;
    object-fit: cover;
    position: absolute;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .SMP-Categories {
    padding: 2rem 0;
  }
  .SMP-Categories .container {
    max-width: 1550px;
  }
  .SMP-Categories .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-Categories .container .row .col-md-6 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-Categories .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide {
    height: 600px;
    overflow: hidden;
    position: relative;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide img.SMP-Product-Placeholder {
    padding: 12rem;
    object-fit: contain;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide::after {
    left: 0;
    bottom: 0;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide .h4 {
    left: 0;
    z-index: 3;
    width: 100%;
    bottom: 2rem;
    font-size: 36px;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
    position: absolute;
  }
  .SMP-Categories .container-fluid .row .swiper .swiper-wrapper .swiper-slide:hover img {
    top: 0;
    left: 0;
    z-index: 1;
    width: 102%;
    height: 102%;
    object-fit: cover;
    position: absolute;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-Testimonials {
    padding: 1rem 0;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Testimonials .container-fluid {
    padding: 1rem 0;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide {
    cursor: grab;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide:active {
    cursor: grabbing;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide p {
    width: 70%;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: auto;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span svg {
    width: 12px;
    height: 12px;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-Testimonials {
    padding: 1rem 0;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Testimonials .container-fluid {
    padding: 2rem 0;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide {
    cursor: grab;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide:active {
    cursor: grabbing;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide p {
    width: 55%;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: auto;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span svg {
    width: 16px;
    height: 16px;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-Testimonials {
    padding: 1rem 0;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Testimonials .container-fluid {
    padding: 2rem 0;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide {
    cursor: grab;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide:active {
    cursor: grabbing;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide p {
    width: 55%;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: auto;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span svg {
    width: 16px;
    height: 16px;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-Testimonials {
    padding: 1rem 0;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Testimonials .container-fluid {
    padding: 2rem 0;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide {
    cursor: grab;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide:active {
    cursor: grabbing;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide p {
    width: 55%;
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: auto;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span svg {
    width: 16px;
    height: 16px;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-Testimonials {
    padding: 1rem 0;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Testimonials .container-fluid {
    padding: 5rem 0;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide {
    cursor: grab;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide:active {
    cursor: grabbing;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide p {
    width: 55%;
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: auto;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span svg {
    width: 16px;
    height: 16px;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .SMP-Testimonials {
    padding: 1rem 0;
    position: relative;
    background-color: #f9f9f9;
  }
  .SMP-Testimonials .container-fluid {
    padding: 5rem 0;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide {
    cursor: grab;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide:active {
    cursor: grabbing;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide p {
    width: 55%;
    font-size: 32px;
    font-weight: 200;
    text-align: center;
    color: #494948;
    margin: auto;
    /* multi-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 6; /* max 8 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-wrapper .swiper-slide span svg {
    width: 22px;
    height: 22px;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-next::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-prev::after {
    display: none;
  }
  .SMP-Testimonials .container-fluid .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-MS-Products {
    padding: 1rem 0 0;
    position: relative;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-MS-Products .container {
    max-width: 1550px;
  }
  .SMP-MS-Products .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-MS-Products .container .row .col-md-6 h3 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6:last-child {
    align-items: center;
  }
  .SMP-MS-Products .container-fluid {
    padding: 0;
  }
  .swiper .swiper-wrapper {
    padding: 1rem 0 0;
  }
  .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-next::after {
    display: none;
  }
  .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-prev::after {
    display: none;
  }
  .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-MS-Products {
    padding: 1rem 0 0;
    position: relative;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-MS-Products .container {
    max-width: 1550px;
  }
  .SMP-MS-Products .container .row .col-md-6 {
    padding: 1rem 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-MS-Products .container .row .col-md-6 h3 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6:last-child {
    align-items: center;
    padding-bottom: 1rem;
  }
  .SMP-MS-Products .container-fluid {
    padding: 0;
  }
  .swiper .swiper-wrapper {
    padding: 0rem;
  }
  .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-next::after {
    display: none;
  }
  .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-prev::after {
    display: none;
  }
  .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-MS-Products {
    padding: 1rem 0 0;
    position: relative;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-MS-Products .container {
    max-width: 1550px;
  }
  .SMP-MS-Products .container .row .col-md-6 {
    width: 70%;
    display: flex;
    padding: 1rem 1rem 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-MS-Products .container .row .col-md-6 h3 {
    font-size: 25px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6:last-child {
    width: 30%;
    align-items: center;
    padding-bottom: 1rem;
  }
  .SMP-MS-Products .container .row .col-md-6:last-child a {
    width: 100%;
  }
  .SMP-MS-Products .container-fluid {
    padding: 0;
  }
  .swiper .swiper-wrapper {
    padding: 0rem;
  }
  .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-next::after {
    display: none;
  }
  .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-prev::after {
    display: none;
  }
  .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-MS-Products {
    padding: 4rem 0 0;
    position: relative;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-MS-Products .container {
    max-width: 1550px;
  }
  .SMP-MS-Products .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-MS-Products .container .row .col-md-6 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-MS-Products .container-fluid {
    padding: 0;
  }
  .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-next::after {
    display: none;
  }
  .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-prev::after {
    display: none;
  }
  .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-MS-Products {
    padding: 4rem 0 0;
    position: relative;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-MS-Products .container {
    max-width: 1550px;
  }
  .SMP-MS-Products .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-MS-Products .container .row .col-md-6 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-MS-Products .container-fluid {
    padding: 0;
  }
  .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-next::after {
    display: none;
  }
  .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-prev::after {
    display: none;
  }
  .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .SMP-MS-Products {
    padding: 4rem 0 0;
    position: relative;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-MS-Products .container {
    max-width: 1550px;
  }
  .SMP-MS-Products .container .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .SMP-MS-Products .container .row .col-md-6 .h3 {
    font-size: 36px;
    font-weight: 200;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 300;
    color: #494948;
  }
  .SMP-MS-Products .container .row .col-md-6:last-child {
    align-items: flex-end;
  }
  .SMP-MS-Products .container-fluid {
    padding: 0;
  }
  .swiper .swiper-wrapper {
    padding: 1rem;
  }
  .swiper .swiper-button-next {
    top: 50%;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-next svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-next::after {
    display: none;
  }
  .swiper .swiper-button-prev {
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  }
  .swiper .swiper-button-prev svg {
    width: 14px;
    height: 14px;
    color: #494948;
  }
  .swiper .swiper-button-prev::after {
    display: none;
  }
  .swiper .swiper-button-disabled {
    background-color: #FFFFFF;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-NewCategory {
    padding: 0.5rem 0;
  }
  .SMP-NewCategory .container-fluid {
    padding: 0;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:first-child {
    padding: 0;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child {
    display: flex;
    padding: 2rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background-color: #002138;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a {
    width: 60%;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a h3 {
    font-size: 22px;
    color: #FFFFFF;
    font-weight: 400;
    text-align: left;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child p {
    width: 80%;
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    color: #FFFFFF;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-NewCategory {
    padding: 0rem;
  }
  .SMP-NewCategory .container-fluid {
    padding: 0;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:first-child {
    padding: 0;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:first-child img {
    height: 500px;
    object-fit: cover;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child {
    display: flex;
    padding: 2rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background-color: #002138;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a {
    width: 60%;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a h3 {
    font-size: 30px;
    color: #FFFFFF;
    font-weight: 400;
    text-align: left;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child p {
    width: 80%;
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    color: #FFFFFF;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-NewCategory {
    padding: 0rem;
  }
  .SMP-NewCategory .container-fluid {
    padding: 0;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:first-child {
    padding: 0;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:first-child img {
    height: 500px;
    object-fit: cover;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child {
    display: flex;
    padding: 2rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background-color: #002138;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a {
    width: 60%;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a h3 {
    font-size: 30px;
    color: #FFFFFF;
    font-weight: 400;
    text-align: left;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child p {
    width: 80%;
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    color: #FFFFFF;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-NewCategory {
    padding: 0;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:first-child {
    padding: 0;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child {
    display: flex;
    padding: 0 5rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background-color: #002138;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a {
    width: 60%;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a h3 {
    font-size: 44px;
    color: #FFFFFF;
    font-weight: 400;
    text-align: left;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child p {
    width: 80%;
    margin: 2rem 0;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    color: #FFFFFF;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-NewCategory {
    padding: 0;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:first-child {
    padding: 0;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:first-child img.SMP-Product-Placeholder {
    padding: 25rem;
    object-fit: contain;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child {
    display: flex;
    padding: 0 10rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background-color: #002138;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a {
    width: 60%;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a h3 {
    font-size: 44px;
    color: #FFFFFF;
    font-weight: 400;
    text-align: left;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child p {
    width: 80%;
    margin: 2rem 0;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    color: #FFFFFF;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .SMP-NewCategory .container-fluid .row .col-md-6:first-child {
    padding: 0;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:first-child img.SMP-Product-Placeholder {
    padding: 25rem;
    object-fit: contain;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child {
    display: flex;
    padding: 0 10rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background-color: #002138;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a {
    width: 60%;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child a h3 {
    font-size: 44px;
    color: #FFFFFF;
    font-weight: 400;
    text-align: left;
  }
  .SMP-NewCategory .container-fluid .row .col-md-6:last-child p {
    width: 80%;
    margin: 2rem 0;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    color: #FFFFFF;
  }
}
/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-404 {
    padding: 0rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-404 .container {
    padding: 4rem 0;
  }
  .SMP-404 .container .row .col-md-6 h1 {
    font-weight: 100;
    font-size: 120px;
    text-align: center;
    color: #494948;
  }
  .SMP-404 .container .row .col-md-6 p {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-404 {
    padding: 0rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-404 .container {
    padding: 4rem 0;
  }
  .SMP-404 .container .row .col-md-6 h1 {
    font-weight: 100;
    font-size: 200px;
    text-align: center;
    color: #494948;
  }
  .SMP-404 .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-404 {
    padding: 0rem;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-404 .container {
    padding: 4rem 0;
  }
  .SMP-404 .container .row .col-md-6 h1 {
    font-weight: 100;
    font-size: 200px;
    text-align: center;
    color: #494948;
  }
  .SMP-404 .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-404 {
    padding: 7rem 0 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-404 .container {
    padding: 4rem 0;
  }
  .SMP-404 .container .row .col-md-6 h1 {
    font-weight: 100;
    font-size: 200px;
    text-align: center;
    color: #494948;
  }
  .SMP-404 .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-404 {
    padding: 7rem 0 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-404 .container {
    padding: 4rem 0;
  }
  .SMP-404 .container .row .col-md-6 h1 {
    font-weight: 100;
    font-size: 200px;
    text-align: center;
    color: #494948;
  }
  .SMP-404 .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
  }
}
/* XX-Large devices (larger desktops, 1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .SMP-404 {
    padding: 7rem 0 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-404 .container {
    padding: 4rem 0;
  }
  .SMP-404 .container .row .col-md-6 h1 {
    font-weight: 100;
    font-size: 200px;
    text-align: center;
    color: #494948;
  }
  .SMP-404 .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
  }
}
/* 3X-Large devices (larger desktops, 1600 to 1599px) */
@media (min-width: 1600px) {
  .SMP-404 {
    padding: 7rem 0 0;
    border-bottom: 1px solid #ECECEC;
  }
  .SMP-404 .container {
    padding: 4rem 0;
  }
  .SMP-404 .container .row .col-md-6 h1 {
    font-weight: 100;
    font-size: 200px;
    text-align: center;
    color: #494948;
  }
  .SMP-404 .container .row .col-md-6 p {
    font-size: 20px;
    font-weight: 200;
    text-align: center;
  }
}
.SMP-Cart {
  padding: 7rem 0 0;
}
.SMP-Cart .container {
  padding: 1rem 1.875rem;
}
.SMP-Cart .container .row .wp-block-woocommerce-cart {
  padding: 0;
}
.SMP-Cart .container .row .wp-block-woocommerce-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items thead tr th span {
  font-size: 16px;
  font-weight: 200;
}
.SMP-Cart .container .row .wp-block-woocommerce-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items tbody tr td a {
  font-size: 18px;
  font-weight: 300;
}
.SMP-Cart .container .row .wp-block-woocommerce-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items tbody tr td span {
  font-size: 16px;
  font-weight: 200;
}
.SMP-Cart .container .row .wp-block-woocommerce-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items tbody tr td del {
  font-size: 14px;
  font-weight: 200;
}
.SMP-Cart .container .row .wp-block-woocommerce-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items tbody tr td ins {
  font-size: 16px;
  font-weight: 600;
}
.SMP-Cart .container .row .wp-block-woocommerce-cart .wp-block-woocommerce-cart-totals-block h2 {
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 1rem;
}
.SMP-Cart .container .row .wp-block-woocommerce-cart .wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-cart-order-summary-totals-block span {
  font-size: 16px;
  font-weight: 400;
}
.SMP-Cart .container .row .wp-block-woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button {
  font-size: 14px;
  margin-top: 2rem;
  color: #FFFFFF;
  border-radius: 20px;
  text-transform: uppercase;
  background-color: #aa886a;
}
.SMP-Cart .container .row .wp-block-woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button:hover {
  background-color: #302F2D;
}

.SMP-Checkout {
  padding: 8rem 0 0;
  background: rgb(255, 255, 255);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f9f9f9",GradientType=1);
}
.SMP-Checkout .container .row .wc-block-components-express-payment {
  margin-top: 1rem;
}
.SMP-Checkout .container .row .wc-block-components-express-payment h2 {
  font-weight: 200;
}
.SMP-Checkout .container .row .wc-block-components-express-payment .wc-block-components-express-payment__content {
  padding: 2rem;
}
.SMP-Checkout .container .row .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block {
  border-width: 0;
  background-color: #FFFFFF;
}
.SMP-Checkout .container .row .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
  margin: 0;
  padding: 1rem;
  font-size: 20px;
  font-weight: 200;
  text-transform: capitalize;
  text-align: center;
}
.SMP-Checkout .container .row .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper .wc-block-components-order-summary-item {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  background-color: #F6F6F6;
}
.SMP-Checkout .container .row .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper .wc-block-components-order-summary-item .wc-block-components-order-summary-item__image img {
  border-radius: 5px;
  background-color: #FFFFFF;
}
.SMP-Checkout .container .row .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper .wc-block-components-order-summary-item .wc-block-components-order-summary-item__description h3 {
  font-size: 14px;
  font-weight: 200;
}
.SMP-Checkout .container .row .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper .wc-block-components-order-summary-item .wc-block-components-order-summary-item__description del {
  font-size: 14px;
  font-weight: 200;
}
.SMP-Checkout .container .row .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-totals-block .wc-block-components-totals-item__label {
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
}
.SMP-Checkout .container .row .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-totals-block .wc-block-components-totals-item__value {
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
}
.SMP-Checkout .container .row .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper .wc-block-components-totals-item__label {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.SMP-Checkout .container .row .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper .wc-block-components-totals-item__value {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.SMP-Checkout .container .row .wc-block-components-checkout-place-order-button {
  color: #FFFFFF;
  font-weight: 200;
  border-radius: 20px;
  text-transform: uppercase;
  background-color: #494948;
}

/* Extra Small devices (landscape phones, 576px to 767px) */
@media (max-width: 565px) {
  .SMP-SubFooter {
    padding: 1rem;
  }
  .SMP-SubFooter .container .row .col-md-4 {
    display: flex;
    padding: 0.5rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SubFooter .container .row .col-md-4 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  .SMP-SubFooter .container .row .col-md-4 span {
    margin: 0.25rem 0;
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    color: #494948;
  }
  .SMP-SubFooter .container .row .col-md-4 small {
    font-size: 10px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Footer {
    padding: 1rem 0.5rem;
    background-color: #F6F6F6;
  }
  .SMP-Footer .container-fluid {
    padding: 0 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 h3 {
    font-size: 20px;
    font-weight: 200;
    line-height: 30px;
    margin-bottom: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form {
    margin-bottom: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control {
    border-width: 0;
    padding: 0.75rem 1.5rem;
    border-radius: 22px 0 0 22px;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control:focus {
    border-width: 0;
    box-shadow: unset;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .btn {
    border-width: 0;
    font-size: 13px;
    color: #FFFFFF;
    padding: 0.75rem 2.5rem;
    border-radius: 0 22px 22px 0;
    background-color: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-4 small {
    font-size: 12px;
    font-weight: 300;
    text-align: justify;
  }
  .SMP-Footer .container-fluid .row .col-md span {
    font-size: 13px;
    font-weight: 400;
  }
  .SMP-Footer .container-fluid .row .col-md ul {
    padding: 0;
    list-style: none;
    margin-top: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md ul li {
    margin-bottom: 0.5rem;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a {
    font-size: 13px;
    font-weight: 300;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a:hover {
    color: #000000;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social {
    margin-top: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg path {
    fill: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li:not(:first-child) {
    margin-left: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 1rem;
    flex-direction: unset;
    justify-content: center;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li {
    margin-bottom: 0.5rem;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li svg {
    width: 45px;
    height: 27px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li:not(:first-child) {
    margin-left: 0.5rem;
  }
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 565px) and (max-width: 767px) {
  .SMP-SubFooter {
    padding: 1rem;
  }
  .SMP-SubFooter .container .row .col-md-4 {
    display: flex;
    padding: 0.5rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SubFooter .container .row .col-md-4 img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .SMP-SubFooter .container .row .col-md-4 span {
    margin: 0.5rem 0;
    font-size: 12px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SubFooter .container .row .col-md-4 small {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Footer {
    padding: 2rem;
    background-color: #F6F6F6;
  }
  .SMP-Footer .container-fluid {
    padding: 0;
  }
  .SMP-Footer .container-fluid .row .col-md-4 h3 {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0.5rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form {
    display: flex;
    margin-bottom: 0.5rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control {
    border-width: 0;
    padding: 0.75rem 1.5rem;
    border-radius: 22px 0 0 22px;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control:focus {
    border-width: 0;
    box-shadow: unset;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .btn {
    border-width: 0;
    font-size: 13px;
    color: #FFFFFF;
    padding: 0.75rem 0.5rem;
    border-radius: 0 22px 22px 0;
    background-color: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-4 small {
    margin: 1rem 0;
    font-size: 12px;
    font-weight: 300;
    text-align: justify;
  }
  .SMP-Footer .container-fluid .row .col-md {
    width: 20%;
  }
  .SMP-Footer .container-fluid .row .col-md span {
    font-size: 13px;
    font-weight: 400;
  }
  .SMP-Footer .container-fluid .row .col-md ul {
    padding: 0;
    list-style: none;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a {
    font-size: 10px;
    font-weight: 300;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a:hover {
    color: #000000;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social {
    margin-top: 0;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg path {
    fill: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li:not(:first-child) {
    margin-left: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul {
    padding: 0;
    display: flex;
    list-style: none;
    margin-top: 2rem;
    flex-direction: row;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li svg {
    width: 40px;
    height: 27px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li:not(:first-child) {
    margin-left: 0.5rem;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .SMP-SubFooter {
    padding: 0 1rem 1rem;
  }
  .SMP-SubFooter .container .row .col-md-4 {
    display: flex;
    padding: 0.5rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SubFooter .container .row .col-md-4 svg {
    width: 40px;
    height: 40px;
  }
  .SMP-SubFooter .container .row .col-md-4 span {
    margin: 0.5rem 0;
    font-size: 14px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SubFooter .container .row .col-md-4 small {
    font-size: 12px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Footer {
    padding: 5rem 1rem;
    background-color: #F6F6F6;
  }
  .SMP-Footer .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 h3 {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0.5rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 p {
    font-size: 12px;
    font-weight: 300;
    text-align: justify;
    margin-bottom: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form {
    display: flex;
    margin-bottom: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control {
    padding: 0.5rem;
    font-size: 10px;
    border-width: 0;
    border-radius: 22px 0 0 22px;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control:focus {
    border-width: 0;
    box-shadow: unset;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .btn {
    border-width: 0;
    font-size: 13px;
    color: #FFFFFF;
    padding: 0.75rem 2.5rem;
    border-radius: 0 22px 22px 0;
    background-color: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-4 small {
    font-size: 10px;
    font-weight: 300;
    line-height: 10px;
    text-align: justify;
  }
  .SMP-Footer .container-fluid .row .col-md span {
    font-size: 13px;
    font-weight: 400;
  }
  .SMP-Footer .container-fluid .row .col-md ul {
    padding: 0;
    list-style: none;
    margin-top: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a {
    font-size: 10px;
    font-weight: 300;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a:hover {
    color: #000000;
  }
  .SMP-Footer .container-fluid .row .col-md-6 {
    width: 65%;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social {
    margin-top: 0;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg path {
    fill: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li:not(:first-child) {
    margin-left: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul {
    padding: 0;
    display: flex;
    list-style: none;
    margin-top: 2rem;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li {
    margin-bottom: 0.25rem;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li svg {
    width: 25px;
    height: 27px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li:not(:first-child) {
    margin-left: 0.5rem;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .SMP-SubFooter {
    padding: 4rem 0;
  }
  .SMP-SubFooter .container .row .col-md-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SubFooter .container .row .col-md-4 svg {
    width: 32px;
    height: 32px;
  }
  .SMP-SubFooter .container .row .col-md-4 span {
    margin: 1rem 0;
    font-size: 18px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SubFooter .container .row .col-md-4 small {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Footer {
    padding: 5rem 1rem;
    background-color: #F6F6F6;
  }
  .SMP-Footer .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 h3 {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control {
    border-width: 0;
    padding: 0.75rem 1.5rem;
    border-radius: 22px 0 0 22px;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control:focus {
    border-width: 0;
    box-shadow: unset;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .btn {
    border-width: 0;
    font-size: 13px;
    color: #FFFFFF;
    padding: 0.75rem 2.5rem;
    border-radius: 0 22px 22px 0;
    background-color: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-4 small {
    font-size: 12px;
    font-weight: 300;
    text-align: justify;
  }
  .SMP-Footer .container-fluid .row .col-md span {
    font-size: 13px;
    font-weight: 400;
  }
  .SMP-Footer .container-fluid .row .col-md ul {
    padding: 0;
    list-style: none;
    margin-top: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a {
    font-size: 10px;
    font-weight: 300;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a:hover {
    color: #000000;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social {
    margin-top: 0;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg path {
    fill: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li:not(:first-child) {
    margin-left: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul {
    padding: 0;
    display: flex;
    list-style: none;
    margin-top: 2rem;
    flex-direction: row;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li svg {
    width: 30px;
    height: 30px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li:not(:first-child) {
    margin-left: 0.5rem;
  }
}
/* X-Large devices (large desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .SMP-SubFooter {
    padding: 4rem 0;
  }
  .SMP-SubFooter .container .row .col-md-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SubFooter .container .row .col-md-4 svg {
    width: 32px;
    height: 32px;
  }
  .SMP-SubFooter .container .row .col-md-4 span {
    margin: 1rem 0;
    font-size: 18px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SubFooter .container .row .col-md-4 small {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Footer {
    padding: 5rem 1rem;
    background-color: #F6F6F6;
  }
  .SMP-Footer .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 {
    padding-right: 2rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 h3 {
    font-size: 18px;
    font-weight: 200;
    line-height: 48px;
    margin-bottom: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control {
    border-width: 0;
    padding: 0.75rem 1.5rem;
    border-radius: 22px 0 0 22px;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control:focus {
    border-width: 0;
    box-shadow: unset;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .btn {
    border-width: 0;
    font-size: 13px;
    color: #FFFFFF;
    padding: 0.75rem 2.5rem;
    border-radius: 0 22px 22px 0;
    background-color: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-4 small {
    font-size: 12px;
    font-weight: 300;
    text-align: justify;
  }
  .SMP-Footer .container-fluid .row .col-md span {
    font-size: 13px;
    font-weight: 400;
  }
  .SMP-Footer .container-fluid .row .col-md ul {
    padding: 0;
    list-style: none;
    margin-top: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a {
    font-size: 12px;
    font-weight: 300;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a:hover {
    color: #000000;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social {
    margin-top: 0;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg path {
    fill: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li:not(:first-child) {
    margin-left: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul {
    padding: 0;
    display: flex;
    list-style: none;
    margin-top: 2rem;
    flex-direction: row;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li svg {
    width: 30px;
    height: 30px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li:not(:first-child) {
    margin-left: 0.5rem;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .SMP-SubFooter {
    padding: 4rem 0;
  }
  .SMP-SubFooter .container .row .col-md-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .SMP-SubFooter .container .row .col-md-4 svg {
    width: 32px;
    height: 32px;
  }
  .SMP-SubFooter .container .row .col-md-4 span {
    margin: 1rem 0;
    font-size: 18px;
    font-weight: 400;
    color: #494948;
  }
  .SMP-SubFooter .container .row .col-md-4 small {
    font-size: 18px;
    font-weight: 200;
    color: #494948;
    text-transform: capitalize;
  }
  .SMP-Footer {
    padding: 5rem 1rem;
    background-color: #F6F6F6;
  }
  .SMP-Footer .container-fluid {
    padding: 0 1.875rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 {
    padding-right: 4rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 .h3 {
    font-size: 25px;
    font-weight: 200;
    margin-bottom: 2.5rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control {
    border-width: 0;
    padding: 0.75rem 1.5rem;
    border-radius: 22px 0 0 22px;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .form-control:focus {
    border-width: 0;
    box-shadow: unset;
  }
  .SMP-Footer .container-fluid .row .col-md-4 form .btn {
    border-width: 0;
    font-size: 13px;
    color: #FFFFFF;
    padding: 0.75rem 2.5rem;
    border-radius: 0 22px 22px 0;
    background-color: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-4 small {
    font-size: 12px;
    font-weight: 300;
    text-align: justify;
  }
  .SMP-Footer .container-fluid .row .col-md span {
    font-size: 13px;
    font-weight: 400;
  }
  .SMP-Footer .container-fluid .row .col-md ul {
    padding: 0;
    list-style: none;
    margin-top: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md ul li {
    margin-bottom: 0.5rem;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a {
    font-size: 13px;
    font-weight: 300;
  }
  .SMP-Footer .container-fluid .row .col-md ul li a:hover {
    color: #000000;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social {
    margin-top: 0;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg {
    width: 20px;
    height: 20px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li a svg path {
    fill: #494948;
  }
  .SMP-Footer .container-fluid .row .col-md-6 .SMP-Social li:not(:first-child) {
    margin-left: 1rem;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul {
    padding: 0;
    display: flex;
    list-style: none;
    margin-top: 2rem;
    flex-direction: row;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li svg {
    width: 45px;
    height: 27px;
  }
  .SMP-Footer .container-fluid .row .col-md-6 ul li:not(:first-child) {
    margin-left: 0.5rem;
  }
}

/*# sourceMappingURL=main.css.map */
