﻿/*=====================================================
DESKTOP
=====================================================*/

:root {
    --primary-color: #0373bd;
    --dark-primary: #444;
    --text-color: #43425D;
}

@media all and (min-width: 1025px) {

    body {
        padding-top: 5rem;
    }

    /* GLOBAL STYLES */
    .master-wrapper-content{
        width: 980px;
    }

    .master-wrapper-content {
        width: 100%;
        margin: 10px auto;
    }

    .product-details-page-body .master-wrapper-content {
        margin: 60px auto 0;
    }

    .page.not-found-page {
        margin-top: 65px;
    }

    .blog-pages-body .master-wrapper-content,
    .html-blog-page .master-wrapper-content {
        margin: 70px auto 0;
    }

    .home-page-body .page-body>div {
        margin-right: auto;
        margin-left: auto;
    }

    .html-login-page .center-1 {
        margin-bottom: 0;
    }

    .center-1 {
        margin-bottom: 200px;
    }

    .home-page-body .center-1 {
        margin-bottom: 50px;
    }

    .center-2 {
        float: right;
        margin-bottom: 200px;
        width: 73%;
    }

    .search-page-body .center-2 {
        float: none;
        margin: 0 auto;
    }

    .side-2 {
        float: left;
        margin-bottom: 200px;
        width: 25%;
    }

    .search-page-body .side-2 {
        display: none;
    }

    /* GLOBAL FORMS */
    /* NOTIFICATIONS & POPUPS */
    /* HEADER */
    .master-header-wrapper {
        margin: 0;
        position: fixed;
        z-index: 999;
        width: 100%;
        top: 0;
    }

    .header {
        position: relative;
        padding: 0 20px 0 0;
        z-index: 1020;
    }

    .header .search-box {
        display: inline-block;
        margin: 13px auto 10px;
        width: 510px;
        height: 45px;
        background: #fff;
        font-size: 0;
    }

    .header-links-wrapper {
        float: right;
    }

    .responsive-nav-wrapper-parent {
        margin: 12px auto;
        width: auto;
    }

    .responsive-nav-wrapper {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        top: 42px;
        right: 5px;
        margin: 0;
        transform: translateY(-50%);
        z-index: 1023;
    }

    .shopping-cart-link>.cart-qty {
        display: none;
    }

    .product-name .breadcrumb {
        margin-bottom: 20px;
        padding: 40px 0 20px;
    }

    /*flyout cart*/
    .flyout-cart .mini-shopping-cart {
        opacity: 0;
        position: absolute;
        top: 100%;
        right: 0;
        width: 380px;
        background: #fff;
        box-shadow: 0 7px 15px rgba(0, 0, 0, .15);
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
        -webkit-transition: transform .3s, opacity .3s;
        transition: transform .3s, opacity .3s;
        pointer-events: none;
        z-index: 1020;
    }

    .flyout-cart.opened .mini-shopping-cart {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        pointer-events: auto;
    }

    .flyout-cart .count {
        padding: 20px;
        font-size: 14px;
        color: #666;
    }

    .flyout-cart .items {
        position: relative;
        padding: 0 20px;
        max-height: 240px;
        max-height: -webkit-calc(100vh - 360px);
        max-height: calc(100vh - 360px);
        background: #f6f6f6;
        text-align: left;
        overflow: hidden;
    }

    .flyout-cart .item {
        position: relative;
        margin: 20px 0;
        font-size: 14px;
        color: #666;
        overflow: hidden;
    }

    .flyout-cart .item:last-child {
        margin-bottom: 0;
    }

    .flyout-cart .item .picture {
        float: left;
        margin-right: 20px;
        width: 100px;
        text-align: center;
    }

    .flyout-cart .item .product {
        padding-right: 20px;
        overflow: hidden;
    }

    .flyout-cart .item .name {
        margin-bottom: 5px;
        font-size: 13px;
    }

    .flyout-cart .item .quantity {
        margin-bottom: 5px;
        color: #aaa;
    }

    .flyout-cart .item .price {
        font-size: 0;
    }

    .flyout-cart .item .attributes {
        margin: 0;
        line-height: 1.5;
        font-size: 13px;
        color: #aaa;
    }

    .flyout-cart .item .price span {
        font-size: 16px;
        font-weight: bold;
        color: #57b568;
    }

    .flyout-cart .totals {
        padding: 20px;
        margin: 0;
        width: 100%;
        background: none;
        text-align: left;
        text-transform: uppercase;
        font-size: 14px;
        color: #666;
    }

    .flyout-cart .totals strong {
        float: right;
        font-size: 18px;
        color: #57b568;
    }

    .flyout-cart .buttons {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex-line-pack: stretch;
        align-content: stretch;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        margin-bottom: 10px;
    }

    .flyout-cart .buttons button {
        position: relative;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        -webkit-align-self: auto;
        -ms-flex-item-align: auto;
        align-self: auto;
        padding: 18px 10px;
        border: 0;
        width: 100%;
        background: #57b568;
        text-transform: uppercase;
        color: #fff;
    }

    .flyout-cart .buttons button span {
        position: relative;
    }

    .flyout-cart .buttons button:first-child span:before {
        content: '\e91c';
        display: inline-block;
        margin: -5px 10px 0 15px;
        font-weight: normal;
        font-family: prisma;
        font-size: 19px;
        color: #fff;
        vertical-align: middle;
    }

    .flyout-cart .buttons button:hover span:before {
        color: #57b568;
    }

    .flyout-cart .buttons button:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        background: #f3f3f3;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .flyout-cart .buttons button:hover:before {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    }

    .flyout-cart .buttons button:hover {
        color: #57b568;
    }

    .flyout-cart .buttons button+button {
        margin-left: 1%;
        background: #fff;
        color: #57b568;
    }

    .flyout-cart .buttons button+button:hover {
        color: #fff;
    }

    .flyout-cart .buttons button+button:hover:before {
        background: #57b568;
    }

    .responsive-nav-wrapper .flyout-cart a.remove-item {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 18px;
        height: 18px;
        background: #fff;
        font-size: 0;
    }

    .responsive-nav-wrapper .flyout-cart a.remove-item:after {
        content: '\e901';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        font-family: prisma;
        font-size: 8px;
        color: #bbb;
    }

    .ui-autocomplete {
        z-index: 1015;
        /*should be lower than header but equal or higher than header-menu*/
    }

    /* HEADER MENU */
    .responsive-nav-wrapper .menu-title,
    .close-menu,
    .header-menu .back-button {
        display: none;
    }

    .overlayOffCanvas {
        display: none !important;
    }

    .header-links .ico-wishlist {
        display: none;
    }

    .header-menu>ul {
        margin: 0 auto;
        width: 100%;
        font-size: 0;
    }

    .header-menu>ul>li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 15px;
    }

    .header-menu>ul>li>a,
    .header-menu>ul>li>span {
        display: block;
        position: relative;
        text-decoration: none;
        padding: 5px 0;
        text-transform: uppercase;
        font-size: 14px;
        color: #fff;
        cursor: pointer;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .header-menu>ul>li:hover>a,
    .header-menu>ul>li:hover>span {
        background: transparent;
        color: #fff;
    }

    .header-menu .sublist-wrap {
        opacity: 0;
        position: absolute;
        min-width: 220px;
        background: #fff;
        text-align: left;
        box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
        -webkit-transition: transform .3s, opacity .3s;
        transition: transform .3s, opacity .3s;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
        pointer-events: none;
    }

    .header-menu .hover+.sublist-wrap {
        opacity: 0;
    }

    .header-menu>ul>li>.sublist-wrap {
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    .header-menu li:hover>.with-subcategories+div+.sublist-wrap,
    .header-menu li>.with-subcategories.hover+div+.sublist-wrap {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        pointer-events: auto;
    }

    .header-menu .sublist-wrap.active {
        display: block;
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        pointer-events: auto;
    }

    .top-menu {
        display: block;
    }

    .header-menu .sublist li {
        position: relative;
        border-top: 1px solid rgba(0, 0, 0, .1);
        background-color: #0a2439;
        transition: all .3s;
    }

    .header-menu .sublist li a {
        display: block;
        padding: 11px 20px 10px;
        font-size: 13px;
        color: #fff;
        font-weight: 600;
        -webkit-transition: background .3s;
        transition: all background .3s;
        transition: all .3s;
    }

    .header-menu .sublist li:hover>a {
        color: #0a2439;
        transform: translateX(10px);
    }

    .header-menu .sublist li:hover {
        background-color: #fff;
    }

    .header-menu .sublist .back-button {
        display: none;
    }

    .header-menu .sublist li a {
        display: block;
        padding: 11px 20px 10px;
        font-size: 13px;
        color: #fff;
        font-weight: 600;
        -webkit-transition: background .3s;
        transition: all background .3s;
        transition: all .3s;
    }

    .header-menu .sublist li a:before {
        content: '\e925';
        display: inline-block;
        font-family: prisma;
        font-size: 10px;
        color: rgba(53, 53, 53, 0.329);
        padding-right: 10px;
    }

    .header-menu .sublist-wrap .sublist-wrap {
        top: -1px;
        left: 100%;
    }

    .responsive-nav-wrapper>div span:after,
    .responsive-nav-wrapper>div a:after {
        font-size: 28px;
    }

    .responsive-nav-wrapper .personal-button>span:after {
        font-size: 25px;
    }

    .responsive-nav-wrapper .wishlist-button {
        display: inline-block;
    }

    .responsive-nav-wrapper .wishlist-button a:after {
        content: '\e919';
    }

    /* FOOTER */
    .footer-upper {
        min-height: 210px;
    }

    .footer-middle {
        margin: 0 auto;
        padding: 50px 50px 60px;
        width: 100%;
        font-size: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .footer-middle>div {
        position: relative;
        display: inline-block;
        width: 25%;
        vertical-align: top;
        text-align: left;
    }

    .footer-middle>div .title {
        position: relative;
        padding: 0;
        margin-bottom: 10px;
    }

    .footer-lower-wrapper {
        margin: 0 auto;
        width: 980px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-block>.title {
        cursor: default;
    }

    .footer-block .list {
        display: block;
    }

    .footer-block .list>li {
        padding: 8px 10px 2px 0;
        transition: all .3s;
    }

    .footer-block .list>li:hover {
        color: #57b568;
    }

    .footer-block .list>li:hover:before {
        -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
        transform: translateX(5px);
    }

    .footer-disclaimer,
    .footer-tax-shipping {
        float: left;
        clear: left;
    }

    .footer-powered-by,
    .footer-designed-by {
        float: right;
        clear: right;
    }

    .theme-selector {
        margin: 0 auto;
    }

    /* LEFT/RIGHT COLUMN */
    .block {
        float: none;
    }

    .block .listbox {
        display: block;
    }

    .block:last-of-type .listbox {
        border-bottom: 0;
    }

    .block .title {
        border-bottom: 1px solid #eee;
    }

    .block .title:after {
        content: none;
    }

    .block .product-picture {
        display: inline-block;
        vertical-align: middle;
    }

    .block .list .product-picture {
        display: block;
        max-width: 100%;
    }

    .block .product-name {
        display: inline-block;
        width: 72%;
        vertical-align: middle;
    }

    .block-recently-viewed-products .listbox {
        padding: 5px;
        font-size: 0;
    }

    .block-recently-viewed-products .listbox li {
        display: inline-block;
        width: 33%;
        text-align: center;
    }

    .block-recently-viewed-products .listbox .product-name {
        display: none;
    }

    /* CATEGORY PAGE & GRIDS */
    .breadcrumb {
        display: table-cell;
        text-align: right;
        line-height: 20px;
    }

    .breadcrumb a:hover {
        color: #888;
    }

    .category-page .page-title {
        display: table;
        width: 100%;
    }

    .category-page .page-title h1 {
        display: table-cell;
        margin-bottom: 0;
        text-align: left;
    }

    /* grids */
    .product-grid .item-box .details {
        position: relative;
        padding-top: 62px;
    }

    .product-grid .item-box .buttons-wrapper {
        display: none;
    }

    .home-page .topic-block {
        padding: 0;
        margin: 5rem 0 .5rem;
    }

    .home-page .product-grid,
    .home-page .bestsellers {
        padding: 90px 0 50px;
    }

    .home-page-polls {
        padding: 70px 0;
    }

    .bestsellers .item-box {
        margin-left: 0;
        width: 49%;
    }

    .bestsellers .item-box .product-item {
        display: table;
        width: 100%;
    }

    .bestsellers .item-box:nth-child(2n) {
        clear: none;
        margin-left: 2%;
    }

    .bestsellers .item-box .picture {
        display: table-cell;
        width: 45%;
        margin-right: 10px;
        vertical-align: top;
    }

    .bestsellers .item-box .details {
        display: table-cell;
        padding: 15px 15px 46px 15px;
        overflow: hidden;
    }

    .bestsellers.product-grid .item-box .buttons-wrapper {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 15px;
        right: 0;
        width: 86%;
    }

    .bestsellers .item-box .prices {
        height: 40px;
    }

    .bestsellers .item-box .product-title {
        margin-bottom: 5px;
    }

    .cross-sells .item-box,
    .also-purchased-products-grid .item-box,
    .related-products-grid .item-box {
        width: 23.5%;
    }

    .cross-sells .item-box button,
    .also-purchased-products-grid .item-box button,
    .related-products-grid .item-box button {
        width: 44px;
    }

    .cross-sells .item-box:nth-child(3n+1),
    .also-purchased-products-grid .item-box:nth-child(3n+1),
    .related-products-grid .item-box:nth-child(3n+1) {
        margin-left: 2%;
        clear: none;
    }

    .cross-sells .item-box:nth-child(4n+1),
    .also-purchased-products-grid .item-box:nth-child(4n+1),
    .related-products-grid .item-box:nth-child(4n+1) {
        margin-left: 0;
    }

    .cross-sells .item-box:nth-child(4n),
    .also-purchased-products-grid .item-box:nth-child(4n),
    .related-products-grid .item-box:nth-child(4n) {
        margin-left: 2%;
    }

    /* PRODUCT PAGE */
    .product-essential {
        margin: 0;
    }

    .product-essential .product-name {
        display: table;
        direction: rtl;
        padding: 10px 15px;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .product-essential .product-name h1 {
        display: table-cell;
        direction: ltr;
        margin: 0;
        text-align: left;
        font-size: 22px;
        font-weight: 800;
    }

    .product-name .breadcrumb {
        display: none;
        direction: ltr;
        padding: 0;
        border: 0;
    }

    .product-content-wrappper {
        padding: 20px;
    }

    .product-content-wrappper:after {
        content: '';
        display: block;
        clear: both;
    }

    .gallery {
        float: left;
        margin-bottom: 20px;
        width: 46%;
        margin-top: 15px;
    }

    .gallery .picture {
        width: auto;
    }

    .gallery .thumb-item {
        width: 24%;
    }

    .gallery .thumb-item:nth-of-type(4n) {
        margin-right: 0;
    }

    .overview {
        float: right;
        width: 48%;
    }

    .product-details-page .overview {
        padding-top: 35px;
    }

    .attribute-label {
        width: auto;
    }

    .attribute-data,
    .rental-attributes .datepicker {
        float: right;
    }

    .overview .quantity-container {
        float: left;
        padding: 20px 15px;
    }

    /*attr*/
    .overview>div,
    .additional-details>div {
        font-size: 0pt;
    }

    .attributes .attr-value {
        text-align: right;
    }

    .product-review-box {
        width: auto;
    }

    .attr-item:after {
        content: '';
    }

    .free-shipping:after {
        width: auto;
    }

    .overview .short-description,
    .variant-overview .short-description,
    .product-review-links,
    .product-no-reviews,
    .overview .label,
    .overview .value,
    .variant-overview .label,
    .variant-overview .value,
    .free-shipping,
    .attributes>ul>li div {
        font-size: 14px;
    }

    .overview .label+.value {
        display: inline-block;
        text-align: right;
        width: 50%;
    }

    .overview .qty-wrapper {
        float: left;
    }

    /*prices*/
    .overview .prices {
        float: right;
        border: 0;
        font-size: 14px;
        text-align: right;
    }

    .overview .tier-prices {
        font-size: 14px;
    }

    .product-review-box,
    .attribute-squares,
    .overview .customer-entered-price {
        text-align: right;
    }

    .overview .customer-entered-price {
        font-size: 14px;
    }

    .customer-entered-price>div {
        display: block;
    }

    .overview .customer-entered-price label {
        float: left;
        text-align: left;
    }

    /*btns*/
    .overview-buttons {
        overflow: hidden;
    }

    .overview .compare-products,
    .overview .email-a-friend {
        float: left;
        margin-right: 20px;
        width: auto;
    }

    .overview .compare-products input,
    .overview .email-a-friend input {
        position: static;
        padding: 0 15px 0 45px;
        border: 0;
        width: auto;
        background: #fff;
        font-size: 14px;
        color: #aaa;
        opacity: 1;
    }

    .overview .product-share-wrapper {
        text-align: left;
    }

    .overview .product-share-wrapper:after {
        content: '';
        display: block;
        clear: both;
    }

    .product-social-buttons {
        float: right;
    }

    /*variants*/
    .product-variant-list {
        font-size: 0pt;
    }

    .product-variant-line {
        display: inline-block;
        width: 49%;
        vertical-align: top;
    }

    .product-variant-line:nth-of-type(2n) {
        margin-left: 2%;
    }

    .variant-picture {
        width: 200px;
    }

    .variant-picture+.variant-overview {
        margin-left: 210px;
    }

    .variant-overview .attribute-squares {
        text-align: left;
    }

    .variant-overview .attributes dt {
        padding: 0 15px;
    }

    .variant-overview .add-to-wishlist {
        width: 50px;
    }

    .variant-overview .add-to-wishlist span {
        font-size: 0;
    }

    .variant-overview .overview-buttons .add-to-cart {
        width: 84%;
        width: calc(100% - 54px);
    }

    .variant-overview .overview-buttons .add-to-wishlist-button:before {
        margin: 0;
    }

    .variant-overview .value {
        display: block;
        margin-top: 5px;
    }

    .variant-overview .attributes dd {
        display: block;
        clear: left;
        width: 100%;
        text-align: left;
    }

    .product-collateral>div {
        margin-bottom: 0;
    }

    .product-collateral,
    .related-products-grid,
    .also-purchased-products-grid {
        margin: 100px auto;
    }

    .manufacturer-list-page .page-title h1,
    .vendor-list-page .page-title h1 {
        text-align: left;
    }

    .manufacturer-grid,
    .vendor-grid,
    .recently-added-products-page .product-grid {
        padding: 20px;
    }

    .vendor-page .product-grid {
        padding: 20px;
    }

    /* REVIEW PAGE */
    .product-reviews-page .page-body:after {
        content: '';
        display: block;
        clear: both;
    }

    /* WISHLIST & COMPARE LIST */
    .order-summary-content .table-wrapper,
    .wishlist-content .table-wrapper {
        padding: 0 10px;
        background: #f6f6f6;
    }

    .cart .remove-from-cart label,
    .cart .add-to-cart label {
        padding: 0;
        font-size: 0;
        width: 20px;
    }

    .section.order-summary {
        margin-top: 70px;
    }

    /* TOPICS */
    .topic-block-body {
        margin: 0 auto;
        max-width: 100%;
    }

    /* CONTACT PAGE & EMAILaFRIEND */
    /* REGISTRATION, LOGIN, MY ACCOUNT */
    .account-page .fieldset,
    .account-page .section {
        margin-bottom: 35px;
    }

    .account-page,
    .registration-page .fieldset {
        padding: 20px 30px 10px 30px;
    }

    .account-page .message-error {
        margin: 20px 20px 0;
    }

    #check-availability-button {
        margin: 10px auto;
    }

    .login-page .inputs.reversed>* {
        width: auto;
        vertical-align: middle;
    }

    .login-page .customer-blocks>div {
        float: left;
        padding-bottom: 60px;
        margin-bottom: 0;
        width: 40%;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
    }

    .login-page .customer-blocks>div+div {
        margin-left: 1.5%;
    }

    .external-authentication {
        clear: both;
    }

    .html-my-product-reviews-list-page .center-2,
    .customer-pages-body .center-2 {
        margin: 0 0 50px;
        width: 75%;
    }

    .html-my-product-reviews-list-page .side-2,
    .customer-pages-body .side-2 {
        border-right: 4px solid #fff;
        width: 25%;
    }

    .login-page .customer-blocks .buttons {
        position: absolute;
        bottom: 15px;
        margin-bottom: 0;
        width: 87%;
        text-align: center;
    }

    .login-page .customer-blocks .buttons input {
        margin: 0;
        min-width: 0;
    }

    .block-account-navigation .listbox {
        padding: 10px 0 10px 10px;
    }

    .block-account-navigation .title {
        display: none;
    }

    .account-page.customer-info-page {
        padding: 0;
    }

    .customer-pages-body .master-column-wrapper>.page-title {
        display: block;
    }

    .customer-info-page .fieldset {
        margin: 0;
        border-bottom: 4px solid #fff;
        padding: 30px 30px 10px 30px;
    }

    .request-item .title,
    .address-list-page .title,
    .order-list-page .title {
        padding: 19px 25px;
    }

    .address-list-page .info,
    .order-list-page .info {
        padding: 15px 25px;
    }

    .current-balance {
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        color: #444;
    }

    .current-balance:before {
        content: '\e90e';
        display: inline-block;
        margin-right: 10px;
        font-family: prisma;
        font-size: 29px;
        color: #ccc;
        vertical-align: middle;
    }

    .account-page .description {
        font-size: 14px;
        color: #666;
    }

    /* SHOPPING CART & CHECKOUT */
    .shopping-cart-page .totals {
        margin: 0;
        width: 32%;
    }

    .cart-title,
    .checkout-page .page-title {
        margin-top: 40px;
    }

    .cart td {
        min-width: 150px;
    }

    .cart-collaterals {
        margin-right: 4px;
        width: 67.8%;
        width: -webkit-calc(68% - 4px);
        width: calc(68% - 4px);
        margin: 0;
    }

    .cart-collaterals .deals {
        float: left;
        margin-right: 4px;
        width: 49.8%;
        width: -webkit-calc(50% - 2px);
        width: calc(50% - 2px);
        margin: 0;
        min-height: 100%;
    }

    .cart-collaterals .deals>div {
        height: 49.8%;
        height: -webkit-calc(50% - 2px);
        height: calc(50% - 2px);
    }

    .cart-collaterals .shipping {
        float: right;
        width: 49.8%;
        width: -webkit-calc(50% - 2px);
        width: calc(50% - 2px);
        margin: 0;
        height: 100%;
    }

    .estimate-shipping {
        margin: 0;
        height: 100%;
    }

    .cart-collaterals .coupon-code input[type="submit"],
    .cart-collaterals .buttons .estimate-shipping-button {
        transition: all .3s;
    }

    .cart-collaterals .coupon-code input[type="submit"]:hover,
    .cart-collaterals .buttons .estimate-shipping-button:hover {
        color: #57b568;
    }

    .cart-collaterals .shipping .buttons {
        text-align: right;
    }

    .checkout-page .opc .edit-address label {
        width: 295px;
    }

    .checkout-page .totals {
        float: right;
        width: 32%;
    }

    /* ORDER DETAILS */
    .order-details-page .totals {
        width: 32%;
    }

    /* SEARCH & SITEMAP */
    .basic-search input[type="text"] {
        width: 350px;
    }

    .advanced-search .price-range input {
        height: auto;
    }

    .search-box .search-box-button {
        background: #eee url(../img/search-b.svg) no-repeat center;
        background-size: 25px;
        position: absolute;
        right: 5px;
        top: 5px;
    }

    .store-closed-page .page-body {
        text-align: center;
    }

    /* BLOG & NEWS */
    .blogpost-page .page-title,
    .blog-page .page-title {
        padding-left: 0;
    }

    .blogpost-page .page-title h1,
    .blog-page .page-title h1,
    .product-tag-page .page-title h1 {
        text-align: left;
    }

    .blogpost-page .page-title h1 {
        font-size: 4rem;
        text-align: center;
    }

    .news-list-page .page-title {
        padding-left: 0;
    }

    .news-item-page .inputs:first-child label {
        display: inline-block;
    }

    .news-list-homepage {
        padding: 100px 0;
        font-size: 0;
    }

    .news-list-homepage .news-item {
        display: inline-block;
        width: 49%;
        vertical-align: top;
    }

    .news-list-homepage .news-item:nth-child(2n) {
        margin-left: 2%;
    }

    /* FORUM & PROFILE */
    .forums-main-page {
        margin-top: 50px;
        text-align: center;
    }

    .topic-post .post-info {
        text-align: center;
    }

    .topic-post .pm-button,
    .profile-info-box .pm-button {
        margin: 7px 0 6px;
    }

    .downloadable-products-page .download a:hover {
        color: #57b568;
    }

    /* -----------------------new style---------------------4-11-2021 */
    /* #customerCurrency,
    #customerlanguage {
        margin: 0px 22px 0 0;
        padding: 0px 12px 0 0;
        width: 80px;
        height: 25px;
        border-radius: 5px;
        background-color: transparent;
        color: #fff;
        cursor: pointer;
        font-size: .75em;
    } */
    .html-home-page .header-selectors-wrapper {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        text-align: right;
        padding: 0;
        background-color: --dark-primary;
    }

    .header-selectors-wrapper {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        text-align: right;
        padding: 0;
        background-color: var(--primary-color);
    }

    .header-menu>ul>li>a:hover::after {
        transform: scaleX(1);
        transform-origin: right;
    }

    .header-menu>ul>li>a::after {
        position: absolute;
        content: "";
        top: 100%;
        right: 0;
        width: 100%;
        height: 3px;
        background: #0373bd;
        transform: scaleX(0);
        transform-origin: left;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .html-home-page .master-header-wrapper.stick .header-wrapper {
        width: 100%;
        position: fixed;
        background-color: #0a2439 !important;
        top: 0;
        transition: all ease-in-out .5s;
        padding: 5px;
    }

    .html-home-page .master-header-wrapper.stick .master-header-wrapper .header-menu {
        padding-top: 21px;
    }

    #customerCurrency option,
    #customerlanguage option {
        background-color: --dark-primary;
        font-size: 12px;
    }

    .html-store-closed-page .master-wrapper-content {
        margin: 100px auto 28px;
    }

    .navigation-wrapper .career-btns {
        display: none;
    }

    .footer-block>.title::before {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        height: 3px;
        width: 77px;
        background: #b6d54b;
    }

    .footer-social .newsletter .title span {
        position: relative;
    }

    .footer-social .newsletter .title span::before {
        content: "";
        position: absolute;
        top: 22px;
        left: 0;
        height: 3px;
        width: 77px;
        background: var(--primary-color);
    }

    .footer-social .newsletter .title strong {
        font-size: 12px;
        margin-top: 16px;
    }

    .newsletter-email {
        width: 100%;
    }

    .about-us-text h1,
    .about-us-second h1 {
        font-weight: 800;
        font-size: 28px;
    }

    .responsive-nav-wrapper .logo-mobile {
        display: none;
    }

    #team_section .team-box {
        padding: 7px;
        width: 25%;
    }

    .dashboard-section-page {
        margin-top: 0;
    }

    .projects-page {
        margin-top: 66px;
    }

    .icon-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-end;
    }

    .section-dasbord.item-title-description.section-dasbord-one {
        background-position: 0px 38px;
        background-size: contain;
    }

    .dashbord-list {
        padding: 0px 50px 46px 50px;
    }

    section.section-six-dasbord.item-title-description.section-dashbord-six .dashbord-list {
        padding: 0px 18px 46px 19px;
    }

    section.section-six-dasbord.item-title-description.section-dashbord-six .dashbord-list ul {
        padding: 0;
    }

    section.dashboard-section-page .dashbord-list li,
    section.dashboard-section-page .dashbord-lists li {
        line-height: 20px;
        font-weight: 500;
    }

    .dashbord-text {
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .section-dashbord-pic {
        padding: 20px 45px 33px 40px !important;
    }

    .section-four-dasbord.item-title-description.section-dashbord-four .dashbord-lists {
        padding: 0 54px 11px 33px;
    }

    .dashbord-title-six::after {
        content: "";
        position: absolute;
        width: 305px;
        height: 18px;
        background-color: #ffad5b;
        z-index: -1;
        left: 0;
        top: 18px;
    }

    .dash-section-1::after {
        content: "";
        position: absolute;
        width: 388px;
        height: 18px;
        background-color: #ffad5b;
        z-index: -1;
        left: 0;
        top: 18px;
    }

    .dash-section-2::after {
        content: "";
        position: absolute;
        width: 433px;
        height: 18px;
        background-color: #ffad5b;
        z-index: -1;
        left: 0;
        top: 18px;
    }

    .dash-section-3::after {
        content: "";
        position: absolute;
        width: 266px;
        height: 18px;
        background-color: #ffad5b;
        z-index: -1;
        left: 0;
        top: 18px;
    }

    .dash-section-4::after {
        content: "";
        position: absolute;
        width: 360px;
        height: 18px;
        background-color: #ffad5b;
        z-index: -1;
        left: 0;
        top: 18px;
    }

    .dash-section-6::after {
        content: "";
        position: absolute;
        width: 363px;
        height: 18px;
        background-color: #ffad5b;
        z-index: -1;
        left: 0;
        top: 18px;
    }

    .section-six-dasbord.german.item-title-description .dashbord-text .dashbord-list {
        padding: 0px 50px 46px 0;
    }

    .section-six-dasbord.german.item-title-description .dashbord-text .dashbord-list ul {
        padding: 0 0 0 20px;
    }

    section.project-planing-control-page {
        margin-top: 55px;
    }

    .project-planing-control-page .background-bim-section h1 {
        font-size: 5rem;
    }

    section.frequently-asked-questions-page {
        margin-top: 30px;
    }

    .social-toolbar {
        position: absolute;
        left: 3rem;
        top: calc(22vh);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 100;
        background: #444;
        width: 38px;
        padding: 10px 0px 26px;
        border-radius: 40px;
    }

    .html-registration-page .social-toolbar,
    .html-login-page .social-toolbar {
        display: none;
    }

    .social-toolbar-inner {
        position: relative;
        overflow: hidden;
        max-height: 79px;
        -webkit-transition: max-height 250ms ease;
        transition: max-height 250ms ease;
        z-index: 2;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        padding: 0px 0px 26px;
        margin: auto 0;
        transition: all 0.5s;
    }

    .social-toolbar img {
        width: 20px;
        margin-bottom: 6px;
    }

    .social-toolbar>span.dropDown-icon {
        position: absolute;
        width: 100%;
        right: 2px;
        bottom: auto;
        font-size: 0;
        height: 36px;
        cursor: pointer;
        z-index: 1;
    }

    .social-toolbar .dropDown-icon::before {
        content: "";
        position: absolute;
        width: 30%;
        height: 25px;
        background: url(../img/dropdown.svg) center no-repeat;
        background-repeat: no-repeat;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: -webkit-transform 250ms ease;
        transition: -webkit-transform 250ms ease;
        transition: transform 250ms ease;
        transition: transform 250ms ease, -webkit-transform 250ms ease;
        cursor: pointer;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }

    .social-toolbar-inner.open {
        overflow: hidden;
        max-height: 130px;
        transition: all 0.5s;
    }

    .dropDown-icon.drop-icon::before {
        transform: translateX(-50%) rotate(180deg);
        -webkit-transform: translateX(-50%) rotate(180deg);
    }

    .social-toolbar>span:before {
        left: 21px;
        top: 0;
        background-repeat: no-repeat;
        content: '';
        display: block;
    }
}