<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header-content-action svg {
    max-height: 20px;
}
.header-content-action p {
    font-size: 10px;
    margin: 0px;
    color: #fff;
}
.cms-index-index .page-wrapper {
    background: #000;
}
.header-content-action {
    text-align: center;
}
.header-content-action&gt;div {
    margin-right: 16px;
}
.logo img {
    width: 100%;
}
.magebig-nav &gt; li.level0 {
    display: none;
    padding: 5px 10px;
    float: none !important;
}
.magebig-nav &gt; li.level0:nth-child(1),
.magebig-nav &gt; li.level0:nth-child(2),
.magebig-nav &gt; li.level0:nth-child(3),
.magebig-nav &gt; li.level0:nth-child(4),
.magebig-nav &gt; li.level0:nth-child(5),
.magebig-nav &gt; li.level0:nth-child(6) {
    display: inline-block !important;
    vertical-align: middle;
    text-transform: capitalize;
}
.magebig-nav{
    width: 100%;
    text-align: center !important;
}
.block-search { 
    padding-right: 0px;
}
.block-search input::placeholder {
    font-size: 13px;
}
.block-search input {
    border-right: 1px solid #ccc;
    border-radius: 3px;
}
.block-search button {
    background: none;
    width: auto !important;
}
.block-search .action.search svg {
    fill: #44c3ff;
    width: 15px;
}
.page-footer {
    border-top: 5px solid #0458f2;
}
.footer-bottom .textwidget svg {
    height: 13px;
    margin-right: 8px;
    fill: #fff;
}
.contact-email svg {
    position: relative;
    top: 2px;
}
.cards {
    text-align: right;
}
.cards svg {
    height: 23px;
    fill: #fff;
    margin-left: 10px;
}
.footer-copyright-vertical {
    border: none;
}
.textwidget {
    color: #fff;
}
.footer-main .title {
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: 10px;
}
.footer-bottom .widget {
    margin: 0;
}

.footer-bottom {
    padding: 80px 0px 10px 0px;
}
.selling-features svg {
    height: 15px;
    position: relative;
    top: 2px;
    margin-right: 10px;
    fill: #fff;
}
.selling-features a {
    color: #fff;
}
.magebig-container &gt; .widget {
    margin: 0;
}
.selling-features {
    text-align: center;
    padding: 10px 0px;
    background: #0458f2;
    color: #fff;
    position: relative;
    z-index: 2;
}
.inventory img {
    max-width: 80%;
    margin: auto;
}
.inventory .col-md-3 {
    padding: 10px 20px;
}

.inventory p {
    margin-top: 10px;
    font-size: 16px;
}
.inventory a {
    text-align: center;
    display: inline-block;
}
.inventory .container &gt; p, .brand-logos-container .container &gt; p {
    font-size: 13px;
    color: #808080;
}
.inventory p svg {
    height: 15px;
    margin-left: 10px;
    position: relative;
    top: 2px;
    fill: #44c3ff;
}
.inventory .col-md-3 p::after {
    content: '';
    height: 10px;
    width: 10px;
    background: url(/media/svg/arrow-right-regular.svg) no-repeat;
    display: inline-block;
    margin-left: 10px;
}
.product-sliders-containers .section h2 {
    text-align: center;
    background: #fff;
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
}
/*Brand Logos*/
/* Marquee styles */
.marquee {
    --gap: 1rem;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
  }
  
  .marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
  }
  
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }
  
  /* Pause animation when reduced-motion is set */
  @media (prefers-reduced-motion: reduce) {
    .marquee__content {
      animation-play-state: paused !important;
    }
  }
  
  /* Enable animation */
  .enable-animation .marquee__content {
    animation: scroll 30s linear infinite;
  }
  
  /* Reverse animation */
  .marquee--reverse .marquee__content {
    animation-direction: reverse;
  }
  
  /* Pause on hover */
  .marquee--hover-pause:hover .marquee__content {
    animation-play-state: paused;
  }
  
  /* Attempt to size parent based on content. Keep in mind that the parent width is equal to both content containers that stretch to fill the parent. */
  .marquee--fit-content {
    max-width: fit-content;
  }
  
  /* A fit-content sizing fix: Absolute position the duplicate container. This will set the size of the parent wrapper to a single child container. Shout out to Olavi's article that had this solution ðŸ‘ @link: https://olavihaapala.fi/2021/02/23/modern-marquee.html  */
  .marquee--pos-absolute .marquee__content:last-child {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Enable position absolute animation on the duplicate content (last-child) */
  .enable-animation .marquee--pos-absolute .marquee__content:last-child {
    animation-name: scroll-abs;
  }
  
  @keyframes scroll-abs {
    from {
      transform: translateX(calc(100% + var(--gap)));
    }
    to {
      transform: translateX(0);
    }
  }
  
  /* Other page demo styles */
  .marquee__content &gt; * {
    flex: 0 0 auto;
    color: white;
    background: dodgerblue;
    margin: 2px;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    text-align: center;
  }

  section {
    margin-block: 3rem;
  }
  
  section &gt; * + * {
    margin-block-start: 0.5rem;
  }
  
.brand-logos-container{
    text-align: center;
    margin-top: 50px;
}
.brand-logos .col-md-2 {
    vertical-align: middle;
    padding: 20px;
    border-bottom: 1px solid #ebebeb;
    text-align: center;
    border-right: 1px solid #ebebeb;
    margin-bottom: 0;
}
.brand-logos {
    text-align: center;
    margin-top: 20px;
}
.brand-logos img {
    max-height: 43px;
    max-width: 140px;
    display: inline-block;
    margin: auto;
}
.brand-logos .col-md-2:nth-child(6), .brand-logos .col-md-2:nth-child(12) {
    border-right: 0;
}

.brand-logos .col-md-2:nth-of-type(n+7) {
    border-bottom: none;
}
.horizontal-menu .magebig-nav li.level0&gt;a:hover {
    color: #fff;
    opacity: 0.8;
}
.category-image {
    display: none;
}
.catalog-category-view .page-title, .catalogsearch-result-index .page-title{
    text-align: left;
    font-size: 35px;
    text-transform: uppercase;
    color: #44c3ff;
    padding: 15px 0px;
    margin-top: 0;
}
.wrapper-breadcrums .breadcrumbs {
    background: #fff;
}
.cms-no-route-404 .container.main-container {
    background: none;
}
header.page-header .header.content .widget {
    margin: 0;
}
.block.block-featured-brand.filter {
    display: none;
}
.wrapper-breadcrums li a {
    color: #44c3ff;
    text-transform: capitalize;
}
.wrapper-breadcrums{
    background: none;
    position: relative;
    z-index: 2;
}
.toolbar-products .sorter, .toolbar-products .limiter {
    border: 1px solid #44c3ff;
}
.toolbar-products {
    background: none;
}
.smile-es-range-slider .ui-slider-handle{
    background: #44c3ff;
}
.smile-es-range-slider a.action.primary {
    color: #fff;
}
.price-including-tax .price, .price-excluding-tax .price {
    display: inline-block !important;
    vertical-align: middle;
}

.price-including-tax:before, .price-excluding-tax:before {
    content: attr(data-label) ': ';
    font-size: 1.25714286rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}
.product-info-main .page-title-wrapper .page-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 31px;
    text-transform: uppercase;
    color: #44c3ff;
    padding: 20px 0px 10px 0px;
}
.product-info-main .product.attribute.overview b {
    display: block;
    margin-top: 10px;
}
.price-box .price {
    font-size: 1.3rem;
}
.price-excluding-tax::before, .price-excluding-tax .price {
    font-size: 1.6rem !important;
    color: #44c3ff;
    font-weight: 600;
}
.toolbar-products .sorter select, .limiter select {
    font-size: 13px;
}
.product-info-price .price-box .price-wrapper.price-excluding-tax .price {
    font-size: 2.4rem !important;
}
.product-info-price .price-box .price-wrapper.price-including-tax .price {
    font-size: 1.3rem;
}
.product-info-main-top {
    border: none;
    display: none;
}
.product.attribute.sku {
    margin-bottom: 10px;
    margin-top: 10px;
}
.product-info-main .product.attribute.overview {
    margin-bottom: 10px;
}
.product.data.items&gt;.item.title&gt;.switch {
    font-size: 16px;
}
.gallery-placeholder .fotorama__thumb {
    border: none;
}
.gallery-placeholder .fotorama__thumb-border {
    border: none;
    border-bottom: 1px solid #44c3ff;
}
.box-tocart .fieldset-add {
    display: inline-block;
}
.box-tocart .field&gt;label {
    display: none;
}
.box-tocart .fieldset-add input.input-text {
    height: 52px;
    border-color: #44c3ff;
}
.box-tocart .fieldset-add .custom-qty button {
    height: 54px;
}
.box-tocart .actions .towishlist {
    display: none;
}
.vertical-menu .title&gt;.mbi-menu {
    font-size: 19px;
    margin-right: 10px;
    float: left;
    position: relative;
    margin-top: 5px;
}
.block.filter .filter-title {
    display: none;
}
.block.filter {
    background: none;
}
.filter-options-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 3% 7%;
}
.filter-options-item .filter-options-title {
    padding: 10px 0px;
}
.filter-options .filter-options-content {
    border: none;
}
.pages .pages-items .item.current {
    color: #fff;
}
.product-item-name a {
    color: #151515;
    text-transform: uppercase;
}
.product-image-photo {
    position: unset !important;
    max-width: 150px;
}
.product-image-wrapper {
    height: auto;
    padding: 0% !important;
    min-height: 150px;
}
.checkout-cart-index .product-image-wrapper{
    min-height: 75px;
}
.fotorama__nav-wrap--horizontal {
    position: unset;
}
.gallery-placeholder {
    height: auto;
    padding-bottom: 0;
}
.product.attribute.description b {
    display: block;
    margin-top: 10px;
}
.sticky-addcart-wrap .stick-info {
    display: none;
}
.logo-checkout img {
    max-width: 300px;
}
#shipping-next-buttons-container {
    display: none;
}
.checkout-shipping-method .actions-toolbar .action.primary {
    padding: 6px;
    font-size: 16px;
}
.minicart-items .product-item-name {
    font-size: 13px;
    max-height: 37px;
}
.opc-block-summary .items-in-cart&gt;.title:after{
    display: none;
}
.opc-block-summary .items-in-cart&gt;.title strong {
    font-size: 13px;
}
.opc-block-summary .minicart-items-wrapper {
    padding: 15px 0px;
}
.action-auth-toggle:before{
    display: none;
}
.minicart-items .product-item-details .details-qty {
    font-size: 13px;
}
.opc-wrapper select, .opc-wrapper input {
    font-size: 13px;
}
form.b2b-form-create-account .b2b-actions-toolbar .b2b-action {
    color: #fff;
}

/*My Account Martfur Changes*/

/*Core Lists*/
.b2b-requisition-title {
    margin-bottom: 20px;
}
#requisition_list_grid_table .col-action a {
    margin-right: 10px;
}
#requisition-list {
    margin-bottom: 20px;
}
.requisition-action-toolbar .checkbox input {
    margin-right: 5px;
}
.requisition-action-toolbar &gt; div {
    margin-right: 10px;
}
.requisition-action-toolbar &gt; div .action, .requisition-action-toolbar &gt; div a {
    color: #514943 !important;
    background: #e3e3e3;
    padding: 3px 15px;
    border-radius: 3px;
    border: 1px solid #adadad;
    font-size: 13px;
}
#requisition-view-form .b2b-field.qty input[type="number"] {
    width: 55px !important;
    padding: 10px 7px;
}
#requisition-view-form .b2b-table &gt; tbody &gt; tr &gt; td {
    padding: 10px 5px;
}
.b2b-table td.b2b-col.price {
    display: table-cell !important;
}
form.b2b-form-create-account {
	width: 80%;
	margin: 30px auto;
	padding: 5%;
	background-color: #ffffff;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

form.b2b-form-create-account fieldset.b2b-info {
	padding-bottom: 2%;
	margin-bottom: 3%;
	float: left;
	width: 47%;
	padding-right: 5%;
}

form.b2b-form-create-account fieldset.b2b-info .b2b-field { margin-top: 10px; }

form.b2b-form-create-account fieldset.b2b-info .field.field-name-firstname.required { margin-bottom: 15px; }

form.b2b-form-create-account fieldset.b2b-info label.b2b-label,
form.b2b-form-create-account fieldset.b2b-info label.b2b-label-marketing-business { padding-left: 5px; }

form.b2b-form-create-account fieldset.b2b-info legend.b2b-legend span { font-size: 1.8rem; color: #44c3ff; font-weight: normal; border: 0px; }

form.b2b-form-create-account fieldset.b2b-info #b2b-add_company { margin: 3% 0 2%; }

form.b2b-form-create-account fieldset.b2b-info .marketing-checkboxes-business,
form.b2b-form-create-account fieldset.b2b-info .marketing-checkboxes-marketing,
form.b2b-form-create-account fieldset.b2b-info .marketing-checkboxes-contact { margin-bottom: 10px; }

form.b2b-form-create-account fieldset.fieldset.create.account { width: 50%; float: left; }

form.b2b-form-create-account fieldset.fieldset.create.account .legend { 
	margin-left: 0px; 
	border: 0px; 
	padding: 0; 
}

form.b2b-form-create-account fieldset.fieldset.create.account .legend span { font-size: 1.8rem; font-weight: normal; color: #44c3ff;  }

form.b2b-form-create-account fieldset.fieldset.create.account label.label span { font-size: 16px; }

form.b2b-form-create-account .content-marketing-checkboxes { font-size: 13px; font-style: italic; }
form.b2b-form-create-account input#b2b-company {
	width: 50%; 
	height: 42px; 
	width: 100%; 
	padding: 0 10px; 
	border-radius: 3px; 
	font-size: 16px; 
}

form.b2b-form-create-account .b2b-actions-toolbar {
    display: block;
    width: 100%;
    clear: both;
}
form.b2b-form-create-account .b2b-actions-toolbar &gt; div button, form.b2b-form-create-account .b2b-actions-toolbar &gt; div a {
    color: #000;
    padding: 10px 15px;
}

form.b2b-form-create-account .b2b-actions-toolbar &gt; div {
    display: inline-block;
}
form.b2b-form-create-account .b2b-actions-toolbar .b2b-secondary {
    float: right;
    margin-top: 5px;
}
form.b2b-form-create-account .b2b-actions-toolbar .b2b-action { margin-left: 0px;     border-radius: 5px;}

form.b2b-form-create-account .b2b-control { position: relative; }
.b2b-block-order-details-comments {
    background: #e6eff3 !important;
    box-shadow: none !important;
    padding: 20px 30px;
}
.b2b-block-order-details-comments strong {
    font-weight: 700;
}
.edit-order-table .col-subtotal, .edit-order-table .col-tax-percent {
    display: none;
}
.edit-order-table .col-ordered-qty {
    text-align: center;
}
.edit-order-table .col-product {
    max-width: 300px;
}
.edit-order-table .col-tax-amount {
    text-align: center;
}
.b2b-order-table-content .b2b-totals .price {
    display: inline-block !important;
    float: none;
    width: auto;
    margin-left: 5px;
    font-weight: 700;
}
.actions.b2b-cart-custom.b2b-request-quote-btn a {
    background: #44c3ff !important;
    border: none;
}
#quote .b2b-introduction {
    margin: 3% 0%;
    color: #000;
    background: none !important;
    padding: 0;
}
#quote textarea {
    box-shadow: none;
    font-size: 13px;
    font-weight: 400;
    min-height: 100px;
    border: 1px solid #afaeaedd;
}
#quote .b2b-quote-form {
    padding-top: 20px !important;
}
#quote .b2b-quote-form h4 {
    border-bottom: none;
    font-size: 15px;
}
.rfq-productList th {
    color: #44c3ff !important;
    font-weight: 600 !important;
}

.rfq-productList th, .rfq-productList td {
    text-align: left !important;
    font-size: 12px;
    padding: 8px !important;
    border: 1px solid #ddd !important;
}
#quote table tr td {
    vertical-align: middle !important;
    padding: 7px 10px !important;
}
#quote textarea {
    box-shadow: none !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}
#quote .b2b-quote-form h4 {
    border-bottom: none !important;
    font-size: 17px !important;
    margin-bottom: 20px !important;
}
#submit-quote-request .b2b-quickQuoteButtons button {
    margin: auto;
    background: #44c3ff !important;
    padding: 10px 26px;
    font-weight: 400 !important;
    font-size: 15px !important;
    border: 0px;
}
.rfq-productList img {
    max-width: 100%;
    height: auto;
}
#submit-quote-request .b2b-quickQuoteButtons {
    margin-bottom: 20px;
    text-align: center;
}
textarea#quote-comments {
    border: 1px solid #d6d6d6 !important;
}
.b2b-actions-toolbar .b2b-action-primary, .b2b-actions-toolbar .action.primary, .b2b-actions-toolbar .b2b-action, .b2b-actions-toolbar .action {
    background: #44c3ff !important;
    border: none !important;
}
.apiquote-index-view .b2b-actions-toolbar {
    padding-bottom: 10px;
    display: block;
}
.apiquote-index-view fieldset.b2b-fieldset a {
    color: #44c3ff;
}

.checkout-payment-method .payment-option-inner {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.opc-wrapper .form-discount .actions-toolbar {
    position: unset;
    display: inline-block;
    vertical-align: middle;
}
.discount-code .step-title.field.choice {
    font-size: 13px;
    margin-bottom: 10px;
}
.opc-block-summary {
    background: #ffffff;
    border: 1px solid #e3e3e3;
}
.checkout-billing-address h3 {
    display: none;
}
.checkout-payment-method .payment-method-title {
    padding: 0;
}
.account .action-default, .account .block-footer .action-add, .account .block-footer .action-add, .account .page-main button {
    background: #44c3ff !important;
    border: none !important;
    color: #fff !important;
}
.b2b-admin__data-grid-pager input {
    height: 31px !important;
    top: 0 !important;
}
.account .page-main select {
    height: 31px !important;
}
.account .page-main input {
    height: 30px !important;
    min-height: auto !important;
}
.account .page-main .range &gt; div {
    display: inline-block !important;
    width: 50% !important;
}
.account .page-main select, .account .page-main input {
    font-size: 13px !important;
}
.account .page-main input[type="checkbox"] {
    height: auto !important;
}
span.counter.qty.empty {
    display: none;
}
.cms-page-view .container.main-container {
    max-width: 100%;
}
.cms-header h1 {
    color: #fff;
}
.cms-page-view .page-main svg {
    max-height: 13px;
    position: relative;
    top: 2px;
    margin-right: 10px;
}
form#contact-form input::placeholder, form#contact-form textarea::placeholder {
    font-size: 13px;
}
.contact {
    padding: 0px !important;
}
.contact h2 {
    display: none;
}
.checkout-cart-index .checkout button {
    background: #44c3ff !important;
}
.checkout-cart-index .checkout {
    background: none !important;
}
.table.totals .price {
    display: inline-block !important;
}
.cart-summary .checkout-methods-items .item {
    margin-bottom: 10px;
}
.opc-wrapper .shipping-address-item.selected-item {
    border-color: #44c3ff;
}
.opc-wrapper .shipping-address-item.selected-item:after {
    color: #44c3ff;
}
.block-minicart .subtotal .amount{
    color: #44c3ff;   
}
.checkout-billing-address {
    display: none;
}
.page-footer a:visited {
    color: #fff;
}
button#btn-minicart-close {
    display: none;
}
#minicart-content-wrapper #view-cart-btn, #minicart-content-wrapper .b2b-cart-custom {
    margin-top: 10px;
}

#minicart-content-wrapper .primary, #minicart-content-wrapper .secondary {
    width: 100%;
}
.minicart-items .product-item-name a {
    color: #000;
}
.horizontal-menu .magebig-nav li.level0&gt;a {
    font-size: 13px;
    font-weight: 400;
}
.smartmenu .mbi{
    padding-left: 8px;
}
#minicart-content-wrapper .primary, #minicart-content-wrapper .secondary {
    margin-bottom: 5px;
}
.block-nav{
    display: none;
}
.block.filter {
    padding: 0;
    margin-top: 15px;
}
.items-total {
    margin-bottom: 20px;
}
.user-icon-mobile svg {
    height: 25px;
}
.icon-top-mobile svg {
    height: 25px;
}
.header-content-action svg {
    height: 19px;
    fill: #fff;
}
.mb-toggle-switch {
    text-indent: 0;
    height: auto;
    margin: auto;
}
.header-content-action {
    text-align: center;
    padding: 10px 0px;
}
.header-content-action svg {
    margin-bottom: 7px;
}
.customer-account-edit #b2b-email {
    width: 100%;
}
.cms-page-view ul {
    list-style-type: disc;
}
.user-topbar.col {
    opacity: 0;
    pointer-events: none;
}
.catalog-category-view .product-item-photo img {
    max-height: 150px;
    width: auto;
}
.minicart-items .product-image-wrapper {
    height: 75px !important;
    min-height: auto;
}
.minicart-items .product-item .product-item-name {
    min-height: 38px !important;
}
.filter .field.search input[type="text"] {
    width: 100%;
    padding: 5px;
}
@media only screen and (min-width: 1600px){
    .container {
        max-width: 70%;
    }
    .main-wrap .container {
        max-width: 100%;
    }
}
@media only screen and (max-width: 1600px){

}
@media only screen and (max-width: 1400px){

}
@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
    .header-awards {
        text-align: right;
        margin-top: 10px;
    }
    .selling-features {
        font-size: 11px;
    }
    .wrapper-breadcrums .breadcrumbs, #maincontent .container {
        padding: 0px 1%;
    }
}
@media only screen and (max-width: 768px){
    .logo img {
        max-width: 60%;
    }
    .brand-logos .col-md-2:nth-of-type(n+10) {
        border-bottom: none;
    }
    
    .brand-logos .col-md-2:nth-of-type(n+7) {
        border-bottom: 1px solid #ddd;
    }
    .brand-logos .col-md-2:nth-child(6), .brand-logos .col-md-2:nth-child(12), .brand-logos .col-md-2:nth-child(3), .brand-logos .col-md-2:nth-child(9) {
        border-right: none;
    }
    .footer-main .title {
        font-size: 2rem;
    }
    .account-nav .content {
        margin-top: 30px;
    }
}


.container.main-container {
    z-index: 999;
    position: relative;;
    z-index: 3;
    background: #fff;
}
.page-header {
    z-index: 4;
    position: relative;
}
.page-footer{
    position: relative;
}
.page-bottom {
    background-color: #f4f5f5;
    position: absolute;
    top: 0;
    width: 100%;
}
#wprek {
    position: relative;
    top: 160px;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
  }
  #wprek.fix-banner {
    top: 0;
  }
  #wprek #wl_left, #wprek #wl_right {
    height: 100%;
    width: 20px;
    pointer-events: all;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #wprek #wl_left a, #wprek #wl_left .table-paging ul li button, .table-paging ul li #wprek #wl_left button, #wprek #wl_left ul.actions li button, ul.actions li #wprek #wl_left button, #wprek #wl_right a, #wprek #wl_right .table-paging ul li button, .table-paging ul li #wprek #wl_right button, #wprek #wl_right ul.actions li button, ul.actions li #wprek #wl_right button {
    display: inline-block;
    width: 100%;
    height: 100%;
  }
  #wprek #wl_left {
    float: left;
    padding-right: 10px;
    position: absolute;
    left: 0;
    width: auto;
  }
  #wprek #wl_left img, #wprek #wl_left iframe {
    float: right;
  }
  #wprek #wl_right {
    float: right;
    padding-left: 10px;
    position: absolute;
    right: 0;
    width: auto;
  }
  #wprek #wl_right img, #wprek #wl_right iframe {
    float: left;
  }
  #wprek.ssr #wl_left, #wprek.ssr #wl_right {
    padding-top: 4em;
  }
  #wprek.ssr #wl_left a, #wprek.ssr #wl_left .table-paging ul li button, .table-paging ul li #wprek.ssr #wl_left button, #wprek.ssr #wl_left ul.actions li button, ul.actions li #wprek.ssr #wl_left button, #wprek.ssr #wl_right a, #wprek.ssr #wl_right .table-paging ul li button, .table-paging ul li #wprek.ssr #wl_right button, #wprek.ssr #wl_right ul.actions li button, ul.actions li #wprek.ssr #wl_right button {
    display: inline;
    width: initial;
    height: initial;
  }
  .button-bottom-list {
    background: #44c3ff;
    display: block;
    text-align: center;
    padding: 7px;
    color: #fff;
}
.button-bottom-list:hover {
    color: #fff;
    opacity: 0.8;
}
.button-bottom-list:visited {
    color: #fff;
}
.home-slider {
    margin-top:0px;
}
.checkout-index-index .col-carrier {
    display: none;
}
.opc-block-summary .button-action {
    height: 40px;
    line-height: 40px;
    display: none;
}
.opc-block-summary .qty-wrapper .qty-wrap .input-text.update {
    border-color: #cccccc;
    pointer-events: none;
    width: 40px;
}
.one-step-checkout-wrapper #customer-email-fieldset.fieldset &gt; .field {
    padding: 0;
    margin-bottom: 20px !important;
}
.opc-block-summary .qty-wrapper .qty-wrap {
    width: 40px;
}
.one-step-checkout-wrapper .form.form-login {
    margin-bottom: 20px;
}
.opc-block-summary {
    padding: 0;
}
.opc-wrapper #co-place-order-area {
    margin: 0 !important;
    padding: 0px !important;
}
.opc-wrapper #co-place-order-area &gt; div {
    padding: 0 !important;
    margin: 0 !important;
}
.checkout-payment-method .payment-method+.payment-method .payment-method-title {
    padding: 21px;
    border: none;
}
.product-item {
    margin: 0 !important;
    padding: 0;
}
.product-item-info, .product-item.product-slider {
    max-width: 100%;
    border: 1px solid #dcdcdc;
    padding: 3%;
    margin: 3%;
}
.product-item .product-item-name {
    max-height: 48px;
    min-height: 48px;
    margin-top: 10px;
}
.mp-product-slider-content .tocart.primary {
    width: 100%;
    font-weight: 400;
}
.product-slider .slider-product-item-info {
    width: 100% !important;
    padding: 4%;
}
.product.details.slider-product-item-details {
    margin: 0 !important;
}
.mp-product-slider-content .product-items .product-slider .slider-product-item-details .slider-product-item-actions {
    margin-bottom: 0 !important;
}
.mp-product-slider-content .secondary-addto-links {
    display: none;
}
.home-text {
    padding: 30px 0px;
    text-align: center;
}
.opc-block-summary .minicart-items .product-item .product-item-name {
    max-height: 100%;
}
.onestepcheckout-index-index .create-account-block .field, .onestepcheckout-index-index .field.choice.col-mp{
    padding: 0px;
}
.opc-wrapper #shipping-new-address-form&gt;.field.street&gt;.control&gt;.field{
    padding: 0 20px;
    padding-right: 0;
}
.product-sku{
    font-size: 11px;
    margin-bottom: 4px;
}
.header-main-content {
    background: #272727;
}
.header-menu-content {
    border: none;
    background: #1f1f1f;
}
.horizontal-menu .magebig-nav li.level0&gt;a {
    color: #fff;
}
.horizontal-menu .magebig-nav li.level0&gt;a+.mbi {
    color: #fff;
}
.action.showcart .counter.qty{
    top: -6px;
}
span.counter.qty {
    position: absolute;
    top: -6px;
    background: #44c3ff;
    color: #fff;
    border-radius: 30px;
    font-size: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    right: -6px;
}
.checkout-cart-index .page-title {
    text-align: left;
    margin: 0;
}
.checkout-cart-index .page-main {
    padding-bottom: 0;
}
.cart.table-wrapper .actions-toolbar&gt;.action-delete:before {
    content: "\e681";
    height: 20px;
    width: 20px;
    display: inline-block;
    content: '' !important;
    background: url(/media/svg/trash-can-solid.svg) no-repeat;
    background-size: 12px;
}
.cart.table-wrapper .actions-toolbar&gt;.action-delete:before {
    color: #146f7c !important;
}
.cart.table-wrapper td.col.stock, .cart.table-wrapper th.col.stock, .cart.table-wrapper td.col.image, .cart.table-wrapper th.col.image, .cart.table-wrapper td.col.price, .cart.table-wrapper th.col.price {
    text-align: center;
}
#shopping-cart-table .price-excluding-tax .price, .catalog-product-view .price-including-tax .price {
    margin: 0px;
    font-weight: 400;
    font-family: 'Work Sans', sans-serif !important;
}
.product.attribute.overview br {
    display: none;
}
#shopping-cart-table .price-including-tax .price {
    color: #717171 !important;
}
#shopping-cart-table .price-including-tax::after, #shopping-cart-table .price-excluding-tax::after{
    display: none;
}
#shopping-cart-table th.col.price, #shopping-cart-table td.col.price, #shopping-cart-table th.col.subtotal, #shopping-cart-table td.col.subtotal, #shopping-cart-table th.col.price, #shopping-cart-table td.col.stock, #shopping-cart-table th.col.subtotal, #shopping-cart-table td.col.stock {
    min-width: 110px;
}
.cart.table-wrapper .actions-toolbar&gt;.action-delete:before {
    content: "\e92a" !important;
}
.cart.table-wrapper .actions-toolbar&gt;.action-delete {
    bottom: 40%;
    left: 40%;
}
.cart.table-wrapper .actions-toolbar&gt;.action-edit:before, .cart.table-wrapper .actions-toolbar&gt;.action-delete:before, .action-delete:before, .minicart-items .action.delete:before {
    color: #af1111 !important;
    font-size: 18px;
    font-weight: 800;
}
.minicart-items .action.delete:before{
    content: "\e92a";
}
.product-attributes-cart .attribute {
    margin-top: 10px;
}
.product-attributes-cart .attribute span {
    color: #909090;
    font-weight: 500;
}
.cart.table-wrapper .product-item-name {
    font-size: 18px;
    line-height: initial;
    margin-bottom: 10px;
    font-family: 'Work Sans', sans-serif !important;
}
.product-attributes-cart .attribute span, .product-attributes-cart .attribute b {
    /* width: 50%; */
    display: inline-block;
    /* margin: -1px; */
    vertical-align: middle;
}
.cart-container .form-cart {
    width: 100% !important;
}
.qty-actions {
    display: none;
}
.cart-container .form-cart {
    width: 100% !important;
    padding: 0 !important;
}
.checkout-cart-index .cart-summary {
    width: 50%;
}
.cart.table-wrapper .cart thead tr th.col {
    background: #f1f1f1;
    border-bottom: 0;
    padding: 10px 10px;
}
.cart.table-wrapper .cart tbody td {
    padding: 5px 0px;
}
.cart.main.actions {
    display: none;
}
body.checkout-cart-index .totals .amount span {
    width: 100%;
    display: block !important;
}
.cart-bottom-left {
    clear: both;
    width: 50%;
    display: inline-block;
    padding-right: 30px;
}
#block-shipping #block-summary {
    display: block !important;
    padding: 2% 5%;
    border: 1px solid #ddd;
}
#shipping-zip-form .legend {
    display: none;
}
#block-shipping .title {
    width: auto;
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-bottom: 0;
    background: #fff;
    position: relative;
    top: 1px;
}
.checkout-cart-index #co-shipping-method-form .price {
    display: inline-block !important;
}
.checkout-cart-index #co-shipping-method-form .item-title {
    margin-bottom: 10px;
}
.cart-summary&gt;.title {
    display: none !important;
}
.cart-totals, .opc-block-summary .table-totals {
    border: none;
}
.cart-totals .grand .mark, .opc-block-summary .table-totals .grand .mark, .cart-totals .grand .amount, .opc-block-summary .table-totals .grand .amount {
    border: none;
}
.cart-bottom-left-navigation {
    display: none;
}
#block-discount {
    padding: 2% 5%;
    border: 1px solid #ddd;
    margin-top: 1%;
    margin-bottom: 4%;
}
#shopping-cart-table .product-image-photo {
    max-width: 75px;
}
.cart.table-wrapper .col.qty .input-text {
    height: 32px;
    margin-top: 0px;
}
.product-tab .main-photo img {
    max-width: 75px;
    display: block;
    margin: auto;
}
.product-tab-item {
    border-bottom: 1px solid #ddd;
    padding-right: 2%;
    padding-left: 2%;
}
.small-facts {
    font-size: 11px;
    margin-top: 10px;
}
.stock.unavailable a {
    text-decoration: underline;
}
.stock.unavailable, .stock.unavailable a {
    color: #980d0d;
}
.stock.available {
    color: #1e6145;
}
.qty-small {
    height: 39px !important;
}
.out-of-stock.button {
    background: #ddd;
    border: none;
    border-radius: 3px;
    height: 39px;
    width: 100%;
}
.product-tab-item .tocart.primary {
    width: 100%;
}
.catalog-product-view .container.main-container {
    padding-left: 5%;
    padding-right: 5%;
}
.product-tab-item h2 {
    font-size: 16px;
}
.product.data.items {
    text-align: left;
}
.specification-table-content table td {
    border: 1px solid #ddd;
    padding: 8px;
}
.specification-table-content table th {
    margin-bottom: 10px;
    font-size: 16px;
    margin-top: 10px;
    width: 100% !important;
    padding: 25px 0px 10px 0px;
}
.specification-table-wrapper {
    margin-bottom: 30px;
}
.specification-table-wrapper h2 {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 7px;
}
#more {
    display: none;
}
.no-style-button {
    border: none;
    padding: 0;
    color: #44c3ff;
    font-weight: 500;
}
/*Product Page Tabs Style*/
.data.item.title.opened {
    border: 1px solid #ddd;
    border-bottom: none !important;
    position: relative !important;
    z-index: 3 !important;
}
.product.info.detailed .opened+.item.content {
    display: block;
    border: 1px solid #ddd;
    position: relative;
    z-index: 2;
}
.product.data.items:before {
    display: none;
}
.product.data.items .item.title&gt;.switch:before, .product.data.items .item.title&gt;.switch:after {
    display: none;
}
.product.data.items&gt;.item.title {
    position: relative;
    z-index: 1;
}
.product-tab .product-tab-item:last-child {
    border-bottom: none;
}
.cms-index-index .homepage-wallpaper {
    display: block;
}
.homepage-wallpaper {
    display: none;
}
.product-stock{
    font-size: 11px;
    margin-bottom: 10px;
}
svg.small-icon {
    width: 9px;
    position: relative;
    top: 2px;
    margin-right: 4px;
}
a.bulk-enquiry {
    margin: 10px 0px;
    display: block;
    color: #2f2f2f;
    font-size: 11px;
}
a.bulk-enquiry svg{
    fill: #f9a110;
    width: 7px;
}
.bulk-enquiry:hover svg {
    fill: #f9a110;
}
.short_description {
    margin-bottom: 10px;
}
.products.list .product-item-description {
    margin-top: 0;
}
.category-landing .pagebuilder-column img {
    margin-bottom: 10px;
}

.category-landing .pagebuilder-column {
    padding: 2%;
    margin: 10px;
    border: 1px solid #ddd;
}
.h-50 {
    height: 130px !important;
}
.h-50 img {
    max-height: 130px;
    margin: auto;
    display: block;
}
.icon-top-mobile svg {
    fill: #fff;
}
.menu-logo .btn-nav {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0;
}
.mb-toggle-switch span {
    background: #fff;
}
.mb-toggle-switch span::before, .mb-toggle-switch span::after {
    background: #fff;
}
.icon-top-mobile .user-topbar, .icon-top-mobile .minicart-action {
    display: inline-block;
    vertical-align: middle;
}
.icon-top-mobile {
    max-width: 100%;
}
.container.logo-checkout {
    background: #272727;
    max-width: 100% !important;
    padding-bottom: 50px;
}
/***/
  @media (max-width: 993px) {
    #wprek {
      display: none;
    }
    .second-header-blocks .row &gt; div:nth-child(3), .second-header-blocks .row &gt; div:nth-child(4), .second-header-blocks .row &gt; div:nth-child(2) {
        display: block;
    }
    .second-head-block svg, .second-head-block img{
        width: auto;
    }
    .second-header-blocks .row &gt; div {
        position: absolute;
    }
    #slide-container {
        padding: 15px 0px;
    }
    #slide-first-1 {
        animation: fade-1 30s infinite;
        -webkit-animation: fade-1 30s infinite;
    }
    #slide-element-2 {
        animation: fade-2 30s infinite;
        -webkit-animation: fade-2 30s infinite;
    }
    #slide-element-3 {
        animation: fade-3 30s infinite;
        -webkit-animation: fade-3 30s infinite;
    }
    @keyframes fade-1 {
        0% { opacity: 0; }
        25%{ opacity: 1;}
        33.33% { opacity: 0; }
        66.66% { opacity: 0; }
        100% { opacity: 0; }
    }
    @keyframes fade-2 {
        0% { opacity: 0; }
        33.33% { opacity: 0; }
        55% { opacity: 1; }
        66.66% { opacity: 0; }
        100% { opacity: 0; }
    }
    @keyframes fade-3 {
        0% { opacity: 0; }
        33.33% { opacity: 0; }
        66.66% { opacity: 0; }
        90% { opacity: 1;}
        100% { opacity: 0; }
    }
  }
  @media only screen and (min-width: 1200px) {
    #wprek.ssr #wl_left {
      padding-right: 1em;
    }
    #wprek.ssr #wl_right {
      padding-left: 1em;
    }
  }
  @media only screen and (min-width: 1600px) {
    body.wallpaper #wprek #wl_left, body.wallpaper #wprek #wl_right {
      width: 15%;
    }
    #wprek.ssr #wl_left {
      padding-right: 4em;
    }
    #wprek.ssr #wl_right {
      padding-left: 4em;
    }

  }</pre></body></html>