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

html {
    background: var(--bg-html);
    color: var(--color-body);
    font-family: var(--font-body);
    font-size: var(--normal-font-size);
    font-weight: 400;
    line-height: var(--normal-line-height);
    letter-spacing: 0.25px;
}

/* Heading global sizes */

.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 {
    color:var(--color-title);
    font-family: var(--font-title);
    font-weight: 400;
    letter-spacing: 0.25px;
}


@media(max-width: 959px) {
    .uk-h1, h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .uk-h2, h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .uk-h3, h3 {
        font-size: 28px;
        line-height: 38px;
    }
    .uk-h4, h4 {
        font-size: 24px;
        line-height: 34px;
    }
    .uk-h5, h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .uk-h6, h6 {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (min-width: 960px) {
    .uk-h1, h1 {
        font-size: 48px;
        line-height: 58px;
    }
    .uk-h2, h2 {
        font-size: 42px;
        line-height: 52px;
    }
    .uk-h3, h3 {
        font-size: 35px;
        line-height: 45px;
    }
    .uk-h4, h4 {
        font-size: 28px;
        line-height: 38px;
    }
    .uk-h5, h5 {
        font-size: 24px;
        line-height: 34px;
    }
    .uk-h6, h6 {
        font-size: 18px;
        line-height: 28px;
    }
}

/* Links */

.uk-link, a {
    color:var(--color-link);
}

a:hover,
.uk-link:hover,
.uk-link-toggle:hover .uk-link,
.uk-link-toggle:focus .uk-link {
  color: var(--color-link-hover);
}

.uk-link-line {
    font-weight: 700;
    text-decoration: underline;
}

/* Text */

b, strong, .uk-text-bold {
    font-weight: 700;
}

.uk-text-semibold {
    font-weight: 600;
}

.uk-text-primary {
    color: var(--color-mastrant-1) !important;
}

.uk-text-secondary {
    color: var(--color-mastrant-2) !important;
}

.uk-text-danger {
    color: var(--color-danger) !important;
}

.uk-text-small {
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
}

em {
    color: var(--color-body);
}

/* List */

.uk-list-primary > ::marker {
    color: var(--color-mastrant-2) !important;
}

.uk-list-secondary > ::marker {
    color: var(--color-mastrant-1) !important;
}

/* Wrapper */

.tm-wrapper {
    background: var(--bg-white);
    max-width: 1920px;
    margin: 0 auto;
    position:relative;
}

/* Container */

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

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

.uk-container-medium {
    max-width: 950px;
}

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

@media(min-width: 640px) and (max-width: 768px) {
    .uk-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
 
@media(min-width: 960px) {
    .uk-container-expand-left, .uk-container-expand-right {
        max-width: calc(50% + (1280px / 2) - 40px);
    }
}

/* Button */

.uk-button, .btn {
    background-color: var(--bg-transparent);
    border: 1px solid var(--color-mastrant-btn);
    border-radius: var(--radius-xsmall);
    color: var(--color-mastrant-btn);
    font-size: 15px;
    font-weight: 600;
    line-height: 42px;
    text-transform: initial;
    letter-spacing: 0.25px;
    padding: 0 16px;
    transition: linear .35s;
}

.uk-button:hover, .uk-button:focus, .btn:hover, .btn:focus {
    background-color: var(--bg-transparent);   
    border-color: var(--color-mastrant-btn-hover);
    color: var(--color-mastrant-btn-hover);
}

.uk-button:active, .btn:active {
    background-color: var(--bg-transparent);   
    border-color: var(--color-mastrant-btn-active);
    color: var(--color-mastrant-btn-active);
}

.uk-button:disabled, .btn:disabled {
    background-color: var(--bg-transparent);   
    border-color: var(--border-color);
    color: var(--border-color);
}

.uk-button > svg, .uk-button > img {
    margin-right: 5px;
}

.uk-light .uk-button {
    border-color: var(--color-white) !important; 
}

/* Primary */

.uk-button-primary, .btn-primary {
    background-color: var(--color-mastrant-btn-primary);
    border: 1px solid var(--color-mastrant-btn-primary);
    color: var(--color-white);
    transition: background-color linear .25s;
}

.uk-button-primary:hover, .uk-button-primary:focus, .btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-mastrant-btn-primary-hover);
    border-color: var(--color-mastrant-btn-primary-hover);
    color: var(--color-white);
}

.uk-button-primary:active, .btn-primary:active {
    background-color: var(--color-mastrant-btn-primary-active);
    border-color: var(--color-mastrant-btn-primary-active);
    color: var(--color-white);
}

/* Secondary */

.uk-button-secondary, .btn-secondary {
    background-color: var(--color-mastrant-btn-secondary);
    border: 1px solid var(--color-mastrant-btn-secondary);
    color: var(--color-white);
    transition: background-color linear .25s;
}

.uk-button-secondary:hover, .uk-button-secondary:focus, .btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--color-mastrant-btn-secondary-hover);   
    border-color: var(--color-mastrant-btn-secondary-hover);
    color: var(--color-white);
}

.uk-button-secondary:active, .btn-secondary:active {
    background-color: var(--color-mastrant-btn-secondary-active);   
    border-color: var(--color-mastrant-btn-secondary-active);
    color: var(--color-white);
}

/* Secondary */

.uk-button-danger, .btn-danger {
    background-color: var(--color-danger);
    border: 1.5px solid var(--color-danger);
    color: var(--color-white) !important;
    transition: background-color linear .25s;
}

.uk-button-danger:hover, .uk-button-danger:focus, .btn-danger:hover, .btn-danger:focus {
    background-color: var(--color-danger-hover);   
    border-color: var(--color-danger-hover);
    color: var(--color-white) !important;
}

.uk-button-danger:active, .btn-danger:active {
    background-color: var(--color-danger-active);   
    border-color: var(--color-danger-active);
    color: var(--color-white) !important;
}

/* Success */

.uk-button-success, .btn-success {
    background-color: var(--color-success);
    border: 1.5px solid var(--color-success);
    color: var(--color-white) !important;
    transition: background-color linear .25s;
}

.uk-button-success:hover, .uk-button-success:focus, .btn-success:hover, .btn-success:focus {
    background-color: var(--color-success-hover);   
    border-color: var(--color-success-hover);
    color: var(--color-white) !important;
}

.uk-button-success:active, .btn-success:active {
    background-color: var(--color-success-active);   
    border-color: var(--color-success-active);
    color: var(--color-white) !important;
}

/* Button group */

.uk-button-group > .uk-button:first-child {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.uk-button-group > .uk-button:last-child {
    border-left-color: var(--bg-transparent);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.uk-button-group > .uk-button:last-child:hover, .uk-button-group > .uk-button:last-child:focus {
    border-left-color: var(--color-primary-active);
}

/* Size */

.uk-button-xsmall {
    font-size: 14px;
    line-height: 28px;
    padding: 0 8px;    
}

.uk-button-small {
    font-size: 14px;
    line-height: 38px;
    padding: 0 16px;    
}

.uk-button-medium {
    font-size: 16px;
    line-height: 48px;
    padding: 0 60px;
}

.uk-button-large {
    font-size: 16px;
    line-height: 58px;
    padding: 0 32px;
}

/* Icon button */

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

/* 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;
}

label:not(.withInput), .uk-form-label {
    display: block;
    color: var(--color-black) !important;
    font-size: var(--normal-font-size);
    font-weight: 400;
    margin: 0 0 5px;
}

label.withInput {
    font-size: var(--normal-font-size);
    cursor: pointer;
}

label sup {
    color: var(--color-danger);
}

.pointer {
    cursor: pointer;
}

.uk-radio:focus, .uk-checkbox:focus {
    border-color: var(--bg-black);
}

.uk-checkbox:checked, .uk-checkbox:indeterminate, .uk-radio:checked {
    background-color: var(--bg-black);
}

.uk-radio:checked:focus, .uk-checkbox:checked:focus, .uk-checkbox:indeterminate:focus {
    background-color: var(--bg-black);   
}

.uk-input::-webkit-input-placeholder, .uk-textarea::-webkit-input-placeholder, .uk-search-input::-webkit-input-placeholder {
    color: var(--color-black);
}

.uk-input:-ms-input-placeholder, .uk-textarea:-ms-input-placeholder, .uk-search-input:-ms-input-placeholder {
    color: var(--color-black);
}

.uk-input::placeholder, .uk-textarea::placeholder, .uk-search-input::placeholder {
    color: var(--color-black);
}

/* Toggle */

.toggle-btn {
    border: 1px solid var(--color-rh-6);
    border-radius: var(--radius-medium);
    padding: 5px;
}

.toggle-btn .uk-radio {
    background: var(--bg-transparent);
    border-color: var(--bg-transparent) !important;
}

.toggle-btn .uk-radio:first-child {
    margin-right: 10px;
}

.toggle-btn .uk-radio:first-child:checked {
    background: var(--color-rh-6);
    border-color: var(--color-rh-6) !important;
}

.toggle-btn .uk-radio:last-child:checked {
    background: var(--color-rh-2);
    border-color: var(--color-rh-2) !important;
}

/* input / select / textarea */

.uk-input, .uk-select {
    background-color: var(--bg-white) !important;
    border-color: var(--bg-black) !important;
    border-radius: var(--radius-xsmall);
    color: var(--color-black) !important;
    font-size: var(--normal-font-size);
    font-weight: 400;
    height: 44px;
    padding: 0 16px;
}

.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='%23000000' 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: 44px;
    cursor: pointer;
}

.uk-textarea {
    background-color: var(--bg-white) !important;
    border-color: var(--bg-black) !important;
    border-radius: var(--radius-xsmall);
    color: var(--color-black) !important;
    font-size: var(--normal-font-size);
    font-weight: 400;
    padding: 16px;
}

.uk-checkbox, .uk-radio {
    border-color: var(--bg-black) !important;
}

.dropdownField .uk-button-dropdown {
    background: var(--bg-white) !important;
    border-color: var(--bg-black) !important;    
    height: 50px;
    color: var(--color-body) !important;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    text-transform: initial;
    padding: 0 15px;
}

.dropdownField .uk-button-dropdown img {
    max-height: 37px;
}

.dropdownField .uk-dropdown {
    max-height: 290px;
    overflow-y: scroll;
    padding: 0;
}

.dropdownField .uk-dropdown ul li a {
    border-bottom: 1px solid var(--border-color);
    color: var(--color-black) !important;
    padding: 10px 15px;
    transition: linear .35s;
}

.dropdownField .uk-dropdown ul li:last-child a {
    border-bottom: 0;
}

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

.dropdownField .uk-dropdown ul li a:hover, .dropdownField .uk-dropdown ul li a:focus {
    background: rgba(0,0,0,.15) !important;
}

.dropdownField .uk-dropdown ul li:not(.uk-active) .uk-width-expand + .uk-width-auto {
    display: none;
    visibility: hidden;
}

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

.uk-form-danger, .uk-form-danger:focus, .has-danger, .has-danger > * {
    color: var(--color-danger-200) !important;
    border-color: var(--color-danger) !important;
}

/* Error */

input.invalid, select.invalid, textarea.invalid {
    background-color: var(--color-danger-50) !important;
    border-color: var(--color-danger-200) !important;
    color: var(--color-danger-500) !important;
}

/* Required */

span.star {
    color: var(--color-danger);
} 

/* Form feedback */

.form-control-feedback {
    color: var(--color-danger);
    font-size: var(--small-font-size);    
}

/* Table */

article .uk-table th {
    color: var(--color-black);
    font-weight: 700;
}

.uk-table-responsive-xsmall td .title {
    display: none;
}

@media (max-width: 959px) {
    .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 tr:first-child {
        border-top: 0 !important;
    }
    .uk-table-responsive-xsmall tr:last-child {
        border-bottom: 0 !important;
    }
    .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;
      text-align: center;
    }
    .uk-table-responsive-xsmall td .title {
        display: block;
        font-weight: 600;
    }
    .uk-table-responsive-xsmall td .image-title {
        justify-content: center;
    }
    .uk-table-responsive-xsmall td .image-title .uk-width-auto {
        width: 100%;
    }
    .uk-table-responsive-xsmall td .image-title .uk-width-expand {
        width: auto;
        flex: initial;
    }
    .uk-table-responsive-xsmall td .image-title .uk-grid-margin {
        margin-top: 3px;
    }
    .uk-table-responsive-xsmall td .quantity {
        margin: 0 auto;
    }
    .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;
    }
}

@media(max-width: 959px) {
    .uk-table-responsive-xsmall th,
    .uk-table-responsive-xsmall td {
      font-size: var(--small-font-size) !important;
    }
}



/* Backgrounds */

.uk-background-primary {
    background: var(--bg-white) !important;
}

.uk-background-secondary {
    background: var(--bg-mastrant-grey) !important;
}

.uk-background-tertiary {
    background: var(--bg-mastrant-grey) !important;
}

/* Light mode */

.uk-light {
    color: var(--color-white);
}

/* Dark mode */

/* Joomla hack */

.password-group .input-group {
    display: flex;
}

.password-group .input-group > input {
    border-radius: var(--radius-medium) 0 0 var(--radius-medium);
}

.password-group .input-group > button {
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
}

/* ========================================================================
   Component: video wrapper
 ========================================================================== */

.video-wrapper, .video-container, .media_embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-wrapper iframe, .video-wrapper video, .video-container iframe, .video-container video, .media_embed iframe, .media_embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

* + .video-wrapper, * + .video-container, * + .media_embed {
    margin-top: 20px;
}

/* ========================================================================
   Component: Width
 ========================================================================== */

@media (min-width: 1600px) {
    .uk-child-width-1-8\@xl > * {
        width: calc(100% / 8);
    }
}

/* ========================================================================
   Component: Padding / margin
 ========================================================================== */

@media (min-width: 1200px) {
    .uk-padding-large {
        padding: 90px;
    }
}

/* ========================================================================
   Component: Card
 ========================================================================== */

.uk-card-default {
    border-radius: var(--radius-medium);
    box-shadow: none;
    color: var(--color-body);
}

.uk-card-primary {
    background-color: var(--color-mastrant-2);
    border-radius: var(--radius-medium);
    box-shadow: none;
    color: var(--color-white);
}

.uk-card-border {
    border: 1px solid var(--color-rh-7);
}

.uk-border-rounded-remove {
    border-radius: 0 !important;
}

/* ========================================================================
   Component: Navigation default
 ========================================================================== */

.uk-nav-default > li > a {
    border-radius: var(--radius-xsmall);
    color: var(--color-body);
    padding: 5px 10px;
    margin: 0 10px 5px;
    transition: linear 0.35s;
}

.uk-nav-default > li > a:hover, .uk-nav-default > li > a:focus {
    background: var(--bg-mastrant-grey);
}

.uk-nav-default > li.uk-active > a, .uk-nav-default > li.uk-open > a {
    background: var(--color-mastrant-1);
    color: var(--color-white)
}

/* Subnav */

.uk-nav-default .uk-nav-sub a {
    border-radius: var(--radius-xsmall);
    font-size: var(--normal-font-size);
    color: var(--color-body);
    padding: 10px 20px;
    transition: linear 0.35s;
}

.uk-nav-default .uk-nav-sub {
    padding-left: 25px !important;
    padding-right: 45px !important;
}

.uk-nav-default .uk-nav-sub a:hover, .uk-nav-default .uk-nav-sub a:focus {
    background: var(--bg-mastrant-grey);
    color: var(--color-mastrant-2);
}

.uk-nav-default .uk-nav-sub li.uk-active > a, .uk-nav-default .uk-nav-sub li.uk-open > a {
    background: var(--bg-mastrant-grey);
    color: var(--color-mastrant-2);
}

/* ========================================================================
   Component: Dotnav
 ========================================================================== */

.uk-dotnav > * > * {
    background-color: var(--color-mastrant-1);
    border: 0;
}

.uk-dotnav > .uk-active > * {
    background-color: var(--bg-black) !important;
}

.uk-dotnav > * > :hover {
    background-color: var(--color-mastrant-1) !important;
}

/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */

.tm-breadcrumb-block {
    border-top: 3px solid var(--bg-mastrant-grey);
    padding: 24px 0;
}

.tm-breadcrumb-block .uk-breadcrumb {    
    overflow-x: scroll;
    scrollbar-width: none;
    white-space: nowrap;
    position: relative;
}

.tm-breadcrumb-block .uk-breadcrumb > li > * {
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
}

.tm-breadcrumb-block .uk-breadcrumb > li > a {
    color: var(--color-black);
}

.tm-breadcrumb-block .uk-breadcrumb > li > span {
    color: var(--color-mastrant-1);
}

@media(max-width: 959px) {
    .tm-breadcrumb-block .breadcrumbWrapper::after {
        background: linear-gradient(90deg, rgb(255 255 255 / 0%), var(--bg-white));
        content: " ";
        display: block;
        height: 100%;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: 0;
        width: 20px;
    }
}

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

 .uk-tooltip {    
    background: var(--bg-black);
    border-radius: var(--radius-xsmall);
    max-width: 200px;
    text-align: center;
    padding: 10px 15px;
}

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

/* ========================================================================
   Component: Toolbar
 ========================================================================== */

/* Toolbar */

.tm-toolbar-block .uk-subnav {
    margin-left: -10px;
}

.tm-toolbar-block .uk-subnav > li {
    padding-left: 10px;
}

.tm-toolbar-block .uk-subnav > li > a {
    color: var(--color-black);
    font-size: var(--small-font-size);
    font-weight: 600;
    line-height: var(--small-line-height);
    text-transform: initial;
    transition: linear .35s;
}

.tm-toolbar-block .uk-subnav > li.uk-active > a {
    color: var(--color-mastrant-2);
}

.tm-toolbar-block .uk-subnav > li > a:hover {
    color: var(--color-mastrant-2);
}

.tm-toolbar-block .toolbar-switcher ul li .switch-btn {
    background: var(--bg-transparent);
    box-sizing: border-box;
    display: block;
    min-width: 130px;
    min-height: 40px;
    color: var(--color-black);
    font-size: var(--normal-font-size);
    font-weight: 600;
    line-height: var(--normal-line-height);
    padding: 8px 24px;
    cursor: pointer;
    position: relative;
}

.tm-toolbar-block .toolbar-switcher ul li .switch-btn::before {
    content: "";
    background-color: rgba(0,0,0,.15);
    width: 1px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

.tm-toolbar-block .toolbar-switcher ul li:last-child .switch-btn::after {
    content: "";
    background-color: rgba(0,0,0,.25);
    width: 1px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
}

.tm-toolbar-block .toolbar-switcher ul li .uk-dropdown {
    background: var(--bg-white);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15) !important;
    min-width: 130px;
    padding: 5px 0;
}

.tm-toolbar-block .toolbar-switcher ul li .uk-dropdown ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tm-toolbar-block .toolbar-switcher ul li .uk-dropdown ul li a {
    display: block;
    color: var(--color-black);
    font-size: var(--normal-font-size);
    font-weight: 600;
    line-height: var(--normal-line-height);  
    text-decoration: none;
    padding: 5px 24px;
    transition: background-color linear .35s;
}

.tm-toolbar-block .toolbar-switcher ul li .uk-dropdown ul li a:hover {
    background-color: rgba(0,0,0, .05);
}

/* Login */

.login-btn .uk-dropdown {    
    color: var(--color-black);
    width: 390px;
    padding: 30px 20px !important;
} 

.login-btn .uk-dropdown .title {
    color: var(--color-black);
    font-size: 20px;
    line-height: var(--large-line-height);
}

.login-btn .uk-dropdown .uk-position-relative .uk-input {
    padding-right: 57px;
}

.login-btn .uk-dropdown .uk-position-relative .uk-input + svg {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translate(0, -50%);
}

.login-btn .uk-dropdown label:not(.withInput) {
    font-weight: 400;
}

.login-btn .uk-dropdown .uk-link-reset {
    font-weight: 600;
}



@media only screen and (max-width: 600px) and (orientation: landscape) {
    .login-btn .uk-dropdown {
        height: 150px !important;        
    }
}

@media only screen and (max-width: 959px) and (orientation: landscape) {
    .login-btn .uk-dropdown {
        height: 280px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .login-btn .uk-dropdown::-webkit-scrollbar {
        width: 3px;
    }

    .login-btn .uk-dropdown::-webkit-scrollbar-track {
        background: transparent;
    }

    .login-btn .uk-dropdown::-webkit-scrollbar-thumb {
        background: var(--bg-white);
        border-radius: 3px;
    }
}

/* ========================================================================
   Component: Header / Navigation
 ========================================================================== */

/* Sticky */

header.uk-sticky-below {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Search */

.tm-headerNav-block .header .uk-search .uk-input {
    min-width: 350px;
}

.tm-headerNav-block .mobile-nav .uk-search {
    box-sizing: border-box;
    min-width: inherit;
    width: 100% !important;
}

.tm-headerNav-block .header .uk-search .uk-input, .tm-headerNav-block .mobile-nav .uk-search .uk-input {
    padding-right: 57px;
}

.tm-headerNav-block .header .uk-search .uk-input + svg, .tm-headerNav-block .mobile-nav .uk-search .uk-input + svg {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translate(0, -50%);
}

/* Login */

.tm-headerNav-block .header .login-btn .pointer {
    border-radius: var(--radius-medium);
    border: 1px dashed var(--color-black);
    padding: 4px;
}

/* Dropdown */

.tm-headerNav-block .header .uk-dropdown {
    width: 390px;
    padding: 24px;
}

/* Dropbar */

.tm-headerNav-block .header .uk-dropbar {
    background: var(--bg-mastrant-grey);
}

@media(max-width: 639px) {
    .tm-headerNav-block .header .header-nav {
        margin-left: -15px;
    }
    
    .tm-headerNav-block .header .header-nav > li {
        padding-left: 15px;
    }

    .tm-headerNav-block .header .header-nav > li .button-mobile {
        line-height: 40px;
        padding: 0 10px;
    }
}

@media(max-width: 959px) {
    .tm-headerNav-block .header .uk-logo img {
        width: auto;
        height: 40px;
    }
}

@media(min-width: 1200px) {
    .tm-headerNav-block .header .uk-search .uk-input {
        min-width: 250px;
    }
}

/* ========================================================================
   Component: Mobile nav
 ========================================================================== */

.tm-headerNav-block .mobile-nav .uk-search {
    border-top: 1px solid var(--border-color);
    padding: 15px 25px;
}

.tm-headerNav-block .mobile-nav .navigation {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 20px 25px;
}

.tm-headerNav-block .mobile-nav .navigation .uk-grid > li {
    border-bottom: 1px solid var(--border-color);
    padding: 5px 0;
}

.tm-headerNav-block .mobile-nav .navigation .uk-grid > li > a {
    box-sizing: border-box;
    display: block;
    color: var(--color-mastrant-2);
    width: 100%;
    font-weight: 600;
    padding: 8px;
    transition: linear .35s;
}

.tm-headerNav-block .mobile-nav .navigation .uk-grid > li > a:hover, .tm-headerNav-block .mobile-nav .navigation .uk-grid > .uk-active > a {
    background: var(--bg-mastrant-grey);
}

.tm-headerNav-block .mobile-nav .navigation .uk-grid > li > a > img {
    display: none;
}

.tm-headerNav-block .mobile-nav .navigation .uk-grid > li:first-child {
    padding: 0 0 5px;
}

.tm-headerNav-block .mobile-nav .navigation .uk-grid > li:last-child {
    border-bottom: 0;
    padding: 5px 0 0;
}

/* Secondary nav */

.tm-headerNav-block .mobile-nav .navigation + .navigation .uk-grid > li {
    border-bottom: 0;
    padding: 10px 0 0;
}

.tm-headerNav-block .mobile-nav .navigation + .navigation .uk-grid > li > a {
    font-size: var(--small-font-size);
    line-height: var(small-line-height);
    padding: 0 8px;
}

.tm-headerNav-block .mobile-nav .navigation + .navigation .uk-grid > li:first-child {
    padding: 0;
}

.tm-headerNav-block .mobile-nav .navigation + .navigation .uk-grid > li > a:hover, .tm-headerNav-block .mobile-nav .navigation + .navigation .uk-grid > .uk-active > a {
    background: var(--bg-transparent);
    color: var(--color-black);
}

/* Language switcher */

.tm-headerNav-block .mobile-nav .mobile-switcher {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tm-headerNav-block .mobile-nav .mobile-switcher + .mobile-switcher {
    border-top: 0;
}

.tm-headerNav-block .mobile-nav .mobile-switcher .uk-grid > li > a {
    border-right: 1px solid var(--border-color);
    padding: 15px 0; 
    position: relative;
}

.tm-headerNav-block .mobile-nav .mobile-switcher .uk-grid > li:last-child > a {
    border-right: 0;
}



/* ========================================================================
   Component: Main nav
 ========================================================================== */

.tm-headerNav-block .main-nav .uk-navbar-item, .tm-headerNav-block .main-nav .uk-navbar-nav > li > a, .tm-headerNav-block .main-nav .uk-navbar-toggle {
    min-height: 35px;
}

/* Navbar nav */

.tm-headerNav-block .main-nav .uk-navbar-nav {
    gap: 16px;
}

.tm-headerNav-block .main-nav .uk-navbar-nav > li > a {
    color: var(---color-mastrant-btn-secondary);
    font-size: var(--normal-font-size);
    font-weight: 600;
    line-height: 35px;    
    padding: 0 8px;
    transition: linear .35s;
}

.tm-headerNav-block .main-nav .uk-navbar-nav > li > a:hover, .tm-headerNav-block .main-nav .uk-navbar-nav > li.uk-active > a {
    background: var(--bg-mastrant-grey);
    color: var(--color-mastrant-btn-secondary);
}

/* Dropdown nav */

.tm-headerNav-block .main-nav .uk-navbar-dropdown {
    background: var(--bg-mastrant-grey);
    box-shadow: none;
}

.tm-headerNav-block .main-nav .uk-navbar-dropdown .uk-nav-header, .tm-headerNav-block .main-nav .uk-navbar-dropdown .uk-nav-header > a {
    color: var(--color-mastrant-2) !important;
    font-size: var(--normal-font-size);
    font-weight: 600;
    line-height: var(--normal-line-height);
    padding: 0 0 5px;
}

.tm-headerNav-block .main-nav .uk-navbar-dropdown .uk-navbar-dropdown-nav > li > a {
    color: var(--color-black);
    font-size: var(--normal-font-size);
    font-weight: 600;
    line-height: var(--normal-line-height);
    transition: color linear .35s;
}

.tm-headerNav-block .main-nav .uk-navbar-dropdown .uk-navbar-dropdown-nav > li > a:hover {
    color: var(--color-mastrant-1) !important;
}

.tm-headerNav-block .main-nav .uk-navbar-dropdown .uk-navbar-dropdown-nav > li.uk-active > a {
    color: var(--color-mastrant-1) !important;
}

@media(min-width: 960px) and (max-width: 1299px) {
    .tm-headerNav-block .main-nav .uk-navbar-nav {
        gap: 10px;
        flex-wrap: wrap;
        white-space: normal;
    }
    .tm-headerNav-block .main-nav .uk-navbar-nav > li > a {
        font-size: 13px;
        white-space: nowrap;
        padding: 0 5px;
    }
}

@media(min-width: 1300px) and (max-width: 1439px) {
    .tm-headerNav-block .main-nav .uk-navbar-nav {
        gap: 10px;
    }
    .tm-headerNav-block .main-nav .uk-navbar-nav > li > a {
        padding: 0 5px;
    }
}

/* ========================================================================
   Component: Noticebar
 ========================================================================== */

.tm-noticebar-block {
    color: var(--color-white);
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    padding: 12px 0;
}

.tm-noticebar-block a {
    font-weight: 600;
}

/* ========================================================================
   Component: Offer block
 ========================================================================== */

/* Boxes */

.tm-offer-block .uk-card-primary {
    text-decoration: none !important;
    transition: background-color ease-in-out .2s;
}

.tm-offer-block .uk-card-primary * {
    color: var(--color-white) !important;    
}

.tm-offer-block .uk-card-primary:hover {
    background-color: var(--color-mastrant-1);
}

/* Anteena images */

.tm-offer-block .uk-card svg g {
    cursor: pointer;
}

.tm-offer-block .uk-card svg g:hover .st4,
.tm-offer-block .uk-card svg g:hover .st12,
.tm-offer-block .uk-card svg g:hover .st21,
.tm-offer-block .uk-card svg g:hover .st25,
.tm-offer-block .uk-card svg g:hover .st29 {
  fill: var(--color-primary);
  transition: fill 0.25s ease-in-out;
}

.tm-offer-block .uk-card svg g:hover .st1,
.tm-offer-block .uk-card svg g:hover .st3,
.tm-offer-block .uk-card svg g:hover .st5,
.tm-offer-block .uk-card svg g:hover .st6,
.tm-offer-block .uk-card svg g:hover .st7,
.tm-offer-block .uk-card svg g:hover .st8,
.tm-offer-block .uk-card svg g:hover .st9,
.tm-offer-block .uk-card svg g:hover .st10,
.tm-offer-block .uk-card svg g:hover .st11,
.tm-offer-block .uk-card svg g:hover .st14,
.tm-offer-block .uk-card svg g:hover .st15,
.tm-offer-block .uk-card svg g:hover .st22,
.tm-offer-block .uk-card svg g:hover .st23,
.tm-offer-block .uk-card svg g:hover .st24,
.tm-offer-block .uk-card svg g:hover .st30,
.tm-offer-block .uk-card svg g:hover .st31,
.tm-offer-block .uk-card svg g:hover .st32,
.tm-offer-block .uk-card svg g:hover .st33,
.tm-offer-block .uk-card svg g:hover .st34,
.tm-offer-block .uk-card svg g:hover .st35,
.tm-offer-block .uk-card svg g:hover .st36,
.tm-offer-block .uk-card svg g:hover .st37,
.tm-offer-block .uk-card svg g:hover .st38,
.tm-offer-block .uk-card svg g:hover .st39,
.tm-offer-block .uk-card svg g:hover .st40,
.tm-offer-block .uk-card svg g:hover .st41,
.tm-offer-block .uk-card svg g:hover .st42,
.tm-offer-block .uk-card svg g:hover .st43,
.tm-offer-block .uk-card svg g:hover .st44,
.tm-offer-block .uk-card svg g:hover .st45,
.tm-offer-block .uk-card svg g:hover .st47,
.tm-offer-block .uk-card svg g:hover .st48,
.tm-offer-block .uk-card svg g:hover .st49,
.tm-offer-block .uk-card svg g:hover .st50,
.tm-offer-block .uk-card svg g:hover .st51 {
  stroke: var(--color-primary);
  transition: stroke 0.25s ease-in-out;
}

.tm-offer-block .uk-card .menu-modal {
  background: var(--bg-white);
  border: 1px solid var(--color-mastrant-2);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: var(--radius-xsmall);
  box-sizing: border-box;
  display: block;
  max-width: 375px;
  padding: 15px;  
  z-index: 1000;  
}

.tm-offer-block .uk-card .menu-modal > *:last-child {
    margin-bottom: 0 !important;
}

.tm-offer-block .uk-card .menu-modal .close {
    color: var(--color-mastrant-2);
    display: none;
    visibility: hidden;
    position: absolute;
    top: -10px;
    right: -20px;
}

.tm-offer-block .uk-card .menu-modal .close + p {
    margin-top: 0;
}

@media(max-width: 767px) {
    .tm-offer-block .uk-card .menu-modal {
        width: 100%;
        padding: 15px 25px;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
    }
    .tm-offer-block .uk-card .menu-modal .close {
        display: block;
        visibility: visible;
    }
}

/* ========================================================================
   Component: Why syntetic rope block
 ========================================================================== */

.tm-whySynteticRope-block img {
    max-width: 170px;
}

/* ========================================================================
   Component: Product news block
 ========================================================================== */

.tm-product-news-block h2 {
    text-decoration: underline;
}

/* ========================================================================
   Component: Why Mastrant
 ========================================================================== */

.tm-whyMastrant-block h3 > span {
    margin-left: -5px;
}

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

.tm-footer-block h3 {
    color: var(--color-mastrant-1);
    font-size: var(--medium-font-size);
    font-weight: 700;
    line-height: var(--large-line-height);
    margin: 0 0 16px;
}

/* Company */

.tm-footer-block .company p {
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    margin-bottom: 0;
}

.tm-footer-block .company p + p {
    margin: 16px 0;
}

.tm-footer-block .company .uk-link-reset {
    font-size: var(--small-font-size);
    font-weight: 600;
    line-height: var(--large-line-height);
}

/* All nav */

.tm-footer-block .nav ul li a {
    display: block;
    font-size: var(--small-font-size);
    font-weight: 600;
    line-height: var(--normal-line-height);
    padding: 4px 0;
}

.tm-footer-block .nav ul li:first-child a {
    padding: 0 0 4px;
}

@media(min-width: 1200px) and (max-width: 1699px) {
    .tm-footer-block h3 {
        font-size: var(--normal-font-size);
    }

    .tm-footer-block .nav ul li a {
        font-size: var(--small-font-size);
    }
}

/* ========================================================================
   Component: Credit block
 ========================================================================== */

.tm-credit-block {
    border-top: 1px solid var(--border-color);
}

.tm-credit-block .uk-button {
    border-radius: var(--radius-xsmall);
    padding: 0 8px 0 40px;
    position: relative;
}

.tm-credit-block .uk-button svg, .tm-credit-block .uk-button img {
    position: absolute;
    top: 7px;
    left: 8px;
}

.tm-credit-block .button-ham {
    background-color: var(--bg-black);
    border-color: var(--bg-black);
    color: var(--color-white);
}

.tm-credit-block .button-facebook {
    background-color: #0866FF;
    border-color: #0866FF;
    color: var(--color-white);
}

.tm-credit-block .button-youtube {
    background-color: #FF0033;
    border-color: #FF0033;
    color: var(--color-white);
}

.tm-credit-block .button-eham {
    background-color: #FEB300;
    border-color: #FEB300;
    color: var(--color-white);
}

.tm-credit-block .button-groupsio {
    background-color: #00A2E5;
    border-color: #00A2E5;
    color: var(--color-white);
}

/* ========================================================================
   Component: Copyright block
 ========================================================================== */

.tm-copyright-block {
    background-color: var(--color-mastrant-1);
    color: var(--color-white);
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    padding: 32px 0;
}

.tm-copyright-block a {
    color: var(--color-white);
    text-decoration: underline;
}

/* ========================================================================
   Component: User account
 ========================================================================== */

/* User nav */

.tm-user-nav-block {
    border-bottom: 1px solid var(--border-color);
}

.tm-user-nav-block .uk-subnav {
    gap: 30px;
}

.tm-user-nav-block .uk-subnav > * > a {
    color: var(--color-black);
    font-size: var(--normal-font-size);
    font-weight: 600;
    line-height: 68px;
    text-transform: initial;
    position: relative;
}

.tm-user-nav-block .uk-subnav > * > a::before {
    content: "";
    background: var(bg-transparent);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    transition: background linear .35s;
}

.tm-user-nav-block .uk-subnav > * > a:hover::before, .tm-user-nav-block .uk-subnav > .uk-active > a::before {
    background: var(--color-black);
}

/* Address */

.tm-users-block .uk-card-address {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
}

@media(min-width: 960px) and (max-width: 1199px) {
    .tm-user-nav-block .uk-subnav {
        gap: 20px;
    }
    .tm-user-nav-block .uk-subnav > * > a {
        font-size: var(--small-font-size);
    }
}

/* ========================================================================
   Component: Blogs list
 ========================================================================== */

.blogs .uk-card .image {
    display: block;
    overflow: hidden;
}

.blogs .uk-card .image > img {
    transition: linear .35s;
}

.blogs .uk-card:hover .image > img {
    transform: scale(1.03);
}

.blogs .uk-card .uk-card-body h2, .blogs .uk-card .uk-card-body h2 > a,
.blogs .uk-card .uk-card-body h3, .blogs .uk-card .uk-card-body h3 > a {
    color: var(--color-grey) !important;
    line-height: 24px;
    text-decoration: none;
}

.blogs .uk-card .uk-card-body .uk-button-text {
    text-decoration: none;
    padding-right: 26px;
    position: relative;
}

.blogs .uk-card .uk-card-body .uk-button-text > svg {
    position: absolute;
    top: 1px;
    right: 0;
}

/* ========================================================================
   Component: Slider
 ========================================================================== */

@media(max-width: 639px) {
    .actualities .uk-slider, .products .uk-slider, .categories .uk-slider, .manufacturers .uk-slider, .sub-categories .uk-slider {
        margin-right: -15px;
    }

    .actualities .uk-slider .uk-slider-items > li, .products .uk-slider .uk-slider-items > li {
        box-sizing: border-box;
        max-width: 100%;
        width: calc(100% * 1 / 1.001 - 100px);
    }

    .categories .uk-slider .uk-slider-items > li, .manufacturers .uk-slider .uk-slider-items > li {
        box-sizing: border-box;
        max-width: 100%;
        width: calc(100% * 1 / 2.001 - 40px);
    }

    .sub-categories .uk-slider .uk-slider-items > li {
        box-sizing: border-box;
        max-width: 100%;
        width: calc(100% * 1 / 2.001 - 40px);
    }
}

@media(min-width: 640px) and (max-width: 959px) {
    .uk-slider .uk-position-center-left-out {
        margin-right: -10px;
    }

    .uk-slider .uk-position-center-right-out {
        margin-left: -10px;
    }
}

@media(min-width: 960px) and (max-width: 1199px) {
    .uk-slider .uk-position-center-left-out {
        margin-right: -5px;
    }

    .uk-slider .uk-position-center-right-out {
        margin-left: -5px;
    }
}

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

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

/* ========================================================================
   Component: User account - orders history
 ========================================================================== */

.tm-users-block table thead tr th {
    color: var(--color-black);
    font-weight: 700;
}

.tm-users-block table tbody tr.green td {
    color: var(--color-primary);
}

.tm-users-block table tbody tr.red td {
    color: var(--color-danger);
}

@media(max-width: 640px) {
    .tm-users-block table thead tr th, .tm-users-block table tbody tr td {
        font-size: 12px;
    }
} 

/* ========================================================================
   Component: Dropdown user
 ========================================================================== */

.userNavWrapper::before {
    content:"";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: var(--bg-transparent) var(--bg-transparent) var(--color-white) var(--bg-transparent);
    transform: rotate(0deg);
    position: absolute;
}

.userNavWrapper ul li > a {
    display: block;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    padding: 16px;
    position: relative;
    transition: background-color linear 0.35s;
}

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

.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: var(--radius-xsmall);
        border: 2px solid var(--color-black);
    }
    .userNavWrapper .userNavWrapperInner::-webkit-scrollbar-track {
        border-radius: var(--radius-xsmall);
        background-color: var(--bg-light-grey);
    }
}

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

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

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

.uk-modal-dialog {
    background: var(--color-white);
}

.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: var(--color-primary);
    color: var(--color-white) !important;
}

.uk-modal-close-default {
    color: var(--color-black) !important;
    opacity: 1 !important;
}

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

@media(min-width: 960px) {
    .uk-modal-dialog h2 {
        margin-bottom: 30px;
    }
    .uk-modal-dialog .action {
        margin-top: 60px;
    }
    .uk-modal-dialog-large {
        width: 900px;
    }
}

@media(min-width: 1200px) {
    .uk-modal-dialog-large {
        width: 1150px;
    }
}

@media(min-width: 1600px) {
    .uk-modal-dialog-large {
        width: 1550px;
    }
}

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

#modalSearch .uk-search-large .uk-search-input {
    color: var(--color-body)
}

@media(max-width: 767px) {
    #modalSearch .uk-search-large .uk-search-input {
        font-size: 24px;
        height: 60px;
    }
}

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

/* Margins */

.uk-article .uk-h1, .uk-article * + .uk-h1, .uk-article h1, .uk-article * + h1 {
    margin: 0 0 20px 0;
}

.uk-article .uk-h2, .uk-article .uk-h3, .uk-article .uk-h4, .uk-article .uk-h5, .uk-article .uk-h6, .uk-article .uk-heading-2xlarge, .uk-article .uk-heading-3xlarge, .uk-article .uk-heading-large, .uk-article .uk-heading-medium, .uk-article .uk-heading-small, .uk-article .uk-heading-xlarge, .uk-article h2, .uk-article h3, .uk-article h4, .uk-article h5, .uk-article h6 {
    margin: 0 0 10px 0;
}

.uk-article * + .uk-h2, .uk-article * + .uk-h3, .uk-article * + .uk-h4, .uk-article * + .uk-h5, .uk-article * + .uk-h6, .uk-article * + .uk-heading-2xlarge, .uk-article * + .uk-heading-3xlarge, .uk-article * + .uk-heading-large, .uk-article * + .uk-heading-medium, .uk-article * + .uk-heading-small, .uk-article * + .uk-heading-xlarge, .uk-article * + h2, .uk-article * + h3, .uk-article * + h4, .uk-article * + h5, .uk-article * + h6 {
    margin-top: 20px;
}

.uk-article * + address, .uk-article * + dl, .uk-article * + fieldset, .uk-article * + figure, .uk-article * + ol, .uk-article * + p, .uk-article * + pre, .uk-article * + ul {
    margin-top: 20px;
}
.uk-article address, .uk-article dl, .uk-article fieldset, .uk-article figure, .uk-article ol, .uk-article p, .uk-article pre, .uk-article ul {
    margin: 0 0 10px 0;
}

/* Article typography */

.tm-articles-block {
    color: var(--color-body);
    font-family: var(--font-body);
    font-size: var(--medium-font-size);
    line-height: 1.72;
}

.tm-articles-block .uk-article-title, .tm-articles-block h1 {
    color: var(--color-title);
    font-family: var(--font-title);
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: 0.25px;
}

.tm-articles-block h2, .tm-articles-block h3, .tm-articles-block h4, .tm-articles-block h5, .tm-articles-block h6 {
    color: var(--color-title);
    font-family: var(--font-title);
    letter-spacing: 0.25px;
}

.tm-articles-block h2, .tm-articles-block .uk-h2 {
    font-size: 32px;
    line-height: 1.28;
}

.tm-articles-block h3, .tm-articles-block .uk-h3 {
    font-size: 26px;
    line-height: 1.35;
}

.tm-articles-block h4,, .tm-articles-block .uk-h4 {
    font-size: 22px;
    line-height: 1.42;
}

.tm-articles-block h5, .tm-articles-block .uk-h5 {
    font-size: var(--large-font-size);
    line-height: 1.5;
}

.tm-articles-block h6, .tm-articles-block .uk-h6 {
    color: var(--color-mastrant-2);
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
}

.tm-articles-block p {
    color: var(--color-body);
    font-family: var(--font-body);
    font-size: var(--medium-font-size);
    line-height: 1.72;
}

.tm-articles-block .uk-text-lead, .tm-articles-block p.lead {
    color: var(--color-global-grey);
    font-size: var(--large-font-size);
    line-height: 1.65;
}

.tm-articles-block .uk-article-meta, .tm-articles-block .article-info, .tm-articles-block .category-desc {
    color: var(--color-global-grey);
    font-size: var(--small-font-size);
    line-height: 1.55;
}

.tm-articles-block a {
    color: var(--color-mastrant-2);
    font-family: var(--font-link);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.tm-articles-block a:hover {
    color: var(--color-mastrant-1);
}

.tm-articles-block li {
    color: var(--color-body);
    font-size: var(--medium-font-size);
    line-height: 1.7;
}

.tm-articles-block li::marker {
    color: var(--color-mastrant-1);
    font-weight: 700;
}

.tm-articles-block blockquote {
    border-left: 4px solid var(--color-mastrant-1);
    border-radius: var(--radius-small);
    background: var(--bg-mastrant-grey);
    color: var(--color-body);
    font-style: normal;
}

.tm-articles-block blockquote p {
    color: var(--color-body);
    font-size: var(--large-font-size);
    font-weight: 500;
    line-height: 1.65;
}

.tm-articles-block blockquote footer {
    color: var(--color-global-grey);
    font-size: var(--small-font-size);
    line-height: 1.5;
}

.tm-articles-block figcaption {
    color: var(--color-global-grey);
    font-size: var(--small-font-size);
    line-height: 1.5;
}

@media (max-width: 639px) {
    .tm-articles-block {
        font-size: var(--normal-font-size);
        line-height: 1.68;
    }

    .tm-articles-block .uk-article-title, .tm-articles-block h1 {
        font-size: 34px;
        line-height: 1.22;
    }

    .tm-articles-block h2 {
        font-size: 27px;
    }

    .tm-articles-block h3 {
        font-size: 23px;
    }

    .tm-articles-block p, .tm-articles-block li {
        font-size: var(--normal-font-size);
    }
}

/* ========================================================================
   Component: Pagination
 ========================================================================== */

.pagination .paginationList li > a, .pagination .paginationList li > span {
    background: var(--color-spaceuikit-primary);
    border-radius: var(--radius-xsmall);
    display: inline-block;
    width: 28px;
    line-height: 28px;    
    text-align: center;
    text-decoration: none;
    transition: background ease-in .25s;
}

.pagination .paginationList li span.uk-icon {
    vertical-align: 1px;
}

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

.termsfeed-com---palette-light.termsfeed-com---nb {
    background-color: var(--color-white) !important;
    color: var(--color-black) !important;
}

.termsfeed-com---palette-light .cc-nb-title, .termsfeed-com---palette-light .cc-nb-text {
    color: var(--color-black) !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: Layouts / Joomla / Form
 ========================================================================== */

 .field-calendar .input-group .uk-width-2-3 input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.field-calendar .input-group .uk-width-1-3 button {
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
}

.field-calendar .buttons-wrapper {
    box-sizing: border-box;
    display: none;
}

/* ========================================================================
   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: Messages container Joomla!
 ========================================================================== */

 #system-message-container {
    position: fixed;
    z-index: 1000;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0);    
}

@media(min-width: 640px) {
    #system-message-container {
        width: 600px;
    }
}

@media(min-width: 960px) {
    #system-message-container {
        width: 650px;
    }
}

/* ========================================================================
   Component: Pagination Joomla!
 ========================================================================== */

.paginationList > .uk-active > a {
    color: var(--color-mastrant-1);
}

/* ========================================================================
   Component: POS
 ========================================================================== */

/* Nav */

.pos-block .cart-nav {
    padding: 0 0 20px;
}

.pos-block .cart-nav * > a {
    background-color: var(--color-mastrant-2);
    border-radius: var(--radius-small);
    display: inline-block;
    color: var(--color-white);
    line-height: 20px;
    text-decoration: none;    
    padding: 15px 40px;
}

.pos-block .cart-nav * > a.show-cart {
    background-color: var(--color-mastrant-1);
    padding: 10px 20px;
}

.pos-block .cart-nav .uk-active a {
    background-color: var(--color-mastrant-1);
}

.pos-block .cart-nav * > .delete-cart {
    cursor: pointer;
    margin-left: 5px;
}

/* Nav sticky */

.cart-nav.uk-sticky-below {
    background: var(--bg-mastrant-grey);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;    
}

/* Product */

.pos-block .product h2,
.childrens .product h2 {
    font-size: 16px !important;
    line-height: 20px !important;
    margin: 15px 0 !important;
}

.pos-block .product .image > * > .no-image,
.childrens .product .image > * > .no-image {
    box-sizing: border-box;
    display: inline-block;
    height: 100%;
    min-height: 100px;
    max-height: 275px;
    width: 100%;
    max-width: 275px;
    text-align: center;
    position: relative;
}

.pos-block .product .js-add-to-cart .quantity .product-minus,
.pos-block .product .js-add-to-cart .quantity .product-plus,
.childrens .product .js-add-to-cart .quantity .product-minus,
.childrens .product .js-add-to-cart .quantity .product-plus {
  cursor: pointer;
}

/* Cart */

.cart-products .no-image {
    background: var(--bg-mastrant-grey);
    box-sizing: border-box;
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
}

/* Orders */

.pos-orders table thead tr th, .pos-order table thead tr th {
    color: var(--color-black);
    font-weight: 700;
}

.pos-orders table tbody tr, .pos-order table tbody tr {
    border-top: 1px solid var(--border-color);
}

.pos-order .sale {
    font-size: 18px;
}

@media (min-width: 960px) {
    .pos-block .uk-card table tr td:first-child {
        padding-left: 12px !important;
    }
    .pos-block .uk-card table tr td:last-child {
        padding-right: 12px !important;
    }
}

@media (min-width: 1600px) {
    /* Products */
    .pos-block .uk-child-width-auto\@xl > * {
        width: calc(100% / 6);
    }    
    /* Product - child / modal view */
    .childerns .uk-child-width-auto\@xl > * {
        width: calc(100% / 6);
    }
}

/* ========================================================================
   Component: Calculation
 ========================================================================== */

/* Form */ 
.mastrantCalculator .description {
    /*color: var(--color-danger);*/
    font-size: var(--small-font-size);
    font-weight: 300;
    line-height: var(--small-line-height);
    margin: 5px 0 0;
}
/* Results */
.calculatorResults table thead tr th {
    color: var(--color-black);
    font-weight: 700;
}
.calculatorResults table tbody tr {
    border-top: 1px solid var(--border-color);
}
.calculatorResults .recommendation table tbody tr {
    border-top: 1px solid var(--color-white);
}
.calculatorResults table tbody tr:first-child {
    border-top: 0;
}

/* ========================================================================
   Component: SPACEcontact
 ========================================================================== */

.distributorsList .uk-card table tr td:first-child {
    padding: 5px 10px 5px 0;
}

.distributorsList .uk-card table tr td:last-child {
    padding: 5px 0 5px 10px;
}

.distributorsList .uk-card .goToDetail {
    border-top: 1px solid var(--border-color);
    padding: 20px 20px 0;
    margin: 20px -20px 0;
}


/* ========================================================================
   Component: Geo location
 ========================================================================== */

.tm-geolocation-block {
    background: var(--color-warning-100);
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    padding: 5px 0;
}

@media(max-width: 959px) {
    .tm-geolocation-block {
        font-size: 12px;
        line-height: 14px;
    }
}

/* ========================================================================
   Modul: mod_mastrant_products
 ========================================================================== */

.mastrant-products .js-sortable-column {
    position: relative;
    padding-right: 26px;
    cursor: pointer;
    user-select: none;
}

/* Base arrows */
.mastrant-products .js-sortable-column::before,
.mastrant-products .js-sortable-column::after {
    position: absolute;
    right: 8px;
    font-size: 9px;
    line-height: 1;
    color: var(--text-muted);
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0.45;
}

/* Arrow up */
.mastrant-products .js-sortable-column::before {
    content: "▲";
    top: calc(50% - 9px);
}

/* Arrow down */
.mastrant-products .js-sortable-column::after {
    content: "▼";
    top: calc(50% + 1px);
}

/* Hover */
.mastrant-products .js-sortable-column:hover::before,
.mastrant-products .js-sortable-column:hover::after {
    opacity: 0.8;
    color: var(--color-primary-200);
}

/* ASC active */
.mastrant-products .js-sortable-column[data-sort-direction="asc"]::before {
    color: var(--color-accent-500);
    opacity: 1;
}

/* DESC active */
.mastrant-products .js-sortable-column[data-sort-direction="desc"]::after {
    color: var(--color-accent-500);
    opacity: 1;
}

/* Optional inactive arrow when active */
.mastrant-products .js-sortable-column[data-sort-direction="asc"]::after,
.mastrant-products .js-sortable-column[data-sort-direction="desc"]::before {
    opacity: 0.2;
}