@import url('https://rsms.me/inter/inter.css');

:root {
    --main-bg-color: #ffffff;
    /*--main-accent: #337ab7;*/
    --main-accent: #c72d24;
    --main-theme: #101974;
}

* {
    outline: none;
}

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
}

body {
    font-family: inter, Nunito, 'Roboto', Serif;
    display: flex;
}

div {
    position: relative;
    box-sizing: border-box;
}

.page-width {
    max-width: 1200px;
    margin: auto;
    padding: 15px;
    box-sizing: border-box;
}

#page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#header {
    background: var(--main-theme);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

}

#header > .page-width {
    padding: 5px 15px 2px 5px;
}

#header_content {
    display: flex;
}

#page_body {
    flex: 1;
    margin-top: 85px;
}

#page_body .page-width {
    padding: 0px 30px 30px;
}

#logo_container {

}

#page_main_menu {
    padding-left: 0px;
    /*flex: 1;*/
}

#search_box_container {
    flex: 1;
}

ul#page-actions,
ul#main_menu {
    margin: 0;
    padding-left: 10px;
}

#page-actions li,
#page_main_menu li {
    display: inline;
    list-style: none;
    margin: 0 5px;
    line-height: 70px;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    padding-bottom: 2px;
    text-transform: uppercase;
}

.menu-account-mobile{
    display: none !important;
}

@keyframes fill-width {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

#page_main_menu li::after {
    /*width: 0;*/
    width: 100%;
    transform: scale(0);
    /*border-bottom: solid 2px var(--main-accent, #333);*/
    border-bottom: solid 2px #fff;
    content: '';
    transition: transform .4s;
    left: 0;
    position: absolute;
    bottom: -5px;
    transform-origin: right;
}

#page_main_menu li:hover::after,
#page_main_menu li.active::after {
    /*width: 100%;*/
    transform: scale(1);
    transform-origin: left;
}

#header_intro {
    clear: both;
    position: relative;
    background-color: #eee;
}

#search_box {
    position: relative;
    padding: 15px;
    padding-top: 18px;
}

#search_box * {
    font-size: 16px;
}

#search_box .form-group {
    /*margin-right: 30px;*/
    /*margin: 0;*/
    /*padding: 0 0 10px;*/
}

#search_trx {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.trx-selector {
    opacity: .6;
    font-weight: bold;
    cursor: pointer;
    padding: 0 10px;
}

.trx-selector:hover,
.trx-selector.selected {
    opacity: 1;
    border-bottom: solid 2px var(--main-accent, #000);
    color: var(--main-accent, #000);
}

#trx_beli {
    margin-right: 15px;
}

#page_content {

}

.input-group .select2 {
    margin-top: -1px;
}

.input-group .select2-selection {
    min-height: 34px;
}

.input-group .select2-selection__rendered {
    line-height: 34px !important;
}

.input-group-addon ~ span .select2-selection--single {
    border-left: none !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#btn_search {
    font-size: larger;
}

.box-insider {
    border: solid 1px #ccc;
    border-radius: 4px;
    /*padding: 2px;*/
}

.property-info:hover {
    background-color: #eee;
}

.property-data {
    padding-top: 15px;
}

.property-thumb {
    background: #eee;
    padding-top: 75%;
}

.property-thumb > img {
    position: absolute;
    top: 0;
    height: 100%;
}

.property-thumb-box {
    object-position: center;
    object-fit: cover;
    max-width: 100%;
    /*height: auto;*/
    width: 100%;
}

#footer {
    background: var(--main-accent, #333);
    color: #FFFFFF;
}

a,
a:hover,
a:active,
a:visited {
    text-decoration: none;
    color: inherit;
}

.menu > a {
    /*color: var(--main-accent, #000) !important;*/
    /*color: #333;*/
}

@media only screen and (max-width: 992px) {
    #search_box * {
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px) {
    .mobile-only {

    }

    .pill-button {
        font-size: 12px;
    }

    .number_spinner_controls {
        margin-bottom: 10px;
    }

    #search_box * {
        font-size: 12px;
    }

}

@keyframes loadingSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.loading-block::before {
    background-color: rgba(0, 0, 0, .3);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    z-index: 8;
}

.loading-block::after {
    border: solid 2px #FFF;
    border-color: #fff transparent !important;
    z-index: 9;
    content: '';
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    animation: loadingSpin 1s infinite linear;
}


.section_title {
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}

.section_title::after {
    /*width: 85%;*/
    width: 100%;
    content: '';
    border-top: solid 1px var(--main-accent, #000);
    position: absolute;
    bottom: 5px;
    left: 0;
}

hr.section_title {
    border: none;
}

.sidebar_container {
    position: relative;
    width: 100%;
    height: 100%;
}

img.site-banner {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 15px;
}

.fav-icon {
    width: 36px;
    height: 36px;
    background-size: cover;
    background: url("love-icon.svg");
    cursor: pointer;
}

.fav-icon.is-fav {
    background: url("love-red.svg");
}

.clickable {
    cursor: pointer;
}

.post-archived {
    background: #9f191f;
    color: #ccc;
    font-weight: bold;
    font-size: 12px;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    margin-left: 10px;
}

.post-archived.is_open_1 {
    background: #199f1f;
    color: #fff;
}

.featured-banner {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    color: white;
    background: #900;
    padding: 2px 10px;
    border-radius: 3px;
}

.mobile-only {
    display: none !important;
}

#page-actions #shopping-cart {
    font-size: 22px;
    position: relative;
}

#shopping-cart > .badge {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--main-accent, #fff);
    border-radius: 50%;
    line-height: 12px;
    text-align: center;
    font-size: 10px;
    top: -5px;
    left: 16px;
}

@media screen and (max-width: 768px) {
    #page {
        opacity: 0;
    }
}

.text-bold {
    font-weight: bold;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome, Edge, Opera and Firefox */
}


.number_spinner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    width: 350px;
    margin-top: 10px;
}

.number_spinner_controls {
    display: flex;
    flex-direction: row;
    border: solid 1px #999;
    border-radius: 5px;
    overflow: hidden;
}

.number_spinner .number_spinner_input {
    flex: 1;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-appearance: none;
    padding: 6px 0;
    border-style: solid;
    border-width: 1px 0;
    pointer-events: none;
}

.number_spinner .number_spinner_min,
.number_spinner .number_spinner_plus {
    position: relative;
    padding: 5px 10px;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    text-align: center;
}


.number_spinner .number_spinner_min,
.number_spinner .number_spinner_plus {
    border-color: #999999;
}

.number_spinner .number_spinner_min {
    border-radius: 10px 0 0 10px;
}

.number_spinner .number_spinner_plus {
    border-radius: 0 10px 10px 0;
}

.number_spinner .number_spinner_title {
    font-size: larger;
    font-weight: bold;
    padding-right: 10px;
    width: 350px;
}

.number_spinner .number_spinner_min,
.number_spinner .number_spinner_plus {
    border: none;
    border-radius: 0px;
    flex: 1;
}

.number_spinner .number_spinner_input {
    border: none;
    flex: 2;
}

.page-width.inner-width {
    max-width: 1000px;
    margin: auto;
}

.theme-hightlight {
    color: var(--main-theme);
}

.theme-link,
.theme-link:visited {
    color: var(--main-accent);
}

.theme-link:hover {
    color: var(--main-accent);
    text-decoration: underline;
}

.card-box {
    padding: 15px;
    border: solid 1px transparent;
    border-radius: 5px;
    box-shadow: 1px 1px 5px #ccc;
    margin: 15px 0;
}

#account-greeting {
    /*z-index: 9;*/
    position: relative;
}

#account-menu-container::before {
    content: '';
    border: solid 15px transparent;
    border-bottom-color: var(--main-accent);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

#account-menu-container {
    position: absolute;
    z-index: 8;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    background: var(--main-accent);
    border-radius: 6px;
    line-height: 2.5;
    padding: 20px 10px;
    letter-spacing: 1px;
    min-width: 150px;
    opacity: 0;
    /*display: none;*/
    pointer-events: none;
    transition: opacity .4s ease-in-out;
}

#account-menu-container > a {
    display: block;
    text-align: center;
}

#account_menu_toggle:checked ~ #account-menu-container {
    /*display: block;*/
    opacity: 1;
    pointer-events: all;
}

.empty_block {
    font-size: 22px;
    font-style: italic;
    opacity: .7;
}

.product_price {
    color: black;
}

.variant-price {
    font-weight: normal;
    font-size: smaller;
    font-style: italic;
}

.h2_imitation {
    font-size: 30px;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
    display: block;
    margin: 20px 0 10px 0;
    /*margin-block-start: 0.83em;*/
    /*margin-block-end: 0.83em;*/
    /*margin-inline-start: 0;*/
    /*margin-inline-end: 0;*/
}

.h3_imitation {
    font-family: inherit;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1;
    color: inherit;
    display: block;
    margin: 20px 0 10px 0;
    /*margin-block-start: 1em;*/
    /*margin-block-end: 1em;*/
    /*margin-inline-start: 0;*/
    /*margin-inline-end: 0;*/
}

.h4_imitation {
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1;
    color: inherit;
    display: block;
    margin: 10px 0 15px 0;
    /*margin-block-start: 1.33em;*/
    /*margin-block-end: 1.33em;*/
    /*margin-inline-start: 0;*/
    /*margin-inline-end: 0;*/
}

.rating-container {
    color: black;
    padding: 5px 0 10px 0;
    text-align: center;
    display: inline-block;
    margin: 2px 2px;
}

.pill-button {
    background-color: #eeeeee;
    border: none;
    color: black;
    padding: 5px 15px;
    text-align: center;
    margin: 2px 2px;
    width: fit-content;
    border-radius: 16px;
}

#filter_close {
    display: none;
    position: fixed;
}

#selection-close {
    display: none;
    position: fixed;
}

.btn {
    font-weight: 500;
    padding: 6px 20px;
}