/*=========================================================
    DOCS

    Spinners/Loaders
    https://loading.io/
    https://loading.io/animation/
    https://loading.io/button/

    Single Element CSS Spinners
    https://projects.lukehaas.me/css-loaders/

    1. Place a button right aligned
    https://stackoverflow.com/questions/6632340/place-a-button-right-aligned

    2. How can I center an absolutely positioned element in a div?
    https://stackoverflow.com/questions/1776915/how-can-i-center-an-absolutely-positioned-element-in-a-div

    3. draw diagonal lines in div background with CSS
    https://stackoverflow.com/questions/18012420/draw-diagonal-lines-in-div-background-with-css
    Change the thickness of an SVG shape
    https://stackoverflow.com/questions/37687427/change-the-thickness-of-an-svg-shape

    4. Card hover shadow
    https://codepen.io/Sarathkumar/post/css-hover-card-smooth-shadow

    5. How to make a div 100% height of the browser window
    https://stackoverflow.com/questions/1575141/how-to-make-a-div-100-height-of-the-browser-window

    6. How To Load and Use Custom Fonts with CSS
    https://www.digitalocean.com/community/tutorials/how-to-load-and-use-custom-fonts-with-css#loading-a-self-hosted-font-with-font-face

    7. How do I install a custom font on an HTML site
    https://stackoverflow.com/questions/7961721/how-do-i-install-a-custom-font-on-an-html-site

=========================================================*/

@font-face { font-family: FixelDisplay; src: url('/web/assets/fonts/FixelAll/FixelDisplay/FixelDisplay-Regular.otf'); }
@font-face { font-family: Jost; src: url('/web/assets/fonts/Jost/static/Jost-Regular.ttf'); }

/*=========================================================
    COMMON
=========================================================*/

/*---------------------------
  Font
---------------------------*/

.font-upgrade {
    font-size: 1.4em;
}
.font-upgrade.font-upgrade-jost {
    font-family: Jost, sans-serif !important;
}
.font-upgrade.font-upgrade-fixel {
    font-family: FixelDisplay, sans-serif !important;
}

/*-----------------------------------*/

.btn-green.btn-outline {
    color: green;
    border-color: green;
    background-color: transparent;
}

.btn-green.btn-outline:active, .btn-green.btn-outline:focus, .btn-green.btn-outline:hover {
    background-color: green;
    color: #fff;
}

/*-----------------------------------*/

.hide {
    display: none;
}

.stripe-1 {
    background: repeating-linear-gradient(
        45deg,
        #606dbc,
        #606dbc 10px,
        #465298 10px,
        #465298 20px
    );
}

/* See Docs 3 */
.diag {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M0 99 L99 0 L100 1 L1 100' stroke='black' stroke-width='8' /></svg>");
    background-repeat:no-repeat;
    background-position:center center;
    background-size: 100% 100%, auto;
}

/*-----------------------------------*/

.alert2 {
    display: flex;
    margin-bottom: 20px;
    margin-top: -5px;
}
.alert2 .btn-close.btn-link {
    margin: 0 1rem 0 auto;
    padding-bottom: 0;
    display: inline-block;
    margin-top: 3px;
}

/*-----------------------------------*/

.msg {
    font-size: 120% !important;
}
.msg a {
    text-decoration: underline;
    font-weight: bold;
}
.msg.text-success {
    color: #198754 !important;
}

/*-----------------------------------*/

.icon-count {
    position: absolute;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    font-style: normal;
    z-index: 1;
    right: -8px;
    top: -5px;
    font-family: FixelDisplay, Jost, Poppins, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8rem;
    background: #F4442C;
    color: #fff !important;
    text-align: center;
}

/*-----------------------------------*/

.select2-container {
    vertical-align: inherit;
}

.select2-container .select2-selection--single {
    height: 42px;
    border: 1px solid #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: inherit;
    line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
}

.select2-search--dropdown .select2-search__field {
    padding: 10px;
    font-size: 15px;
    color: #777;
}

/*---------------------------
  Product card shadow
---------------------------*/

/*
See Docs 4
*/
.product.shadow-on-hover {
    box-shadow: 0px 0px 0px grey;
}
.product.shadow-on-hover:hover{
    box-shadow: 2px 6px 20px grey;
    -webkit-transition:  box-shadow .5s ease-in;
}

/*-----------------------------------*/

.my-loadable {
    position: relative;
}
.my-loadable .loader,
.page-content.cart-content.mobile-adapt .shop-table .my-loadable img.loader {
    display: none;
}
.my-loadable.loading2 .loader,
.page-content.cart-content.mobile-adapt .shop-table .my-loadable.loading2 img.loader {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

/*----------------------------------------
    Accordion
-----------------------------------------*/

.accordion2 .collapsed, .accordion3 .collapsed,
.accordion2 .expanding, .accordion3 .expanding {
    display: none;
}

/*----------------------------------------
    Validation
-----------------------------------------*/

.input-error,
.input-error:focus {
    border: 2px solid darkred !important;
}

/*----------------------------------------
    Readmore
-----------------------------------------*/

#readmore {
    overflow: hidden;
}

.readmore.rows-5 {
    max-height: 180px;
}

/*=========================================================
    LAYOUT: POPUPS
=========================================================*/

/*---------------------------
  Popup black 2
---------------------------*/

.popup-black2 {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .65);
    position: absolute;
    display: none;
    z-index: 5000;
    top: 0;
}
body.search-mobile .popup-black2 {
    display: block;
}

/*=========================================================
    LAYOUT: HEADER
=========================================================*/

.dropdown-lang {
    text-transform: uppercase;
}

/*---------------------------*/

.header-middle {
    padding: 1.5rem 0 1.5rem;
}

.header-middle .logo {
    margin: 0 55% !important;
    min-width: 20rem;
}
@media (max-width: 479px) {
    .header-middle .logo {
        margin: 0 auto !important;
    }
}
@media (max-width: 1023px) {
    .header-middle .logo {
        margin: 0 auto !important;
    }
}

/*---------------------------*/

body.search-mobile .header {
    display: none;
}

.header-search input.form-control {
    padding-left: 20px;
}

/*---------------------------*/

/* See Docs 5 */
.category-menu .megamenu {
    outline: 0px solid red;
    min-width: 70rem;
    width: 70vw;
    min-height: 500px;
}

.category-menu .megamenu .menu-title {
    font-size: 1.2rem;
}

/*.megamenu > li {
    flex: none;
    padding: 2.7rem 1.5rem 0;
}*/
.megamenu > li li {
    margin-bottom: -10px;
}
.megamenu > li > div {
    max-width: 220px;
}

.menu li {
    position: initial;
}

.dropdown-box .menu li li a {
    font-size: 12px;
}

.category-menu > li > a,
.mobile-menu li {
    text-transform: initial;
}

/*-------------------------*/

.header-bottom .header-right>a:not(:last-child) {
    margin-right: 1.2rem;
}

.menu-mark.menu-mark-sale {
    color: #222;
}
.menu-mark.menu-mark-new {
    color: #222;
}

/*---------------------------
  Wishlist widget
---------------------------*/

/*=========================================================
    LAYOUT: FOOTER
=========================================================*/

body.search-mobile .header {
    display: none;
}

.dropdown-lang {
    text-transform: uppercase;
}

.header-search input.form-control {
    padding-left: 20px;
}

/*---------------------------
  Wishlist widget
---------------------------*/

.wishlist.label-down {
    position: relative;
}

/*---------------------------
  Cart widget
---------------------------*/

/*.cart-dropdown.cart-offcanvas .dropdown-box {
    outline: 0px solid black;
    overflow-y: auto;
}

.cart-dropdown .products {
    max-height: none;
}

.cart-dropdown .cart-footer {
    outline: 1px solid black;
    position: absolute;
    bottom: 100px;
    left: 60px;
    padding: 10px;
    background-color: #efefef;
}

.cart-dropdown .cart-footer {
    outline: 2px solid #777;
    display: block;
    position: relative;
    bottom: 100px;
    padding: 10px;
    background-color: #fafafa;
}*/

/*---------------------------*/

.cart-dropdown.cart-offcanvas .dropdown-box {
    padding: 2.5rem 1rem 2.5rem  2.5rem;
}

.cart-dropdown .products {
    outline: 0px solid blue;
    max-height: 50rem;
    overflow-y: auto;
    padding-right: 1.5rem;
}

/*---------------------------
  Phone
---------------------------*/

.footer .widget-about .widget-about-call {
    margin-bottom: 1.5rem;
}

/*---------------------------
  Social buttons
---------------------------*/

.footer .social-icon2 {
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
}
.footer .w-icon-telegram2 {
    background-image: url("/web/assets/images/icons/icon_telegram.png");
}
.footer .w-icon-viber2 {
    background-image: url("/web/assets/images/icons/icon_viber.png");
}
.footer .w-icon-whatsapp2 {
    background-image: url("/web/assets/images/icons/icon_whatsapp.png");
}
.footer .w-icon-instagram2 {
    background-image: url("/web/assets/images/icons/icon_instagram.png");
}

/*---------------------------
  Payment methods
---------------------------*/

.footer .payment-icons {
    display: inline-block;
}
.footer .payment-icons .payment-icon {
    background-color: rgba(255,255,255,0.1);
}
.footer .payment-icons .payment-icon {
    display: inline-block;
    opacity: .6;
    transition: opacity .3s;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.1);
    padding: 3px 5px 5px;
    margin: 3px 3px 0;
}
/*.footer .payment-icons .payment-icon svg {
    fill: #FFF;
}*/
.footer .payment-icons .payment-icon svg {
    vertical-align: middle;
    height: 20px;
    width: auto !important;
}

/*=========================================================
    STICKY FOOTER
=========================================================*/

.sticky-footer .cart-dropdown:hover .dropdown-box {
    opacity: 0;
}

.sticky-footer .cart-dropdown .dropdown-box.opened {
    opacity: 1;
    visibility: visible;
}

/*=========================================================
    TEXTPAGE
=========================================================*/

/*---------------------------
  Content editor
---------------------------*/

.content-editor {
    margin-bottom: 60px;
}
.content-editor, .content-editor p, .content-editor blockquote, .content-editor li, .content-editor a, .content-editor strong, .content-editor b, .content-editor em {
    font-family: 'montserrat' !important;
    line-height: 1.6;
    font-size: 1.6rem;
}
.content-editor.certificates .product-name {
    font-size: 2rem;
    font-weight: bold;
}

/*---------------------------*/

.page-header {
    text-transform: none;
}

/*=========================================================
    LAYOUT
=========================================================*/

/*---------------------------
  Search desktop
---------------------------*/

body.search-desktop .header-search {
    overflow: visible !important;
    position: relative;
}

/*body.search-desktop .header-bottom:not(.fixed) .show-dropdown .dropdown-box {
    visibility: hidden;
}*/

.header-search .aws-search-result {
    position: absolute;
    width: 100%;
    height: 100%;
    outline: 0px solid red;
    bottom: -90%;
    z-index: 100;
    display: block;
}

.header-search .aws-search-result .item {
    outline: 0px solid black;
    background: #fff;
}

/*---------------------------
  Search mobile
  source: https://partfix.net/ -> Header -> Search form
---------------------------*/

.header__popup-search {
    display: none !important;
}
body.search-mobile .header__popup-search {
    display: block !important;
}

.header__popup-search .aws-search-result {
    display: none;
}
body.search-mobile-active .header__popup-search .aws-search-result {
    display: block;
}

.header__popup-search {
    width: calc(100% - 30px);
    z-index: 5001;
    position: absolute;
    top: 20px;
    left: 15px;
}
.header__popup-search-line {
    height: 50px;
    background: #fff;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 10px;
}
.header__popup-search-line input {
    border: 0;
    font-size: 16px;
    outline: 0;
    width: 100%;
}
.header__popup-search-line button {
    margin-left: 40px;
    background: 0;
    border: 0;
    cursor: pointer;
}
.header__popup-search-line button img {
    width: 19px;
    vertical-align: middle;
}
@media screen and (max-width:1023.98px) {
    .header__popup-search-line {
        padding-right: 10px;
        padding-left: 10px;
    }
}

/*---------------------------
  Search result
  source: https://sale365.pro/ -> Header -> Search form
---------------------------*/

.aws-search-result {
    position: absolute;
    text-align: left;
    z-index: 9999999999999;
    background: #fff;
    width: 100%;
    margin-top: -1px;
    border: 0px solid #ccc;
    font-size: 12px;
    line-height: 16px;
}

.aws-search-result ul {
    outline: 0px solid orange;
    padding-left: 0;
    max-height: 1000px;
    overflow-y: auto;
}

.aws-search-result ul li {
    list-style: none;
    border: 1px solid #ccc;
    overflow: hidden;
    margin: 0 !important;
    position: relative;
}
.aws-search-result ul li.aws_result_item ul {
    padding: 5px 0 0 10px;
}
.aws-search-result ul li.aws_result_subitem {
    display: inline-block;
    border: none;
    padding-right: 10px;
}

.aws-search-result .aws_result_link {
    display: block;
    cursor: pointer;
    padding: 10px 8px;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    border: 0;
}

.aws-search-result .aws_result_item .aws_result_link_top {
    position: absolute;
    z-index: 99999999999999;
    white-space: nowrap;
    text-indent: -9999px;
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    outline: none;
    text-decoration: none;
}

.aws-search-result .aws_result_image {
    display: block;
    height: 100%;
    float: left;
    padding: 0 10px 0 0;
}

.aws-search-result .aws_result_image img {
    max-width: 75px;
    width: 75px;
    height: auto;
    box-shadow: none;
}

.aws-search-result .aws_result_content {
    overflow: hidden;
    display: block;
}

.aws-search-result .aws_result_title {
    display: block;
    font-weight: normal;
    margin-bottom: 3px;
    color: #21759b;
}
.aws-search-result a.aws_result_title {
    color: #21759b;
}
.aws_result_item.not-found .aws_result_title {
    color: #555;
    font-weight: bold;
    font-style: italic;
}

.aws-search-result .aws_result_stock {
    display: block;
    font-weight: normal;
    margin-top: 4px;
    margin-bottom: 5px;
    color: #7ad03a;
}

.aws-search-result .aws_result_sku {
    display: block;
    font-weight: normal;
    margin-top: 3px;
    margin-bottom: 5px;
    color: #222;
}

.aws-search-result .aws_result_price {
    display: inline-block;
    padding: 2px 0;
    color: #222;
}

.aws-search-result a.btn-cart.positioned {
    position: absolute;
    z-index: 999999999999999;
}
.aws-search-result  a.btn-cart {
    outline: 0px solid black;
    border-color: transparent;
    background-color: #336699;
    margin-left: 10px;
}
.aws-search-result  a.btn-cart:hover {
    cursor: pointer;
}
.aws-search-result a.btn-cart.btn.btn-sm {
    font-size: 1.1rem;
    padding: 0.5em 1em;
}

span.amount {
    white-space: nowrap;
    font-weight: bold;
    display: block;
}

/*=========================================================
    PAGE: INDEX (HOME)
=========================================================*/

/*---------------------------
  Product list
---------------------------*/

.home .product-list-section {
    margin-bottom: 1.2rem;
}

.home .product-list-section .row {
    justify-content: center;
}
.home .product-list-section .row .col {
    padding: 0 30px;
}
.home .product-list-section .row .col .product-details .product-name a {
    font-size: 1.3em;
}
.home .product-list-section .row .col .product-details .product-price {
    font-size: 2.1em;
}

.home .product-media img {
    max-width: 100px;
    max-height: 112px;
    min-height: 112px;
}

@media (max-width: 500px) {
    .category-default1 .category-content .category-name {
        font-size: 1.4rem !important;
    }
}

/*=========================================================
    PAGE: CART
=========================================================*/

.page-content.cart-content {
    margin-top: 3rem;
}

/*-----------------------------------*/

.page-content.cart-content .shop-table th {
    text-align: left;
}

.page-content.cart-content .shop-table.cart-table th {
    width: inherit;
}
/*.page-content.cart-content .shop-table.cart-table .product-name {
    width: 40%;
}
.page-content.cart-content .shop-table.cart-table .product-price {
    width: 15%;
}
.page-content.cart-content .shop-table.cart-table .product-quantity {
    width: 20%;
}
.page-content.cart-content .shop-table.cart-table th.product-subtotal {
    width: 25% !important;
}*/

/*-----------------------------------*/
/* Cart alert */

.cart-content .alert.mobile {
    display: none;
}

@media (max-width: 479px) {
    .cart-content .alert.desktop {
        display: none;
    }
    .cart-content .alert.mobile {
        display: block;
    }
}

/*-----------------------------------*/
/* Cart action */

.page-content.cart-content .cart-action.cart-empty {
    margin-top: 3rem;
}

.cart .cart-action.cart-empty,
.checkout-complete .cart-action.cart-empty {
    display: block;
}

.cart .btn-shopping {
    display: none;
}
.cart .cart-action .btn-shopping,
.checkout-complete .cart-action .btn-shopping {
    display: block;
}

@media (max-width: 479px) {
    .cart .cart-actio,
    .checkout-complete .cart-action {
        display: none;
    }
    .cart .btn-checkout,
    .cart .btn-shopping {
        width: 100% !important;
    }
    .cart .cart-summary .btn-shopping {
        display: block;
    }
}

/*-----------------------------------*/

@media (max-width: 767px) {
    .page-content.cart-content.mobile-adapt {
        margin-top: 0rem;
    }

    .page-content.cart-content.mobile-adapt .shop-table:not(.account-orders-table) tr {
        padding: 2rem;
    }

    .page-content.cart-content.mobile-adapt .shop-table:not(.account-orders-table) .product-thumbnail > div img {
        max-width: 50%;
    }

    .page-content.cart-content.mobile-adapt .shop-table img {
        display: inline-block;
    }
}

/*-----------------------------------*/

.order-table td {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/*.my-account .order-table tr:not(:first-child) td {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}*/

.cart .shop-table tbody tr.cart-alert.amount-changed {
    background-color: #ff9999;
}
.cart-table td.product-name {
    width: 50%;
}
.cart-table .product-name span.variation,
.order-table .product-name span.variation,
.order-table .product-name_ span.variation {
    font-size: 11px;
}

.cart .btn-checkout.disabled {
    opacity: 0.5;
}

/*-----------------------------------*/
/* cart-table2 */

@media (max-width: 479px) {
    .shop-table.cart-table2 table.cart-subtable {
        border-collapse: separate;
    }

    .shop-table:not(.account-orders-table).cart-table2 tbody,
    .shop-table:not(.account-orders-table).cart-table2 tr,
    .shop-table:not(.account-orders-table).cart-table2 td {
        display: revert;
    }

    .shop-table:not(.account-orders-table).cart-table2 td {
        padding: 1px;
        border: none;
    }

    .shop-table:not(.account-orders-table).cart-table2 td.product-thumbnail {
        width: 30%;
    }
    .shop-table:not(.account-orders-table).cart-table2 td.product-thumbnail > div {
        margin-left: 12px;
    }
    .page-content.cart-content.mobile-adapt .shop-table:not(.account-orders-table).cart-table2 .product-thumbnail > div img {
        max-width: 110px;
    }
    .shop-table.cart-table2 .btn-close {
        left: -10px;
        top: -20px;
    }
}

/*=========================================================
    PAGE: CHECKOUT
=========================================================*/

.checkout .page-content {
    margin-top: 20px;
}

/*.checkout .order-table .product-name {
    width: 90%;
}*/
.checkout .order-table .product-total {
    width: 30%;
}

.checkout-form button.disabled,
.checkout-form button[type="submit"].disabled {
    opacity: 0.5;
}

/*---------------------------
  Billing
---------------------------*/

.checkout .iti {
    display: block;
}

.account-wrapper .alert-error,
.checkout .alert-error {
    display: none;
    position: relative;
    left: 5px;
    color: darkred;
}
.account-wrapper .alert-error.with-bg,
.checkout .alert-error.with-bg {
    background-color: #e9cfcb;
}

.checkout label[for="notes"] span {
    text-transform: lowercase;
}

/*---------------------------
  Cart
---------------------------*/

.checkout .order-summary tbody.cart tr.cart-alert.cart-alert-activate.ukrposhta,
.checkout .order-summary tbody.cart tr.cart-alert.cart-alert-activate.novaposhta_global {
    background-color: #ff9999;
}

/*
How to set tbody height with overflow scroll
https://stackoverflow.com/questions/23989463/how-to-set-tbody-height-with-overflow-scroll
*/

.checkout .order-summary.scrolled tbody.cart {
    display: block;
    max-height: 500px;
    overflow-y: auto;
    width: 102%;
    padding-right: 10px;
}
@media (max-width: 479px) {
    .checkout .order-summary.scrolled tbody.cart {
        max-height: none;
    }
}

.checkout .order-summary.scrolled thead.cart,
.checkout .order-summary.scrolled tbody.cart tr {
    display: table;
    width: 100%;
    table-layout: fixed;/* even columns width , fix width of table too*/
}

.checkout .order-summary.scrolled thead.cart {
    width: calc( 115% - 1em )/* scrollbar is average 1em/16px width, remove it from thead width */
}

/*---------------------------
  Shipping
---------------------------*/

.order-summary .card-body {
    padding-bottom: 0;
}

.checkout .order-summary.order-summary-mobile {
    display: none;
}

@media (max-width: 479px) {
    .checkout .order-summary.order-summary-desktop .shipping-methods,
    .checkout .order-summary.order-summary-desktop .payment-methods {
        display: none;
    }
    .checkout .order-summary.order-summary-mobile {
        display: block;
    }
}

.checkout .shipping-methods li {
    position: relative;
}

.checkout .shipping-methods .cost {
    /*font-weight: bold;*/
    font-size: 1.5rem;
    position: absolute;
    right: 0;
}

/*---------------------------
  Payment
---------------------------*/

/*.accordion .card.non-active {
    opacity: 0.5;
}
.accordion .card.non-active .hint {
    opacity: 1;
}*/
/*.accordion .card.non-active {
    background:rgba(200,200,200,0.5);
}
.accordion .card.non-active .hint {
    background:rgba(200,200,200,1);
}*/
/*.accordion .card.non-active .card-header {
    opacity: 0.5;
}*/

/*=========================================================
    PAGE: ACCOUNT
=========================================================*/

.tab-vertical .link-item a {
    padding-left: 2.2rem;
}

/*=========================================================
    PAGE: CATEGORY/SUBCATEGORY/BRAND
=========================================================*/

.widget.widget-category .widget-body,
.widget.subcat .widget-body,
.widget.brand .widget-body,
.widget.color .widget-body {
    overflow-y: auto;
    max-height: 390px;
}

.shop-content .product-media img {
    /*max-width: 217px;*/
    max-height: 245px;
    min-height: 245px;
}
@media (max-width: 479px) {
    .shop-content .product-media img {
        /*max-width: 170px;*/
        max-height: 191px;
        min-height: inherit !important;
    }
}

/*---------------------------
  Pagination
---------------------------*/

.catalog-category .pagination.collapsed .next,
.catalog-category .pagination.collapsed .prev {
    min-width: 0;
    padding: 1.2rem 0;
}
.catalog-category .pagination.collapsed .prev {
    margin-right: 0;
}
.catalog-category .pagination.collapsed .next {
    margin-left: 0;
}

/*=========================================================
    PAGE: CATALOG_iTEM
=========================================================*/

/*---------------------------
  Gallery
---------------------------*/

.product-label.label-new {
    /*background: #336699 !important;*/
    background: #458136 !important;
}

.product-label.label-discount {
    background: #f93 !important;
}

.product-single-swiper img {
    /*max-width: 510px;*/
    max-height: 573px;
}
@media (max-width: 479px) {
    .product-single-swiper img {
        /*max-width: 360px;*/
        max-height: 405px;
    }
}

.pswp__zoom-wrap .pswp__img {
    height: inherit !important;
}

/*---------------------------
  Price
---------------------------*/

.product-price .new-price {
    text-transform: lowercase;
}

/*---------------------------
  Variations
---------------------------*/

.product-single .product-size-swatch .product-variations {
    width: 500px;
}
.product-single .product-size-swatch .size.active,
.product-single .product-size-swatch .size:hover {
    border-color: #336699;
    color: #336699;
}
.product-single .product-size-swatch .size.active {
    border-width: 2px;
}
.product-single .product-size-swatch .size.attr-blocked,
.product-single .product-size-swatch .size.attr-blocked:hover,
.product-single .product-size-swatch .size.attr-not-available,
.product-single .product-size-swatch .size.attr-not-available:hover {
    border-color: #ccc;
    color: #666;
}
.product-single .product-size-swatch .size.attr-blocked,
.product-single .product-size-swatch .size.attr-not-available {
    opacity: 0.7;
}
.product-single .product-color-swatch .color.attr-blocked,
.product-single .product-color-swatch .color.attr-not-available {
    /*opacity: 0.5;*/
}
.product-single .product-size-swatch .size.attr-not-available {
    background-color: lightgrey;
    cursor: auto;
}

.product-single .product-form label {
    min-width: 120px;
}

/*---------------------------
  Shop amount
---------------------------*/

.catalog-item .accordion3 {
    min-width: 100%;
}

.catalog-item .shop-amount {
    display: table;
}

.catalog-item .shop-amount .card-header a {
    padding: 0;
}

.catalog-item .shop-amount .card-body {
    padding: 0;
}

/*catalog-item .shop-amount .amount-item {
    display: table-row;
    font-size: 1.5em;
    opacity: 0.8;
}*/
.catalog-item .shop-amount .amount-item {
    font-size: 1.5em;
    opacity: 0.8;
    width: 100%;
    line-height: 1.5;
}

/*.catalog-item .shop-amount .amount-item span {
    display: table-cell;
    width: 50%;
}*/
.catalog-item .shop-amount .amount-item span {
    display: table-cell;
    width: 200px;
}
.catalog-item .shop-amount .amount-item span.amount-units {
    font-size: 1.2em;
    color: green;
    text-align: center;
    width: 40%;
    /*margin-left: 10px;
    padding: 0 10px;*/
}

/*---------------------------
  Tab description
---------------------------*/

.catalog-item .tab-pane .row {
    font-size: 1.1em;
}

.catalog-item .tab-pane ul {
    list-style-type: disc;
    padding-left: 30px;
}