/* ==========================================================================
   General Site Styling
   ========================================================================== */

/* Cheat sheet color codes
   ========================================================================== 
Cyan: #0093D7;
Grey: #828386;
Blue: #3D4975;

*/

/* Fonts
   ========================================================================== */
/* ----- Imported fonts -----*/
@font-face {
    font-family: 'Futura Book';
    src: url('//fonts.parttrap.com/austworld/FuturaStd-Book.otf');
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: 'Futura Medium';
    src: url('//fonts.parttrap.com/austworld/FuturaStd-Medium.otf');
    font-style: normal;
    font-weight: 600;
}


/* ----- Body fonts ----- */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #3c3c3c;
    letter-spacing: 0.03em;
}

/* ----- Headings -----*/
h1, h1.page-header, h2, h2.page-header, .page-header, h4, h5, h6, .h1, .h2, .h4, .h5, .h6 {
    font-family: 'Futura Book', sans-serif !important;
    color: #333A42;
}
h1, h1.page-header {
    font-size:28px;
  font-family: 'Futura Medium', sans-serif !important;
  text-transform: Uppercase;
}
h2, h2.page-header {
    letter-spacing: 0;
  }
h3, h3.page-header {
    letter-spacing: 0.02em;
  font-family: Arial, sans-serif;
  font-weight: normal;
  margin-top: 5px;
}

/*---- Links ------*/
/* Body links */
.cd-main-content p > a:not(.btn) {
    color: #0093D7;
}
.cd-main-content p > a:not(.btn):hover {
    color: #0093D7;
}

/* Buttons
   ========================================================================== */
/* ----- Buttons general ----- */
.btn, .btn:focus, .btn:active {
   /* background: #0093d7 !important;
    border-color: #0093d7 !important;*/
    color: #fff;
    text-transform: none !important;
    transition:all .5s;
    border-radius:5px !important;
    min-width:150px;
    border:none !important;
}
.btn:hover {
    background: #3D4975 !important;
    border-color: #3D4975 !important;
    color: #fff;
}
/* Alertify buttons */
.alertify-button, .alertify-button:hover, .alertify-button:focus, .alertify-button:active {
    background: none !important;
    border-color: transparent;
    color: #0071e3;
}
.alertify-button-ok, .alertify-button-ok:hover, .alertify-button-ok:focus, .alertify-button-ok:active {
    background: #0071e3 !important;
    color: #fff;
    text-transform: none !important;
    border-radius: 25px !important;
    border-color: #0071e3;
    letter-spacing: -0.022em;
}
.alertify-button-ok:hover {
    background: #3D4975 !important;
    border-color: #3D4975 !important;
}

/* Notifier Container
   ========================================================================== */
.alertify-log {
    background: #0093D7;
    border-color: #0093D7;
    border-radius: #fff;
}

/* Custom Page Width
   ========================================================================== */
@media screen and (min-width:1650px) {
   /* .container {
       width: 1550px;
    }*/
}

/* General Page Styling
========================================================================== */
.cd-main-content {
    background: #F3F3F3;
}
.cd-main-content > .content > .container {
    background: #fff;
    padding-top: 15px;
}
.cd-main-content > .content {
    min-height: 100vh;
    padding-top: 0;
}
@media screen and (max-width: 767px){
    .cd-main-content > .content {
        padding-top: 0;
    }
}
body {
    overflow-x: hidden;
}
/* Paddings & Margins & Alignment
   ========================================================================== */
.no-side-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.no-side-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.centered-content {
    text-align: center !important;
}
.section + .section, .content section {
    padding-bottom: 20px;
}
.minus-margin-top {
    margin-top: -30px;
}

/* Flex classes
   ========================================================================== */
@media screen and (min-width: 768px) {
    /* Set flex on container */
    .flex-container {
        display: flex;
    }
    /* Center flex child vertically */
    .flex-align-center {
        align-self: center;
    }
}

/* Header
   ========================================================================== */
/* ----- General header styling -----*/
.header {
  background: #fff;
  border: none;
}
.header-flex-col {
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
    position: relative;
    align-items: flex-end;
}
@media screen and (max-width: 767px){
    .header-flex-col {
        margin-right: -6px;
    }
}
.header-flex-col .section {
    padding-bottom: 0;
}
.header-flex-col .cd-main-header {
    position: relative; 
    top: 12px;
}
.top-bar > .container {
    padding-left: 15px;
    padding-right: 15px;
}
.header > .container {
    padding-left: 15px;
    padding-right: 15px;
}
@media screen and (max-width: 1340px){

    .content_block, .image_block{
        width:100% !important;
    }
}
@media screen and (min-width: 1200px){
    .header > .container > div, .top-bar > .container > div {
        padding-left: 0;
        padding-right: 0;
    }
}
@media screen and (max-width: 1199px){
    .header-flex-col .cd-header-buttons:before {
        content: 'Menu';
        position: relative;
        top: -17px;
        right: -6px;
    }
    .header-flex-col .cd-header-buttons {
        position: relative;
        bottom: 0;
        right: 0;
        padding-left: 0;
        margin-bottom: 0;
    }
    .header-flex-col {
        padding-right: 0;
    }

    .first_col {
        width:100%;
        margin-bottom:30px;
    }
    .header.sticky-header{
        top:114px !important;
    }
}
@media screen and (max-width: 767px){
    .header-flex-col {
        margin-left: auto;
    }
}

/* ----- Sticky header -----*/
.sticky-header img {
    height: 75px !important;
}
.header.sticky-header {
    position: fixed;
    top: 97px;
    left: 0;
    z-index: 44;
    width: 100%;
}
.top-bar.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 45;
    width: 100%;
    padding-top: 9px;
    padding-bottom: 9px;
}
.top-bar.sticky-header img {
    transition: height 0.3s linear;
}
.btn .fa-search {
    font-size: 14px !important;
}
.header-search-row.sticky-header {
    animation-name: stickyheader;
    animation-duration: 0.45s;
}
@keyframes stickyheader {
    from {
        transform: translatey(10px);
    }
    to {
        transform: translatey(0px);
    }
}
.sticky-header .user-container {
    top: 74px;
}
.sticky-header .section_MiniBasket #minibasket {
    bottom: -12px;
}
.top-bar.sticky-header .top-nav .dropdown-menu {
    top: 32px;
}

/* ----- Top-bar ----- */
/* Top bar general */
.top-bar {
    background: #fff;
    border: none;
    padding-top: 20px;
    padding-bottom: 12px;
}
.top-bar .cd-main-header {
    background: none !important;
}
.top-bar img {
    transition: height 0.3s linear;
}
@media screen and (max-width: 1199px){
    .top-bar > .container {
        padding: 0;
    }
}
@media screen and (max-width: 767px){
    .top-bar {
        padding-left: 15px;
        padding-right: 15px;
    }
    .top-bar .col-sm-4 {
        padding-left: 0;
    }
}

/* ----- My account dropdown ----- */
/* Account dropdown general */
.user-container {
    position: absolute;
    background: #fff;
    display: none;
    z-index: 557;
    border: none;
    top: 88px;
    padding: 20px 0px;
    box-shadow: 0 0 0 1px #e7e7e7, 0 2px 8px #ccc;
}
.user-container .sidebar-nav-items {
    border: none;
    margin-bottom: 0;
}
.user-container .sidebar-nav-heading {
    font-size: 1em;
    margin-bottom: 5px !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    padding-left: 0;
}
.user-container .nav-pills.pull-left {
    width: 100%;
    margin: 0;
}
.user-container .user-profile-page-link a {
    display: flex;
    flex-direction: column;
}
.user-container .sidebar-nav a {
    text-transform: none;
}
.user-container .sidebar-item {
    margin: 0 !important;
    padding-right: 0 !important;
}
.user-container .sidebar-nav {
    padding-bottom: 15px;
}
.loggedin-text ul {
    display: flex;
    flex-wrap: wrap;
}
.loggedin-text ul li {
    width: 100%;
}
.loggedin-text .user-log-out-link {
    background: #0093D7;
    text-align: center;
    font-size: 14px;
}
.loggedin-text .user-log-out-link:hover {
    background: #3D4975;
}
.loggedin-text .user-log-out-link a {
    color: #fff;
}
.loggedin-text .user-log-out-link {
    background: #0071e3;
    text-transform: none !important;
    border-radius: 25px;
    letter-spacing: -0.022em;
    font-size: 1em;
}
.loggedin-text .user-log-out-link a:hover,
.loggedin-text .user-log-out-link a:visited,
.loggedin-text .user-log-out-link a:focus {
    border-radius: 25px !important;
}
.loggedin-text .user-log-out-link a {
    color: #fff !important;
}
.user-container .nav-pills.pull-right {
    margin-right: 0;
}
.user-container .user-profile-page-link {
    margin-bottom: 10px;
}
.user-container .user-profile-page-link a {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
}
.user-container .user-profile-page-link a:hover {
    color: #000;
}
.user-container .user-profile-page-link .user-profile-customer-code {
    margin-right: 5px;
}
.user-container .user-profile-name {
    word-break: break-all;
}
.user-container .user-profile-sep {
    display: none;
}
.user-container .loggedin-as {
    padding: 0 !important;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
}
.user-container .loggedin-as p {
    margin-bottom: 5px;
    font-weight: bold;
}
.user-container .sidebar-nav-heading {
    text-transform: none;
    margin-bottom: 0 !important;
}
.user-container {
    width: 250px;
}
.user-container .nav-pills.pull-right {
    width: 100%;
}
.user-container .user-profile-name {
    margin-right: 7px;
}
.user-container .sidebar-nav a {
    font-size: 16px;
}
.user-container .sidebar-nav a:hover {
    opacity: 0.7;
}
.user-container .sidebar-item {
    padding-bottom: 5px;
}
.user-container .loggedin-as {
    border: none;
}
.user-container {
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    top: 87px;
    right: -2px;
}

/* User toggle */
.user-toggle > span {
    cursor: pointer;
    padding: 0px 10px;
    font-family: Arial, sans-serif;
}
.user-toggle > span:before {
    margin-right: 10px;
    font-family: fontawesome;
}
.user-toggle {
    margin-right: 10px;
}
.user-toggle span {
    padding-left: 0;
}
.user-toggle span:after {
    content: '\f0d7';
    margin-left: 8px;
    font-family: fontawesome;
}
.user-toggle {
    margin-left: 10px;
}
.user-toggle span {
    padding-right: 0;
}
.user-toggle span {
    position: relative;
    top: 1px;
}

/* ----- Login ----- */
/* Login general */
.login-btn .user-profile-page-link {
    display: none;
}

/* @ Login mobile <-767px */
@media screen and (max-width:767px) {
    
}

/* ----- Logo ----- */
/* Logo general */
.logo-img img {
    height: 75px;
}



/* ----- Cart ----- */
/* Cart general */
.section_MiniBasket * {
    box-shadow: none !important;
}
.section_MiniBasket .cart-content.container {
    box-shadow: 1px 2px 3px #ccc !important;
    border-left: 1px solid #eee !important;
    border-right: 1px solid #eee !important;
    padding: 10px;
}
.section_MiniBasket .btn-group-justified .btn:first-of-type {
    width: 49%;
    float: left;
}
.section_MiniBasket .btn-group-justified .btn:last-of-type {
    width: 49%;
    float: right;
    border-radius:5px !important;
}
.section_MiniBasket th {
    border-top: none !important;
    text-transform: none;
}
.section_MiniBasket .cart:hover {
    width: 100%;
    background: none;
    box-shadow: none;
}
.section_MiniBasket .cart-btn {
    background: none;
    border: none;
}
.section_MiniBasket .cart-field {
    background: none;
    border: none;
    box-shadow: none;
    color: #fff;
}
.section_MiniBasket .cart-content {
    right: 0;
    width: 350px;
    top:52px;
}
.section_MiniBasket .cart-field-label {
    margin-right: 15px;
}
.section_MiniBasket {
    margin-left: auto;
}
.section_MiniBasket #minibasket {
    height: 100%;
    position: relative;
    bottom: -12px;
}
.section_MiniBasket .cart.header-input {
    margin: 0;
    height: 100%;
}
.section_MiniBasket .input-group,
.section_MiniBasket .cart-field {
    height: 100%;
}
.section_MiniBasket .cart-btn {
    padding: 0;
    font-size: 20px;
    position: relative;
    top: -5px;
}
.section_MiniBasket .cart-field {
    text-transform: none;
}
[data-loggedin="False"] .section_MiniBasket {
    display: none;
}
.section_MiniBasket .input-group {
    position: relative;
    top: -6px;
}
.cart .btn-group-justified {
    display: flex;
    justify-content: space-between;
}
.cart .btn-group-justified > a {
    width: 48.5%;
    min-width: unset;
}
.section_MiniBasket .js-removeFromBasket {
    position: static;
}
@media screen and (max-width: 991px){
    .section_MiniBasket {
        margin-left: 0px;
    }
}
@media screen and (max-width: 767px){
    .header .cart-field-amount {
        display: none;
    }
    .header .cart-content.container {
        display: none;
    }
    .section_MiniBasket .badge {
        background: #0071e3;
        color: #fff;
        border: none;
    }
    .section_MiniBasket {
        margin-left: 0px;
    }
}
.feature-basket .checkoutMinicartBtn {
    border-radius: 25px !important;
    font-size: 1em;
    padding: 8px 11px;
    letter-spacing: -0.022em;
}
.feature-basket .checkoutMinicartBtn:hover {
    background-color: #3D4975;
}
.feature-basket .btn-group .btn:first-of-type {
    background: none;
    border: none;
    color: #0071e3;
    font-size: 1em;
    padding: 8px 11px;
    letter-spacing: -0.022em;
}

/* ----- Search -----*/
/* Search general */
.header-search-row > .container > div {
    display: flex;
}
.header-search-row {
    background: #3C3C3C;
    padding: 12px 0 !important;
}
.header-search-row .section {
    padding-bottom: 0;
}
.section_CatalogSearchBox .header-input {
    margin: 0;
}
.section_CatalogSearchBox {
    flex: 2;
    padding-left: 0px !important;
    padding-right: 0px !important;
    display: flex;
    align-items: center;
}
.section_219{
    margin-left:0px !important;
}
.section_CatalogSearchBox form {
    width: 100%;
}
.section_CatalogSearchBox input {
    border-radius: 0;
    box-shadow: none;
    height: 40px;
    position: relative;
    right: -26px;
}
.section_CatalogSearchBox .btn {
    position: relative;
    left: -15px;
    top: -1px;
    height: 34px;
    background: none;
    color: #000;
    border: none;
    padding:8px 11px !important;
    min-width:inherit !important;
}
.hover-product-additonal-details{
    color:#333A42;
}
.header-search-row .section_CatalogSearchBox {
    max-width: 750px;
    margin-left:auto;
    margin-right:auto;
}
.header .catalogsearchboxbutton:hover {
    box-shadow: none;
    outline: none;
}
.form-control-search:focus {
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(0 147 215 / 60%) !important;
}
.header-search-row {
    height: 64px;
}
.header-search-row {
    transition: height 0.1s linear;
}
/* Search > 1199px */
@media screen and (max-width: 1199px){
    header-search-row > .container {
        padding: 0;
    }
    .header-search-row > .container > div {
        padding: 0;
    }
    .section_CatalogSearchBox {
        padding: 0 !important;
    }
}
@media screen and (max-width: 991px){
    .section_CatalogSearchBox .input-group {
        position: relative;
        display: flex;
        border-collapse: separate;
        width: 100%;
        padding-left: 2px;
    }
    .section_CatalogSearchBox .input-group-btn {
        position: relative;
        left: -24px;
    }
    .header-search-row .container {
        padding-left: 0;
        padding-right: 0;
    }
    .section_CatalogSearchBox input {
        right: 0; 
    }
}
/* Search > 767px */
@media screen and (max-width: 767px){
    .header-search-row {
        padding: 10px 15px !important;
    }
    .section_CatalogSearchBox .input-group-btn {
        position: relative;
        left: -24px;
        top: 4px;
    }
    .header-search-row .container {
        padding-left: 0;
        padding-right: 0;
    }
    .section_CatalogSearchBox input {
        right: 0; 
    }
    .pt-btn-basket .badge {
        top: 13px;
        margin-left: 0px;
        right: 0;
    }
    .slick-prev, .slick-next{
        display:none !important;
    }
    .section_860{
        text-align:center;
    }
}

/* ----- Product nav button desktop -----*/
.nav-product-link .btn:hover, .nav-product-link .btn:focus, .nav-product-link .btn:active,
.nav-product-link .btn {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}
.nav-product-link .btn:before {
    content: '\f0c9';
    font-family: fontawesome;
    font-weight: bold;
    margin-right : 10px; 
}
.nav-product-link p {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-product-link {
    width: 150px;
}
.nav-product-link a {
    font-size: 1.1em;
}

/* ----- Header call mobile -----*/
@media screen and (max-width: 850px) {
    .header-call {
        display:block !important;
    }
}
@media screen and (max-width: 767px) {
    .header-flex-col {
        flex-direction: row;
    }
    .header-call {
        margin-right: 10px;
        margin-bottom: -4px;
    }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

/* Main navigation
   ========================================================================== */
/* ----- Main navigation general ----- */
.header-search-row .section_Menu .cd-primary-nav {
    margin: 0;
    padding: 0;
}
.header-search-row .section_Menu .cd-main-header {
    background: none;
    border: none;
}
@media screen and (max-width: 1199px){
    .cd-primary-nav {
        background: #3C3C3C;
    }
    .cd-primary-nav ul {
        background: #3C3C3C;
    }
    .cd-primary-nav li {
        border-bottom: 1px solid #555555;
        margin-left: 0 !important;
    }
}


/* ----- Top navigation general ----- */
.top-bar .nav a {
    background: none;
    color: #000;
    font-size: 1em;
    font-weight: 400 !important;
    text-transform: none;
}
.top-bar .nav a:hover {
    background: none;
}
.top-bar > .container {
    display: flex;
    flex-wrap: wrap;
}
.top-bar-link>a {
    border: none;
}
.top-nav a {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.top-nav a:hover {
    color: #000 !important;
}
.top-nav nav {
    padding-right: 0 !important;
}
.top-bar .nav a:focus, .top-bar .nav a:hover, .top-bar .nav a:visited {
    background: #fff;
    color: #000;
}
.top-bar .loggedin-text .nav .user-log-out-link a:focus, .top-bar .loggedin-text .nav .user-log-out-link a:hover, .top-bar .loggedin-text .nav .user-log-out-link a:visited {
    background: #3D4975;
    color: #fff;
}
.top-nav .navbar-nav li.active {
    background: none;
}
.top-nav .dropdown-menu {
    background: #fff !important;
}
.top-nav .dropdown-menu li a {
    padding: 6px 0px !important;
    border-bottom: 1px solid #eee;
    font-size: 16px !important;
}
.top-nav .dropdown-menu li:last-of-type a {
    border-bottom: 0;
}
.top-nav .dropdown-menu {
    padding-left: 10px;
    padding-right: 10px;
}
.top-bar .nav .dropdown-menu, .top-bar .nav .open, .top-bar .nav a {
    background: transparent;
}
.top-nav .navbar-nav > li {
    height: 35px;
    position: relative;
    bottom: -12px;
}
.top-nav .navbar-nav > li > a {
    margin-top: 3px;
    transition:all .5s;
    position:relative;
}
.top-nav .navbar-nav  li  a:after {
    content:'';
    position:absolute;
    top:-10px;
    left:0;
    background-color:#3D4975;
    height:2px;
    width:0;
    transition:all .5s linear;
}
/*.top-nav .navbar-nav  li  a:hover:after, .top-nav .navbar-nav  li  a:focus:after {
    width:100%
}*/
.top-nav .navbar-nav li a:hover {
    color:#3D4975 !important;
}
.dropdown-menu li a:after{
    display:none;
}
.top-bar .navbar-nav li.active .menulabel {
    background: none;
    color: #000 !important;
}
.top-bar .navbar-nav li.active .menulabel:before {
    content: '';
    height: 2px;
    width: 100%;
    background: #3C3C3C;
    position: absolute;
    top: -10px;
    left: 0;
}

/* Sidebar navigation
   ========================================================================== */
/* ----- Sidebar navigation general ----- */
.cd-main-content .sidebar-nav-heading {
    display: none;
}
.cd-main-content .sidebar-nav-items {
    border: none;
    margin-bottom: 0;
}
.cd-main-content .sidebar-nav a {
    text-transform: none;
    transition:all .5s;
}
.cd-main-content .sidebar-nav a:hover{
    color:#0093D7;
}
.cd-main-content .sidebar-nav * {
    background: none;
    box-shadow: none !important;
}
.cd-main-content .sidebar-nav .sidebar-item {
    border-bottom: 1px solid #555555;
    padding-bottom: 9px;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 9px;
}
.cd-main-content .toggle-lvl-one .toggle-item {
    padding: 0;
}
.cd-main-content .toggle-lvl-one .toggle-sign {
    top: -2px;
}
.cd-main-content .toggle-item.active > .sidebar-item > a.active {
    color: #0093D7;
}
.cd-main-content .sidebar-nav a {
    color: #3D4975;
}
.cd-main-content .toggle-lvl-one > .toggle-item > .sidebar-item {
    margin-left: 0 !important;
}
.cd-main-content .sidebar-item {
    padding-left: 8px;
}
.cd-main-content .sidebar-nav {
    background: #3C3C3C;
}
.cd-main-content .sidebar-nav a {
    color: #DADADA; 
}
.sidebar-nav-items li {
    border-top: none !important; 
}
.cd-main-content .sidebar-nav {
    padding: 15px;
}
.cd-main-content .sidebar-nav .toggle-sign {
    color: #dadada;
}
@media screen and (max-width: 767px){
    .cd-main-content .sidebar-nav-toggle {
        color: #000;
        border-color: #eee;
    }
    .cd-main-content .section_Menu {
        padding-bottom: 0;
    }
}

/* Custom sidebar classes */
.bg-link-grey > .sidebar-item {
    background: #f7f7f7 !important;
}
.bg-link-cyan > .sidebar-item {
    background: #0093D7 !important;
}
.bg-link-cyan > .sidebar-item > a {
    color: #fff;
}
.bg-link-cyan.active a.active {
    color: #fff !important;
}
.bg-link-grey > .sidebar-item > a {
    color: #333;
}
.bg-link-grey .toggle-sign {
    color: #3C3C3C !important;
}
.bg-link-grey, .bg-link-grey ul > .see-all {
    background: #f7f7f7;
}
.bg-link-grey > a, .bg-link-grey > ul > .see-all > a {
    color: #333 !important;
}
.bg-link-grey > a:before, .bg-link-grey > a:after,
.bg-link-grey > ul > .see-all > a:before, .bg-link-grey > ul > .see-all > a:after {
    background: #333 !important;
}
.bg-link-cyan, .bg-link-cyan ul > .see-all {
    background: #0093D7;
}
.bg-link-cyan > a, .bg-link-cyan > ul > .see-all > a {
    color: #fff !important;
}
.bg-link-cyan > a:before, .bg-link-cyan > a:after,
.bg-link-cyan > ul > .see-all > a:before, .bg-link-cyan > ul > .see-all > a:after {
    background: #fff !important;
}

/* Footer navigation
   ========================================================================== */
/* ----- Footer navigation general ----- */




/*Footer
   ========================================================================== */
/* Footer general */
.footer {
    background: #133359;
    padding-top: 50px;
}
.footer p {
    color: #fff;
    text-transform: none;
    line-height: 120%;
}
.social-links a {
    font-size: 0px;
    padding: 8px;
    background: #fff;
    text-align: center;
    width: 41px;
    margin-right: 5px;
}
.social-links a:hover {
    opacity: 0.9;
}
.social-links a:before {
    position: relative;
    display: block;
    font-size: 25px;
    color: #fff;
}
.social-links .fa-facebook {
    background: #4267B2;
}
.social-links .fa-instagram {
    background: #405DE6;
}
.social-links a:hover {
    text-decoration: none;
}
.social-links {
    margin-top: 15px;
}
.footer h4 {
    color: #fff;
    font-size: 1.1em;
    text-transform: none;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #fff;
}
.footer-bottom {
    margin-top: 20px;
}
.footer-icon-flex {
    display: flex;
    flex-wrap: wrap;
}
.footer-icon-flex > .section {
    padding: 4px;
    width: 50%;
}
.footer h3 {
    color: #fff;
    text-transform: none;
}
.footer p {
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 20px;
}
.footer {
    padding-top: 70px;
    padding-bottom:20px !important;
}
@media screen and (max-width: 767px){
    .footer {
        text-align: center;
    }
    .social-links {
        margin-bottom: 40px;
    }
}


/* ==========================================================================
   Section Styling
   ========================================================================== */
/* ----- Search autocomplete dropdown ----- */
#ui-id-1 li {
    border-bottom: 1px solid #eee;
}
#ui-id-1 li:last-of-type {
    border-bottom: none;
}
#ui-id-1 .ui-state-active {
    background: #eee;
    border: none;
}
#ui-id-1 li a div:first-of-type {
    margin-right: 8px;
}
.ui-autocomplete li {
    background: #f7f7f7;
    font-family: Arial, sans-serif;
    font-size: 14px;
    width: 100%;
    clear: left;
}
.ui-autocomplete li a:hover {
    background: #fff;
}
.ui-widget-content {
    border-color: #eee;
}
.ui-menu-item span.productType-1 {
    display: none;
}
@media screen and (max-width: 449px){
    .ui-autocomplete {
        max-width: 92vw;
    }
}

/* ----- Breadcrumbs ----- */
.breadcrumb-wrapper {
    box-shadow: none;
    margin-top: 15px;
}
.cd-main-content > .breadcrumb-wrapper {
    margin-bottom: -15px;
}
.breadcrumb-wrapper > .container {
    padding: 0;
}
.breadcrumb-wrapper > .container .breadcrumb {
    padding: 0;
}

/* ----- Node list/product general ----- */
.hover-product-title a:hover {
    color: #000;
    text-decoration: none;
}
.hover-product-title.notcrop {
    height: auto !important;
}
.js-product-detail:hover {
    text-decoration: none;
}
/* Nav layout */
.product-nav-layout .fa.active {
    color: #3D4975;
}
.product-nav-layout .fa {
    color: #0093D7;
}
.product-nav .form-inline label {
    font-size: 0.9em;
}
.product-nav .filter-list-orderby {
    margin-right: 8px;
}
.product-nav-pagination {
    padding-right: 0;
}
.product-nav-pagination span {
    padding-right: 0 !important;
}
.product-nav {
    border: none;
}
@media screen and (max-width: 767px){
.product-nav .form-inline.pull-right {
    width: 100%;
    float: left;
    display: flex;
}
.product-nav .form-inline.pull-right > div {
    flex: 1;
}
.product-nav .form-inline.pull-right > div {
    text-align: left;
}
}
@media screen and (min-width: 768px){
    .filter-list-orderby {
        margin-left: 10px;
    }
}

/* ----- Detail tabs ----- */
.section_ProductDetailTabs .nav-tabs {
    box-shadow: none;
    border: none;
}
.section_ProductDetailTabs .nav-tabs li a {
    box-shadow: none;
    border-radius: 0;
    background: #828386;
    border-color: #dadada;
    color: #fff;
}
.section_ProductDetailTabs .nav-tabs li.active a {
    box-shadow: none;
    border-radius: 0;
    background: #fff;
    border-color: #dadada;
    border-left: none;
    color: #3c3c3c;
}
.section_ProductDetailTabs .tab-content {
    margin: 0;
}
.section_ProductDetailTabs .content {
    padding: 0;
}
.section_ProductDetailTabs .js-product-detail {
    color: #0093D7;
    font-size: 0.9em;
}
.section_ProductDetailTabs td.field-stockcode {
    color: #555;
}
.section_ProductDetailTabs .nav-tabs li a {
    padding: 10px 30px;
    margin-right: 0;
    border-left: none;
}
.section_ProductDetailTabs .nav-tabs li:first-of-type a {
    padding: 10px 30px;
    margin-right: 0;
    border-left: 1px solid #dadada;
}
.section_ProductDetailTabs .nav-tabs li a {
    background: #eee;
    color: #3c3c3c;
}
.tab-pane {
    border: 1px solid #dadada;
    padding: 15px;
}
@media screen and (max-width: 767px){
    .section_ProductDetailTabs .tab-content h3 {
        display: none;
    }
    .section_ProductDetailTabs .dropdown .dropdown-toggle .caret {
        display: inline-block;
    }
    .section_ProductDetailTabs .dropdown.hidden-lg > .dropdown-toggle {
        border-left: 1px solid #dadada;
    }
    .section_ProductDetailTabs .nav-tabs .dropdown.hidden-lg li:first-of-type a {
        border-left: none;
    }
}

/* ----- Hero banner ----- */
.hero-banner * {
    box-shadow: none;
}
.hero-banner.row {
    margin-top: -30px;
}
.hero-banner .banner-wrapper-main {
    padding-bottom: 0;
}
.hero-banner .slick-dots {
    margin-bottom: 10px;
}
.hero-banner .slick-dots li button:before {
    font-size: 8px;
    color: #fff;
}
.hero-banner {
    height: 500px;
    background-size: cover;
}
.section_ContentBannerDataUnit .banner-wrapper-main {
    padding-bottom: 0;
}
.section_ContentBannerDataUnit {
    padding-bottom: 0 !important;
}
.section_ContentBannerDataUnit .carousel-inner {
    margin-bottom: 0;
}
.section_ContentBannerDataUnit .carousel {
    box-shadow: 0 10px 20px -7px rgb(0 0 0 / 45%);
}
@media screen and (max-width: 767px){
    .hero-banner {
        height: 350px;
    }
    .section_ContentBannerDataUnit .carousel {
        margin: 0 !important;
    }
    .section_ContentBannerDataUnit .banner-wrapper-main {
        padding-bottom: 0;
    }
    .section_ContentBanner .carousel {
        margin: 0;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 0;
    }
}

/* ==========================================================================
   Page Styling
   ========================================================================== */
/* Index page
   ========================================================================== */
/* Dashboard */
.dashboard {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.dashboard a {
    width: 31.8%;
    text-align: center;
    display: block;
    background: #3C3C3C;
    margin: 0;
    padding: 20px 15px;
    color: #fff;
    font-family: 'Futura Book', sans-serif;
    transition: all 0.1s ease;
    border-color: #eee;
    box-shadow: 1px 1px 3px #f7f7f7;
    border: 1px solid #eee;
}
.dashboard a:hover {
    text-decoration: none;
    transform: scale(1.01);
    transition: all 0.1s ease;
}
.dashboard a:before {
    font-family: fontawesome;
    display: block;
    margin-bottom: 10px;
    font-size: 25px;
    color: #fff;
}

/* Product slider */
.pt-page-index .p-productavailability, .pt-page-index .js-avail-wrapper, .pt-page-index .pull-right.pricepanel, .pt-page-index .addToBasketContainer {
    display: none;
}

/* Featured products slider */
.featured-products.container {
    padding-left: 15px;
    padding-right: 15px;
}
.featured-products .section_Content {
    padding-bottom: 0;
}
.featured-products .hover-product-image {
    margin-bottom: 8px;
}
.featured-products .field-stockcode {
    display: none;
}
.featured-products .pull-right .js-product-detail {
    display: none;
}
.featured-products .requestBtn {
    display: none;
}
.featured-products.no-side-margin {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/* Index specific news */
.pt-page-index .section-heading {
    display: none;
}
.pt-page-index .flag-link {
    border: none;
}
.pt-page-index .section_NewsList .post-date {
    font-size: 14px;
}
@media screen and (max-width: 1199px){
    .pt-page-index .media {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .pt-page-index .media > a {
        width: 100%;
    }
    .pt-page-index .media .media-body {
        width: 100%;
        margin-top: 15px;
    }
    .pt-page-index .news-list .post-img  {
        max-width: 767px;
        width: 100%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 499px){
    .pt-page-index article {
        width: 100% !important;
    }
    .pt-page-index .media>.pull-left {
        margin: 0;
    }
}

/* Welcome section */
[data-loggedin="False"] .index-welcome-row {
    display: none;
}
.index-welcome-row .user-log-out-link {
    display: none;
}
.index-welcome-row li.top-bar-link a {
    padding: 0;
}
.index-welcome-row li.top-bar-link a:hover,
.index-welcome-row li.top-bar-link a:active,
.index-welcome-row li.top-bar-link a:focus {
    background: none;
}
.index-welcome-row .section {
    padding: 0;
    align-self: center;
}
.index-welcome-row p {
    margin: 0;
}
.index-welcome-row .section_TranslationText {
    font-size: 1.8em;
    font-family: 'Futura Medium', sans-serif !important;
}
.index-welcome-row .section_LoginStatus a {
    font-size: 1.2em;
    position: relative;
    top: 3px;
}
.index-welcome-row .user-profile-sep,
.index-welcome-row .user-profile-customer {
    display: none;
}
@media screen and (min-width: 768px){
    .index-welcome-row .section_LoginStatus a:before {
        content: '|';
        margin-right: 10px;
        position: relative;
        top: -2px;
    }
    .index-welcome-row > div {
        display: flex;
    }
    .index-welcome-row .section_LoginStatus {
        margin-left: 15px;
    }
}


/* News
   ========================================================================== */
/* ----- News general ----- */
.news-list h2 {
    letter-spacing: 0;
}

/* ----- News menu ----- */
.news-menu li.active, .news-node:hover {
    background: none;
}
.section_NewsList .news-menu {
    background: #3C3C3C;
    padding: 15px !important;
    color: #dadada;
}
.section_NewsList .news-menu a, .section_NewsList .news-menu h3,
.section_NewsList .news-menu h4, .section_NewsList .news-menu h5 {
    color: #dadada;
}
.section_NewsList .section-heading {
    display: none;
}
.archive-heading {
    padding-bottom: 0 !important;
}
.news-node {
    border-bottom: 1px solid #555;
    padding-top: 10px;
}
.news-node:last-of-type {
    border-bottom: 0;
}
.news-menu-node h4 {
    margin-bottom: 9px;
}
.section_NewsList .flag-link {
    display: none;
}
.news-menu .date {
    float: left;
    font-size: 14px;
    margin-bottom: 15px;
}
.news-menu .teaser {
    margin-bottom: 2px;
}
.news-list > a {
    display: none;
}
.pt-page-index .news-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pt-page-index article {
    width: 49%;
    padding: 15px;
    background: #f7f7f7;
    margin-bottom: 30px;
}
.pt-page-index .news-list > a,
.pt-page-index .news-list .flag-link {
    width: 100%;
}
.pt-page-index .post-body {
    padding-top: 5px;
}
.pt-page-index .news-list .post-img {
    max-width: 235px;
}
.index-news {
    padding-bottom: 0 !important;
}
.index-news a:hover {
    text-decoration: none;
}

/* Login page
   ========================================================================== */
.pt-page-login {
    background-image: url('/en/image/getthumbnail/1013');
}
.pt-page-login .login-row {
    background: #3C3C3C !important;
}
.pt-page-login h1, .pt-page-login h2, .pt-page-login h3, .pt-page-login h4, .pt-page-login h5, .pt-page-login label, .pt-page-login p {
    color: #dadada;
}
.pt-page-login input {
    background: #dadada;
    border-radius: 0;
    box-shadow: none;
    border: none;
}
.pt-page-login .modal h1, .pt-page-login .modal h2, .pt-page-login .modal h3, .pt-page-login .modal h4, .pt-page-login .modal h5, .pt-page-login .modal label, .pt-page-login .modal p {
    color: #000;
}

#signupform {
	padding-top: 0;
}
[name="SignUpModel.SpecialOfferMail"] {
 	height: auto;
  	margin-right: 5px;
}
.pt-page-login [type="checkbox"] {
  height: auto;
  margin-right: 5px;
}


/* ==========================================================================
   Product Pages Styling
   ========================================================================== */
/* Product pages General */
   .section_ProductNodeTitle h1 {
    margin-top: 0;
}
.hover-product-hover-bg {
    display: none;
}
.hover-product-image {
    border-color: #dadada;
    box-shadow: 1px 1px 3px #dadada;
}
.hover-product-title a {
    font-size: 16px !important;
}
.hover-product .pull-right a.js-product-detail {
    background: #0093D7;
    color: #fff;
    padding: 5px 10px;
    position: relative;
    top: 5px;
}
.product .pull-right a.js-product-detail {
    background: #0093D7;
    color: #fff;
    padding: 8px 20px !important;
    transition:all .5s;
    border-radius:3px !important;
}
.product .pull-right a:hover.js-product-detail {
    background: #3D4975;
}
.product .js-childLoader {
    display: none;
}
#productlist table .productlist-image-tablecell {
    width: 80px;
}
.reloadlist {
    margin: 0;
}
.table>thead>tr>th {
    border-bottom: 1px solid #eee;
}
.table>thead>tr>th, .table>thead>tr>td, .table>tbody>tr>th, .table>tbody>tr>td, .table>tfoot>tr>th, .table>tfoot>tr>td {
    border-top: 1px solid #eee;
}
.table>thead>tr>th {
    border-color: #dadada;
}
.table>thead>tr>th, .table>thead>tr>td, .table>tbody>tr>th, .table>tbody>tr>td, .table>tfoot>tr>th, .table>tfoot>tr>td {
    border-color: #dadada;
}
.section_ProductImageLibrary .slides img {
    border: none;
}
.section_ProductImageLibrary .product-slider {
    border-color: #dadada;
    box-shadow: 1px 1px 3px #dadada;
    border-left: 1px solid #dadada;
    border-top: 1px solid #dadada;
}
.section_ProductImageLibrary hr {
    display: none;
}
.section_ProductImageLibrary .slick-list.draggable {
    padding: 0;
}
.section_ProductImageLibrary .flexslider.product-carousel  {
    margin-top: 20px;
}
.section_ProductImageLibrary .hover-product-image {
    margin-bottom: 0;
}
.section_ProductDetail_Header {
    padding-bottom: 0 !important;
}
.section_ProductDetail_Header h1 {
    margin-bottom: 5px;
}
.section_ProductDetail_SkuNumber {
    font-size: 0.9em;
}
.hover-product-image-wrapper:hover {
    transform: scale(1.05);
}
.hover-product-image-wrapper:hover {
    transition: all 0.2s ease;
}
.hover-product-image-wrapper {
    transition: all 0.2s ease;
}
.section_ProductImageLibrary .slick-slide > div > div {
    display: block !important;
}
.ribbonText {
    background: #0071e3;
    text-shadow: none;
    box-shadow: none;
    font-weight: 400;
}
.ribbonText:before {
    border-top: 0;
}
.section_ProductImageLibrary .ribbon {
    top: 10px !important;
}
.section_ProductImageLibrary .ribbonText {
    font-size: 18px;
}
.section_ProductDetail_Header {
    text-align: center;
}
.section_ProductDetail_SkuNumber {
    font-size: 20px;
    text-align: center;
    color: #0093D7;
    padding-bottom: 5px !important;
}
.top-brand .attribute-image-hor {
    width: 100%;
    text-align: center;
}
.section_ProductAttributes .tooltip {
    display: none !important;
}
.attribute-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
}
.attribute-icons > div {
    width: 25%;
    text-align: center;
    margin-bottom: 5px;
}
.attribute-icons [style="clear: both;"] {
    display: none;
}
.section_AddToBasket .addToBasketContainer {
    margin: 0 auto;
}
.section_ProductDetail_Price {
    text-align: center;
}
.section_ProductParentNode_SubNodeMenu .visible-xs {
    display: none;
}
.section_ProductParentNode_SubNodeMenu .hidden-xs {
    display: block;
}

/* Baskets/checkout
========================================================================== */
.cart-view-table .price-gross {
    display: block;
}
#basket .basket-total-lines .col-sm-5 h5 {
    text-align: right;
    float: right;
    padding-right: 25px;
}
#basket .basket-total-lines .col-sm-5 {
    float: right;
    width: auto;
}
#basket .basket-total-lines .col-sm-7 {
    width: auto;
    padding-right: 50px;
}
#basket .basket-total-lines > .row {
    display: flex;
    justify-content: flex-end;
}
.cart-view-table .btn.js-updateQuantity {
    border-radius: 0 !important;
    height: 32px;
    padding: 4px 13px;
    position: relative;
    top: 1px;
    background: none;
    color: rgb(118, 118, 118);
    border-color: rgb(118, 118, 118);
}
.cart-view-table .basket-qty-input-field {
    margin-left: -4px;
    margin-right: -4px;
}
[data-pageid="6"] .cart-view-table .btn.js-updateQuantity {
    top: -1px;
}

/* VPDP (23)
========================================================================== */
/* Model img */
.model-img .flexslider {
    display: none;
}
.model-img hr {
    display: none;
}
.model-img img {
    width: 90%;
    margin: 0 auto;
}
.model-img .product-slider {
    border: none;
    box-shadow: none;
}
.model-img {
    padding-bottom: 0 !important;
}
.model-img .product-slider-section {
    padding-bottom: 0;
}
.model-img .ribbon {
    display: none;
}

/* Hide all VP stockcode */
.field-stockcode-virtual {
    display: none;
}

/* Relation list */
@media screen and (max-width: 767px){
    .section_ProductRelationList .field-deldate {
        display: none;
    }
    .section_ProductRelationList th.hidden-lg, th.hidden-sm, th.hidden-md {
        display: none;
    }
}


/* PDP (19)
========================================================================== */
.section_ProductDetail_Price .js-price-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.section_ProductDetail_Price .product-netprice {
    width: 100%;
}
.section_ProductDetail_Price .product-discount {
    margin-left: 20px;
}
.section_ProductDetail_DeliveryDetailInfo dd:first-of-type {
    margin-right: 15px;
}
.section_ProductDetail_DeliveryDetailInfo .dl-horizontal {
    display: flex;
    justify-content: center;
}
.pdp-flex > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pdp-flex .section_ProductAttributes {
    flex: 1.5;
}
.pdp-flex .section_AddToBasket {
    flex: 1;
}
.pdp-flex .section_PdfLink {
    flex: 1;
}
.pdp-flex .WebToPrintActivationPDP, .pdp-flex .WebToPrintActivationPDP:focus, .pdp-flex .WebToPrintActivationPDP:active, .pdp-flex .WebToPrintActivationPDP:visited {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 33px;
    margin-left: 10px;
}
.pdp-flex .WebToPrintActivationPDP:hover {
    background:  #3D4975;
}
.pdp-flex .section {
    padding-bottom: 0;
}
.pdp-flex .dl-horizontal {
    margin-bottom: 0;
}
.section_ProductAttributes.center-imgs {
    display: flex;
    justify-content: center;
}
.section_ProductDetail_Price {
    margin-top: 20px;
    padding-bottom: 0px !important;
}
.section_ProductDetail_DeliveryDetailInfo {
    padding-bottom: 5px !important;
}
@media screen and (max-width: 1199px){
    .pdp-flex > div {
        flex-wrap: wrap;
    }
    .pdp-flex .section_ProductAttributes {
        width: 100% !important;
        flex: unset;
        margin-bottom: 15px;
    }
    .pdp-flex .section_ProductAttributes dt {
        float: left;
    }

    .pdp-flex .section_ProductAttributes .dl-horizontal {
        display: flex; 
        justify-content: center;
    }
    .pdp-flex {
        margin-bottom: 30px;
    }
    .pdp-flex .section_AddToBasket .addToBasketContainer {
        float: right;
    }
}


/* Custom general classes
========================================================================== */
/* Full width images */
.stretch-img img {
    width: 100%;
}

/* Text image content */
.text-image-content > div > .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
@media screen and (min-width: 768px) {
.text-image-content > div > .row > div {
    padding-right: 6%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.text-image-content > div > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.text-image-content > div > .row > div:first-of-type {
    padding-right: 0%;
    padding-left: 6%;
}
.text-image-content > div > .row:last-of-type {
    padding-top: 0;
}
}
@media screen and (max-width: 767px){
    .text-image-content {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    .text-image-content > div > .row:first-of-type {
        flex-direction: column-reverse;
    }
}

/* Authors
   ==========================================================================
Frida
*/


@media screen and (min-width: 1200px) {
  .main-product-nav .cd-primary-nav > li {
    display: none;
}
.main-product-nav .cd-primary-nav > li.main-product-node {
    display: block;
}
.main-product-node > a:after,
.main-product-node > a:before {
    display: none;
}
.main-product-node:before {
    content: '\f0c9';
    font-family: fontawesome;
    position: relative;
    right: -30px;
    margin-left: -30px;
    color: #fff;
}
.main-product-node {
    margin-left: 0 !important;
    background: none;
}
.main-product-node > a {
    padding-left: 30px !important;
    color: #fff !important;
}
.main-product-node .cd-secondary-nav {
    top: 64px !important;
}
.cart-field.feature-basket {
    line-height: 40px;
}
.main-product-nav .cd-header-buttons {
    display: none !important;
}
.main-product-node {
    height: 64px !important;
    line-height: 64px !important;
}
.main-product-node > a {
    margin-top: -15px !important;
}
.header-search-row > .container {
    margin-top: -12px;
}
  .main-product-node .cd-secondary-nav > li {
    width: 13.28%;
    padding: 10px 10px;
    margin: 0.5% !important;
}
.main-product-node .cd-secondary-nav > li > ul > li {
    display: none;
}
.main-product-node .cd-secondary-nav>li>a {
    white-space: normal;
    line-height: 140%;
}
.main-product-node .cd-secondary-nav>li:nth-of-type(10) {
    clear: left;
}
.main-product-node .cd-secondary-nav>li:nth-of-type(17) {
    clear: left;
}
.main-product-node .cd-secondary-nav>li:nth-of-type(24) {
    clear: left;
}
.main-product-node .cd-secondary-nav>li:nth-of-type(31) {
    clear: left;
}
.main-product-node .see-all {
    display: none !important;
}
.main-product-node .cd-secondary-nav {
    padding-bottom: 30px;
}
  .main-product-node .cd-secondary-nav {
    background: #3C3C3C;
    border-top: 1px solid #555555 !important;
}
.main-product-node .cd-secondary-nav > li > a {
    color: #DADADA;
    font-size: 14px;
    font-weight: 400;
    position:relative:
}
.main-product-node .cd-secondary-nav  li  a:after {
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    background-color:#fff;
    height:1px;
    width:0;
    transition:all .5s linear;
}
.main-product-node .cd-secondary-nav  li  a:hover:after {
    width:100%;
}
.main-product-node .cd-secondary-nav  li  a:hover {
    text-decoration: none;
}
}
@media screen and (min-width: 992px){
  .section_MiniBasket .cart-field {
    padding-right: 0;
}
.user-toggle {
    margin-right: 0;
}
}
@media screen and (max-width: 991px) and (min-width: 768px){
.section_CatalogSearchBox {
    padding-left: 15px !important;
}
}


.reloadlist ul li{
    display:flex;
    flex-wrap:wrap;
    align-self: stretch;
}
.hover-product-price{
    font-size:14px;
}

[data-rowid="369"] {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}
[data-rowid="291"]{
    padding-top:50px;
}

[data-columnid="614"]{
    padding-left:30px;
}
[data-rowid="291"]{
    padding-bottom:0 !important;
}

.product-grid .product{
    padding-bottom:40px;
}



.form-horizontal input{
    height:50px;
    line-height:50px;
    border-radius: 3px;
    border: 1px solid #f1f1f1;
    box-shadow: none;
}

.form-horizontal select{
    height:50px;
    line-height:50px;
    border-radius: 3px;
    border: 1px solid #f1f1f1;
    box-shadow: none;
}

.form-horizontal textarea{
    border-radius: 3px;
    border: 1px solid #f1f1f1;
    box-shadow: none;
}


.section_ContactUsForm .form-horizontal > .row > .col-sm-5{
    display:none;
}
.send-copy-holder{
    width:100% !important;
}
.send-copy-holder input{
    height:auto;
    line-height:auto;
}
.section_ContactUsForm .form-horizontal > .row > .col-sm-4{
    float:inherit !important;
}

.dropdown-menu li.active{
    color:blue !important;
}
.footer .row{
    padding-bottom:0 !important;
}
@media screen and (max-width: 600px){
    #section_740{
      margin-left:50px;
      margin-right:50px;
    }
    #section_740 a img{ 
      margin-bottom:30px;
    }

    #section_834{
    width:100% !important;
    }
}

.target_blank .dropdown-menu li a{
    position:relative;
}

.target_blank .dropdown-menu li a:before{
    content: '\f08e';
    margin-left: 8px;
    font-family: fontawesome;
    display: block !important;
    position: absolute;
    top: 6px;
    right: 0;
}
.dropdown-menu{
    min-width: 260px !important;
}

.large-block-grid-6>li{
    position:relative;
}

.header-call em{
    margin-right:5px;
}

.row-fluid{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.span3{
    width:25%;
}

#contactusform .page-header{
    display:none;
}

#block_25 h2{
    margin-bottom: 25px;
    font-weight: bold;
    margin-top: 35px;
}

.other-office-address .span6{
    width:40%;
}

.other-office-address .span6 h3{
    font-weight:bold;
    font-size:18px;
    margin-bottom:5px;
}

.other-office-address .span6 p{
    margin-bottom:15px;
}
.form-horizontal{
    width: 95%;
    padding-top: 87px;
}

[data-rowid="373"]{
    padding-bottom: 0px !important;
}

.container{
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 768px) and (max-width: 991px){
[data-sectionid="374"]{
    display: block !important; 
    margin-right:20px;
}

[data-columnid="157"]{
    display: flex;
    justify-content: flex-end !important;
    flex-direction: unset;
    position: relative;
    align-items: flex-end;
}

}

@media(max-width: 1000px){
    .header.sticky-header{
        top:118px;
    }
}

@media(max-width: 988px){
    .header.sticky-header{
        top:93px !important;
    }
    #section_834{
    width:50%;
    }
}

.toggle-lvl-two a{
    font-family: 'Futura Book' !important;
}


.blue_bg{
    background-color:#154979;
    padding-top:40px;
}

.first_col{
    text-align:center;
    color:#fff;
}

.first_col section{
    width:350px;
    margin:auto;
    padding-bottom:0 !important;
}

[data-rowid="378"]{
    padding-bottom:0 !important;
}

h3, h3.page-header{
    font-family: 'Futura Book' !important;
}

.our_brand_sec{
    background-color:#f4f4f4;
    padding-top:60px;
    padding-bottom:60px;
}

.brand_heading_sec section{
    text-align:center;
}

.brand_row{
    padding-bottom:40px !important;
    display:flex;
    flex-wrap:wrap;
}

.brand_col{
    display:flex;
    flex-wrap:wrap;
}

.brand_col section{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
    text-align: left;
    background: #fff;
    border-right: 10px solid #ca1633;
    padding-bottom:0;
    box-shadow: 0px 0px 20px #ccc;
}

.content_block{
    width:350px;
    padding: 15px 20px;
    background-color: #241f20;
    color: #fff;
}
/*
.content_block p{
    font-size: 16px;
    line-height: 19px;
} */

.image_block{
    display: flex;
    justify-content: center;
    text-align: center;
    width: 196px;
    align-items:center;
}

#section_877{
    border-right: 10px solid #fbd348;
}

#section_881{
    border-right: 10px solid #008ad2;
}

#section_882{
    border-right: 10px solid #706e6e;
}

#section_883{
    border-right: 10px solid #fb7a42;
}

#section_884{
    border-right: 10px solid #40ae30;
}

#section_885{
    border-right: 10px solid #198064;
}

#section_886{
    border-right: 10px solid #6f26ad;
}



.last-block-row{
    display:none;
}

.video-row{
    padding:0px !important;
}

.video-row section{
    padding-bottom:0px !important;
}

.video-row h1{
    color:#fff;
}

.row-white-bg{
    background-color:#fff;
    padding-top:60px;
}
.featured-section-element{
    padding-bottom:0 !important;
}
    .tab-sec ul{
      margin: 0px;
      padding: 0px;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .tab-sec ul li{
      list-style: none;
      margin-right: 30px;
    }
    .tab-sec ul li a{
      color: #000;
      position: relative;
      text-decoration: none;
    }
    .tab-sec ul li a:after{
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      background-color: #000;
      height: 3px;
      width: 0;
      transition: .3s all linear;
    }
    .tab-sec ul li a:hover:after{
      width: 100%;
    }

    .featured-box-element{
      padding-left:0 !important;
      padding-bottom:0 !important;
    }

    .featured-make-sec{
      padding-top: 40px;
    }

    .featured-make-sec ul{
      margin: 0px;
      padding: 0px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .featured-make-sec ul li{
      list-style: none;
      width: 19%;
      margin-bottom: 20px;
      display: flex;
    }

    .featured-make-sec ul li a{
      width: 100%;
      border: 2px solid #eaeaea;
      padding: 20px;
      border-radius: 3px;
      color: #000;
      text-decoration: none;
      transition: .5s all;
      position: relative;
    }

    .featured-make-sec ul li a:hover{
      width: 100%;
      border: 2px solid #ccc;
      padding: 20px;
    }

    .featured-make-sec ul li a:after{
      content: '';
      position: absolute;
      top: 43%;
      right: 20px;
      background-image: url(https://austworld-production.parttrap.com/en/image/getthumbnail/6028);
      width: 6px;
      height: 10px;
    }
    .v-more-btn{
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
      padding-top: 10px;
    }
    .v-more-btn button{
      background: transparent;
      padding: 15px 40px;
      border: 2px solid #ccc;
      border-radius: 3px;
      transition: .5s all;
      position: relative;
    }
    .v-more-btn button:after{
      content: '';
      position: absolute;
      top: 50%;
      right: 19%;
      background-image: url(https://austworld-production.parttrap.com/studio/ConvertFile/getthumbnail/6031);
      width: 8px;
      height: 4px;
    }
    .v-more-btn button:hover{
      border: 2px solid #2e2d2d;
    }
    .printing-design-block{
      display: flex;
      justify-content: space-between;
      display: flex;
      align-items: flex-start;
    }

    .pd-count{
       width:550px;
    }

    .pd-element-section{
        max-width:1000px;
        margin:auto;
    }

    .pd-count h1{
        padding-bottom:15px;
    }

    .learn-more-btn{
      margin-top: 55px;
    }

    .learn-more-btn a{
      background-color:#0093d7;
      padding:16px 20px 12px;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      transition:all .5s;
      border-radius:5px;
    }

    .learn-more-btn a:hover{
      background-color:#3D4975;
    }

    .images-icon{
        margin-bottom:20px;
    }

    .pd-image-count{
      width: 306px;
    }

    .pd-image-count img{
        width:300px;
        height:300px;
    }

    .mailing-list-row{
        background-color:#363739;
        padding-bottom:0 !important;
        padding-top:15px !important;
    }
    .mailing-list-row section{
        padding-bottom:15px !important;
    }
    .jom-list{
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
    }
    .jom-list a{
            background-color: #0093d7;
            padding: 15px 20px 10px 20px;
            text-decoration:none;
      text-transform: uppercase;
            transition:all .5s;
            color:#fff;
            border-radius:5px;

    }
    .jom-list a:hover{
            background-color: #3D4975;
    }
    .store-supply-element h1{
    text-align:center;
    padding-bottom:40px;
    }
    .store-supply-element ul{
      margin: 0px;
      padding: 0px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }
    .store-supply-element ul li{
      list-style: none;
      /*background-color: #f0f0f0;
      width: 13.9%;*/
      height: 100px;
      margin-left: 16px;
      margin-bottom: 26px;
      margin-right: 16px;
      display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-image-container{
      position: relative;
    }

    .video-image-container img{
      width: 100%;
      height: 100vh;
    }

    .video-content-section{
      width: 350px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      text-align: center;
      color: #fff;
    }

    .video-content-section img{
      width: 154px;
      height: 154px;
      margin-bottom: 70px;
    }

    .video-content-section h1{
      padding-bottom: 70px;
    }
    * {
  box-sizing: border-box;
}

.images-boxes {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  /*padding: 0 106px;*/
  max-width: 1148px;
    margin: auto;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 40%; /* IE10 */
  flex: 40%;
  max-width: 40%;
  padding: 0 4px;
}
.column1 {
  -ms-flex: 19.9%; /* IE10 */
  flex: 19.9%;
  max-width: 19.9%;
  padding: 0 4px;
}
.column2 {
  -ms-flex: 60%; /* IE10 */
  flex: 60%;
  max-width: 60%;
  padding: 0 4px;
}
.column3 {
  -ms-flex: 40%; /* IE10 */
  flex: 40%;
  max-width: 40%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
.column1 img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
.column2 img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
.column3 img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
.first-col-rel{
  position: relative;
}
.first-col-pos{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  text-align: center;
  color: #fff;
  width:100%;
}
.learn-btn{
  transition:all .3s ease;
  display:inline-block;
}

.learn-btn a{
  background-color: #0093d7;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  border-radius:5px;
  transition:all .3s ease;
}

.learn-btn:hover, .learn-btn a:hover{
  background-color: #3D4975;
  transform:scale(0.98);
}

.first-col-pos h2{
  text-transform: uppercase;
  width:100%;
  color: #fff;
    padding-bottom: 20px;
    font-size:20px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
.column1 {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
}
.column2 {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
}
.column3 {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
}
.first_col {
    width: 100%;
    margin-bottom: 30px;
}
.brand_row {
    padding-bottom: 0px !important;
    padding-left: 3px;
    padding-right: 3px;
}
.brand_col {
    width: 100%;
}
.brand_col section{
    margin-bottom: 30px;
}
[data-rowid="391"]{
    padding-left:13px;
    padding-right:13px;
}
[data-rowid="393"]{
    padding-left:13px;
    padding-right:13px;
}
[data-columnid="649"] {
    padding: 0 20px !important;
}
#section_892 {
    padding: 0px !important;
}
.images-boxes{
    padding:0 13px;
}
.video-image-container img{
    height:auto;
}
.video-content-section h1 {
    padding-bottom: 30px;
}
.video-content-section img {
    width: 54px;
    margin-bottom: 30px;
}
.banner-sec{
    background-size: cover;
    background-position: center;
}
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
.column1 {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
}
.column2 {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
}
.column3 {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
}
.content_block {
    text-align: center;
    width:100%;
}
[data-rowid="127"] {
    width: auto !important;
}
.image_block{
    width: 200px;
    margin: auto;
}
.video-content-section h1 {
    padding-bottom: 0px;
}
.video-content-section img {
    margin-bottom: 10px;
}
.featured-make-sec ul li {
    width: 49%;
}
.printing-design-block {
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
.pd-count {
    width: auto;
}
.learn-more-btn {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}
.store-supply-element ul li {
    width: 50%;
}


}

.banner-sec{
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  position: relative;
}
.banner-container{
  position: absolute;
  top: 0;
  left: 100px;
}
.slick-prev:before, .slick-next:before{
    display:none !important;
}
.slick-dots li button:before{
    color:#fff !important;
}
.logi-logo{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 30px;
}
.logi-logo a{
  background-color: #0f80ca;
  padding: 10px;
}
.banner-tag-line{
  width: 300px;
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
}
.find-out-more-btn{
  padding-top: 40px;
  display: flex;
}
.find-out-more-btn a{
  background-color: #0f80ca;
  padding: 15px 30px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.banner-row-pad{
    padding:0 !important;
}

[data-rowid="391"], [data-rowid="396"]{
    padding-bottom:0px !important;
}

.hover-product-image-wrapper{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}
.featured-products .hover-product-image {
    border-radius: 100px;
    width: 150px;
    height: 150px;
    
}
.hover-product-title.notcrop {
    text-align: center;
}

.product-grid .product{
 padding-top:0px !important;
 padding-bottom:0px !important;
 transition:all .5s;
}


.product-grid .product:hover{
    /* background-color:#fff;
    box-shadow:0 0 10px #ccc; */
}

#section_282 .product-grid .product:hover{
    background-color:#fff;
}

.diplay-none{
    display:none;
}


.display-video{
  display: none;
}


#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}
#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:#0093d7;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
    color:#fff;
    text-align: center;
    padding-top: 11px;
    z-index:99;
    transition: all .5s;
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color:#3D4975;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}
#scroll img{
    width:30px;
}



/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 850px) {
.banner-sec{
    background-size: cover;
    background-position: center;
}
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 600px) {
.banner-container{
    left:20px;
}
.store-supply-element ul li{
    width:90%;
}
.footer-block-content{
    justify-content:center !important;
}
.head-office{
    margin-bottom:40px;
}
.social-link-adress{
    margin-top:40px;
}
}


[data-rowid="313"], [data-rowid="113"], [data-columnid="541"]{
    display:none !important;
}

[data-rowid="117"]{
    padding-bottom:0 !important;
}

#section_834 h3{
    text-transform: inherit;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1px;
}

[data-rowid="378"]{
    max-width: 1200px;
    margin: auto;
}

[data-rowid="382"]{
    max-width: 1333px;
    margin: auto;
}

[data-columnid="649"]{
    padding:0 124px;
}

#section_892{
    padding:30px !important;
}

.footer .container{
    padding-left:0;
    padding-right:0;
}
[data-rowid="127"]{
    width: 1200px;
    margin: auto !important;
}

.foot-logo{
    padding-top:20px;
}

.foot-logo ul{
    margin:0px;
    padding:0px;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    flex-wrap:wrap;
}

.foot-logo ul li{
    list-style:none;
    padding: 0px 10px;
}

#section_888{
    margin: auto;
    width: 1137px;
}
[data-rowid="392"]{
    max-width: 1168px;
    margin: auto;
}

.store-supply-element{
    max-width: 1238px;
    margin: auto;
}

[data-sectionid="867"] .btn, [data-sectionid="867"] .btn:focus, [data-sectionid="867"] .btn:active{
    background:#0093d7 !important;
    border-color:#0093d7 !important;
    padding:8px 11px 4px !important;
}

[data-sectionid="867"] .btn:hover{
    background:#3D4975 !important;
}

.footer-block-content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

[data-rowid="415"]{
    padding-right:0 !important;
}

[data-rowid="309"]{
    padding-left:0 !important;
    padding-right:0 !important;
}

.product-grid ul li.product .pull-right a{
    bottom:0 !important;
    position:inherit !important;
    float:none !important;
    height:37px !important;
}

[data-rowid="270"]{
    padding-bottom:0 !important;
}

[data-rowid="245"]{
    padding-bottom:0 !important;
}

#section_575{
    padding-bottom:0;
}

[data-rowid="424"]{
    max-width: 1170px;
    margin-right: auto;
    margin-left: auto;
}


#section_282{
    margin-top:30px;
}

#section_282 .product-nav{
    display:none;
}

.pt-page-index .section_NewsList .post-date {
    display: none;
}
.section_NewsDetail .article-date {
    display: none;
}
.news-menu .date {
    display: none;
}
.section_NewsDetail article > img {
    width: 100%;
}
.section_NewsList .post-heading {
    font-family: 'Futura Medium', sans-serif !important;
  	line-height: 150%;
}
.video-content-section h1 {
    letter-spacing: 0.08em;
}
.product .btn {
    min-width: unset;
}
.btn.js-updateQuantity {
    min-width: unset;
}
.js-saveToMyCarts {
    margin-left: 15px;
}
.product.type-vp .pull-right {
    display: flex;
    justify-content: center;
    float: unset;
}
.product .pricepanel {
    text-align: right;
}
.hover-product .p-productavailability {
    float: left;
    margin-right: 4px;
}
.change-quantity-in-list-btn {
    color: #fff !important;
    font-size: 12px !important;
}
.hover-product .hover-product-additonal-details {
    font-size: 0;
}
.paginate-top {
    margin-bottom: 15px;
    margin-top: 0px !important;
}
.pagination.product-nav-pagination {
    margin: 0;
}
.flex-row .section {
    padding: 0;
}
.flex-row {
    display: flex;
    flex-wrap: wrap;
}
.flex-row > div {
    display: flex;
    align-items: center;
}
.padding-50.section {
    padding: 50px;
}
.flex-row > div {
    padding: 0;
}
.flex-row img {
    width: 100%;
}/* ==========================================================================
   General Site Styling
   ========================================================================== */
/*Search and list style*/
body{font-family: 'Futura Book' !important; }

#searchandlist > .row:first-of-type > .col-sm-3:nth-of-type(3),
#searchandlist > .row:first-of-type > .col-md-3:nth-of-type(3) {
    width: 100%;
}
#searchandlist > .row:first-of-type > .col-sm-3:nth-of-type(2),
#searchandlist > .row:first-of-type > .col-md-3:nth-of-type(2) {
    width: 100%;
}
#searchandlist > .row:first-of-type > .col-sm-3:nth-of-type(2) .input-group,
#searchandlist > .row:first-of-type > .col-md-3:nth-of-type(2) .input-group,
#searchandlist > .row:first-of-type > .col-md-3:nth-of-type(3) .input-group {
    width: 100%;
}
@media screen and (max-width: 991px) {
    #searchandlist > .row:first-of-type > .col-sm-3:nth-of-type(2),
    #searchandlist > .row:first-of-type > .col-md-3:nth-of-type(2),
    .pt-page-quotesearch #searchandlist > .row:first-of-type > .col-md-3:nth-of-type(3){
        margin-top: 20px;
    }
}
@media screen and (min-width: 992px){
    #searchandlist > .row:first-of-type > .col-sm-3:nth-of-type(2),
    #searchandlist > .row:first-of-type > .col-md-3:nth-of-type(2),
    .pt-page-quotesearch #searchandlist > .row:first-of-type > .col-md-3:nth-of-type(3) {
        width: 30%;
    }
    #searchandlist > .row:first-of-type > .col-md-6 {
        width: 70%;
    }
    .pt-page-invoicesearch #searchandlist .form-control.js-searchlistbox {
        margin-top: 25px;
    }
    .pt-page-invoicesearch #searchandlist .js-pageQuerySearch.pt-btn-search {
        margin-top: 25px;
    }
}
 #searchandlist > .row:first-of-type > .col-sm-3:nth-of-type(3) .checkbox,
 #searchandlist > .row:first-of-type > .col-md-3:nth-of-type(3) .checkbox {
    margin-top: 15px;
    padding-left: 0;
    padding-right: 20px;
}
#searchandlist > .row:first-of-type .selected-user-wrapper {
    margin-left: 20px;
}
#searchandlist > .row:first-of-type .form-group .checkbox {
    float: left;
}

/* Customer information page */
.pt-page-usercustomerinformation .form-uppercase-label label {
    text-transform: none;
}
.pt-page-usercustomerinformation .control-label-static {
    margin-top: 0;
}

/* Quickshop */
.row.quickshopcontent {
    margin-left:  0px;
    margin-right: 0px;
    margin-top: 15px;
}
.quickshopcontent h4 {
    margin-top: 8px;
    text-transform: initial;
}
.quickshopcontent #quickHeader {
    padding-left: 0;
    padding-right: 0;
}
.quickshopcontent .col-sm-2.col-xs-2 {
    padding-right: 0;
}
.quickshopcontent .col-sm-2.col-xs-2 .btn {
    float: right;
    width: 100%;
    font-size: 0;
    height: 33px;
}
.quickshopcontent .col-sm-2.col-xs-2 .btn:after {
    content: '\f07a';
    font-size: 15px;
    font-family: fontawesome;
}
@media screen and (min-width: 992px){
    .quickshopcontent .col-sm-6.col-xs-6 {
        width: 58.33333%;
    }
    .quickshopcontent .col-sm-2.col-xs-2 {
        width: 8.33333%;
    }
}
@media screen and (max-width: 991px) {
    .quickshopcontent > div.col-sm-6.col-xs-6 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .quickshopcontent > div.col-sm-2.col-xs-4 {
        width: 50%;
        padding-right: 5px;
        padding-left: 0;
    }
    .quickshopcontent > div.col-sm-2.col-xs-2 {
        width: 50%;
        padding-left: 5px;
        padding-right: 0;
    }
    .quickshopcontent > div.col-sm-2.col-xs-2 .btn {
        width: 100%;
    }
    .quickshopcontent #quickHeader {
        padding-left: 0;
    }
}

/*Content banner*/
.section_ContentBanner .banner-wrapper-main {
padding-bottom:0;
}

.section_ContentBanner .slick-dotted.slick-slider {
margin-bottom:0;
}

.section_ContentBanner .carousel {
box-shadow:none;
}

.section_ContentBanner .slick-dots {
bottom:25px;
}

.section_ContentBanner .slick-dots li button:before {
font-size:10px;
opacity:0.6;
}

.slick-dots li.slick-active button:before {
opacity:1;
}

/* Login page */
.pt-page-login label {
    text-transform: none;
}
.pt-page-login .section_Image {
    margin-top: 20px;
    text-align: center;
}
.pt-page-login .section_Login input {
    height: 35px;
}
.section_Login {
    padding-bottom: 0 !important;
}
.section_Login h3 {
    display: none;
}
.section_Login .col-md-5 {
    width: 100%;
}
.section_Login .col-md-5 .col-sm-8 {
    width: 100%;
}
.section_Login .col-md-2.top37 {
    margin: 0;
    width: 100%;
}
.section_Login .col-md-5:first-of-type .col-sm-8:before {
    content: '\f007';
    font-family: fontawesome;
    font-size: 18px;
    position: absolute;
    top: 6px;
    left: 25px;
}
.section_Login .col-md-5:nth-of-type(2) .col-sm-8:before {
    content: '\f13e';
    font-family: fontawesome;
    font-size: 18px;
    position: absolute;
    top: 6px;
    left: 25px;
}
.section_Login input {
    padding-left: 32px;
}
.pt-page-login .section_ForgotPassword > h3.sub-header {
    border-bottom: none;
    text-transform: none;
    font-size: 1em;
    margin-top: 10px;
}
.pt-page-login .section_ForgotPassword > h3.sub-header:hover {
    cursor: pointer;
    text-decoration: underline;
}
.pt-page-login .section_ForgotPassword > h3.sub-header:after {
    content: '?';
}
.pt-page-login .section_ForgotPassword > p,
.pt-page-login .section_ForgotPassword > form {
    display: none;
}
.pt-page-login {
    background-size: cover;
    background-repeat: no-repeat;
}
.section_ForgotPassword {
    padding-bottom: 0 !important;
}
.section_SignUp h3 {
    text-transform: none;
    border-bottom: 0;
    margin-bottom: 5px;
}
.section_SignUp {
    border-top: 1px solid #eee;
    padding-top: 20px !important;
}
.section_SignUp .btn {
    width: 100%;
}
.section_Login #login-response-msg-holder {
    margin-top: 2px;
    font-size: 13px;
}
.pt-page-login .content > .container:first-of-type {
    background: #fff;
    max-width: 500px;
    margin: 10vh auto;
}
.modal .section_ForgotPassword h3 {
    text-transform: none;
    border: none;
    margin-bottom: 5px;
}
/* Account details */
@media screen and (min-width: 992px) {
    .section_AccountDetail > form > .row > .col-md-6 {
        width: 75%;
    }
}
.pt-page-accountdetail .form-uppercase-label label {
    text-transform: none;
}

/*Breadcrumb*/
.breadcrumb-wrapper {
box-shadow: none;
}

/* Sidebar navigation */
.toggle-lvl-two li:first-of-type {
    box-shadow: none;
}
.sidebar-nav .sidebar-item {
    text-transform: none;
    border-bottom: 1px solid #eee;
    margin-left: 0;
    margin-bottom: 0;
}
.sidebar-nav .sidebar-item.sidebar-nav-heading {
    border: none;
    padding-left: 0;
    margin-bottom: 15px !important;
}
.sidebar-nav li.toggle-item {
    padding-bottom: 0px;
    padding-top: 7px;
}
.toggle-lvl-one .sidebar-item {
    padding-bottom: 12px;
}
.toggle-lvl-two {
    background: none;
}
.toggle-lvl-two .sidebar-item {
    padding-left: 15px;
}
.toggle-lvl-three {
    background: none;
}
.toggle-lvl-three .sidebar-item {
    padding-left: 30px;
}
.toggle-lvl-four {
    background: none;
}
.toggle-lvl-four .sidebar-item {
    padding-left: 45px;
}
.toggle-lvl-five {
    background: none;
}
.toggle-lvl-five .sidebar-item {
    padding-left: 60px;
}
.toggle-lvl-one .active {
    font-weight: 500;
}
.sidebar-nav .sidebar-item a.active {
    font-weight: 700;
}
.sidebar-nav li.active .toggle-btn {
    font-weight: 500;
}


/* Cookie notification */
#cookieNotification {
    z-index: 9998;
}

/* Modal */
.modal {
    z-index: 9999;
}
.modal-content {
    padding: 30px;
    max-height: 90vh;
    box-shadow: none;
    border: 1px solid #999;
}
.modal-dialog {
    margin-top: 5vh;
}
.modal-content .content {
    padding-top: 0;
}
.modal-header {
    padding: 0;
    min-height: 0;
}
.modal .close {
    margin-right: 0;
    top: 5px;
    right: 10px;
    font-size: 30px;
    color: grey;
}
.modal .close:hover {
    opacity: 1;
}
.modal .content {
    padding-bottom: 0;
}

/* Cart */
@media screen and (min-width: 992px) {
    .cart:hover {
        width: 100%;
    }
}
@media screen and (min-width: 768px) {
    .cart:hover {
        width: 100%;
    }
}
.cart-content {
   box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.3);
}
.cart:hover {
    box-shadow: none;
}

/*Buttons*/
.btn, .btn:focus, .btn:active {
outline:none!important;
}

/* Section checkout */
.section_Checkout .btn.js-updateQuantity {
    margin-top: -3px;
}
@media screen and (min-width: 768px){
    [data-loggedin="False"] .OrderSummaryShipToAddress {
        padding-left: 15px;
    }
    [data-loggedin="False"] .OrderSummaryShipToAddress .col-md-6 {
        padding-left: 0;
    }
    [data-loggedin="False"] .OrderSummaryDetailsHeader .col-md-6 .form-group > .col-sm-7 {
        margin-left: -10px;
    }
}
@media screen and (max-width: 991px){
    [data-loggedin="False"] .OrderSummaryDetailsHeader .col-md-6 {
        padding-left: 15px !important;
    }
}
@media screen and (max-width: 767px){
    [data-loggedin="False"] .OrderSummaryDetailsHeader .col-md-6 {
        margin-left: -15px;
    }
}
.section_Checkout .js-warehouse-selector {
    margin-bottom: -15px;
}


/* Top bar links */
.top-bar .top-bar-link a, .top-bar .top-bar-link a:focus, .top-bar .top-bar-link a:active {
    background: none;
    border: none;
}

/* News list */
.pt-page-newsarchive .section_NewsList .section-heading,
.pt-page-content .section_NewsList .section-heading {
    letter-spacing: 0;
}
.pt-page-newsarchive .section_NewsList .news-list,
.pt-page-content .section_NewsList .news-list {
    display: flex;
    flex-wrap: wrap;
}
.pt-page-newsarchive .section_NewsList .post,
.pt-page-content .section_NewsList .post {
    width: 31.33333%;
  	margin: 1%;
  	background: #f7f7f7;
    padding: 15px;
}
.pt-page-newsarchive .section_NewsList .post-body,
.pt-page-content .section_NewsList .post-body {
 	padding: 10px 0 0; 
}
.pt-page-newsarchive .col-sm-9 .news-list {
    margin-top: 20px;
}
.pt-page-newsarchive .section_NewsList .post .media > a,
.pt-page-newsarchive .section_NewsList .post .media > a img,
.pt-page-content .section_NewsList .post .media > a,
.pt-page-content .section_NewsList .post .media > a img {
    max-width: 100%;
}
.pt-page-newsarchive .section_NewsList .post .media > .media-body,
.pt-page-content .section_NewsList .post .media > .media-body {
    width: 100%;
}
.pt-page-newsarchive .section_NewsList .post .media-body .post-heading.media-heading,
.pt-page-content .section_NewsList .post .media-body .post-heading.media-heading {
    margin-top: 10px;
}
.pt-page-newsarchive .section_NewsList .post .media > .pull-left,
.pt-page-content .section_NewsList .post .media > .pull-left {
    margin-right: 0;
}
@media screen and (max-width: 991px){
    .pt-page-newsarchive .section_NewsList .post,
  	.pt-page-content .section_NewsList .post{
        width: 48%;
    }
}
@media screen and (max-width: 576px){
    .pt-page-newsarchive .section_NewsList .post,
  	.pt-page-content .section_NewsList .post {
        width: 100%;
    }
}

/* News menu */
.section_NewsList ul.news-menu {
    padding-left: 0;
    width: 100%;
}


/* News detail */
.section_NewsDetail .article-intro {
    margin-top: 10px;
}
.section_NewsDetail .article-date {
    margin-bottom: 10px;
}
.section_NewsDetail .article-title {
    margin-top: 0px;
    margin-bottom: 5px;
}

/* Alertify dialog */
.alertify-dialog .alertify-message {
    color: #000;
}
.alertify-dialog button,
.alertify-dialog button:hover,
.alertify-dialog button:focus,
.alertify-dialog button:active {
    border-radius: 2px;
    padding: 6px 14px;
    height: 33px;
    line-height: 1.33;
    text-shadow: none;
    background-image: none;
    box-shadow: none;
    width: 49%;
    float: left;
    margin-left: 0;
    margin-right: 1%;
    margin-bottom: 10px;
}
.alertify-dialog button:last-of-type {
    margin-right: 0;
    float: right;
}
.alertify-dialog .alertify-buttons {
    border-radius: 0;
    box-shadow: none;
    padding-top: 5px;
  	background: #fff;
	border: none;
}
#alertify {
    border-radius: 0;
    border: 1px solid #ccc;
    max-width: 400px;
    padding-top: 5px;
    padding-bottom: 10px;
    top: 100px;
}
#alertify p {
    text-align: center;
}
/* Alertify logs */
.alertify-log {
  border-radius: 0;
  text-align: center;
  text-shadow: none;
  padding: 10px;
}

/* Megamenu */
@media screen and (min-width: 1200px) {
    .cd-nav > ul {
        margin: 0;
        padding-right: 0;
        float: left;
    }
  	.cd-primary-nav > li > a {
        height: 30px;
        line-height: 30px;
    }
    .cd-primary-nav .cd-secondary-nav {
      	top: 40px;
        left: 0;
      	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    	border-top: 1px solid #ccc;
      	padding-left: 25px;
    	padding-right: 25px;
      	height: auto !important; 
    }
  	.cd-main-header {
    	border-bottom: none;
	}
  	.desktop-menu .cd-primary-nav .cd-nav-icons li:nth-child(3n), .cd-primary-nav .cd-secondary-nav > li:nth-child(4n+3) {
    	clear: none;
	}
}

/* Megamenu mobile toggle */
@media screen and (max-width: 1199px) {
    .cd-nav-trigger.nav-is-visible span::before, .cd-nav-trigger.nav-is-visible span::after {
        background: #2e3233;
        left: 0px;
        top: 0px;
        width: 28px;
    }
    .cd-nav-trigger.nav-is-visible {
        background: #e8e8e8;
        border: 5px solid #e8e8e8;
        border-radius: 0px;
        left: -35px;
        height: 40px;
        width: 45px;
    }
    .cd-nav-trigger.nav-is-visible span {
        top: 9px;
        left: 4px;
    }
    .cd-nav-trigger.nav-is-visible span::after {
        top: 15px;
    }
    .cd-main-header.nav-is-visible {
        top: 2px;
        color: transparent;
        position: fixed;
        right: 0;
        z-index: 9999;
    }
    .cd-nav-trigger span::after {
        top: 7px;
    }
    .cd-nav-trigger span {
        top: 22px;
        left: 9px;
    }
    .cd-nav-trigger span::before {
        top: -7px;
    }
    .cd-primary-nav {
        margin-top: 0 !important;
    }
  	.cd-primary-nav .has-children > a::before, .cd-primary-nav .has-children > a::after, .cd-primary-nav .go-back a::before, .cd-primary-nav .go-back a::after 	{
    	background: #fff;
	}
}
/* Contact us form */
.section_ContactUsForm .col-sm-offset-3.col-sm-5.send-copy-holder {
    margin-left: 0;
}
.section_ContactUsForm .col-sm-offset-3.col-sm-5.send-copy-holder .control-label-lg {
    position: relative;
    top: -3px;
    margin-right: 5px;
}
.section_ContactUsForm .col-sm-offset-3.col-sm-5.send-copy-holder input[type="checkbox"] {
    cursor: pointer;
}
.section_ContactUsForm #ContactUsFormSubmit {
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
}
.section_ContactUsForm .form-horizontal > .row > .col-sm-4 {
    float: right;
    width: 40% !important;
}
.section_ContactUsForm .form-horizontal > .row > .col-sm-5 {
    width: 60%;
    float: left;
}
@media screen and (max-width: 576px) {
    .section_ContactUsForm .form-horizontal > .row > .col-sm-4 {
        width: 100% !important;
    }
    .section_ContactUsForm .form-horizontal > .row > .col-sm-5 {
        width: 100% !important;
    }
    .section_ContactUsForm #ContactUsFormSubmit {
        width: 100%;
    }
}

/* PDF link */
.CustomPdfStylePrint .basket-total-lines {
    width: 70% !important;
}
.CustomPdfStylePrint .basket-total-lines > .row {
    width: auto; 
} 
.CustomPdfStylePrint .basket-total-lines .col-sm-7.col-xs-6 h5 {
    font-weight: bold;
}
.CustomPdfStylePrint .basket-total-lines .col-sm-5.col-xs-6 {
    width: auto;
  	float: right;
}
.CustomPdfStylePrint .basket-total-lines .col-xs-6:only-child {
    width: 100%;
}
.CustomPdfStylePrint #summaryWrapper > .row:last-of-type > .col-md-12 > fieldset > .row {
    margin-left: 0px;
}
.CustomPdfStylePrint .btn {
  	display: none;
}
/* Checkout import button move to old position */
@media screen and (min-width: 550px){
    .cartactions-container .section_BasketProductImport {
        float: left;
        margin-left: 10px;
        padding-bottom: 0;
    }
}
.cartactions-container #EmptyCart {
    float: left;
}

.pt-page-favoriteproducts h1 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 0;
}
.section_ShopplingList .fa-small-header {
    display: none;
}

.header-flex-col{display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  flex-wrap: wrap;}
.section_867 {width:100%}
.section_867 p{float: right;}
.ourbrandsubmenu .dropdown-menu{display:none !important;}
.ourbrandsubmenu:hover .dropdown-menu{display:block !important;}/* ==========================================================================
   Template styling
   ========================================================================== */

/* Dashboard
   ========================================================================== */
.dashboard {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}


@media screen and (min-width:768px) {
	.dashboard-item {
		flex: 1;
	}
	.dashboard-item {
		margin-left: 10px;
		margin-right: 10px;
	}

	.dashboard-item:first-of-type {
		margin-left: 0;
	}
	.dashboard-item:last-of-type {
		margin-right: 0;
	}
}
.dashboard-item {
	position: relative;
	height: 250px;
}
.dashitem {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	text-align: center;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(122,122,122,1);
	-moz-box-shadow: 0px 0px 3px 0px rgba(122,122,122,1);
	box-shadow: 0px 0px 3px 0px rgba(122,122,122,1);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: white;
}
a.dashitem-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
a.dashitem-link:hover {
	text-decoration: none;
}
.dashitem .fa {
	font-size: 0;
	color: #00aabc;
}
.dashitem .fa::before {
	font-size: 100px;
}
.dashitem img {
	width: 100px;
}
.dashitem .dashitem-heading {
	margin-bottom: 5px;
}
@keyframes ScaleDashitem {
	from
	{transform: scale(1)}
	to
	{transform: scale(1.01)}
}
a.dashitem-link:hover ~ .dashitem {
	animation: ScaleDashitem 0.3s;
	animation-fill-mode: forwards;
}
@media screen and (max-width:767px) {
	.dashitem-info {
		display: none;
	}
	.dashboard-item {
		height: 150px;
		width: 48%;
		margin-bottom: 20px;
		flex-grow: 1;
	}
	.dashitem-img {
		width: 60px;
	}
	.dashitem .fa::before{
		font-size: 60px;
	}
}


/* Search template
   ========================================================================== */
/* Search template */
.search-icon {
    font-family: fontawesome;
    font-size: 25px;
    cursor: pointer;
}
.search-icon img {
    width: 25px;
}

/* Search section (Add this class to container you want to toggle - needs script also) */
.search-container {
    display: none;
}

/* Social media links
   ========================================================================== */
.social-media-links {
   font-size: 35px;
}
.social-media-links a:hover,
.social-media-links .social-link-image img:hover {
    text-decoration: none;
    transform: scale(1.1);
}
.social-media-links a:active,
.social-media-links a:focus {
 	text-decoration: none; 
}

.social-media-links .social-link-image img {
    width: 35px;
}

/* Hero image with text and button
   ========================================================================== */
.hero-container {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    text-align: center;
  	background-size: cover;
    background-position: center;
}
.hero-container > h1,
.hero-container > a {
    width: 100%;
}
/* Contact info card
   ========================================================================== */
.contact-card {
    line-height: 170%;
}
.contact-card .contact-name {
    margin-top: 10px;
}
.contact-card h3 {
    margin-bottom: 5px;
}
.contact-card .contact-title {
    width: 100%;
    float: left;
}
.contact-card .contact-icons {
    margin-top: 5px;
}
.contact-card .contact-icons a {
    font-size: 20px;
}
.contact-card .contact-icons a:hover {
    text-decoration: none;
}

/* FAQ Accordion
   ========================================================================== */
.accordion-container input {
    display: none;
}
.accordion-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}
.accordion-container label {
    display: block;
    cursor: pointer;
    border-bottom: 2px solid #eee;
    padding: 10px 0px;
}
.accordion-container label:after {
    content: '\f078';
    font-family: fontawesome;
    float: right;
    transform: rotate(0deg);
    transition: all 0.3s;
}
input +  label + .accordion-content {
    visibility: hidden;
    opacity: 0;
    height: 0;
    padding: 0;
    transition: all 0.2s;
}
input:checked + label + .accordion-content {
    visibility: visible;
    opacity: 1;
    transition: all 0.5s;
    height: auto;
    padding: 10px 0px;
}
input:checked + label {
    border-color: #000;
    color: #000;
}
input:checked + label:after {
    transform: rotate(180deg);
    transition: all 0.3s;
}

/* Info card icon left
   ========================================================================== */
.info-card-left .info-card-top {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info-card-left img {
    max-width: 30px;
    margin-right: 10px;
}
.info-card-left h3 {
    margin-bottom: 0;
}
.info-card-left .fa {
 	font-size: 0px; 
}
.info-card-left .fa:before {
    font-size: 30px;
    margin-right: 10px;
  	display: block;
}
/* Info card centered
   ========================================================================== */
.info-card-centered {
    text-align: center;
}
.info-card-centered .fa {
 	font-size: 0px; 
}
.info-card-centered img {
    max-width: 60px;
    margin-bottom: 10px;
}
.info-card-centered .fa:before {
    font-size: 60px;
    margin-bottom: 15px;
  	display: block;
}

/* Video
   ========================================================================== */
.video-embed-container { 
  	position: relative; 
  	padding-bottom: 56.25%; 
  	height: 0; 
  	overflow: hidden;
  	max-width: 100%; 
} 
.video-embed-container iframe, .video-embed-container object,
.video-embed-container embed { 
  	position: absolute; 
  	top: 0; 
  	left: 0; 
  	width: 100%; 
  	height: 100%; 
}
/* Image card with text on top
   ========================================================================== */
.image-card-text-top {
    background-size: cover;
    background-repeat: none;
    background-position: center;
    position: relative;
    padding: 20px;
}
.image-card-text-top.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.image-card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
}
.image-card-text {
    position: relative;
    z-index: 555;
}


/* Parallax hero
   ========================================================================== */
.parallax-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.parallax-hero {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  	background-attachment: fixed; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 443;
}
.parallax-icon {
    z-index: 444;
}.bg-cyan {
    background: #0093D7;
 }
 .bg-red {
    background: #ff0000;
 }
 .bg-white {
   background: #FFFFFF;
 }
 .top-brand .attribute-image-hor {
     max-width: 500px;
       width: 100%;
     text-align: center;
 }
 .hover-product .pull-right a.js-product-detail {
     color: #fff;
     padding: 8px 11px;
     position: relative;
     top: 5px;
     border-radius: 25px;
   background: #0071e3;
 }

 .section_ProductDetailTabs .js-product-detail {
     color: #0093D7;
     font-size: 0.9em;
     font-weight: light;
     letter-spacing: -.022em;
 }
 .hover-product-title a {
     font-size: 1em;
     color: #3c3c3c;
     
     text-transform: capitalize;
 }
 .h2, .h3, .page-header, .sub-header {
     margin-top: 0;
 }
 .input-lg, .input-group-lg>.form-control, .input-group-lg>.form-control-search, .input-group-lg>.input-group-addon, .input-group-lg>.input-group-btn>.btn, .input-group-lg>.input-group-btn>.carousel-btn, .showroom .showroom-controls .input-group-lg>.navbar-nav.input-group-btn>li, .input-group-lg>.input-group-btn>.flag-link-btn {
     height: 33px;
     padding: 6px 14px;
     font-size: 14px;
     line-height: 1.33;
     border-radius: 10px;
 }
 .favoriteToggler {
   color: #3c3c3c;
 }
 .slick-prev:before, .slick-next:before {
     color: #0071e3;
   font-size: 50px;
 }
 .slick-prev, .slick-next {
   top: 30%;
   right: 0px
 }
 .btn, .btn:focus, .btn:active {
     background: #0071e3;
     text-transform: none !important;
     border-radius: 25px;
     padding: 8px 11px;
     letter-spacing: -0.022em;
     font-size: 1em;
 }
 .product .pull-right a.js-product-detail {
     background: #0071e3;
     text-transform: none !important;
     border-radius: 25px;
     padding: 8px 11px;
     letter-spacing: -0.022em;
     font-size: 1em;
 }
 .table>thead>tr>th, .table>thead>tr>td, .table>tbody>tr>th, .table>tbody>tr>td, .table>tfoot>tr>th, .table>tfoot>tr>td {
     padding: 5px;
 }
 .bg-lightgrey {
    background: #F3F3F3 !important;
 }
 .hover-product-title {
     padding-bottom: 0px;
 }
 .alertify-log {
   border-radius: 25px;
     background: #0071e3;
 }
 .parallax-icon {
     height: 500px;
 }
 .featured-product {
   background: #F3F3F3
     font: bold;
 }
 .top-nav a {
     padding-top: 0 !important;
     padding-bottom: 0 !important;
 }
 .bg-white {
   background: #fff;
 }
 .sectiontext {
   vertical-align: middle;
   float: center;
   margin: auto;
   width: 80%;
 }
 .center {
   float: center;
 }
 .node-image {
 width: 30%
 }
 .index-logo {
   width: 100px
     vertical-align: top;
 }
 .float-center {
   float: center
 }
 
 .slick-list .slick-track{
     margin:0 auto !important;
 }
 
 
.product-grid ul{
    display: flex;
    padding: 0;
    margin: 0;
    align-items: flex-start;
    flex-wrap: wrap;
 }
 .product-grid ul::before{
    display: none;
 }
 .product-grid ul li .hover-product {
    position: unset;
}
.product-grid ul li.product{
    position: relative;
    padding-bottom: 100px;
  	margin-bottom: 30px;
 }

 .product-grid ul li.product .pull-right a{
    float: left;
    position: absolute;
    top: auto;
    bottom: 66px;
    left: 0;
    width: 80px;
    height: 33px;
}

 
 .dropdown:hover .dropdown-menu{display:block;}
 
/* .col-sm-12, .animate{opacity:0.1;transform: translateY(50px);transition: all .2s linear;}
 
 .visible-animation{opacity:1;transform: translateY(0px);}
 */
 .top-bar .navbar-nav .snav.active a:before {
     content: '';
     height: 2px;
     width: 100%;
     background: #3C3C3C;
     position: absolute;
     top: -10px;
     left: 0;
 }
 .btn.product-add-cart-btn{
    min-width: unset  !important;
 }
 .hover-product-title.notcrop {
    height: auto !important;
    min-height: 45px;
}
.section_ContactUsForm{
    margin-top: 50px;
}
.section_ContactUsForm #contactusform .row{
    padding-left: 0px;
}
.pagination.product-nav-pagination {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.pagination>li{
    height: 37px;
    padding: 5px;
    background-color: white;
}
.pagination>li span{
    padding-right: 12px  !important;
}
/*@media only screen and (min-width: 1500px){
    .row {
        padding-right:100px;
        padding-left:100px;
    }    
}
@media only screen and (min-width: 800px) {
 
   .row{
       padding-bottom:50px;
       padding-right:40px;
       padding-left:40px;
   }
   .row:first-child {
       padding-left:0px;
   }
 
   .row:last-child {
       padding-right:0px;
   }
   
 }   */

@media only screen and (max-width: 800px) {
    .sectiontext{
        width: 100%;
    }
    .parallax-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        height: 250px !important;
    }
    .parallax-wrapper .parallax-icon {
        height: auto;
    }
    .product-grid ul li{
        padding-left: 0  !important;
        padding-right: 0px  !important;
        width: calc(50% - 10px) !important;
     }
     .logo-img img {
        height: 50px;
    }
    .header-call{
        display: none;
    }
}
.ourbrandsubmenu {
    display: none;
}