/* „Tři jablka změnila svět. První svedlo Evu, druhé spadlo Newtonovi na hlavu a třetí napustil jedem a kousl do něj Alan Turing, pak ho Steve Jobs podal světu“ */


/* -------------------
------- Global -------
-------------------- */

* {
    font-family: 'Montserrat', sans-serif;
}

a,
button {
    transition: all .3s ease-in-out;
}

a,
.text-primary {
    color: #ca271e;
}

a:hover {
    color: #952323;
    text-decoration: none;
}

.bg-white {
    background-color: #fff;
}

.zero-margin {
    margin-left: 0;
    margin-right: 0;
}

.bg-page {
    background-color: #eee;
    margin-left: 0;
    margin-right: 0;
}

.row-no-padding>[class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.btn-success {
    background-color: #20D25C;
    border-color: #16c150;
}

.btn-success:hover {
    background-color: #16c150;
}

.btn {
    border-radius: 0;
}

.btn>i {
    position: relative;
    bottom: -2px;
    font-size: 1.2em;
}

.btn-primary {
    background-color: #ca271e;
    border-radius: 3px;
    border-color: #ca271e;
}

.btn-primary:hover {
    background-color: #952323;
    border-color: #952323;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label,
[type="radio"]:checked+.label,
[type="radio"]:not(:checked)+.label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    line-height: 18px;
    display: inline-block;
    color: #666;
    font-weight: 400;
}

.label {
    top: -8px
}

[type="radio"]+label:before,
[type="radio"]+.label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #c92820;
    border-radius: 100%;
    background: #eee;
}

[type="radio"]+.label:before {
    background: #fff;
}

[type="radio"]+label:after,
[type="radio"]+.label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #c92820;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after,
[type="radio"]:not(:checked)+.label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked+label:after,
[type="radio"]:checked+.label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.m0 {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 767px) {
    html {
        overflow-x: hidden;
    }
    body {
        padding-top: 60px;
        transition: padding .5s linear;
        overflow: hidden;
    }
    .m-search-revealed {
        padding-top: 112px;
    }
    .bg-light-grey {
        background-color: #e6e6e6;
    }
    .mobile-p0 {
        padding: 0;
    }
    .not-mobile {
        display: none;
    }
}

.cc-window {
    font-size: .8em;
    box-shadow: 0 0 15px rgba(0, 0, 0, .075);
}

.cc-btn {
    font-size: 1.1em;
}

.cc-window.cc-banner {
    padding: .5em 1.3em
}

.items-loader {
    display: none;
    text-align: center;
    position: absolute;
    z-index: 100000;
    margin: 0 auto;
    width: 100%;
    background: white;
    height: 60px;
    padding-top: 20px;
}

.products-loader {
    border: 4px solid #fcfcfc;
    border-radius: 50%;
    border-top: 4px solid #48c0fb;
    width: 25px;
    height: 25px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
}


/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.content-holder {
    padding-top: 30px;
}


/* -------------------
------- Header -------
-------------------- */

header {
    background-color: #ffffff;
    border-top: 3px solid #ca271e;
}


/* ------ Header basic info section ------ */

.nav-link {
    color: #626262;
    display: inline-block;
    padding: 10px 9px;
    font-size: .9em;
    position: relative;
}

.nav-link::after {
    content: "|";
    font-size: .5em;
    color: #626262;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 2.4em;
}

.nav-link:hover {
    color: #000;
    text-decoration: none;
}

.nav-link:first-child {
    padding-left: 0;
}

.nav-link:last-child::after {
    display: none;
}

.contact-info-call {
    text-align: right;
}

.contact-info-call i {
    margin-right: -7px;
    position: relative;
    top: 3px;
}

.contact-info-call>a {
    font-weight: 600;
}

.call-times {
    color: #626262;
    padding-left: 5px;
}

.login-btn-holder {
    text-align: right;
}

.login-btn {
    padding: 10px 30px;
    font-size: .9em;
    border: none;
    background-color: #fff;
    color: #626262;
}

@media (max-width: 1199.98px) {
    .login-btn-holder {
        display: none;
    }
    .basic-info-holder .row>div {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .basic-info-holder {
        display: none;
    }
}


/* ------ Header brand and cart section ------ */

.brand-row {
    background-color: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
    position: relative;
    z-index: 2;
}

.hidden-headline {
    margin: 0;
    padding: 0;
    position: relative;
}

.logo-character-img {
    position: absolute;
    left: -70px;
    top: -28px;
    height: 90px;
}

.brand-headline {
    display: none;
}

.logo-text-img {
    height: 40px;
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .logo-character-img {
        left: -20px;
        top: 5px;
        height: 70px;
    }
    .logo-text-img {
        height: 32px;
        margin-left: 25px;
    }
}


/* ------ Search ------ */

.search-input-holder {
    margin-top: 18px;
    margin-left: -30px;
    display: flex;
    max-width: 100%;
    padding-right: 24px;
}

.search-input-holder>input {
    background-color: #fff;
    line-height: 2em;
    padding: 2px 10px;
    border: 1px solid #eee;
    box-shadow: 0 0 9px 1px #eee;
    width: 85%;
    max-width: 250px;
    border-radius: 3px;
}

.search-input-holder>button {
    background-color: #d0d9e8;
    color: #fff;
    text-shadow: 0 0 5px #9a9a9a;
    box-shadow: 3px 0 9px 2px #eee;
    position: relative;
    left: -10px;
    line-height: 2em;
    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid #d0d9e8;
    outline: none;
}

@media (max-width: 991.98px) {
    .m-search-input {
        padding: 15px 0;
        display: none;
    }
    .search-input-holder {
        margin-top: 0;
        margin-left: 0;
        display: flex;
    }
    .search-input-holder>button {
        left: 0;
        margin-left: 10px;
    }
    .m-nav {
        display: none;
    }
    .brand-row {
        border-bottom: 3px solid #bd271d;
    }
    .brand-row .row {
        margin: 0;
    }
    .brand-row.cart-nav {
        position: absolute;
    }
    .search-input-holder>input {
        width: calc(100% - 41px);
        max-width: initial;
    }
}

@media (max-width: 767.98px) {
    .brand-row {
        position: fixed;
        top: 0;
        z-index: 998;
        width: 100vw;
    }
}


/* ------ Cart section ------ */

.cart-holder {
    position: relative;
    margin-right: 10px;
}

.cart-holder>i {
    font-size: 1.4em;
    color: #fff;
}

.cart-img {
    max-height: 2em;
    max-width: 100%;
}

.cart-items {
    position: absolute;
    top: -7px;
    left: -7px;
    background-color: #952323;
    color: #fff;
    border-radius: 100%;
    width: 1.3em;
    height: 1.3em;
    text-align: center;
    line-height: 1.3;
    font-size: .8em;
}

.cart-text {
    margin-right: 20px;
}

.cart-info-holder {
    display: inline-block;
    color: #fff;
}

.cart-button {
    display: inline-block;
    padding: 10px 15px 10px 18px;
    margin: 13px 0;
    position: relative;
    border: none;
    background-color: #c92820;
    border-radius: 3px;
}

.cart-summary {
    position: absolute;
    width: auto;
    display: none;
    width: 480px;
    right: -1px;
    top: 100%;
    z-index: 5;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 0 15px rgba(0, 0, 0, .075);
}

.cart-summary>div {
    padding: 10px 15px;
}

.cart-summary>div:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

@media (min-width: 768px) {
    .cart-button:not(.no-hover):hover .cart-summary {
        display: block;
    }
    .cart-button:not(.no-hover):hover {
        background-color: #952323;
        border-color: #952323;
        z-index: 6;
    }
    .mobile-nav-btns-holder {
        display: none;
    }
}

.cart-summary-headline {
    border-bottom: 1px solid #ddd;
    padding: 10px 15px;
    color: #c92820;
    text-align: left;
    margin: 0;
    font-size: 1.1em;
}

.summary-total-price {
    margin-left: 10px;
}

.btn-delete-item {
    border: none;
    color: #fff;
    border-radius: 100%;
    background-color: #c92820;
    padding: 1px 4px 0px 4px;
    height: 22px
}

.sum-product-link {
    font-size: 1.2em;
    color: #c92820;
}

@media (max-width: 991px) {
    .cart-text {
        display: none;
    }
    .logo-img {
        height: 50px;
        margin-top: 10px;
    }
}

@media (max-width: 991.98px) {
    .logo-img {
        height: 40px;
        margin-top: 11px;
    }
    .cart-button {
        vertical-align: top;
        background: #fff;
        margin: 8px 0;
        padding: 10px 0 10px 0;
    }
    .cart-holder {
        margin-right: 0;
    }
    .cart-button i {
        color: #ca271e;
    }
    .no-wrap {
        white-space: nowrap;
        padding-right: 0;
    }
    .cart-info-holder {
        display: none;
    }
    .cart-summary {
        display: none !important;
    }
    .mobile-nav-btns-holder {
        display: inline-block;
    }
    .mobile-nav-btns-holder>button {
        border: none;
        background: none;
        color: #ca271e;
        font-size: 1.5em;
        margin: 15px 0 10px;
        vertical-align: top;
        outline: none !important;
    }
    .mobile-nav-btns-holder>button.mobile-search-btn {
        border: none;
        background-color: #ca271e;
        color: #fff;
        border-radius: 3px;
        line-height: 1;
        font-size: 1.75em;
        padding: 3px 5px 1px;
        margin-top: 14px;
        margin-left: 0;
    }
}


/* ----- Nav ----- */

.navbar {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-left: -95px;
    margin-bottom: 0;
}

.navbar>li {
    display: inline-block;
    padding: 25px 6px;
}

.navbar>li>a {
    color: #171717;
    font-weight: 600;
    text-decoration: underline;
}

.navbar>li>a:hover {
    color: #c92820;
}

@media (min-width: 992px) {
    .navbar {
        padding-left: 16px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        margin-left: 0;
        max-height: 0px;
        min-height: initial;
        overflow: hidden;
        text-align: center;
        transition: max-height .3s ease-in-out;
    }
    .navbar.revealed {
        max-height: 200px;
    }
    .navbar>li {
        display: block;
        padding: 10px;
    }
}


/* -------------------
------ Checkout ------
-------------------- */

.checkout {
    background-color: #fff;
}

.checkout-content {
    margin-bottom: 70px;
    padding: 45px 30px 15px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
    border-radius: 5px;
}

.checkout-content .form-control {
    border: none;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
}

@media (max-width: 767px) {
    .checkout-content {
        padding: 5px 0;
    }
}


/* ------ Checkout nav ------ */

.checkout-nav {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin-bottom: 10px;
    margin-top: 50px;
}

.checkout-row {
    display: flex;
    justify-content: space-around;
}

.checkout-nav-item {
    text-align: center;
    color: #999;
    padding: 20px 20px 0;
    font-weight: 600;
    font-size: 1.8em;
    vertical-align: middle;
    text-decoration: none !important;
}

.checkout-nav-item.active {
    color: #c92820;
}

.checkout-items-holder {
    padding: 0 30px;
}

@media (max-width: 991.98px) {
    .checkout-nav {
        margin-bottom: 16px;
        margin-top: 16px;
    }
    .checkout-row {
        justify-content: space-between;
    }
    .checkout-nav-item {
        font-size: 1em;
        padding: 10px;
        line-height: 1.2;
        font-weight: 400;
        color: #555;
        flex-grow: 1;
        flex-basis: 33.333%;
    }
    .checkout-nav-item>span {
        display: block;
        font-size: 1.2em;
        width: 1.8em;
        height: 1.8em;
        line-height: 1.8;
        margin: 0 auto 5px;
        border-radius: 100%;
        background-color: #fcfcfc;
        color: #333;
    }
    .checkout-nav-item.active>span {
        background-color: #ca271e;
        color: #fcfcfc;
    }
    .checkout-items-holder {
        padding: 0 15px;
    }
    .checkout-total-col {
        text-align: right;
        padding-right: 30px;
    }
}

@media (max-width: 550px) {
    .checkout-total-col {
        text-align: center;
        padding: 0;
    }
}

@media (min-width: 800px) {
    .to-pay-divider {
        display: none;
    }
}


/* ------ Checkout items ------ */

.checkout-description {
    padding: 0 10px;
    font-weight: 600;
    font-size: 1.1em;
}

.checkout-items-list {
    margin: 20px 0;
}

.checkout-item {
    padding: 10px 10px 5px;
    border: 1px solid #c6c6c6;
    border-radius: 3px;
    margin-bottom: 5px;
    position: relative;
}

.checkout-item a {
    text-decoration: none;
}

.checkout-item>div {
    min-height: 2em;
    line-height: 2.5em;
    vertical-align: middle;
}

.cart-intro-headline {
    color: #c92820;
    margin: 0;
    font-size: 1.2em;
    line-height: 2.1em;
}

.item-count-input {
    border: none;
    border-top: 1px solid #d0d9e8;
    border-bottom: 1px solid #d0d9e8;
    width: 4em;
    height: 1.9em;
    line-height: 1.7em;
    padding: 0;
    text-align: center;
    float: left;
    transition: border-color .3s ease-in-out;
}

.item-count-input:focus {
    outline: none;
    border-bottom-color: #ca271e;
}

.cart-item .checkout-amount {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
    top: 4px;
}

.cart-price,
.m-b-top {
    white-space: nowrap;
}

.cart-btn-delete {
    border: none;
    color: #000;
    border-radius: 100%;
    background-color: #fff;
    padding: 0;
    height: 1.2em;
    width: 1.2em;
    font-weight: 500;
    font-size: 1.3em;
    line-height: 1.3;
    margin-top: -3px;
}

.cart-btn-delete:hover {
    text-decoration: none;
    color: red;
}

@media (min-width: 768px) {
    .mobile-cart-label {
        display: none;
    }
}

@media (max-width: 767px) {
    .checkout-items-list {
        padding: 5px 10px;
        margin: 20px 0 10px;
    }
    .checkout-description {
        display: none;
    }
    .checkout-item {
        padding: 10px 10px 0 10px;
    }
    .checkout-item .m-b-top {
        border-top: 1px solid #ccc;
        height: 7.5rem;
        text-align: center;
    }
    .cart-btn-delete-holder {
        position: absolute;
        top: 8px;
        right: 10px;
    }
    .mobile-cart-label {
        display: block;
        line-height: 1;
        margin-top: 15px;
        color: #888;
    }
    .cart-price {
        font-weight: 500;
    }
}

@media (max-width: 519px) {
    .m-b-top {
        width: 50%;
    }
}


/* ------ Checkout price ------ */

.checkout-total-price {
    font-size: 1.5em;
    padding: 35px 15px;
    font-weight: 500;
    text-align: right;
}

.checkout-total-price small {
    font-weight: 300;
}

.cart-total-price {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .checkout-total-price {
        padding: 4px 15px 16px;
    }
}


/* ------ Checkout actions ------ */

.checkout-actions {
    padding: 15px 15px 20px;
    line-height: 34px;
}

.checkout-shipping-actions {
    padding: 20px 30px;
    line-height: 34px;
    border-top: 1px solid #c6c6c6;
    border: none;
}

.shortage-info {
    color: #999;
    font-weight: 600;
}

.sale-progress-bar {
    height: 12px;
    border-radius: 5px;
    background-color: #c6c6c6;
    max-width: 250px;
    margin: 0 auto;
}

.sale-progress-bar>div {
    height: 12px;
    border-radius: 5px;
    max-width: 100%;
    background-color: #ca271e;
}

.checkout-actions .btn {
    margin-top: 7px;
}

.btn-cart-back {
    color: #999;
}

.btn-cart-back:hover {
    color: #555;
}

@media (max-width: 767px) {
    .checkout-actions,
    .checkout-actions .text-right,
    .checkout-shipping-actions,
    .checkout-shipping-actions .text-right {
        text-align: center;
    }
    .btn-cart-back {
        font-size: .9em;
        margin-top: 15px;
    }
}


/* ------ Checkout shipping ------ */

.shipping-payment {
    padding: 0 30px;
}

@media (min-width: 768px) {
    .summary-holder {
        padding: 0 30px 0 0;
    }
}

@media (min-width: 992px) {
    .terms-check {
        padding-top: 20px;
    }
}

.summary-holder>div {
    line-height: 1.5;
    background-color: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
    padding: 15px 20px;
    border-radius: 3px;
}

.terms-check {
    padding-bottom: 20px;
}

.summary-table {
    width: 100%;
}

.summary-table td {
    padding: 5px;
}

.summary-table hr {
    margin: 5px 0;
}

.summary-total-price {
    font-size: 1.3em;
    font-weight: 600;
}

.radio-option {
    line-height: 1;
    margin-top: 5px;
}

.radio-option>label {
    width: 100%;
    padding: 10px 15px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
    border-radius: 3px;
    margin: 0;
}

.radio-option input {
    margin: 0;
}

.shipping-payment-holder {
    padding-bottom: 40px;
}

.shipping-payment-headline {
    margin-top: 0;
}

.summary-item {
    display: table;
    width: 100%;
}

.summary-item>div {
    display: table-cell;
}

@media (max-width: 991px) {
    .shipping-payment,
    .m-ts15,
    .summary-holder {
        padding: 0 30px;
    }
    .summary-holder {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .shipping-payment,
    .summary-holder {
        padding: 15px;
    }
    .m-ts15 {
        padding: 0 15px;
        margin-bottom: 0
    }
    .summary-holder {
        margin-bottom: 30px;
    }
    .shipping-payment-headline {
        font-size: 1.3em;
        font-weight: 500;
    }
}


/* ------ Contact info ------ */

.contact-info {
    padding: 0 28px 0 0;
}

.personal-info-box {
    line-height: 1;
    margin: -15px 0;
}

.personal-info-box select.form-control {
    border: none;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
}

.half-width {
    width: 48%;
    display: inline-block;
}

.half-width:nth-of-type(even) {
    float: right;
}

@media (max-width: 991.98px) {
    .contact-info {
        padding: 0 0 32px;
    }
}

@media (max-width: 550px) {
    .half-width {
        width: 100%;
        float: none !important;
    }
    .personal-info-box {
        padding: 0;
    }
}


/* -------------------
-------- Items --------
-------------------- */

.categories {
    color: #fff;
    border-radius: 3px;
    margin-bottom: 10px;
    background-color: #ca271e;
    overflow: hidden;
}

.categories input[type="radio"]+label {
    color: #f6f6f6;
    display: flex;
    padding: 7px 10px 7px 30px;
}

.categories input[type="radio"]+label:before {
    display: none;
}

.categories input[type="radio"]+label:after {
    display: none;
}

.label-checkbox {
    position: relative;
    margin: .5em 0em .5em 0;
    font-family: Arial, sans-serif;
    line-height: 135%;
    cursor: pointer;
    font-weight: 300;
    font-size: 0.9em;
    text-transform: uppercase;
    padding-left: 2em;
    margin-bottom: 2em;
}

.label-checkbox>span {
    margin-top: -1em;
    text-align: left !important;
    display: block;
}

.checkbox {
    float: left;
    position: relative;
    top: -0.375em;
    left: -2em;
    margin: 0 -1em 0 0 !important;
    cursor: pointer;
    outline: none !important;
    display: inline-block;
}

.checkbox-lighter {
    text-align: center;
}

.checkbox:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
    -ms-transform: rotate(-45deg) scale(0, 0);
    transform: rotate(-45deg) scale(0, 0);
    content: "";
    position: absolute;
    left: 0.25em;
    top: 0.3em;
    z-index: 1;
    width: .8em;
    height: 0.45em;
    border: 3px solid #fff;
    border-top-style: none;
    border-right-style: none;
}

.checkbox:checked:before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    -ms-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
}

.checkbox-lighter .checkbox:before {
    border-color: #c92820;
}

.checkbox:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1.3em;
    height: 1.3em;
    background: #ca271e;
    border: 1px solid #fff;
    border-radius: 3px;
    cursor: pointer;
}

.checkbox-lighter .checkbox:after {
    background: #fff;
    border-color: #c92820;
}

.categories-headline {
    font-size: 1.2em;
    padding: 15px 20px;
    margin-bottom: 7px;
    margin: 0;
    background-color: #952323;
    border-radius: 3px 3px 0 0;
}

.categories-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.categories-links a {
    color: #f6f6f6;
    padding: 5px 10px 5px 3px;
    display: table;
    font-size: 1.1em;
}

.categories-links i {
    display: table-cell;
    width: 20px;
}

.categories-links a:hover {
    text-decoration: none;
    color: #fff;
}

.products {
    background-color: #fff;
    padding: 0 0 30px;
}

.products-filters {
    min-height: 20px;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #eee;
    border-right: none;
    line-height: 1;
}

.filter-button {
    padding: 13px 15px 12px !important;
    border: none;
    border: 1px solid #eee;
    float: left;
    background: transparent;
    margin: -1px 0 -1px -1px;
}

.filter-button::after,
.filter-button::before {
    opacity: 0 !important;
}

.filter-input:checked+.filter-button {
    background-color: #d0d9e8;
    color: #fff;
    text-shadow: 0 0 5px #9a9a9a;
}

.visible-count {
    color: #999;
    top: -1px;
    position: relative;
    line-height: 42px;
}

.visible-count>span {
    color: #000;
}

.filter-next-button {
    padding: 7px 10px 7px 15px;
    margin: 7px 7px 0;
    border: 1px solid #c6c6c6;
    background: transparent;
    color: #ca271e;
    line-height: 42px;
    text-decoration: none !important;
}

.info-category {
    font-weight: 400;
    margin: 0 0 5px;
}

.info-category>* {
    color: #ca271e;
    text-decoration: underline;
    font-weight: 400;
    margin: 0;
    font-size: .8em;
}

.product-detail-headline {
    color: #000;
}

.product-detail-headline:hover {
    text-decoration: none;
    color: #333;
}

.product-detail-headline>h3 {
    margin-top: 0;
    font-weight: 600;
    margin-bottom: -5px;
    min-height: 3.9em;
    line-height: 1.2;
    font-size: 18px;
}

@media (min-width: 768px) {
    .products-holder {
        padding: 30px 20px 0;
    }
    .search-results-headline {
        padding: 0 20px;
    }
    .page-content {
        padding-top: 30px;
    }
}

.product-item {
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .075);
    transition: transform .3s ease-in-out;
}

.product-item:hover {
    transform: scale(1.075);
}

.item-img-holder {
    display: block;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 5px 5px 0 0;
}

.product-info {
    padding: 15px;
    background-color: #fcfcfc;
    text-align: center;
    border-radius: 0 0 5px 5px;
}

.product-info hr {
    margin-top: 15px;
    margin-bottom: 15px;
}

.item-actions {
    display: table;
    width: 100%;
}

.item-actions>div {
    display: table-cell;
    vertical-align: middle;
}

.item-prices {
    line-height: 1.2;
    text-align: left;
}

.actual-price {
    font-size: 1em;
    font-weight: 600;
    color: #ca271e;
}

.actual-price>small {
    color: #969696;
    font-size: .6em
}

.prev-price-empty {
    display: block;
    height: 17px;
    width: 5px;
}

.products-count {
    line-height: 1;
}

@media (max-width: 991px) {
    .checkbox-lighter {
        width: 100%;
    }
    .categories {
        margin: 20px 0;
        padding: 0;
        background-color: #fff;
    }
    .categories label,
    .categories a {
        color: #333;
    }
    .categories .category.active label {
        color: #ffffff;
    }
    .categories-headline {
        padding: 15px 20px;
        width: 100%;
        margin: 0;
        border: 1px solid #ca271e;
        transition: all .6s ease-in-out;
        cursor: pointer;
    }
    .categories-headline::after {
        content: '\e05b';
        font-family: 'ElegantIcons';
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        float: right;
    }
    .categories ul {
        max-height: 0;
        overflow: hidden;
        transition: all .6s ease-in-out;
        border: 0 solid transparent;
        margin-top: -1px;
    }
    .categories.categories-revealed ul {
        max-height: 600px;
        border: 1px solid #ca271e;
    }
    .categories.categories-revealed .categories-headline {
        background-color: #ca271e;
        color: #fff;
    }
    .categories.categories-revealed .categories-headline::after {
        content: '\e05c';
    }
    .products-filters {
        margin: 0;
    }
    .products-holder {
        padding: 35px 15px 0;
    }
}

@media (min-width: 768px) {
    .products-count {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .products {
        padding: 0;
    }
    .bg-grey .products {
        background-color: #e4e4e4;
    }
    .products-holder {
        padding: 0 15px;
    }
    .products-filters {
        margin-left: 0;
        margin-right: 0;
        /* hotfix */
        display: none;
    }
    .products-count,
    .products-count .text-right {
        text-align: center;
    }
    .search-results-headline {
        padding: 0 15px;
    }
}


/* -------------------
--- Product detail ---
-------------------- */

.breadcrumbs-holder {
    padding: 0;
}

.breadcrumbs {
    display: inline-block;
    padding-left: 0;
    margin-bottom: 0;
}

.breadcrumbs>li {
    display: inline-block;
}

.breadcrumbs>li>a {
    color: #ca271e;
    border-bottom: 1px dashed #ca271e;
}

.breadcrumbs-holder a:hover {
    text-decoration: none;
    border-bottom-style: solid;
}

.back-button-holder {
    float: right;
}

.back-button-holder a {
    color: #ca271e;
    border-bottom: 1px dashed #ca271e;
}

.back-button-holder i {
    position: relative;
    top: 2px;
}

.product-info-holder {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
    padding: 28px 24px;
}

.detail-smaller-divider {
    border-style: dashed;
    border-color: #999;
    width: 33%;
    margin-left: 0;
}

.detail-bigger-divider {
    border-style: dashed;
    border-color: #999;
    width: 66%;
    margin-left: 0;
}

.product-detail {
    padding: 40px 0;
    margin-top: 10px;
}

.product-img {
    cursor: zoom-in;
}

.product-img img {
    width: 100%;
}

.product-img-lightbox {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

.product-img-lightbox-bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .9);
    top: 0;
    left: 0;
    z-index: 999;
}

.product-img-lightbox>img {
    position: relative;
    margin: 10vh auto;
    max-height: 80vh;
    max-width: 600px;
    z-index: 1999;
}

.product-img-lightbox>button {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    color: #fff;
    font-size: 3em;
    line-height: 1;
    font-weight: 600;
    border: none;
    z-index: 999;
}

.product-img-lightbox.revealed {
    display: block;
}

.product-headline {
    margin: 0;
    color: #000;
    font-weight: 500;
}

.product-category {
    margin: 0 0 1rem;
    font-size: 1em;
    color: #ca271e;
    font-weight: 400;
}

.product-buy-info {
    width: 100%;
    border: 1px solid #c6c6c6;
    padding: 10px 20px 15px;
    margin-bottom: 30px;
}

.product-buy-info>h5 {
    color: #666;
    font-weight: 400;
    margin-bottom: 5px;
    margin-top: 5px;
}

.product-desc img {
    max-width: 100%;
    height: auto !important;
}

.product-upsell {
    padding-bottom: 40px;
}

@media (min-width: 1200px) {
    .product-upsell .col-lg-4.col-sm-6.col-xs-12:last-child {
        display: none;
    }
}

.upsell-headline {
    border-top: 1px dashed #999;
    margin-bottom: 30px;
    margin-top: 5px;
    padding-top: 35px;
    font-weight: 500;
    color: #333;
}

.amount {
    margin-bottom: 15px;
}

.package {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
}

.price>span {
    display: block;
    line-height: 1.2;
}

.actual-price-detail {
    font-weight: 500;
    color: #ca271e;
    font-size: 2em;
    white-space: nowrap;
}

.actual-price-detail>small {
    font-size: 60%;
    letter-spacing: 3px;
}

.amount>button {
    border: none;
    background-color: #d0d9e8;
    color: #fff;
    height: 1.3em;
    line-height: 1;
    font-size: 1.5em;
    text-align: center;
    width: 1.5em;
    float: left;
    outline: none;
}

.amount>button:hover {
    background-color: #ca271e;
}

.fire-indicator {
    padding-top: 12px;
    font-size: 1.3em;
}

.fire-icon {
    height: 25px;
    vertical-align: bottom;
    position: relative;
    top: -1px;
}

@media (max-width: 991px) {
    .product-headline {
        margin-top: 15px;
    }
    .add-holder {
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .breadcrumbs {
        display: none;
    }
    .product-detail {
        padding-bottom: 0;
    }
    .back-button-holder {
        float: none;
        text-align: center;
        margin-top: 16px;
    }
}


/* --- Added into cart modal --- */

.modal-product {
    width: 100%;
    padding: 5px 0 25px 0;
}

.modal-header:before,
.modal-header:after {
    display: none;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-confirm {
    background-color: rgba(0, 0, 0, .5);
}

.cart-modal-actions {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
}

.modal-product {
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.modal-product-name {
    line-height: 1.3;
    padding: 0;
    font-size: 1.4em;
    font-weight: 500;
    display: inline-block;
    color: #ca271e;
    margin: 0 0 4px;
}

.modal-product-price {
    color: #333333;
}

.modal-product-img {
    max-height: 80px;
    margin-right: 24px;
}

.modal-product-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 20px;
}

@media (max-width: 767.98px) {
    .modal-product-text {
        vertical-align: top;
    }
    .modal-product-price {
        float: none;
        padding: 0 20px;
    }
}

@media (max-width: 412px) {
    .btn-continue {
        float: none;
        margin-top: 5px;
    }
}

@media (max-width: 767.98px) {
    .cart-modal-actions {
        flex-wrap: wrap-reverse;
    }
    .cart-modal-actions .btn {
        margin: 4px auto;
    }
}


/* -------------------
------ Carousel ------
-------------------- */

.carousel-holder {
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
}

.headline-holder {
    margin-top: 120px;
    margin-bottom: 140px;
}

.headline-holder h1 {
    color: #ca271e;
    max-width: 480px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .carousel-holder {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .headline-holder {
        margin-top: 40px;
        margin-bottom: 50px;
    }
    .headline-holder h1 {
        font-size: 1.95em;
        text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 5px #fff;
    }
}


/* -------------------
-------- Logos --------
-------------------- */

.logos {
    background-color: #fff;
    box-shadow: 0 0 9px 1px #eee;
}

.logos .container-fluid {
    max-width: 1440px;
}

.logos img {
    margin: 0 auto 10px;
    max-height: 42px;
}

.vyhody-img {
    max-height: 80px !important;
    padding-top: 20px;
}

.vyhody-text {
    color: #000;
    font-weight: 600;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .logos {
        display: none;
    }
}


/* -------------------
---- About summary ----
-------------------- */

.about-summary-holder {
    background-image: url("../img/seeds-bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    padding: 30px 0 20px;
    position: relative;
}

.summary-bg-overlay {
    width: 100%;
    height: 70%;
    position: absolute;
    bottom: 0;
    background-color: #fff;
}

.summary-bg-overlay-2 {
    width: 100%;
    height: 30%;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
}

.about-headline {
    color: #fff;
    font-weight: 600;
    font-size: 36px;
    margin-top: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.ribbon-holder {
    position: relative;
}

.fb-ribbon-link {
    display: inline-block;
    margin: 0 auto;
    background-color: #3b5999;
    position: relative;
    padding-top: 20px;
    top: -10px;
    font-size: 2em;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 2px 5px 1px rgba(0, 0, 0, .3);
    transition: all .3s ease-in-out;
}

.fb-ribbon-link>a {
    padding: 14px 15px 10px;
    display: inline-block;
    color: #fff;
    position: relative;
    z-index: 3;
    text-decoration: none;
}

.fb-ribbon-link:hover {
    top: 0;
}

.triangle-with-shadow-left {
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-left: 292px solid #fff;
    border-top: 40px solid #fff;
    border-right: 292px solid transparent;
    border-bottom: 40px solid transparent;
    z-index: 2;
    filter: drop-shadow(-5px 6px 3px rgba(0, 0, 0, .05));
}

.triangle-with-shadow-right {
    width: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-right: 292px solid #fff;
    border-top: 40px solid #fff;
    border-left: 292px solid transparent;
    border-bottom: 40px solid transparent;
    z-index: 2;
    filter: drop-shadow(5px 6px 3px rgba(0, 0, 0, .05));
}

@media (max-width: 767px) {
    .triangle-with-shadow-left,
    .triangle-with-shadow-right {
        border-width: 30px 25vw;
    }
}

.about-summary-holder .about-numbers {
    position: relative;
    background-color: #fff;
    z-index: 2;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, .1);
    padding: 40px 0;
}

.about-number {
    display: block;
    color: #ca271e;
    font-size: 3em;
}

.reference {
    padding: 110px 15px 50px;
    position: relative;
}

.ref-bg {
    position: absolute;
    font-size: 12vw;
    line-height: 1;
    color: #fafafa;
    width: 100%;
    left: 0;
    top: 50%;
    margin-top: -6vw;
}

.reference .carousel-indicators {
    position: static;
    margin: 10px auto 0;
}

.reference .carousel-indicators>li {
    border: 1px solid #9e9e9e;
}

.reference .carousel-indicators>li.active {
    background-color: #cb271e;
}

.reference-img {
    border-radius: 100%;
    width: 100px;
    margin: 0 auto;
}

.reference p {
    margin-top: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.ref-author {
    display: block;
}

@media (min-width: 768px) {
    .about-summary {
        display: table;
        width: 100%;
    }
    .about-summary-col {
        display: table-cell;
        width: 50%;
        background-color: #eee;
        padding: 10px 15% 30px 30px;
    }
}

@media (max-width: 767px) {
    .reference {
        padding-top: 50px;
        padding-bottom: 30px;
    }
}


/* -------------------
-------- Page --------
-------------------- */

.page {
    background-color: #fff;
    margin: 0;
    padding: 60px 0;
    min-height: calc(100vh - 387px);
}

.h1 {
    margin-top: 0;
    margin-bottom: 30px;
}


/* Seedbanks */

.producers-second-row {
    padding-top: 48px;
}

.seedbank-producer {
    border: 1px solid #bbb;
    margin: 20px 0;
    padding: 15px 0;
}

.seedbank-producer:last-child {
    margin-bottom: 0;
}

.seedbank-img {
    margin-top: 10px;
}

.seedbank-headline {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .seedbank-paragraph {
        text-align: justify;
    }
}


/* Cart alerts */

.cart-alert {
    padding: 100px 0;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 388px)
}

.icon-cart-success {
    font-size: 5em;
    color: #20D25C;
    margin-bottom: 25px;
    display: block;
}

.icon-cart-empty {
    font-size: 5em;
    color: #ffc107;
    margin-bottom: 25px;
    display: block;
}


/* -------------------
------- Footer -------
-------------------- */

.footer {
    background-color: #952323;
    color: #fff;
    padding: 15px 30px 5px;
}

.payment-options {
    padding: 15px 30px;
    background-color: #fff;
}

.footer-details {
    background-color: #fff;
    padding: 20px;
    color: #000;
    border-top: 1px solid #cbcbcb;
}

.footer-details h3 {
    font-weight: 600;
    font-size: 1.2em;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer-details>div {
        padding: 0 30px 15px 30px;
    }
    .footer-text>span {
        display: table-cell;
        vertical-align: middle;
    }
}

.footer-details a {
    color: #262626;
}

.footer-details a:hover {
    text-decoration: none;
    color: #952323;
}

.footer-details hr {
    width: 30px;
    margin-left: 0;
    border: none;
    margin: 5px 0 20px;
    height: 2px;
    background-color: #ccc;
}

.footer-details ul {
    list-style: none;
    padding-left: 0;
    line-height: 1.5;
}

.social-link {
    font-size: 2em;
}

@media (max-width: 767px) {
    .footer-details {
        text-align: center;
    }
    .footer-details .col-sm-6:not(:last-child) {
        margin-bottom: 40px;
    }
    .footer-details hr {
        margin: 15px auto;
    }
}

.ui-autocomplete {
    max-height: 300px;
    max-width: 100%;
    /* overflow-y: hidden; prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    z-index: 1000 !important;
}

.cart-hidden {
    display: none !important;
}

.nav-category {
    text-align: left;
    color: white !important;
    font-weight: 500;
}

.nav-link select {
    border: 1px solid #d8d8d8;
    background: white;
    color: black !important
}

.package-price label {
    width: 3em;
    display: inline-block;
}

.color-green * {
    color: #20D25C !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.hide {
    display: none;
}

.selectItem .item,
.container .main .legend .item,
.select2-selection__choice .item,
.select2-selection--single .item,
.select2-container .select2-dropdown .select2-results li .item,
.selectItem .city,
.container .main .legend .selectItem .city,
.selectItem .container .main .legend .city,
.select2-selection__choice .selectItem .city,
.selectItem .select2-selection__choice .city,
.select2-selection--single .selectItem .city,
.selectItem .select2-selection--single .city,
.select2-container .select2-dropdown .select2-results li .selectItem .city,
.selectItem .select2-container .select2-dropdown .select2-results li .city,
.selectItem .container .main .legend .city,
.container .main .legend .selectItem .city,
.container .main .legend .city,
.select2-selection__choice .container .main .legend .city,
.container .main .legend .select2-selection__choice .city,
.select2-selection--single .container .main .legend .city,
.container .main .legend .select2-selection--single .city,
.select2-container .select2-dropdown .select2-results li .container .main .legend .city,
.container .main .legend .select2-container .select2-dropdown .select2-results li .city,
.selectItem .select2-selection__choice .city,
.select2-selection__choice .selectItem .city,
.container .main .legend .select2-selection__choice .city,
.select2-selection__choice .container .main .legend .city,
.select2-selection__choice .city,
.select2-selection--single .select2-selection__choice .city,
.select2-selection__choice .select2-selection--single .city,
.select2-container .select2-dropdown .select2-results li .select2-selection__choice .city,
.select2-selection__choice .select2-container .select2-dropdown .select2-results li .city,
.selectItem .select2-selection--single .city,
.select2-selection--single .selectItem .city,
.container .main .legend .select2-selection--single .city,
.select2-selection--single .container .main .legend .city,
.select2-selection__choice .select2-selection--single .city,
.select2-selection--single .select2-selection__choice .city,
.select2-selection--single .city,
.select2-container .select2-dropdown .select2-results li .select2-selection--single .city,
.select2-selection--single .select2-container .select2-dropdown .select2-results li .city,
.selectItem .select2-container .select2-dropdown .select2-results li .city,
.select2-container .select2-dropdown .select2-results li .selectItem .city,
.container .main .legend .select2-container .select2-dropdown .select2-results li .city,
.select2-container .select2-dropdown .select2-results li .container .main .legend .city,
.select2-selection__choice .select2-container .select2-dropdown .select2-results li .city,
.select2-container .select2-dropdown .select2-results li .select2-selection__choice .city,
.select2-selection--single .select2-container .select2-dropdown .select2-results li .city,
.select2-container .select2-dropdown .select2-results li .select2-selection--single .city,
.select2-container .select2-dropdown .select2-results li .city,
.selectItem .cityPart,
.container .main .legend .selectItem .cityPart,
.selectItem .container .main .legend .cityPart,
.select2-selection__choice .selectItem .cityPart,
.selectItem .select2-selection__choice .cityPart,
.select2-selection--single .selectItem .cityPart,
.selectItem .select2-selection--single .cityPart,
.select2-container .select2-dropdown .select2-results li .selectItem .cityPart,
.selectItem .select2-container .select2-dropdown .select2-results li .cityPart,
.selectItem .container .main .legend .cityPart,
.container .main .legend .selectItem .cityPart,
.container .main .legend .cityPart,
.select2-selection__choice .container .main .legend .cityPart,
.container .main .legend .select2-selection__choice .cityPart,
.select2-selection--single .container .main .legend .cityPart,
.container .main .legend .select2-selection--single .cityPart,
.select2-container .select2-dropdown .select2-results li .container .main .legend .cityPart,
.container .main .legend .select2-container .select2-dropdown .select2-results li .cityPart,
.selectItem .select2-selection__choice .cityPart,
.select2-selection__choice .selectItem .cityPart,
.container .main .legend .select2-selection__choice .cityPart,
.select2-selection__choice .container .main .legend .cityPart,
.select2-selection__choice .cityPart,
.select2-selection--single .select2-selection__choice .cityPart,
.select2-selection__choice .select2-selection--single .cityPart,
.select2-container .select2-dropdown .select2-results li .select2-selection__choice .cityPart,
.select2-selection__choice .select2-container .select2-dropdown .select2-results li .cityPart,
.selectItem .select2-selection--single .cityPart,
.select2-selection--single .selectItem .cityPart,
.container .main .legend .select2-selection--single .cityPart,
.select2-selection--single .container .main .legend .cityPart,
.select2-selection__choice .select2-selection--single .cityPart,
.select2-selection--single .select2-selection__choice .cityPart,
.select2-selection--single .cityPart,
.select2-container .select2-dropdown .select2-results li .select2-selection--single .cityPart,
.select2-selection--single .select2-container .select2-dropdown .select2-results li .cityPart,
.selectItem .select2-container .select2-dropdown .select2-results li .cityPart,
.select2-container .select2-dropdown .select2-results li .selectItem .cityPart,
.container .main .legend .select2-container .select2-dropdown .select2-results li .cityPart,
.select2-container .select2-dropdown .select2-results li .container .main .legend .cityPart,
.select2-selection__choice .select2-container .select2-dropdown .select2-results li .cityPart,
.select2-container .select2-dropdown .select2-results li .select2-selection__choice .cityPart,
.select2-selection--single .select2-container .select2-dropdown .select2-results li .cityPart,
.select2-container .select2-dropdown .select2-results li .select2-selection--single .cityPart,
.select2-container .select2-dropdown .select2-results li .cityPart,
.selectItem .address,
.container .main .legend .selectItem .address,
.selectItem .container .main .legend .address,
.select2-selection__choice .selectItem .address,
.selectItem .select2-selection__choice .address,
.select2-selection--single .selectItem .address,
.selectItem .select2-selection--single .address,
.select2-container .select2-dropdown .select2-results li .selectItem .address,
.selectItem .select2-container .select2-dropdown .select2-results li .address,
.selectItem .container .main .legend .address,
.container .main .legend .selectItem .address,
.container .main .legend .address,
.select2-selection__choice .container .main .legend .address,
.container .main .legend .select2-selection__choice .address,
.select2-selection--single .container .main .legend .address,
.container .main .legend .select2-selection--single .address,
.select2-container .select2-dropdown .select2-results li .container .main .legend .address,
.container .main .legend .select2-container .select2-dropdown .select2-results li .address,
.selectItem .select2-selection__choice .address,
.select2-selection__choice .selectItem .address,
.container .main .legend .select2-selection__choice .address,
.select2-selection__choice .container .main .legend .address,
.select2-selection__choice .address,
.select2-selection--single .select2-selection__choice .address,
.select2-selection__choice .select2-selection--single .address,
.select2-container .select2-dropdown .select2-results li .select2-selection__choice .address,
.select2-selection__choice .select2-container .select2-dropdown .select2-results li .address,
.selectItem .select2-selection--single .address,
.select2-selection--single .selectItem .address,
.container .main .legend .select2-selection--single .address,
.select2-selection--single .container .main .legend .address,
.select2-selection__choice .select2-selection--single .address,
.select2-selection--single .select2-selection__choice .address,
.select2-selection--single .address,
.select2-container .select2-dropdown .select2-results li .select2-selection--single .address,
.select2-selection--single .select2-container .select2-dropdown .select2-results li .address,
.selectItem .select2-container .select2-dropdown .select2-results li .address,
.select2-container .select2-dropdown .select2-results li .selectItem .address,
.container .main .legend .select2-container .select2-dropdown .select2-results li .address,
.select2-container .select2-dropdown .select2-results li .container .main .legend .address,
.select2-selection__choice .select2-container .select2-dropdown .select2-results li .address,
.select2-container .select2-dropdown .select2-results li .select2-selection__choice .address,
.select2-selection--single .select2-container .select2-dropdown .select2-results li .address,
.select2-container .select2-dropdown .select2-results li .select2-selection--single .address,
.select2-container .select2-dropdown .select2-results li .address,
.selectItem .kind,
.container .main .legend .selectItem .kind,
.selectItem .container .main .legend .kind,
.select2-selection__choice .selectItem .kind,
.selectItem .select2-selection__choice .kind,
.select2-selection--single .selectItem .kind,
.selectItem .select2-selection--single .kind,
.select2-container .select2-dropdown .select2-results li .selectItem .kind,
.selectItem .select2-container .select2-dropdown .select2-results li .kind,
.selectItem .container .main .legend .kind,
.container .main .legend .selectItem .kind,
.container .main .legend .kind,
.select2-selection__choice .container .main .legend .kind,
.container .main .legend .select2-selection__choice .kind,
.select2-selection--single .container .main .legend .kind,
.container .main .legend .select2-selection--single .kind,
.select2-container .select2-dropdown .select2-results li .container .main .legend .kind,
.container .main .legend .select2-container .select2-dropdown .select2-results li .kind,
.selectItem .select2-selection__choice .kind,
.select2-selection__choice .selectItem .kind,
.container .main .legend .select2-selection__choice .kind,
.select2-selection__choice .container .main .legend .kind,
.select2-selection__choice .kind,
.select2-selection--single .select2-selection__choice .kind,
.select2-selection__choice .select2-selection--single .kind,
.select2-container .select2-dropdown .select2-results li .select2-selection__choice .kind,
.select2-selection__choice .select2-container .select2-dropdown .select2-results li .kind,
.selectItem .select2-selection--single .kind,
.select2-selection--single .selectItem .kind,
.container .main .legend .select2-selection--single .kind,
.select2-selection--single .container .main .legend .kind,
.select2-selection__choice .select2-selection--single .kind,
.select2-selection--single .select2-selection__choice .kind,
.select2-selection--single .kind,
.select2-container .select2-dropdown .select2-results li .select2-selection--single .kind,
.select2-selection--single .select2-container .select2-dropdown .select2-results li .kind,
.selectItem .select2-container .select2-dropdown .select2-results li .kind,
.select2-container .select2-dropdown .select2-results li .selectItem .kind,
.container .main .legend .select2-container .select2-dropdown .select2-results li .kind,
.select2-container .select2-dropdown .select2-results li .container .main .legend .kind,
.select2-selection__choice .select2-container .select2-dropdown .select2-results li .kind,
.select2-container .select2-dropdown .select2-results li .select2-selection__choice .kind,
.select2-selection--single .select2-container .select2-dropdown .select2-results li .kind,
.select2-container .select2-dropdown .select2-results li .select2-selection--single .kind,
.select2-container .select2-dropdown .select2-results li .kind {
    float: left;
    color: #535353;
    font-size: 10px;
    margin-right: 15px;
    overflow: hidden;
}

.select2-results__option--highlighted {
    color: white !important;
}

.selectItem .city,
.container .main .legend .city,
.select2-selection__choice .city,
.select2-selection--single .city,
.select2-container .select2-dropdown .select2-results li .city {
    width: 65px;
}

.selectItem .cityPart,
.container .main .legend .cityPart,
.select2-selection__choice .cityPart,
.select2-selection--single .cityPart,
.select2-container .select2-dropdown .select2-results li .cityPart {
    width: 70px;
}

.selectItem .address,
.container .main .legend .address,
.select2-selection__choice .address,
.select2-selection--single .address,
.select2-container .select2-dropdown .select2-results li .address {
    width: 200px;
}

.select2-results__option {
    height: 40px;
}

.checkout-currency {
    border: none;
    background: none;
    border-bottom: 3px solid black;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.nav-currency {
    background: #eeeeee;
    border: 1px solid #d0d9e8;
    padding: 0 4px;
    color: #171717;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.checkout-currency-cont {
    margin-top: 0.4em;
}

.payment-img img {
    height: 27px;
    margin-top: -7px;
}

.shipping-icon {
    height: 27px;
    margin-left: 10px;
}

.info-tooltip-text {
    display: inline-block;
    padding-left: 4px;
}

.info-tooltip-text a {
    background: none;
    border: 1px solid #B0B0B0;
    border-radius: 1000em;
    width: 15px;
    font-size: 10px;
    height: 15px;
    display: inline-block;
    color: #B0B0B0;
    padding: 4px;
    padding-top: 2px;
    font-weight: 400;
}

.top-flag {
    margin-right: 9px !important;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block !important;
    color: white;
    font-size: 0.8em;
    border: none
}

@media(min-width:900px) {
    .desktop-hide {
        display: none;
    }
}

.categories-reset:hover {
    color: #00BFFE !important;
}

.dropdown-radio-cont {
    margin-left: -1.3em;
}

.dropdown-radio-cont * {
    display: inline-block;
    font-weight: 600;
    vertical-align: top;
    text-transform: capitalize
}

.category-item {
    cursor: pointer;
}

.category-item * {
    display: inline;
    cursor: pointer;
}

.subcategory-item {
    cursor: pointer;
}

.subcategory-item * {
    cursor: pointer;
    text-transform: lowercase
}

.dropdown-dot {
    margin-top: 0em;
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.6em;
    margin-left: 1em;
    display: inline-block;
    position: relative;
    padding: 0.1em;
    border-radius: 10em;
}

.dropdown-container {
    display: none;
}

.category.active .dropdown-container {
    display: block
}

.category.active .dropdown-dot {
    width: 6px;
    height: 6px;
    margin-left: 25px;
    display: inline-block;
    background: white;
}

.dropdown-btn input {
    padding: 10px;
}

.dropdown-label {
    display: block;
    margin-top: -1em;
}


/* On mouse-over */

.dropdown-btn:hover {
    color: #f1f1f1;
}


/* Add an active class to the active dropdown button */

.active {}


/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */

.dropdown-container a {
    margin-left: 2em;
}

.show {
    opacity: 1;
}

#confirm-modal .modal-dialog {
    margin-top: 120px;
}

@media(min-width:768px) {
    .mobile-filters {
        display: none;
    }
}

.category-item {
    cursor: pointer;
    color: #dddddd;
    font-size: 14px;
    width: 100%;
    /* background-color: #464646; */
}

.categories-links:not(:last-child),
.categories-links .category div:not(:last-child) {
    border-bottom: 1px solid #97221c;
}

.category-item-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0;
    cursor: pointer;
    padding: 5px 10px 5px 15px;
}

.active>.category-item,
.category-item:hover {
    color: #ffffff;
    background-color: #b12922;
}

.category-item .category-item-label>i {
    position: relative;
    top: 3px;
    flex-shrink: 0;
}

.show>.category-item .category-item-label>i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    left: -3px;
    top: 5px;
}

.subcategory-item {
    color: #dddddd;
    font-size: 12px;
    width: 100%;
    background-color: #B1292A;
}

.subcategory-item:not(:last-child) {
    border-bottom: 1px solid #302e2f;
}

.subcategory-item-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    cursor: pointer;
    margin-bottom: 0;
    padding: 5px 10px 5px 30px;
}

.subcategory-item input:checked+.subcategory-item-label,
.subcategory-item:hover {
    color: #f1f1f1;
    background-color: #952322;
}

.items-count {
    font-size: 10px;
    margin-left: 5px;
    color: #b3b3b3;
}

.subcategory-item-label>i {
    position: relative;
    top: 3px;
}

.dropdown-container {
    display: none;
}

.category.show .dropdown-container {
    display: block
}

.dropdown-btn input {
    padding: 10px;
}

.dropdown-label {
    display: block;
    margin-top: -1em;
}

.amount-available {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(202, 38, 30, 0.75);
    padding: 4px 9px;
    font-size: .75em;
    line-height: 1.2;
    color: #ffffff;
    border-bottom-right-radius: 5px;
}

.item-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 6px;
}

.info-icon-holder {
    margin-top: 6px;
    position: relative;
}

.info-icon {
    background-color: #363435;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon {
    max-width: 100%;
}

.info-icon-text {
    position: absolute;
    left: 50px;
    top: 6px;
    background-color: #363435;
    color: #dddddd;
    font-size: 12px;
    padding: 3px 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-30px);
    transition: all .3s ease-in-out;
}

.info-icon-text:before {
    display: block;
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    border-left: 12px solid transparent;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #363435;
}

.info-icon-holder:hover>.info-icon+.info-icon-text {
    opacity: 1;
    transform: translateX(0);
}

.product-desc {
    padding: 0 5px;
    margin-bottom: 30px;
}

.product-desc span {
    font-size: 15px !important;
}

.product-characteristic {
    padding: 0 0 5px;
    margin-bottom: 30px;
}

.product-characteristic>h5,
.product-desc>h5 {
    border-bottom: 1px solid #c6c6c6;
    padding-bottom: 10px;
}

.product-characteristic tr td:first-of-type {
    font-weight: 600;
}

@media(max-width: 991.98px) {
    .product-characteristic tr {
        display: flex;
        flex-direction: column;
        line-height: 1.5;
    }
    .product-characteristic tr td:first-of-type {
        text-align: left !important;
    }
    .product-characteristic tr td:nth-child(2) {
        padding-bottom: 7px;
    }
}

@media (max-width: 767.98px) {
    .product-characteristic {
        margin: 32px 0 24px;
        padding: 0;
    }
}

.product-characteristic td {
    padding: 0 0.3em;
    vertical-align: top;
}

.promo-label {
    color: #ffbfc0;
    margin-left: 5px;
    border-radius: 4px;
    background-color: #5e1515;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 7px;
    margin-top: 1px;
    font-weight: 700;
    align-self: flex-start;
    line-height: 1.7;
}

.new-label {
    color: #00BFFE;
    margin-left: 5px;
    border-radius: 4px;
    background-color: #5e1515;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 7px;
    margin-top: 1px;
    font-weight: 700;
    line-height: 1.7;
}

.oneplusone-label {
    color: #B5F800;
    margin-left: 5px;
    border-radius: 4px;
    background-color: #5e1515;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 7px;
    margin-top: 1px;
    font-weight: 700;
    line-height: 1.7;
}


/*

.collapse-partial {
    width: 500px;
    max-width: 100%;
}

.collapse-partial p.collapse[aria-expanded="false"] {
    display: block;
    height: 40px !important;
    overflow: hidden;
}

.collapse-partial p.collapsing[aria-expanded="false"] {
    height: 40px !important;
}

.collapse-partial a.collapsed:after {
    content: '+';
}

.collapse-partial a:not(.collapsed):after {
    content: '-';
}

.collapse-partial .collapse:not(.show) {
    display: block !important;
    height: 100px;
    overflow: hidden;
    margin-bottom: 10px;
}
*/

.product-mini-img {
    height: 30px;
}