/* ========================================================================
   Component: Base
 ========================================================================== */
/*

font-family: "Inter", sans-serif;

*/

html {
    background: #FFF;
    color: #231F20;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.uk-h1, h1 {
    font-size: 36px;
    line-height: 48px;
}

.uk-h2, h2 {
    font-size: 30px;
    line-height: 40px;
}

.uk-h3, h3 {
    font-size: 28px;
    line-height: 38px;
}

.uk-h4, h4 {
    font-size: 24px;
    line-height: 32px;
}

.uk-h5, h5 {
    font-size: 18px;
    line-height: 26px;
}

.uk-h6, h6 {
    font-size: 16px;
    line-height: 24px;
}

.uk-link, a {
    color:#D8BC56;
}

a:hover,
.uk-link:hover,
.uk-link-toggle:hover .uk-link,
.uk-link-toggle:focus .uk-link {
  color: #000;
}

b, strong {
    font-weight: 700;
}

/* Wrapper / base */

.tm-wrapper {
    max-width: 1680px;
    padding-top: 90px;
    margin: 0 auto;
    position:relative;
}

@media(max-width: 413px) {
    .tm-wrapper {
        padding-top: 74px;
    }
}

/* Container */

.uk-container {
    max-width: 1300px;
}

.uk-container-small {
    max-width: 1080px;
}

.uk-container-xlarge {
    max-width: 1520px;
}

/* Button */

.uk-button {
    background-color: #D8BC56;
    border: 1px solid #D8BC56;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 48px;
    text-transform: initial;
    padding: 0 25px;
    -webkit-transition: all linear 0.55s;
    transition: all linear 0.55s;
}

.uk-button.uk-button-width\@m {
    padding: 0 100px;
}

.uk-button:hover, .uk-button:focus {
    background-color: #222;
    border-color: #222;
    color: #fff;
}

.uk-button:active {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.uk-button-primary {
    background-color: transparent !important;
    border-color: #222 !important;
    color: #222 !important;
}

.uk-button-primary:hover, .uk-button-primary:focus {
    background-color: transparent !important;
    border-color: #D8BC56 !important;
    color: #D8BC56 !important;
}

.uk-button-primary:active {
    background-color: transparent !important;
    border-color: #7c6f49 !important;
    color: #7c6f49 !important;
}

.uk-button-secondary {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 0 !important;
    color: #FFF !important;
    line-height: 42px;
}

.uk-button-secondary:hover, .uk-button-secondary:focus {
    background-color: rgba(255, 255, 255, 0.25) !important;
    color: #FFF !important;
}

.uk-button-secondary:active {
    background-color: rgba(255, 255, 255, 0.30) !important;
    color: #FFF !important;
}

.uk-button-tertiary {
    background-color: #fff !important;
    border: 0 !important;
    color: #222 !important;
    line-height: 52px;
}

.uk-button-tertiary:hover, .uk-button-tertiary:focus {
    background-color: #f5f5f5 !important;
    color: #222 !important;
}

.uk-button-tertiary:active {
    background-color: #f8f8f8 !important;
    color: #222 !important;
}

.uk-button-quaternary {
    background-color: rgba(255, 255, 255, 0.30) !important;
    border: 0 !important;
    color: #FFF !important;
    line-height: 52px;
}

.uk-button-quaternary:hover, .uk-button-quaternary:focus {
    background-color: rgba(255, 255, 255, 0.40) !important;
    color: #FFF !important;
}

.uk-button-quaternary:active {
    background-color: #FFF !important;
    color: #FFF !important;
}

.uk-button-quinary {
    background-color: #fff !important;
    border: 0 !important;
    color: #222 !important;
}

.uk-button-quinary:hover, .uk-button-quinary:focus {
    background-color: #dddddd !important;
    color: #222 !important;
}

.uk-button-quinary:active {
    background-color: #f8f8f8 !important;
    color: #222 !important;
}

.uk-button-small {
    padding: 0 30px;
    line-height: 40px;
}

.uk-button-xsmall {
    padding: 0 20px;
    line-height: 24px;
}

.uk-icon-button {
    padding: 8px;
}

/* ==== Active state ==== */

.uk-button-active {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

/* ==== Height ==== */

.uk-height-large {
    height: 750px;
}

/* ==== form ==== */

input[type=number] {
	 -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
	-moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
    -moz-appearance: textfield;
	appearance: none;
    margin: 0;
}

.uk-form-label {
    color: #231F20;
}

.uk-radio:focus, .uk-checkbox:focus {
  border-color: #D8BC56;
}

.uk-checkbox:checked, .uk-checkbox:indeterminate, .uk-radio:checked {
    background-color: #D8BC56;
}

.uk-radio:checked:focus, .uk-checkbox:checked:focus, .uk-checkbox:indeterminate:focus {
    background-color: #D8BC56;
}

/* input / select / textarea */

.uk-input, .uk-select {
    background-color: #f4f4f4 !important;
    border-color: #f4f4f4 !important;
    border-radius: 12px;
    color: #444 !important;
    font-size: 14px;
    font-weight: 600;
    height: 50px;
    padding: 0 15px;
}

.uk-select, .uk-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-selector' width='24' height='24' viewBox='0 0 24 24' stroke-width='2' stroke='%23a49362' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'%3E%3C/path%3E%3Cpath d='M8 9l4 -4l4 4'%3E%3C/path%3E%3Cpath d='M16 15l-4 4l-4 -4'%3E%3C/path%3E%3C/svg%3E") !important;
    height: 50px;
    cursor: pointer;
}

.uk-textarea {
    background-color: #f4f4f4 !important;
    border-color: #f4f4f4 !important;
    border-radius: 12px;
    color: #444 !important;
    font-size: 14px;
    font-weight: 600;
    padding: 15px;
}

/* Table */

@media (max-width: 767px) {
    .uk-table-responsive-xsmall,
    .uk-table-responsive-xsmall tbody,
    .uk-table-responsive-xsmall th,
    .uk-table-responsive-xsmall td,
    .uk-table-responsive-xsmall tr {
      display: block;
    }
    .uk-table-responsive-xsmall thead {
      display: none;
    }
    .uk-table-responsive-xsmall th,
    .uk-table-responsive-xsmall td {
      width: auto !important;
      max-width: none !important;
      min-width: 0 !important;
      overflow: visible !important;
      white-space: normal !important;
    }
    .uk-table-responsive-xsmall th:not(:first-child):not(.uk-table-link),
    .uk-table-responsive-xsmall td:not(:first-child):not(.uk-table-link),
    .uk-table-responsive-xsmall .uk-table-link:not(:first-child) > a {
      padding-top: 5px !important;
    }
    .uk-table-responsive-xsmall th:not(:last-child):not(.uk-table-link),
    .uk-table-responsive-xsmall td:not(:last-child):not(.uk-table-link),
    .uk-table-responsive-xsmall .uk-table-link:not(:last-child) > a {
      padding-bottom: 5px !important;
    }
    .uk-table-justify.uk-table-responsive-xsmall th,
    .uk-table-justify.uk-table-responsive-xsmall td {
      padding-left: 0;
      padding-right: 0;
    }
}

/* ========================================================================
   Component: Invalid form
 ========================================================================== */

.invalid {
    border-color: red !important;
    box-shadow: none !important;
}

/* ========================================================================
   Component: Tooltip
 ========================================================================== */

 .uk-tooltip {    
    background: #333;
    border-radius: 6px;
    max-width: 200px;
    text-align: center;
    padding: 10px 15px;
}

@media(min-width: 639px) {
    .uk-tooltip {
        max-width: 300px;        
    }
}

/* ========================================================================
   Component: Breadcrumbs
 ========================================================================== */

.tm-breadcrumbs-block {
    background: #f4f4f4;
    padding: 30px 0 20px;
}

.tm-breadcrumbs-block .uk-breadcrumb > * > * {
    color: #000;
    font-size: 12px;
    font-weight: 400;
} 

.tm-breadcrumbs-block .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
    margin: 0 10px 0 calc(10px - 4px);
}

.tm-breadcrumbs-block .uk-breadcrumb > :last-child>a:not([href]), .uk-breadcrumb>:last-child > span {
    color: #000;
    text-decoration: underline;
}

/* ========================================================================
   Component: Header block
 ========================================================================== */

.tm-headerbar-block {
    background: #072331;
    padding: 0;
}

.tm-headerbar-block .uk-logo {
    color: #fff;
}

.tm-headerbar-block .uk-logo > img {
    width: auto;
    height: 90px;
}

.tm-headerbar-block .uk-navbar-nav {
    gap: 15px;
}

.tm-headerbar-block .uk-navbar-nav > li > a {
    background: transparent;
    border-radius: 20px;
    min-height: auto;
    color: #D8BC56;
    font-family: Inter;
    font-size: 15px;
    font-weight: 480;
    line-height: 22px;
    letter-spacing: 0.15px;
    text-transform: initial;
    padding: 9px 24px;
    transition: background linear 0.35s;
}

.tm-headerbar-block .uk-navbar-nav > li.uk-active > a {    
    background: rgba(255, 255, 255, 0.20);    
}

.tm-headerbar-block .uk-navbar-nav > li > a:hover,
.tm-headerbar-block .uk-navbar-nav > li > a:focus {
    background: rgba(255, 255, 255, 0.20); 
}

.tm-headerbar-block  .uk-navbar-item,
.tm-headerbar-block  .uk-navbar-toggle {
    color: #D8BC56;
    min-height: auto;
}

.tm-headerbar-block  .uk-navbar-toggle svg {
    stroke: #D8BC56;
}

.tm-headerbar-block .controlNav > li > a, .tm-headerbar-block .controlNav > li > .uk-inline > a {
    box-sizing: border-box;
    border-radius: 30px;
    display: inline-block;
    width: 44px;
    height: 44px;
    text-align: center;
    padding: 10px;
    transition: linear 0.35s;
}

.tm-headerbar-block .controlNav > li:hover > a, .tm-headerbar-block .controlNav > li:hover > .uk-inline > a,
.tm-headerbar-block .controlNav > li:focus > a, .tm-headerbar-block .controlNav > li:focus > .uk-inline > a  {
    background: rgba(34, 34, 34, 0.20);
}

/* Drop menu */

.tm-headerbar-block .uk-navbar-nav .uk-navbar-dropdown {
    width: 100%;
}

.tm-headerbar-block .uk-navbar-nav .uk-navbar-dropdown-nav > li:last-child {
    margin-bottom: 0;
}

.tm-headerbar-block .uk-navbar-nav .uk-navbar-dropdown-nav > li > a {
    border: 1px solid #ddd;
    border-radius: 8px;
    display: block;
    line-height: 24px;
    padding: 8px 8px 8px 40px;
    position: relative;
}

.tm-headerbar-block .uk-navbar-nav .uk-navbar-dropdown-nav > li > a:hover, .tm-headerbar-block .uk-navbar-nav .uk-navbar-dropdown-nav > li > a:focus {
    box-shadow: 1px 2px 5px rgba(0,0,0,.15);
}

.tm-headerbar-block .uk-navbar-nav .uk-navbar-dropdown-nav > li > a img {
    width: 24px;
    position: absolute;
    top: 8px;
    left: 8px;
}

@media(max-width: 413px) {
    .tm-headerbar-block .uk-logo > svg, .tm-headerbar-block .uk-logo > img {
        width: auto;
        height: 40px;
    }
    .tm-headerbar-block .controlNav > li > a, .tm-headerbar-block .controlNav > li > .uk-inline > a {
        width: 34px;
        height: 34px;
        padding: 5px;
    }
    .tm-headerbar-block .uk-grid .uk-width-auto .uk-grid-small {
        margin-left: -5px;
    }
    .tm-headerbar-block .uk-grid .uk-width-auto .uk-grid-column-small > *, .tm-headerbar-block .uk-grid .uk-width-auto .uk-grid-small > * {
        padding-left: 5px;
    }    
}

@media(min-width: 414px) and (max-width: 639px) {
    .tm-headerbar-block .uk-grid .uk-width-auto .uk-grid-small {
        margin-left: -10px;
    }
    .tm-headerbar-block .uk-grid .uk-width-auto .uk-grid-column-small > *, .tm-headerbar-block .uk-grid .uk-width-auto .uk-grid-small > * {
        padding-left: 10px;
    }
}

@media(min-width: 1200px) and (max-width: 1399px) {
    .tm-headerbar-block .uk-navbar-nav > li > a {
        font-size: 14px;
        padding: 9px 20px;
    }
}

/* ========================================================================
   Component: Cart modul
 ========================================================================== */

.cartWrapper a > .count {
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    width: 16px;
    height: 16px;
    color: #D8BC56;
    font-size: 8px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 5px;
}

.cartWrapper .cartProductList {
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Product */

.cartWrapper .cartProductList .productItem {
    padding: 0 0 25px;
}

.cartWrapper .cartProductList .productItem + .productItem {
    border-top: 1px solid #DFDFDF;
    padding: 25px 0;
}

.cartWrapper .cartProductList .productItem .base img {
    max-width: 90px;
    max-height: 90px;
}

.cartWrapper .cartProductList .productItem .base .subtitle {
    color: #D8BC56;
    font-size: 12px;
    font-style: italic;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
}

.cartWrapper .cartProductList .productItem .base .title {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    margin: 4px 0;
}

.cartWrapper .cartProductList .productItem .base .quantity {
    color: #7D7D7D;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.cartWrapper .cartProductList .productItem .base .quantity > a {
    color: #7D7D7D;
    font-size: 12px;
    text-decoration: underline;
}

@media only screen and (max-width: 600px) and (orientation: landscape) {
    .cartWrapper .cartProductList .cartProductListWrapperInner {
        height: 150px !important;        
    }
    .cartWrapper .cartProductList {
        width: 300px;
    }
}

@media only screen and (max-width: 959px) and (orientation: landscape) {
    .cartWrapper .cartProductList {
        padding: 15px;
    }
    .cartWrapper .cartProductList .cartProductListWrapperInner {
        height: 180px;       
        padding: 0 15px;
        overflow-x: scroll;
    }
    .cartWrapper .cartProductList .cartProductListWrapperInner::-webkit-scrollbar {
        -webkit-appearance: none;
    }
    .cartWrapper .cartProductList .cartProductListWrapperInner::-webkit-scrollbar:vertical {
        width: 3px;
    }
    .cartWrapper .cartProductList .cartProductListWrapperInner::-webkit-scrollbar:horizontal {
        height: 0;
    }
    .cartWrapper .cartProductList .cartProductListWrapperInner::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, .5);
        border-radius: 5px;
        border: 2px solid #000;
    }
    .cartWrapper .cartProductList .cartProductListWrapperInner::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: #f8f8f8;
    }
}

@media(max-width: 320px) {
    .cartWrapper .cartProductList {
        width: 300px;
    }
}

@media(min-width: 376px) and (max-width: 639px) {
    .cartWrapper .cartProductList {
        width: 375px;
    }
}

@media(max-width: 639px) {
    .cartWrapper .cartProductList {
        width: 375px;
    }
}

@media(min-width: 640px) and (max-width: 959px) {
    .cartWrapper .cartProductList {
        width: 375px;
    }
}

@media(min-width: 960px) {
    .cartWrapper .cartProductList {
        min-width: 420px;
    }
}

/* ========================================================================
   Component: User modul
 ========================================================================== */

.userNavWrapper {
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
    border: 1px solid #ddd;
    border-radius: 8px;
}

.userNavWrapper ul li > a {
    border-radius: 8px;
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    padding: 16px;
    position: relative;
    transition: background-color linear 0.35s;
}

.userNavWrapper hr + ul li > a {
    padding: 10px 16px;
}

.userNavWrapper ul li > a:hover, .userNavWrapper ul li > a:focus {
    background: rgba(0,0,0, .1);
}

.userNavWrapper hr {
    border-top: 1px solid #DFDFDF;
    width: calc(100% - 32px);
    margin: 20px 16px;
}

.userNavWrapper hr + ul li a {
    font-weight: 400;
}

@media only screen and (max-width: 600px) and (orientation: landscape) {
    .userNavWrapper .userNavWrapperInner {
        height: 150px !important;        
    }
}

@media only screen and (max-width: 959px) and (orientation: landscape) {
    .userNavWrapper {
        padding: 15px;
    }
    .userNavWrapper .userNavWrapperInner {
        height: 180px;        
        overflow-x: scroll;
    }
    .userNavWrapper .userNavWrapperInner::-webkit-scrollbar {
        -webkit-appearance: none;
    }
    .userNavWrapper .userNavWrapperInner::-webkit-scrollbar:vertical {
        width: 3px;
    }
    .userNavWrapper .userNavWrapperInner::-webkit-scrollbar:horizontal {
        height: 0;
    }
    .userNavWrapper .userNavWrapperInner::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, .5);
        border-radius: 5px;
        border: 2px solid #000;
    }
    .userNavWrapper .userNavWrapperInner::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: #f8f8f8;
    }
}

@media(max-width: 959px) {
    .userNavWrapper {
        width: 375px;
    }
}

@media(min-width: 960px) {
    .userNavWrapper {
        width: 420px !important;  
    }
}

/* ========================================================================
   Component: Products block
 ========================================================================== */

.tm-products-block {
    background: url("../images/bg_products_grey.png") repeat scroll #F4F4F4;
    padding: 60px 0;
}

.tm-products-block h1, .tm-products-block h2 {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
}

.tm-products-block .sliderList {
    margin-top: 25px;
}

/* slider */

.tm-products-block .sliderList .uk-slider-container {
    padding: 0 0 40px;
}

.tm-products-block .sliderList .sliderNav {
    text-decoration: none !important;
}

/* Most seller */

.mostSeller {
    background: url(../images/bg_products_grey.png) repeat scroll #F4F4F4;
    border-top: 3px solid #D8BC56;
    padding: 100px 0;
    position: relative;
}

.mostSeller::before {
    content: "";
    background: #D8BC56;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 2px;
    left: 0;
}

/* Subcategory list */

.tm-products-block .subCategoryList ul li a {
    background: #fff;
    border-radius: 8px;
    display: block;
    line-height: 24px;
    text-decoration: none !important;
    padding: 8px 8px 8px 8px;
    margin: 20px 0 0;
    position: relative;
    transition: linear 0.35s;
}

.tm-products-block .subCategoryList ul li a:hover, .tm-products-block .subCategoryList ul li a:focus {
    background: #f8f8f8;
    box-shadow: 1px 2px 5px rgba(0,0,0,.14);
}

/* Large filtr */

.tm-products-block .uk-button-filter .hide {
    display: none;
}

.tm-products-block .largeFiltr {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #F4F4F4;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.03);
    padding: 20px 0;
}

.tm-products-block .largeFiltr .resetFilter > a {
    display: block;
    text-decoration: none !important;
    padding: 0 20px;
}

.tm-products-block .largeFiltr .uk-accordion > li {
    border-bottom: 1px dashed #ddd;
    padding: 15px 0;
    margin: 0;
}

.tm-products-block .largeFiltr .uk-accordion > li:first-child {
    padding: 0 0 15px;
}

.tm-products-block .largeFiltr .uk-accordion > li:last-child {
    border-bottom: 0;
    padding: 15px 0 0;
}

.tm-products-block .largeFiltr .uk-accordion li > .uk-accordion-title {
    font-size: 16px;
    font-weight: 500;
    padding: 0 20px;
}

.tm-products-block .largeFiltr .uk-accordion li label {
    border-radius: 4px;
    display: block;
    padding: 5px 10px;
    margin: 0 10px;
    cursor: pointer;
    transition: linear 0.35s;
}

.tm-products-block .largeFiltr .uk-accordion li label:hover, .tm-products-block .largeFiltr .uk-accordion li label:focus {
    background: #f4f4f4;
}

.tm-products-block .largeFiltr .uk-accordion li #price-slider {
    margin: 0 35px;
}

.tm-products-block .largeFiltr .uk-accordion li #price-slider .noUi-handle {
    cursor: pointer;
}

.tm-products-block .largeFiltr .uk-accordion li .price-range {
    padding: 0 20px;
    margin: 20px 0 0;
}

.tm-products-block .noHasProducts {
    border-radius: 12px;
}

.tm-products-block .noHasProducts h3 {
    color: red;
}

@media(max-width: 639px) {
    .tm-products-block .subCategoryList ul li a {
        font-size: 12px;
    }
}

@media(max-width: 1199px) {
    .tm-products-block .largeFiltr {
        display: none;
    }
} 

/* ========================================================================
   Component: Products list
 ========================================================================== */

.products .product {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #F4F4F4;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.03);
    padding: 20px;
    position: relative;
}

.products .product .badges {
    width: calc(100% - 40px);
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.products .product .badges ul li {
    margin: 4px 0 0 4px;
}

.products .product .badges ul li .badge {
    background: #000;
    border-radius: 32px;
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    padding: 2px 10px;    
}

.products .product .badges ul li .badge svg {
    margin-right: 4px;
}

/* Badge colors */

.products .product .badges ul li .badge.tip {
    background: #018625;
}

.products .product .badges ul li .badge.new {
    background: #da1739;
}

.products .product .badges ul li .badge.sale {
    background: #faa519;
}

.products .product .badges ul li .badge.old {
    background: #66839a;
}

.products .product .subtitle {
    color: #D8BC56;
    font-size: 12px;
    font-style: italic;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    margin: 15px 0 5px;
}

.products .product h2, .products .product h2 > a {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    text-decoration: none;
    margin: 5px 0;
 }

.products .product .introtext {
    color: #7D7D7D;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin: 5px 0 16px;
}

.products .product .price {
    color: #000;
    font-size: 26px;
    font-weight: 700;
    line-height: 28px;
    margin: 16px 0 20px;
}

.products .product .addToCart {
    border-top: 2px solid #F4F4F4;
    padding: 15px 20px 0;
    margin: 20px -20px 0;
}

.products .product .addToCart .quantity {
    background: #FFF;
    border: 1px solid #DFDFDF;
    border-radius: 30px;
    padding: 12px 16px;
    margin-right: 5px;
}

.products .product .addToCart .quantity input {
    background: transparent !important;
    border: 0 !important;
    width: 40px;
    height: 22px;
    text-align: center;
}

.products .product .addToCart .quantity .minus,
.products .product .addToCart .quantity .plus {    
    cursor: pointer;
}

.products .product .supplies {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    text-align: center;
    padding-top: 30px;
}

.products .product .supplies.stock {
    color: #018625;
}

.products .product .supplies.outOfStock {
    color: #f0506e;
}

.products .product .sku {
    color: #7D7D7D;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
}

/* ========================================================================
   Component: Product detail
 ========================================================================== */

.tm-productDetail-block {
    background: #F4F4F4;
}

/* Base */

.tm-productDetail-block .base {
    background: #fff;
    padding: 60px 0 80px;
}

.tm-productDetail-block .base .subtitle {
    color: #D8BC56;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
}

.tm-productDetail-block .base h1 {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    margin: 10px 0 20px;
}

.tm-productDetail-block .base .badge {
    background: #000;
    border-radius: 40px;
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    padding: 4px 16px;
    margin: 0 0 50px;
}

.tm-productDetail-block .base svg {
    margin-right: 4px;
}

/* Badge colors */

.tm-productDetail-block .base .badge.tip {
    background: #018625;
}

.tm-productDetail-block .base .badge.new {
    background: #da1739;
}

.tm-productDetail-block .base .badge.sale {
    background: #faa519;
}

.tm-productDetail-block .base .badge.old {
    background: #66839a;
}


.tm-productDetail-block .base .introtext {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 50px;
}

.tm-productDetail-block .base .introtext > *:last-child {
    margin-bottom: 0;
}

.tm-productDetail-block .base .addToCart {
    margin: 50px 0 40px;
} 

.tm-productDetail-block .base .introtext + .addToCart {
    margin: 0 0 40px;
}

.tm-productDetail-block .base .addToCart .price {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
}

.tm-productDetail-block .base .addToCart .quantity {
    background: #FFF;
    border: 1px solid #DFDFDF;
    border-radius: 30px;
    padding: 12px 16px;
    margin-right: 5px;
}

.tm-productDetail-block .base .addToCart .quantity input {
    background: transparent !important;
    border: 0 !important;
    width: 40px;
    height: 22px;
    text-align: center;
}

.tm-productDetail-block .base .addToCart .quantity .minus,
.tm-productDetail-block .base .addToCart .quantity .plus {    
    cursor: pointer;
}

.tm-productDetail-block .base .supplies .suppliesBadge {
    background: #F4F4F4;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    padding: 3px 10px;
}

.tm-productDetail-block .base .supplies .suppliesBadge.stock {    
    background: rgba(1, 134, 37, 0.12);
    color: #018625;
}

.tm-productDetail-block .base .supplies .suppliesBadge.outOfStock {
    color: #f0506e;
}

.tm-productDetail-block .base .supplies .suppliesBadge span {
    font-weight: 500;
}

/* Customs */

.tm-productDetail-block .customsFields .fieldDesc {
    font-size: 14px;
    margin: 0 0 15px;
}

.tm-productDetail-block .customsFields .dropdownField .uk-button-dropdown {
    background: #f4f4f4 !important;
    border-color: #f4f4f4 !important;
    box-shadow: 1px 2px 4px rgba(0,0,0,.25);
    border-radius: 12px;
    height: 50px;
    color: #444 !important;
    line-height: 20px;
    text-align: left;
    padding: 0 0 0 15px;
}

.tm-productDetail-block .customsFields .dropdownField .uk-button-dropdown img {
    max-height: 37px;
}

.tm-productDetail-block .customsFields .dropdownField .uk-dropdown {
    border-radius: 12px;
    padding: 0;
}

.tm-productDetail-block .customsFields .dropdownField .uk-dropdown ul li a {
    border-bottom: 1px solid #ddd;
    color: #444 !important;
    padding: 10px 15px;
    transition: linear .35s;
}

.tm-productDetail-block .customsFields .dropdownField .uk-dropdown ul li:first-child a {
    border-radius: 12px 12px 0 0;
}

.tm-productDetail-block .customsFields .dropdownField .uk-dropdown ul li:last-child a {
    border-bottom: 0;
    border-radius: 0 0 12px 12px;
}

.tm-productDetail-block .customsFields .dropdownField .uk-dropdown ul li a img {
    max-height: 37px;
}

.tm-productDetail-block .customsFields .dropdownField .uk-dropdown ul li a:hover, .tm-productDetail-block .customsFields .dropdownField .uk-dropdown ul li a:focus {
    background: #f4f4f4 !important;
}

.tm-productDetail-block .customsFields .selectField select {
    box-shadow: 1px 2px 4px rgba(0,0,0,.25);
    height: 50px !important;    
}

.tm-productDetail-block .customsFields .galleryField label {
    background: #f4f4f4;
    border: 2px solid #f4f4f4;
    border-radius: 8px;
    display: block;
    padding: 6px;
    transition: border-color linear .35s;
    cursor: pointer;
    position: relative;
}

.tm-productDetail-block .customsFields .galleryField label:hover, .tm-productDetail-block .customsFields .galleryField label:focus {
    border-color: #D8BC56;
}

.tm-productDetail-block .customsFields .galleryField label .check {
    display: none;
    visibility: hidden;
}

.tm-productDetail-block .customsFields .galleryField .uk-active label {
    border-color: #D8BC56;
}

.tm-productDetail-block .customsFields .galleryField .uk-active label .check {
    display: inline-block;
    visibility: visible;
    position: absolute;
    top: 8px;
    right: 6px;
}

.tm-productDetail-block .customsFields .textField textarea {
    box-shadow: 1px 2px 4px rgba(0,0,0,.25);
    height: 65px !important;
}

/* Parametrs */

.tm-productDetail-block .parameters {
    padding: 50px 0 65px
}

.tm-productDetail-block .parameters h2 {
    color: #231F20;
    font-size: 26px;
    font-weight: 600;
    line-height: 42px;
    margin: 0 0 15px;
}

.tm-productDetail-block .parameters .uk-table {
    margin: 0;
}

.tm-productDetail-block .parameters .uk-table tr td {
    border-bottom: 1px solid #DBDCDD;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 16px 0;
}

.tm-productDetail-block .parameters .uk-table tr td strong {
    font-weight: 600;
}

.tm-productDetail-block .parameters .uk-table tr td a {
    color: #000 !important;
    text-decoration: underline;
}

.tm-productDetail-block .parameters .uk-table tr td:last-child {
    text-align: right;
    padding: 16px 0 16px 16px;
}

.tm-productDetail-block .parameters .uk-table tr:last-child td {
    border: 0;
}

.tm-productDetail-block .parameters .fulltext {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
}

@media(max-width: 639px) {
    .tm-productDetail-block .base .gallery a img {
        max-width: 50%;
    }
}

@media(max-width: 959px) {
    .tm-productDetail-block .base {
        padding: 30px 0 40px;
    }
    .tm-productDetail-block .base h1 {
        font-size: 30px;
        line-height: 40px;
    }
    .tm-productDetail-block .base .badge {
        margin: 0 0 30px;
    }
    .tm-productDetail-block .base .introtext {
        margin: 0 0 30px;
    }
    .tm-productDetail-block .base .addToCart {
        padding: 30px 0 0;
        margin: 30px 0 30px;
    }
    .tm-productDetail-block .base .introtext + .addToCart {
        margin: 0 0 30px;
    }
}

@media(min-width: 1200px) {
    .tm-productDetail-block .base .addToCart .addCart {
        min-width: 235px;
    }
}

/* ========================================================================
   Component: Category block
 ========================================================================== */

/* Similarly */

.tm-similarly-block {
    background: url(../images/bg_products_grey.png) repeat scroll #F4F4F4;
    padding: 60px 0;
}

.tm-similarly-block h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
}

.tm-similarly-block .sliderList {
    margin-top: 25px;
}

.tm-similarly-block .sliderList .uk-dotnav > * > * {
    background: #fff;
    border: 0;
}

.tm-similarly-block .sliderList .uk-dotnav > .uk-active > * {
    background: #D8BC56;
}

/* ========================================================================
   Component: Category block
 ========================================================================== */

.tm-category-block {
    background: #fff;
    padding: 100px 0;
}

.tm-category-block .introtext .subtitle { 
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
}

.tm-category-block .introtext h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 50px;
    text-align: center;
    margin: 12px 0 40px;
}

.tm-category-block .categoryList .categoryWrapper {
    border: 1px solid #D8BC56;
    text-align: center;
    padding: 30px 20px;
    margin: 25px 0 0;
    position: relative;
}

.tm-category-block .categoryList .categoryWrapper::before {
    content:"";
    border: 1px solid #D8BC56;
    display: block;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    top: 1px;
    left: 1px;
}

.tm-category-block .categoryList .categoryWrapper img {
    height: 200px;
    position: absolute;
    top: -125px;
    left: 50%;
    transform: translate(-50%, 0);
}

.tm-category-block .categoryList .categoryWrapper .list {
    position: relative;
}

.tm-category-block .categoryList .categoryWrapper .list h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin: 0 0 30px;
}

.tm-category-block .categoryList .categoryWrapper .list h3 > a {
    color: #D8BC56 !important;
    text-decoration: none !important;
}

.tm-category-block .categoryList .categoryWrapper .list ul li a {
    color: #000;
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    text-decoration: underline;
}

/* ========================================================================
   Component: WhyUs block
 ========================================================================== */

 .tm-whyUs-block {
    background: url("../images/bg_whyus_gold.png") repeat scroll #D8BC56;
    padding: 30px 0;
}

.tm-whyUs-block .reason {
    padding-left: 64px;
    position: relative;
}

.tm-whyUs-block .reason .ico {
    background: #fff;
    border-radius: 100%;
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.tm-whyUs-block .reason p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin: 0
}

.tm-whyUs-block .reason p strong {
    display: block;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.tm-whyUs-block .uk-grid-divider > :not(.uk-first-column)::before {
    border-left: 1px solid #fff;
    height: 28px;
    top: 50%;
    transform: translate(0, -50%);
}

@media(max-width: 1199px) {    
    .tm-whyUs-block .reason {
        text-align: center;
        padding-left: 0;
    }
    .tm-whyUs-block .reason .ico {
        position: initial;
        top: initial;
        left: initial;
    }
    .tm-whyUs-block .reason p strong {
        font-size: 14px;
    }
}

/* ========================================================================
   Component: Contact us block
 ========================================================================== */

.tm-contactUs-block {
    padding: 105px 0;
}

.tm-contactUs-block .card {
    border-radius: 12px;
    padding: 40px;
}

.tm-contactUs-block .card .subtitle {
    color: #FFF;
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

.tm-contactUs-block .card h2 {
    color: #FFF;
    font-size: 36px;
    font-weight: 600;
    line-height: 58px;
    margin: 10px 0 20px;
}

.tm-contactUs-block .card p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.tm-contactUs-block .card .uk-list a + p {
    color: #000;
    font-size: 11px;
    line-height: 14px;
}

/* Newsletter */

.tm-contactUs-block .card.newsletter {
    background: #D8BC56;
}

.tm-contactUs-block .card.newsletter form {
    margin: 40px 0 0;
}

.tm-contactUs-block .card.newsletter form input {    
    background: rgba(255, 255, 255, 0.30) !important;
    border-radius: 52px;
    border: 0;
    height: 52px;
    color: #fff;
    padding: 16px 24px;
}

.tm-contactUs-block .card.newsletter form input::-webkit-input-placeholder {
    color: #fff;
}
.tm-contactUs-block .card.newsletter form input::-moz-placeholder {
    color: #fff;
}
.tm-contactUs-block .card.newsletter form input:-ms-input-placeholder {
    color: #fff;
}
.tm-contactUs-block .card.newsletter form input:-moz-placeholder {
    color: #fff;
}

.tm-contactUs-block .card.newsletter form button {
    padding: 0 32px;
}

/* Contact */

.tm-contactUs-block .card.contact {
    background: url("../images/support.jpg") bottom right #000;
    position: relative;
}

@media(max-width: 639px) {
    .tm-contactUs-block .card.contact {
        background-position: bottom right 400px;
    }
}

@media(max-width: 959px) {
    .tm-contactUs-block {
        padding: 55px 0 0;
    }
    .tm-contactUs-block .card h2 {
        font-size: 30px;
        line-height: 40px;
        margin: 10px 0 10px;
    }
}

@media(max-width: 1199px) {
    .tm-contactUs-block .card {
        padding: 20px;
    }
    .tm-contactUs-block .card .subtitle {
        font-size: 12px;
    }
    .tm-contactUs-block .card h2 {
        font-size: 30px;
        line-height: 40px;
        margin: 10px 0 10px;
    }
    .tm-contactUs-block .card p {
        font-size: 14px;
        line-height: 24px;
    }
    .tm-contactUs-block .card .uk-button {
        font-size: 12px;
        padding: 0 20px;
        line-height: 40px;
    }
    /* Newsletter */
    .tm-contactUs-block .card.newsletter form {
        margin: 20px 0 0;
    }
    .tm-contactUs-block .card.newsletter form input {    
        height: 40px;
        padding: 8px 20px;
    }
    /* Contact */
    .tm-contactUs-block .card.contact img {
        height: 140px;
    }
}

@media(min-width: 1200px) {
    .tm-contactUs-block .card.newsletter form input {
        width: 300px;
    }
}

@media(min-width: 1600px) {
    .tm-contactUs-block .card.newsletter form input {
        width: 360px;
    }
}

/* ========================================================================
   Component: AboutUs block
 ========================================================================== */

.tm-aboutUs-block {
    background: #f5f5f5;
    padding: 70px 0 100px;
}

.tm-aboutUs-block h2 {
    font-size: 34px;
    line-height: 50px;
}

.tm-aboutUs-block .introtext {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

.tm-aboutUs-block p {
    margin: 10px 0 0;
}

@media(max-width: 959px) {
    .tm-aboutUs-block img {
        width: 75%;
    }
}

/* ========================================================================
   Component: Working hours
 ========================================================================== */

.tm-workingHours-block {
    background: #0C0C0C;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    padding: 20px 0;
    margin: 80px 0 0;
}

.tm-aboutUs-block + .tm-workingHours-block {
    margin: 0;
}

.tm-workingHours-block a {
    color: #fff !important;
}

.tm-workingHours-block .uk-width-expand\@s a:hover, .tm-workingHours-block .uk-width-expand\@s a:focus {
    text-decoration: underline;
}

.tm-workingHours-block .uk-width-auto\@s a {
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
}

.tm-workingHours-block .uk-width-auto\@s a > svg {
    margin-right: 5px;
}

/* ========================================================================
   Component: Footer
 ========================================================================== */

.tm-footer-block {
    background: url(../images/bg_products_grey.png) repeat scroll #F4F4F4;
    padding: 80px 0 50px;
}

.tm-footer-block img {
    width: auto;
    height: 65px;
}

.tm-footer-block h3 {
    color: #000;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
}

.tm-footer-block h3 + p {    
    margin: 10px 0 0;
}

.tm-footer-block p {
    font-size: 14px;
    line-height: 30px;
}

.tm-footer-block p a {
    color: #000 !important;
}

.tm-footer-block .social > li > a {
    text-decoration: none !important;
}

@media(max-width: 639px) {
    .tm-footer-block {
        text-align: center;
    }
}

@media(max-width: 959px) {
    .tm-footer-block {
        padding: 40px 0 30px;
    }
}

/* ========================================================================
   Component: Pay ship
 ========================================================================== */

 .tm-payShip-block {
    background: url(../images/bg_products_grey.png) repeat scroll #F4F4F4;
    border-top: 1px solid #D8BC56;
    padding: 25px 0;
}

.tm-payShip-block h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin: 0 0 10px;
}

.tm-payShip-block ul li img, .tm-payShip-block ul li svg {
    height: 25px;
}

.tm-payShip-block .copyright {
    font-size: 12px;
}

.tm-payShip-block .copyright a {
    color: #000 !important;
    text-decoration: underline;
}

/* ========================================================================
   Component: Download list
 ========================================================================== */

 .downloadList .item {
    background: #fff;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.downloadList .item h2 {
    color: #231F20;
    font-size: 16px;    
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.downloadList .item .size {
    color: #7D7D7D;    
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 25px;
}

/* Phoca */

.phoca-dl-file-box-mod .pd-document16, #phoca-dl-file-box .pd-document16, #phoca-dl-category-box .pd-document16, #phoca-dl-download-box .pd-document16 {
    height: 24px;
    line-height: 24px;
    padding-left: 25px;
}

@media(max-width: 959px) {
    .tm-downloadList-block h1 {
        font-size: 30px !important;
        line-height: 40px !important;
        text-align: center !important;
        margin: 0 0 20px !important;
    }
    .downloadList .item .size {
        padding-left: 0;
    }
    .phoca-dl-file-box-mod .pd-document16, #phoca-dl-file-box .pd-document16, #phoca-dl-category-box .pd-document16, #phoca-dl-download-box .pd-document16 {
        display: none;
    }
}

/* ========================================================================
   Component: Faq list
 ========================================================================== */

.tm-faqList-block {
    background: #F4F4F4;
    padding: 60px 0;
}

.tm-faqList-block h1 {
    color: #000;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin: 0 0 40px;
}

.tm-faqList-block .uk-subnav-pill > * > a {
    background-color: #fff;
    border-radius: 12px;
    color: #000;
    justify-content: center;
    text-transform: uppercase;
    padding: 12px 24px !important;
} 

.tm-faqList-block .uk-subnav-pill > .uk-active > a {
    background-color: #D8BC56;
    color: #fff;
}

.tm-faqList-block .faqList .uk-accordion li {
    background: #fff;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.tm-faqList-block .faqList .uk-accordion li .uk-accordion-title {
    color: #000;
    font-size: 16px;    
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    margin: 0;
}

@media(max-width: 959px) {
    .tm-faqList-block {
        padding: 30px 0;
    }
    .tm-faqList-block h1 {
        font-size: 30px;
        line-height: 40px;   
        text-align: center;     
        margin: 0 0 20px;
    }
}

/* ========================================================================
   Component: Contact block
 ========================================================================== */

.tm-contact-block {
    background: #F4F4F4;
    padding: 60px 0;
}

.tm-contact-block h1, .tm-contact-block h2 {
    color: #000;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin: 0 0 40px;
}

.tm-contact-block .mapsWrapper {
    padding: 0 25px  25px 0;
    position: relative;
}

.tm-contact-block .mapsWrapper::before {
    content: "";
    border-radius: 12px;
    border: 4px solid #fff;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    position: absolute;
    bottom: 0;
    right: 0;
}

.tm-contact-block .mapsWrapper iframe {
    border-radius: 12px;
    position: relative;
}

.tm-contact-block .ownerInfo {
    background: #fff;
    border-radius: 12px;
    padding: 30px;    
}

.tm-contact-block .ownerInfo div > a {
    font-size: 18px;
    font-weight: 700;
    color: #000 !important;
}

.tm-contact-block .ownerInfo div > h3 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    padding: 3px 0 0 40px;
    margin: 0 0 15px;
    position: relative;
}

.tm-contact-block .ownerInfo div > h3 > svg {
    position: absolute;
    top: 0;
    left: 0;
} 

.tm-contact-block .ownerInfo div > p {
    font-size: 14px;
    line-height: 24px;
    padding-left: 40px;
    margin: 15px 0 0;
}

.tm-contact-block .ownerInfo div > p > a {
    color: #000 !important;
    text-decoration: underline !important;
}

.tm-contact-block .contactForm {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
}

.tm-contact-block .contactForm .uk-form-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.tm-contact-block .contactForm .uk-form-label sup {
    color: red;
    margin-left: 5px;
}

.tm-contact-block .contactForm textarea {
    height: 245px;
}

.tm-contact-block .contactForm .reCaptcha {
    font-size: 12px;
    margin: 20px 0 0;
}

.tm-contact-block .contactForm .reCaptcha > a {
    color: #000;
    text-decoration: underline;
}

@media(max-width: 639px) {
    .tm-contact-block .mapsWrapper iframe {
        height: 350px !important;
    }
    .tm-contact-block .ownerInfo div > h3, .tm-contact-block .ownerInfo div > p {
        padding-left: 0;        
    }
    .tm-contact-block .ownerInfo div > h3 > svg {
        display: none; 
        visibility: hidden;
    }
}

@media(min-width: 640px) and (max-width: 959px) {
    .tm-contact-block .mapsWrapper iframe {
        height: 450px !important;
    }
}

@media(max-width: 959px) {
    .tm-contact-block {
        padding: 30px 0;
    }
    
    .tm-contact-block h1, .tm-contact-block h2 {
        font-size: 30px;
        line-height: 40px;
        margin: 0 0 20px;
    }
}

/* ========================================================================
   Component: Articles block
 ========================================================================== */

 .tm-articles-block {
    background: #F4F4F4;
    padding: 60px 0;
}

.tm-articles-block h1 {
    color: #231F20;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin: 0 0 40px;
}

/* ========================================================================
   Component: Cart detail block
 ========================================================================== */

.tm-cartDetail-block {
    background: #F4F4F4;
    padding: 60px 0;
}

.tm-cartDetail-block h1 {
    color: #000;
    font-size: 30px;
    font-weight: 500;
    line-height: 34px;
    text-transform: uppercase;
    margin: 0 0 50px;
}

.tm-cartDetail-block h2 {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin: 0 0 10px;
}

/* Steps info */

.tm-cartDetail-block #stepInfo {
    margin-bottom: 25px;
}

.tm-cartDetail-block #stepInfo ul li {
    color: #ccc;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.tm-cartDetail-block #stepInfo ul li img {
    height: 12px;
}

.tm-cartDetail-block #stepInfo ul li .cntStep {
    background: #ccc;
    border-radius: 24px;
    display: inline-block;
    width: 24px;
    height: 24px;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.tm-cartDetail-block #stepInfo ul li.uk-active {
    color: #D8BC56;
}

.tm-cartDetail-block #stepInfo ul li.uk-active .cntStep {
    background: #D8BC56;

}

/* Base */

.tm-cartDetail-block .uk-card {
    background: #fff;
    border-radius: 12px;
}

.tm-cartDetail-block .uk-card h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    margin: 0 0 15px;
}

/* Products */

.tm-cartDetail-block .uk-card table {
    margin: 0;
}

.tm-cartDetail-block .uk-card table tr td .title {
    font-weight: 600;
    color: #000;
}

.tm-cartDetail-block .uk-card table tr td .title > span {
    display: block;
    font-size: 12px;
    line-height: 16px;
    font-weight: 300;
    color: #51504f;
}

.tm-cartDetail-block .uk-card table tr td .title > span + span {
    margin-top: 3px;
}

.tm-cartDetail-block .uk-card table tr td .quantity {
    display: inline-block;
    border: 1px solid #ddd;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.tm-cartDetail-block .uk-card table tr td .quantity .btn {
    background: #f5f5f5;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    cursor: pointer;
}

.tm-cartDetail-block .uk-card table tr td .quantity .btn.minus {
    border-right: 1px solid #ddd;
}

.tm-cartDetail-block .uk-card table tr td .quantity .btn.plus {
    border-left: 1px solid #ddd;
}

.tm-cartDetail-block .uk-card table tr td .quantity input {
    background: transparent !important;
    border: 0 !important;
    width: 60px;
    height: 40px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.tm-cartDetail-block .uk-card table tr td .quantity input::-webkit-outer-spin-button,
.tm-cartDetail-block .uk-card table tr td .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.tm-cartDetail-block .uk-card table tr td .quantity input[type=number] {
    -moz-appearance: textfield;
}

.tm-cartDetail-block .uk-card table tr td .priceWithTax {
    font-weight: 700;
    color: #D8BC56;
}

.tm-cartDetail-block .uk-card table tr td .priceWithOutTax > span, .tm-cartDetail-block .uk-card table tr td .priceWithTax > span {
    display: block;
    font-size: 11px;
}

.tm-cartDetail-block .uk-card table tr td:first-child {
    padding-left: 0;
}

.tm-cartDetail-block .uk-card table tr td:last-child {
    padding-right: 0;
}

/* Empty products */

.tm-cartDetail-block .emptyProducts {
    color: #D8BC56;
    font-weight: 600;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Address */

.tm-cartDetail-block #address .withInput {
    display: inline-block !important;
    padding-left: 26px;
    cursor: pointer;
    position: relative;
}

.tm-cartDetail-block #address .withInput > input {
    position: absolute;
    top: 6px;
    left: 0;
}

.tm-cartDetail-block #address label:not(.withInput) {
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px;
}

/* Payment / shipped methods */

.tm-cartDetail-block #paymentMethods .method label, .tm-cartDetail-block #shipedMethods .method label {
    cursor: pointer;
}

.tm-cartDetail-block #paymentMethods .method label img, .tm-cartDetail-block #shipedMethods .method label img,
.tm-cartDetail-block #paymentMethods .method label svg, .tm-cartDetail-block #shipedMethods .method label svg {
    width: 30px;
    margin-top: 3px;
}

.tm-cartDetail-block #paymentMethods .method label strong, .tm-cartDetail-block #shipedMethods .method label strong {
    transition: color linear .35s;
}

.tm-cartDetail-block #paymentMethods .method label:hover strong, .tm-cartDetail-block #shipedMethods .method label:hover strong {
    color: #D8BC56;
}

.tm-cartDetail-block #paymentMethods .method label .text, .tm-cartDetail-block #shipedMethods .method label .text {
    display: block;
    font-size: 12px;
    font-weight: 300;
}

.tm-cartDetail-block #paymentMethods  .method label .logo, .tm-cartDetail-block #shipedMethods .method label .logo {
    display: inline-block;
    margin-left: 5px;
}

.tm-cartDetail-block #paymentMethods  .method label .logo > img, .tm-cartDetail-block #shipedMethods .method label .logo > img {
    max-height: 20px;
}

/* Notes */

.tm-cartDetail-block #notes textarea {
    height: 150px;
}

/* Total */

.tm-cartDetail-block #totalOrderInfo {
    font-size: 18px;
}

.tm-cartDetail-block #totalOrderInfo .totalPrice {
    font-weight: 700;
    color: #D8BC56;
    text-align: right;
}

/* Go to confirm page */

.tm-cartDetail-block #goToConfirmPage ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tm-cartDetail-block #goToConfirmPage ul li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
}

.tm-cartDetail-block #goToConfirmPage ul li > label {
    padding-left: 26px;
    cursor: pointer;
    position: relative;
}

.tm-cartDetail-block #goToConfirmPage ul li > label > input {
    position: absolute;
    top: 5px;
    left: 0;
} 

.tm-cartDetail-block #goToConfirmPage ul li > label > a {
    font-weight: 600;
    color: #D8BC56;
}

/* Confirm page */

.tm-cartDetail-block .confirmPage h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    text-transform: initial;
    margin: 0 0 10px;
}

.tm-cartDetail-block .confirmPage > svg {
    margin: 50px 0;
}

@media(min-width: 639px) and (max-width: 959px) {
    /* Products */
    .tm-cartDetail-block .steps .productList table tr td {
        font-size: 14px;
    }
    .tm-cartDetail-block .steps .productList table tr td .supplies {
        line-height: 20px;
    }
    .tm-cartDetail-block .steps .productList table tr td .supplies > strong {
        display: block;
    }
    .tm-cartDetail-block .steps .productList table tr td .quantity {
        width: 115px;
    }
}

@media(max-width: 767px) {
    .tm-cartDetail-block {
        padding: 30px 0;
    }
    /* Step info */
    .tm-cartDetail-block .steps #stepInfo ul li {
        font-size: 14px;
        line-height: 24px;
    }
    /* Products */
    .tm-cartDetail-block .steps .productList table tr {
        margin: 0 0 8px;
    }
    .tm-cartDetail-block .steps .productList table tr td:first-child {
        border-radius: 12px 12px 0 0;
    }
    
    .tm-cartDetail-block .steps .productList table tr td:last-child {
        border-radius: 0 0 12px 12px;
    }
    .tm-cartDetail-block .steps .productList table tr td > div:not(.uk-grid-small) {
        margin-left: calc(100%/4 + 5px);
    }    
    /* Steps action */
    .tm-cartDetail-block .stepAction {
        padding-top: 25px;
        margin-top: 25px;
    }
}

@media(max-width: 959px) {
    .tm-cartDetail-block h2 {
        font-size: 20px;
        line-height: 30px;
    }
    .tm-cartDetail-block .onePageCheckout .uk-table-responsive tbody tr {
        text-align: center;
    }
}

/* ========================================================================
   Component: Columbarium block
 ========================================================================== */

 .tm-columbarium-block {
    background: #F4F4F4;
    padding: 60px 0;
}

.tm-columbarium-block .subtitle {
    color: #000;
    font-size: 12px;
    font-style: italic;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
}

.tm-columbarium-block h1 {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    margin: 0 0 40px;
}

.tm-columbarium-block .servicesList .uk-card {
    background: #fff;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.tm-columbarium-block .servicesList .uk-card h2 {
    color: #000;
    font-size: 18px;
    line-height: 28px;
    margin: 20px 0 10px;
}

.tm-columbarium-block .servicesList .uk-card p {
    font-size: 14px;
    line-height: 20px;
    margin: 10px 0 0;
}

.tm-columbarium-block .servicesList .uk-card p strong {
    background: #f4f4f4;
    border-radius: 100%;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #D8BC56;
    font-size: 10px;
    text-align: center;
}

.tm-columbarium-block .referencesList p {
    margin: 0;
}

.tm-columbarium-block .urbanList .uk-card-body {
    padding: 20px;
}

.homepage .tm-columbarium-block .urbanList .uk-card-body {
    display: none;
}

@media(max-width: 959px) {
    .tm-columbarium-block {
        padding: 30px 0;
    }
    .tm-columbarium-block h1 {
        font-size: 30px;
        line-height: 40px;   
        text-align: center;     
        margin: 0 0 20px;
    }
}

@media(min-width: 960px) {
    .tm-columbarium-block .urbanList .uk-card-body {
        text-align: left !important;
    }
}

/* ========================================================================
   Component: Inquiry form block
 ========================================================================== */

.tm-inquiryForm-block {
    background: #F4F4F4;
    padding: 60px 0;
}

.tm-inquiryForm-block.subtitle {
    color: #000;
    font-size: 12px;
    font-style: italic;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
}

.tm-inquiryForm-block h1 {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    margin: 0 0 40px;
}

.tm-inquiryForm-block h2 {
    color: #000;
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 10px;
}

.tm-inquiryForm-block .uk-card {
    background: #fff;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.tm-inquiryForm-block .addFiles label {
    padding-left: 20px;
}

.tm-inquiryForm-block .addFiles .uk-placeholder {
    background: #f4f4f4;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    font-size: 14px;
    padding: 20px;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.tm-inquiryForm-block .reCaptcha {
    font-size: 12px;
}

.tm-inquiryForm-block .reCaptcha a {
    color: #000;
    text-decoration: underline;
}

.tm-inquiryForm-block.success h1 {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin: 0 0 10px;
}

/* ========================================================================
   Component: Google reCaptcha
 ========================================================================== */

 .grecaptcha-badge {
    display: none !important;
}

/* ========================================================================
   Component: Offcanvas
 ========================================================================== */

.uk-offcanvas-bar {
    background: #fff;
}

.uk-offcanvas-bar .uk-close {
    color: #D8BC56 !important;
}

.uk-offcanvas-bar .uk-nav-primary + .uk-nav-primary {
    margin-top: 20px;
}

.uk-offcanvas-bar .uk-nav-primary > li {
    margin-top: 20px;
}

.uk-offcanvas-bar .uk-nav-primary > li:first-child {
    margin-top: 0;
}

.uk-offcanvas-bar .uk-nav-primary > li > a {
    color: #D8BC56;
    font-size: 20px;
    font-weight: 600;
}

.uk-offcanvas-bar .uk-nav-primary > li.uk-active > a {
    color: #D8BC56;
}

.uk-offcanvas-bar .uk-nav-primary > li > a:hover, .uk-offcanvas-bar .uk-nav-primary > li > a:focus {
    color: #D8BC56;
}

/* ========================================================================
   Component: Modal
 ========================================================================== */

.uk-modal-dialog {
    background: #f8f7f6;
    border-radius: 12px;
}

.uk-modal-dialog form .uk-margin label {
    display: block;
    margin-bottom: 6px;
}

.uk-modal-dialog h2 {
    margin-bottom: 20px;
}
.uk-modal-dialog .action {
    margin-top: 40px;
}

/* close */

.uk-modal-close-full {
    background: #D8BC56;
    color: #fff !important;
}

@media(max-width: 639px) {
    .uk-modal-dialog .action ul li {
        width: 100%;
    }
    .uk-modal-dialog .action ul li > button {
        width: 100%;
    }
}

@media(min-width: 960px) {
    .uk-modal-dialog .uk-modal-header {
        padding: 50px;
    }
    .uk-modal-dialog .uk-modal-body {
        padding: 50px 100px;
    }
    .uk-modal-dialog .uk-modal-footer {
        padding: 50px;
    }
    .uk-modal-dialog h2 {
        margin-bottom: 30px;
    }
    .uk-modal-dialog .action {
        margin-top: 60px;
    }
}

/* ========================================================================
   Component: Search modal
 ========================================================================== */

@media(min-width: 768px) {
    #modalSearch .uk-search-large {
        width: 600px !important;
    }
}

/* ========================================================================
   Component: AddToCart modal
 ========================================================================== */

#cart_popup .uk-modal-dialog.uk-modal-body {
    background: #018625;
    color: #fff;
    padding: 15px;
}

#cart_popup .uk-modal-dialog.uk-modal-body .uk-close {
    color: #fff !important;
}

/* ========================================================================
   Component: Cookie consent 2022
 ========================================================================== */

 .termsfeed-com---palette-light.termsfeed-com---nb {
    background-color: #fff !important;
    color: #000 !important;
}

.termsfeed-com---palette-light .cc-nb-title, .termsfeed-com---palette-light .cc-nb-text {
    color: #000 !important;
}

#termsfeed-com---preferences-center .cc-cp-body-tabs>li:nth-child(3),
#termsfeed-com---preferences-center .cc-cp-body-content #content_functionality {
    display: none !important;
}


.termsfeed-com---palette-light .cc-nb-okagree,
.termsfeed-com---palette-light .cc-cp-foot-save,
.termsfeed-com---palette-dark .cc-nb-okagree,
.termsfeed-com---palette-dark .cc-cp-foot-save {
    background-color: #018625 !important;
}

.cc-nb-buttons-container {
    display: inline-block !important;
}

.termsfeed-com---palette-light .cc-nb-reject,
.termsfeed-com---palette-dark .cc-nb-reject {
    color: #da1739 !important;
    background: 0 0 !important;
    text-decoration: underline !important;
    float: right;
}

.termsfeed-com---nb .cc-nb-main-container {
    padding: 1.5rem !important;
}

.termsfeed-com---nb .cc-nb-title {
    font-size: 16px !important;
}

.termsfeed-com---nb .cc-nb-text {
    font-size: 10px !important;
}

/* ========================================================================
   Component: Hack
 ========================================================================== */

:not(pre) > code, :not(pre) > kbd, :not(pre) > samp {
    font-family: unset !important;
    font-size: unset !important; 
    color: unset !important;
    white-space: unset !important; 
    padding: unset !important;
    background: unset !important;
}

/* ========================================================================
   Component: ShipPay
 ========================================================================== */

.shipPay .uk-card {
    background: #fff;
    border-radius: 12px;
}