/* --------------------------------------------------------
ABCZOO 2020 design CSS
website: https://www.abc-zoo.sk
-----------------------------------------------------------
NAVIGATION:

=FLEX SIZE SYSTEM
=WIDTH AND HEIGHT
=PADDING
=MARGIN
=FONT SIZE
=FONT WEIGHT
=BACKGROUNDS AND COLORS
=BUTTONS

=TOP BAR
=HEADER
=LEFT SIDEBAR
=SIDEBAR SALES
=PRODUCTS LIST
=TAB
=SLIDER
=SKEW
=AWARDS
=NEWSLETTER
=FOOTER

------------------------------------------------------------*/
/*
* {
    -webkit-transition: all 0.2s ease;.nav-item a
    -moz-transition:    all 0.2s ease;
    -ms-transition:     all 0.2s ease;
    -o-transition:      all 0.2s ease;
}
*/
:root {
    --primary: #1d9001;
    --gray: #ddd;
    --black: #2E2E2E;
    --secondary: #ff7c00;
    --success: #4CAF50;
    --soft-success: #EBFFE7;
    --danger: #fd0002;
    --soft-danger: #ffeaea;
    --soft-secondary: #fff7ef;
    --soft-secondary: #fff7ef;
    --subgreen: #0f4f00;
    --lightorange: #FFAB66;
    --lightblack: #4e4e4e;
    --lightgreen: #90BF80;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.blog-search-bar {
    width: 100%;
    max-width: 600px;
    position: relative;
    text-align: center;
}

.blog-search-bar-results {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 600px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    padding: 0 15px 15px 15px;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
}

.blog-search-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.blog-search-bar-results-container {
    display: flex;
    justify-content: space-between;
}

.blog-search-bar-categories {
    width: 30%;
}

.blog-search-bar-articles {
    width: 65%;
}

.blog-search-bar-articles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-search-bar-article-box {
    width: 45%;
    padding: 10px;
    border: 1px solid #eee;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.blog-search-bar-article-box a {
    text-decoration: none;
    color: #333;
}

.blog-search-bar-thumbnail {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.blog-search-bar-article-name {
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
}

.blog-search-bar-categories h3,
.blog-search-bar-articles h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-search-bar-result-item {
    padding: 5px;
    border-bottom: 1px solid #eee;
}

.blog-search-bar-result-item a {
    text-decoration: none;
    color: black;
}

.blog-search-bar-result-item:hover {
    background-color: #f0f0f0;
}

.blog-search-bar-result-name {
    font-size: 14px;
}

.blog-search-bar input#blog_search_bar_input {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    border: 1px solid #ffe4cb;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(255, 123, 0, 0.158);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-search-bar input#blog_search_bar_input::placeholder {
    color: #aaa;
}

.blog-search-bar input#blog_search_bar_input:hover {
    border-color: #4CAF50;
}

.blog-search-bar input#blog_search_bar_input:focus {
    border-color: #4CAF50;
    box-shadow: 0px 2px 8px rgba(76, 175, 80, 0.3);
}

.blog-search-bar-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.2s;
}

.blog-search-bar-close-btn:hover {
    color: #4CAF50;
}

.blog-search-bar-no-results {
    color: #888;
    font-style: italic;
    opacity: 0.6;
    padding: 10px 0;
    text-align: center;
}

.blog-search-bar-container {
    margin: 20px 0 35px 0;
}
#autocomplete-results {
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ccc;
}
#autocomplete-results li {
    padding: 10px;
    cursor: pointer;
}
#autocomplete-results li:hover {
    background: #f0f0f0;
}
.dropdown-item {
    padding: 10px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

html,
body,
button,
input,
select,
textarea {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

input,
button,
select {
    outline: none;
}

/* ----- FLEX SIZE SYSTEM --------------------------*/

.d-flex {
    display: flex;
}

.d-i-flex {
    display: inline-flex;
}

.d-block {
    display: block;
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}

.row {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

.row-reverse {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row-reverse;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

.col {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
}

.col-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
}

.col-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
}

.col-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
}

.col-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
}

.col-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
}

.col-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
}

.col-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.col-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
}

.col-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
}

.col-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

/* ----- END FLEX ----------------------------------*/

/* ----- WIDTH AND HEIGHT --------------------------*/
.w-10 {
    width: 10%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.w-100 {
    width: 100%;
}

.w-100i {
    width: 100% !important;
}

.w-auto {
    width: auto;
}

.w-autoi {
    width: auto !important;
}

.w-20px {
    width: 20px;
}

.w-navafter {
    width: calc(100% - 45px);
}

.h-1px {
    height: 1px;
}

.h-10 {
    height: 10%;
}

.h-20 {
    height: 20%;
}

.h-30 {
    height: 30%;
}

.h-40 {
    height: 40%;
}

.h-50 {
    height: 50%;
}

.h-60 {
    height: 60%;
}

.h-70 {
    height: 70%;
}

.h-80 {
    height: 80%;
}

.h-90 {
    height: 90%;
}

.h-100 {
    height: 100%;
}

.h-100i {
    height: 100% !important;
}

.h-auto {
    height: auto;
}

.mh-inherit {
    min-height: inherit;
}

.h-15px {
    height: 15px;
}

.h-25px {
    height: 25px;
}

.h-50px {
    height: 50px;
}

.h-70px {
    height: 70px;
}

.h-140px {
    height: 140px;
}


/* ----- END SIZE ----------------------------------*/

/* ----- PADDING -----------------------------------*/
/*
ph = padding horizontal / left + right
pv = padding vertical  / top + bottom
p  = padding
pl = padding left
pr = padding right
pb = padding bottom
pt = padding top
*/
.ph-0 {
    padding-left: 0;
    padding-right: 0;
}

.ph-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.ph-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.ph-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.ph-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.ph-25 {
    padding-left: 25px;
    padding-right: 25px;
}

.ph-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.ph-50 {
    padding-left: 50px;
    padding-right: 50px;
}

.pv-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.pv-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.pv-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.pv-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.pv-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.pv-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.pv-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.pv-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.p-0 {
    padding: 0 !important;
}

.p-5 {
    padding: 5px;
}

.p-10 {
    padding: 10px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.p-25 {
    padding: 25px;
}

.p-30 {
    padding: 30px;
}

.p-50 {
    padding: 50px;
}

.pr-0 {
    padding-right: 0;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-50 {
    padding-right: 50px;
}

.pl-0 {
    padding-left: 0;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-50 {
    padding-left: 50px;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 1px;
}

.pt-2 {
    padding-top: 2px;
}

.pt-3 {
    padding-top: 3px;
}

.pt-4 {
    padding-top: 4px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 1px;
}

.pb-2 {
    padding-bottom: 2px;
}

.pb-3 {
    padding-bottom: 3px;
}

.pb-4 {
    padding-bottom: 4px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

/* ----- END PADDING -------------------------------*/

/* ----- MARGIN ------------------------------------*/
/*
m  = margin
mv = margin vertical / top + bottom
mh = margin horizontal / left + right
ml = margin left
mr = margin right
mt = margin top
mb = margin bottom
*/


.mh-auto {
    margin-left: auto;
    margin-right: auto;
}

.mh-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mv-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mv-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mv-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.m-auto {
    margin: auto;
}

.m-0 {
    margin: 0 !important;
}

.m-5 {
    margin: 5px;
}

.m-10 {
    margin: 10px;
}

.m-15 {
    margin: 15px;
}

.m-20 {
    margin: 20px;
}

.m-25 {
    margin: 25px;
}

.m-30 {
    margin: 30px;
}

.m-50 {
    margin: 50px;
}

.mr-auto {
    margin-right: auto;
}

.mr-0 {
    margin-right: 0;
}

.mr-2 {
    margin-right: 2px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-50 {
    margin-right: 50px;
}

.ml-auto {
    margin-left: auto;
}

.ml-0 {
    margin-left: 0;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-50 {
    margin-left: 50px;
}

.mt-10p {
    margin-top: 10%;
}

.mt-50p {
    margin-top: 50%;
}

.mt-90p {
    margin-top: 90%;
}

.mt-100p {
    margin-top: 100%;
}

.mt-auto {
    margin-top: auto;
}

.mt-0 {
    margin-top: 0;
}

.mt-5 {
    margin-top: 5px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-auto {
    margin-bottom: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* ----- END MARGIN --------------------------------*/

/* ----- NEW BTN ---------------------------------*/
.btn-new {
    padding: 7px 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 14px;
    overflow: hidden;
    width: auto;
    border: none;
}

/* ----- FONT SIZE ---------------------------------*/
.fs-9 {
    font-size: 9px
}

.fs-10 {
    font-size: 10px
}

.fs-10i {
    font-size: 10px !important
}

.fs-11 {
    font-size: 11px
}

.fs-12 {
    font-size: 12px
}

.fs-12i {
    font-size: 12px !important
}

.fs-13 {
    font-size: 13px
}

.fs-14 {
    font-size: 14px
}

.fs-14i {
    font-size: 14px !important
}

.fs-16 {
    font-size: 16px
}

.fs-18 {
    font-size: 18px
}

.fs-20 {
    font-size: 20px
}

.fs-22 {
    font-size: 22px
}

.fs-24 {
    font-size: 24px
}

.fs-26 {
    font-size: 26px
}

.fs-28 {
    font-size: 28px
}

.fs-30 {
    font-size: 30px
}

.fs-32 {
    font-size: 32px
}

.fs-36 {
    font-size: 33px
}

.fs-40 {
    font-size: 40px
}

/* ----- END FONT SIZE -----------------------------*/

/* ----- FONT WEIGHT -------------------------------*/
.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/* ----- END FONT WEIGHT ---------------------------*/

/* ----- BACKGROUNDS AND COLORS --------------------*/
.bg-orange {
    background-color: #ff7c00 !important;
}

.bg-lightsuccess {
    background-color: var(--soft-success) !important;
}

.bg-success {
    background-color: var(--success) !important;
}

.bg-lightorange {
    background-color: #fff7ef !important;
}

.bg-secondary-light {
    background-color: #fff7ef;
}

.bg-green {
    background-color: #1d9001 !important;
}

.bg-subgreen {
    background-color: #0f4f00 !important;
}

.bg-whitegreen {
    background-color: #F8FFF2 !important;
}

.bg-yellow {
    background-color: #ffd900 !important;
}

.bg-red {
    background-color: #fd0002 !important;
}

.bg-lightred {
    background-color: #ffeaea !important;
}

.bg-white {
    background-color: #FFFFFF !important;
}

.bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-black-transparent {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-black {
    background: black !important;
}

.bg-gray {
    background-color: #f8f8f8;
    /*#e6e6e6;*/
}

.bg-softgray {
    background-color: #f8f8f8;
    /*#e6e6e6;*/
}

.bg-subgray {
    background-color: #d4d4d4 !important;
}

.bg-darkgray {
    background-color: #999 !important;
}

.bg-blue {
    background-color: #0B7BAD !important;
}

.bg-lightgray {
    background-color: #EBEBEB !important;
}

.bg-none {
    background: none !important
}

.bg-lightgreen {
    background-color: #699000;
}

.bg-forest {
    background-color: #7F820C !important;
}

.bg-brown {
    background-color: #906801 !important;
}

.bg-darkyellow {
    background-color: #D6C000 !important;
}

.bg-orange-behind:before,
.bg-orange-behind:after {
    background-color: #ff7c00 !important;
}

.bg-green-behind:before,
.bg-green-behind:after {
    background-color: #1d9001 !important;
}

.bg-subgreen-behind:before,
.bg-subgreen-behind:after {
    background-color: #0f4f00 !important;
}

.bg-yellow-behind:before,
.bg-yellow-behind:after {
    background-color: #ffd900 !important;
}

.bg-red-behind:before,
.bg-red-behind:after {
    background-color: #fd0002 !important;
}

.bg-white-behind:before,
.bg-white-behind:after {
    background-color: #FFFFFF !important;
}

.arrow-up {
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #2f2f2f;
}

.bg-soft-danger {
    background-color: var(--soft-danger);
}

.bg-soft-blue {
    background-color: #f4f8fe;
}

/*POZNAMKA*/
/*toto asi pojde prec */
[class*="bg-"]:before,
[class*="bg-"]:after {
    background-color: inherit;
}

.flex-grow {
    /* flex: 1 0 auto; */
    flex-grow: 1;
}

/*POZNAMKA*/
/*text white zamenit na color-white*/
.text-white {
    color: #ffffff !important;
}

.color-subblack {
    color: #2b2b2b;
}

.color-black {
    color: black;
}

.icon-force-black {
  color: #2b2b2b !important;
  filter: none !important;
  font-weight: normal !important;
  opacity: 1 !important;
}

.color-green {
    color: #1D9001;
}

.color-subgreen {
    color: #0f4f00;
}

.color-lightgray {
    color: #ddd;
}

.color-white {
    color: #ffffff;
}

.color-gray {
    color: #808080;
}

.color-red {
    color: #fd0002;
}

.color-orange {
    color: #ff7c00;
}

.color-blue {
    color: #0B7BAD;
}

.color-primary {
    color: var(--primary);
}

.color-success {
    color: var(--success);
}

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

/* ----- END BACKGROUNDS AND COLORS ----------------*/
/* ----- BUTTONS -----------------------------------*/
.btn {
    border-radius: 2.5px;
    border: none;
    color: white;

    position: relative;
    display: inline-flex;
    /*  background-color: #ddd;*/
}

.btn-icon {
    padding-right: 7px;
}

/* novy button ktory sa bude pouzivat, nie ten stary kod */

.btn-blue {
    background-color: #0B7BAD;
    color: white;
}

.btn-lightgreen {
    background-color: #699000;
    color: white;
}

.btn-darkyellow {
    background-color: #D6C000;
    color: white;
}

.btn-brown {
    background-color: #906801;
    color: white;
}

.btn-forest {
    background: #7F820C;
    color: white;
}

.btn-new.btn-bold {
    font-weight: 600;
}

.side-banner-text+.btn-new {
    margin-top: 20px;
}

.btn-black {
    background-color: black;
    color: white;
    text-transform: uppercase;
}

.btn-black:hover {
    background-color: #3f3f3f;
    cursor: pointer;
}

.btn-new:hover {
    cursor: pointer;
}

.btn-new.btn-orange:hover {
    background-color: #ffa24b;
}

.btn-new.btn-green:hover {
    background-color: #3d9c26;
}

.btn-new.btn-darkyellow:hover {
    background-color: #d8cc5d;
}

.btn-new.btn-forest:hover {
    background: #9b9f29;
}

.btn-brown:hover {
    background-color: #a17f28;
    color: white;
}

/*POZNAMKA*/
/*toto tu troska este prejdem aby vsetky ikonky boli pokope alebo nahradime velkosti h-30px a pod*/
.abc-icon {
    height: 30px;
    position: relative;
    z-index: 1;

}

.abc-icon.icon-status {
    height: 20px;
}

.top-bar .abc-icon {
    height: 40px;
}

.top-bar .abc-icon.icon-basket {
    height: 30px;
}

.btn-abc span {
    position: relative;
    display: flex;
}

.header-link-icon {
    z-index: 1;
    position: relative;
    color: #0f4f00;
    background-color: white;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}


.btn-abc:before {
    content: "";
    position: absolute;
    width: 25px;
    height: 100%;
    left: -10px;
    top: 0;
    transform: skewX(20deg);
    border-radius: 5px;


}

/* ----- END BUTTONS -------------------------------*/
/* ----- ESTE NEZARADENE ---------------------------*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.btn:hover {
    cursor: pointer;
}

.set a:hover {
    color: #ff7c00 !important;
    text-decoration: underline;
}

.plus,
.minus {
    background: #fff;
}

.plus:hover,
.minus:hover {
    cursor: pointer;
    background: #f1f1f1;
}

.mt-15p {
    margin-top: 15%;
}

.mw-300px {
    min-width: 300px;
}

.w-300px {
    width: 300px;
}

.mw-50px {
    min-width: 50px;
}

.w-25px {
    width: 25px;
}

.w-50px {
    width: 50px;
}

.w-80px {
    width: 80px;
}

.vh15 {
    height: 15vh;
}

.t--24 {
    top: -24px;
}

.l--15 {
    left: -15px;
}

.slider-navigation {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 15%;
    background: linear-gradient(0deg, #00000075, transparent);
}

.slider-navigation .slider-navigation-item:hover {
    cursor: pointer;
}

.slider-navigation-item {
    position: relative;
    z-index: 1;
}

.slider-navigation .slider-navigation-item:hover {
    opacity: 1;
}

.responsive-table {

    border-collapse: collapse;
    margin: 0;
    padding: 0;
    table-layout: fixed;
    width: 100%;
    border-radius: 5px;
}

.h-20p {
    height: 20px;
}

.responsive-table tr {
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    padding: .35em;
}

.responsive-table th,
.responsive-table td {
    padding: .625em;
    text-align: center;
}

.profile-link .profile-icon {
    height: 110px;
}

.profile-link:hover {
    opacity: 0.7 !important;
}

.profile-links .profile-link {
    border: 1px solid #ddd;
    border-radius: 10px;
}

/* Banner styles */
.custom-banner {
    overflow: visible;
    position: relative;
    border-radius: 15px 15px 0 0;
}

.banner-background {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%), url('https://abc-zoo.sk/modules/loyalty_v2/img/banner_loyalty_v2_products.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px 15px 0 0;
    position: relative;
    height: 100%;
    width: 100%;
    margin-top: 35px;
}

/* Content inside the banner */
.content {
    align-items: center;
}

.dog-image {
    flex-shrink: 0;
    /* margin-right: 20px; */
}

.dog-image img {
    max-width: 120px;
    position: relative;
    top: -30px;
}

.centered-text {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner-title {
    margin: 0;
    line-height: 1;
    padding-bottom: 3px;
    color: white;
}

/* Category view styles */
.category-view {
    position: relative;
    margin-top: 20px;
    border-radius: 5px;
}

.subcategories {
    position: relative;
    /* top: -50px; */
}

.blog-sidebar-products {
    margin-top: 20px;
    padding: 10px;
}

.blog-sidebar-products-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
}

.blog-sidebar-product {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    padding: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-sidebar-product:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.blog-sidebar-product:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-sidebar-product-img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    border-radius: 5px;
}

.blog-sidebar-product-info {
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog-sidebar-product-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    line-height: 1.3;
}

.blog-sidebar-product-name:hover {
    color: #28a745;
}

.blog-sidebar-product-price-buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    gap: 10px;
}

.blog-sidebar-product-price {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    margin: 0;
}

.blog-sidebar-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px 4px 6px;
    font-size: 14px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.blog-sidebar-product-btn img {
    margin-right: 5px;
}


.blog-sidebar-product-btn:hover {
    background-color: #218838;
}

@media screen and (max-width: 768px) {
    .blog-sidebar-product-img {
        max-width: 100px;
    }

    .blog-sidebar-product-name {
        font-size: 12px;
    }

    .blog-sidebar-product-price {
        font-size: 14px;
    }

    .blog-sidebar-product-btn {
        font-size: 12px;
        padding: 3px 10px 3px 6px;
    }

    .blog-sidebar-product-price-buy {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .blog-sidebar-product-price {
        margin-bottom: 5px;
    }
}

.text-und {
    text-decoration: underline;
}

.text-ovr {
    text-decoration: overline;
}

/* Card styles */
.category-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    padding: 8px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    text-align: left;
    height: 0;
    padding-bottom: 100%;
}
.category-card-skeleton{
    border-radius: 20px!important; 
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    padding: 8px!important;
    margin: 5px!important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    text-align: left;
    min-height: 200px;
    padding-bottom: 100%;
}

.crossSellCategoryCardPadding {
    padding: 20px;
}

.catg-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.catg-img img {
    max-width: 80px;
}

/* Category text */
.category-text h2 {
    font-size: 14px;
    font-weight: bold;
    color: #FF8C00;
    text-align: left;
}

.category-text p {
    color: #666;
    font-size: 10px;
    margin-top: 2px;
    text-align: left;
}

/* CTA Button */
.cta-button {
    background-color: #3AB54A;
    color: white;
    padding: 3px 6px;
    font-size: 10px;
    text-decoration: none;
    border-radius: 5px;
    position: absolute;
    bottom: 8px;
    text-align: left;
    display: flex;
    align-items: center;
}

.cta-button i {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    padding-right: 5px;
}

.crossSellItem .category-text h2 {
    font-size: clamp(.8rem, 2.2vw, 1rem);
    margin: 0;
    /* 
    padding: 0 0 0.5rem 0; */
}

.crossSellItem .category-text p {
    font-size: clamp(0.6rem, 2vw, 0.8rem);
    margin: 0;
}

.crossSellItem .cta-button {
    width: 100%;
    padding: 0.4rem 0.1rem;
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
}

.crossSellItem .cta-button i {
    font-size: 0.8rem;
}

.crossSellItem .category-text {
    padding: 0.5rem 0;
}


.card-header {
    border-left: 1px solid #cbcbcb;
    border-right: 1px solid #cbcbcb;
    border-top: 1px solid #cbcbcb;
    border-radius: 5px 5px 0 0;
    background-color: #f5f5f5;
}

.card {
    border: 1px solid #cbcbcb;
    border-radius: 0 5px 5px 5px;
    background-color: #f8f8f8;
    /* border-bottom: 3px solid #ff7c00;*/
}

.card input,
.card textarea,
.card select {
    background-color: #e7e7e7;
    border: 1px solid #cbcbcb;
}

.subcategory-show-more {
    position: absolute;
    height: 150px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 59%);
}

#subcategories-collapse.show .show-more-items {
    padding-bottom: 0;
}

#subcategories-collapse.show .subcategory-show-more {
    padding-top: 0;
}

.subcategory-show-more a {}

.filter-wrap {
    background-color: #f9f9f9;
}

.filter-item {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.btn-green {
    background-color: #1d9001;
    color: white;
}

.b-r-25 {
    border-radius: 2.5px;
}

.b-r-100 {
    border-radius: 10px;
}

.b-r-500 {
    border-radius: 50px;
}

.b-none {
    border: none !important;
}

.b-danger {
    border: 1px solid #fd0002;
}

.b-orange {
    border: 1px solid #ff7c00;
}

.btn-orange {
    background-color: #ff7c00;
    color: white;
}

.btn-outline-green {
    border: 1px solid #1d9001;
    background-color: white;
    color: #1d9001;
    transition: 0.1s;
}

.btn-outline-green:hover {
    background-color: #1d9001 !important;
    color: white;
    cursor: pointer;
}

.btn-outline-orange {
    border: 1px solid #ff7c00;
    color: #ff7c00;
    transition: 0.1s;
    cursor: pointer;
}

.btn-outline-orange:hover {
    background-color: #ff7c00 !important;
    color: white;
}

.btn-outline-gray {
    border: 1px solid #808080;
    background-color: white;
    color: var(--lightblack);
    transition: 0.1s;
}

.btn-outline-gray:hover {
    border: 1px solid #808080;
    background-color: #808080;
    color: white;
    transition: 0.1s;
}

.subcategory-show-more a:hover {
    cursor: pointer;

}

table {
    border-collapse: collapse;
}

.cart-table {
    border: 1px solid #ddd;
}

.cart-table td,
th {
    border-bottom: 1px solid #dddddd;
    text-align: left;

}

.cart-table tbody tr:nth-child(odd) td {
    background-color: #e6e6e6;
}

.dot {
    display: flex;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50px;
}

.clear:before,
.clear:after {
    content: none !important;
}

.clear-a:after {
    content: none !important;
}

.clear-b:before {
    content: none !important;
}

.br-0-lb-b:before {
    border-bottom-left-radius: 0 !important;
}

.b-r-gray {
    border-right: 1px solid #ddd;
}

.b-l-gray {
    border-left: 1px solid #ddd;
}

.b-b-gray {
    border-bottom: 1px solid #ddd;
}

.b-t-grat,
.b-t-gray {
    border-top: 1px solid #ddd;
}

.b-t-lightgray {
    border-top: 1px solid #e6e6e6;
}

.b-gray {
    border: 1px solid #ddd;
}

.fd-column {
    flex-direction: column;
}

.hidden {
    display: none;
}

.hidden-i {
    display: none !important;
}

.show-more {
    background: transparent;
    border: none;
}

.b-0 {
    border: none !important;
}

.o-hide {
    overflow: hidden;
}

.o-50 {
    opacity: 0.5;
}

.o-100 {
    opacity: 1;
}

.o-100-hover:hover {
    opacity: 1 !important;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.main-content {
    /* position: relative; */
}

.bg-orange-hover:hover {
    background-color: #ff7c00 !important;
}

.skew:after,
.skew:before {
    transform: skewX(20deg) !important;
}

.skew-minus:after,
.skew-minus:before {
    transform: skewX(20deg) !important;
}

.text-dotted {
    text-decoration-style: dotted;
    text-decoration-line: underline;
    -moz-text-decoration-line: underline;
    -moz-text-decoration-style: dotted;
    -webkit-text-decoration-line: underline;
    -webkit-text-decoration-style: dotted;
}

.z-0 {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-1-before:before {
    z-index: 1;
}

.p-relative {
    position: relative;
}

/* position absolute */
.p-absolute {
    position: absolute;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.nobottom8 {
    bottom: 0 !important;
}

.align-center {
    align-items: center;
}

.dropdown-icon {
    transition: 0.2s;
}

.lh-1 {
    line-height: 1;
}

.lh-11 {
    line-height: 1.1;
}

.lh-12 {
    line-height: 1.2;
}

.lh-13 {
    line-height: 1.3;
}

.lh-14 {
    line-height: 1.4;
}

.lh-15 {
    line-height: 1.5;
}

.text-up {
    text-transform: uppercase;
}

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

.text-ini {
    text-transform: initial;
}

.footer-chevron {
    height: 15px;
}

.collapse-icon {
    transition: 0.2s;
}

.collapse-btn:hover {
    cursor: pointer;
}

.cart_block_product_name:hover {
    text-decoration: underline;
    color: #1D9001;
}

.collapse {

    height: 0;
    overflow: hidden;
    transition: 0.1s;
}

a:hover {
    cursor: pointer;
}

.collapse.show {
    height: 100%;
}

.br-5 {
    border-radius: 5px;
}

.br-10 {
    border-radius: 10px;
}

.br-top-10 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.br-bottom-10 {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.br-50 {
    border-radius: 50px;
}

.mobile-search input {
    border: none;

}

.body-wrapper {
    overflow-x: clip;
}

.modal {
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.2s;
    transform: scale(0);
    display: flex;
}

.modal-loading {
    height: 600px;
}

.close:hover,
.close:focus {

    cursor: pointer;
}

.modal.modal-show {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transform: scale(1);
}

.modal.modal-img.modal-content {
    max-width: 95%;

}

.modal-img-button-hover {
    opacity: 0;
    transition: 0.15s ease-out;
}

.modal-img-button-hover:hover {
    opacity: 1;
}

.modal-img-buttons-wrap {
    position: absolute;
    left: 0;
    top: 0;
}


.modal .modal-content {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease-out;
    border-radius: 10px;
}

.modal.modal-show .modal-content {
    transform: scale(1);
    opacity: 1;
    margin: auto;
}

.buy-minus-plus button {
    border: none;
}

.buy-minus-plus input {
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;

}

.cookies {
    position: fixed;
    bottom: 0;
    box-shadow: 52px 17px 60px 0 rgba(0, 0, 0, 0.34);
}

.variations .active {
    background-color: #f3f3f3;
}

.f-1 {
    flex: 1;
}

.f-2 {
    flex: 2;
}

.f-3 {
    flex: 3;
}

.f-4 {
    flex: 4;
}

.tab-content {
    height: 0px;
    overflow: hidden;
}

.tab-content.active {
    height: 100%;
}

.h-fit {
    height: fit-content;
}

.cart-link:hover .cart-name {
    color: #1D9001;
    text-decoration: underline;
}

.cart-link:hover img {
    opacity: 0.6;
}

.cart-step:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    transform: skewX(20deg);
    border-right: 1px solid #ddd;
}

.cart-step.active:before {
    background-color: #1D9001;
}

.cart-step.active {
    color: white;
}

.cart-step:last-child:before {
    border: none;
}

.cart-steps a:first-child.active:after {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: #1D9001;
    transform: skewX(20deg);
}

.cart-steps a:last-child.active:after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: #1D9001;
    transform: skewX(20deg);
}

.checkout-collapse:hover {
    background-color: #e8e8e8;


}

.checkout-collapse.active {
    background-color: #1D9001;
    color: #FFFFFF;
}

.banner-dot {
    content: "";
    width: 54px;
    height: 8px;
    border-radius: 50px;
    background-color: #fff;
    transition: 0.2s;
    opacity: 0.4;
}

.banner-dot:hover {
    background-color: #fff;
    opacity: 0.65;
}

.active .banner-dot {
    background-color: #fff;
    opacity: 1;
}

.banner-sidenav {
    border-radius: 0 5px 5px 0;
}


.banner-sidenav .active {
    position: relative;
    background-color: #ff7c00;
    color: #fff;
}

.banner-sidenav .active:before {
    content: "";
    position: absolute;
    left: -7%;
    top: 0;
    /*border: 21px solid hsla(0,0%,82.4%,0);*/
    height: 50%;
    width: 80%;
    background-color: #ff7c00;
    transform: skewX(-45deg);
}

.banner-sidenav .active:after {
    content: "";
    position: absolute;
    left: -7%;
    bottom: 0;
    /*border: 21px solid hsla(0,0%,82.4%,0);*/
    height: 51%;
    width: 80%;
    background-color: #ff7c00;
    transform: skewX(45deg);
}

.bottom-thing:after {
    content: "";
    position: absolute;
    width: calc(100% - 20px);
    height: 50px;
    background-color: #d4d4d4;
    transform: skewY(3deg);
    left: 10px;

    bottom: -15px;
    z-index: -1;
}

.banner-border {
    border-radius: 5px;
}
.scroll-top-btn-container {
    position: fixed;
    bottom: 80px; 
    right: 20px;
    z-index: 9999;
}

.scroll-top-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary); 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease-in-out;
}

.scroll-top-btn:hover {
    transform: scale(1.1);
}

.scroll-top-btn i {
    font-size: 24px;
}

.product.product-topsale {}

.product.product-topsale .topsale-label {
    position: absolute;
    left: 10px;
    top: 10px;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    z-index: 1;
}

.product.product-topsale:hover {
    box-shadow: none;
}

.product.product-topsale:hover .product-img img {
    transform: scale(1.05);
}

.product.product-topsale:hover .topsale-label {
    animation: dingle 0.2s ease-in;
}

.product.product-topsale .topsale-label {}

.line-gray,
.line-black {
    position: relative;
}

.line-gray:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    top: 50%;

}

.line-black:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #2b2b2b;
    top: 50%;

}

.bottom-line {
    border-bottom: 3px solid #ddd !important;
}

.bottom-line-green {
    border-bottom: 3px solid #BBDFAC !important;
}

.bottom-line-red {
    border-bottom: 3px solid #ffcccc !important;
}

.bottom-line-orange {
    border-bottom: 3px solid #F8D19E !important;
}

.a-link:hover {
    text-decoration: underline;
}

.alert.error {
    border-left: none;
    background-color: #FD5151;
}

.alert.error .alert-icon {
    background-color: #FF6B6B;
    border-radius: 50px;
}

.alert .alert-icon-wrap {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.alert .alert-title {
    color: white;
}

.alert-christmas {
    border-radius: 5px;
    background-color: var(--soft-secondary);
    color: var(--secondary);
    padding: 7px 12px;
}

.alert-big .alert-icon {
    border-radius: 100%;
}

.alert-big .alert-icon .material-icons {
    font-size: 65px;
}

.alert-big.warning {
    background: #fff8f2;
    border: 1px solid #ffe0c2;
}

.alert-big.warning .alert-icon {
    color: #ff9700;
    background-color: #ffa7232b;
}

.alert-big.warning .alert-big-title {
    color: #ff9700;
}


.alert-big.success {
    border: 1px solid #b3eeba;
    background: #f3fff0;
}

.alert-big.success .alert-icon {
    color: #1d9001;
    background: #d8ffcf;
}

.alert-big.success .alert-big-title {
    color: #1d9001;
}


.alert-big.error {
    background: #ffdcdc;
    border: 1px solid #dfa0a1;
}

.alert-big .alert-icon {
    width: 100px;
    height: 100px;
}

.alert-big.error .alert-icon {
    color: #fd0002;
    background: #ffb2b3;

}

.alert-big.error .alert-big-title {
    color: #fd0002;
}


.alert-big .alert-icon .material-icons {
    font-size: 65px
}



.alert.success {
    border-left: none;
    background-color: #4FAF4F;
}

.alert.success .alert-icon {
    background-color: #67ba6c;
    border-radius: 50px;
}

.alert.warning {
    border-left: none;
    background-color: #ff9700;
}

.alert.warning .alert-icon {
    background-color: #ffa723;
    border-radius: 50px;
}


.required {
    position: relative;

}

.required:after {
    content: "*";
    color: red;
    position: absolute;
    left: calc(100% + 5px);

    top: -5px;
}

.required.optional:after {
    content: none;
}

.product-small-links li+li {
    margin-left: 15px;
}

.product-small-links a:hover {
    opacity: 1;
}

.slider-with-borders .slider-item+.slider-item {
    border-left: 1px solid #ddd;
}

.shadow {
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.08), 0 10px 10px rgba(0, 0, 0, 0.08);
}


.btn-hover-orange:hover {
    background-color: #ff7c00 !important;

}

.checkout-choice>label {
    border: 1px solid #eee;
    /* box-shadow:0px 2px 7px 0px rgb(189 184 184 / 35%); */
}

.checkout-choice+.checkout-choice label {
    /* border-top: 1px solid #ddd; */
}

.checkout-choice input:checked+label {
    border: 1px solid var(--success);
    background-color: var(--success);
    color: white;
    /* background-color: #f6fff7;
    color: var(--success); */
    /* background-color: var(--soft-secondary);
    color: var(--secondary); 
    border: 1px solid var(--secondary); */

}

.checkout-choice label .checkout-price {
    color: var(--primary);
}

.checkout-choice input:checked+label .checkout-price {
    color: white;
}

.checkout-choice .payoption-img img,
.checkout-choice .payoption-img {
    width: 40px;
    max-width: 40px;
    min-width: 40px;
    height: auto;
    border-radius: 2.5px;
}

.checkout-choice label .checkout-choice-mark {
    display: none;
}

.checkout-choice input:checked+label .checkout-choice-mark {
    display: inline-block;
}

.checkout-choice:hover {
    cursor: pointer;
}

.checkout-choice:hover label {
    border: 1px solid #bceabe;
    background-color: #f6fff7;
    cursor: pointer;
}


.checkout-wrapper input:focus {
    border: 1px solid #1d9001;
}

.checkout-wrapper .bg-lightorange input:focus {
    border: 1px solid #ff7c00;
}

.checkout-tabs .checkout-tab:last-child:hover {
    cursor: default;
}

.text-und {
    text-decoration: underline;
}

.text-cap {
    text-transform: capitalize;
}

.text-cap-first::first-letter {
    text-transform: capitalize;
}

.b-r-white {
    border-right: 1px solid #fff;
}

.shadow-0 {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.general-nav-icon {
    color: #c3c3c3;
}

.header-sticky {
    position: fixed;
    top: 0;
    z-index: 4;
    animation-name: header-push;
    animation-duration: 1s;
    -webkit-box-shadow: 0px 10px 9px -5px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0px 10px 9px -5px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 10px 9px -5px rgba(0, 0, 0, 0.21);
}

.main-header.header-sticky .logo .logo-img,
.main-header.header-sticky .logo .logo-img a {
    height: 100%;
}


@keyframes header-push {
    0% {
        transform: translateY(-70px);
    }

    100% {
        transform: translateY(0);
    }
}

.hamburger-trigger {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
}

.hamburger-icon_1,
.hamburger-icon_2 {
    position: absolute;

}

@keyframes hamburger_out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes hamburger_in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hamburger-trigger .hamburger-icon_1,
.hamburger-trigger .hamburger-icon_2 {
    transition: 0.2s;
}

.hamburger-trigger .hamburger-icon_1 {
    transform: rotate(0deg);
    opacity: 1;
}

.hamburger-trigger .hamburger-icon_2 {

    transform: scale(0.1);
    opacity: 0;
}

.hamburger-trigger.active .hamburger-icon_1 {
    transform: scale(0.1);
    opacity: 0;

}

.hamburger-trigger.active .hamburger-icon_2 {
    transform: rotate(0deg);
    opacity: 1;
}

.o-60-hover:hover {
    opacity: 0.6;
}

.color-green-hover:hover {
    color: #1d9001;
}

.text-und-hover:hover {
    text-decoration: underline;
}

.b-green {
    border: 1px solid #1d9001;
}

.b-white-3 {
    border: 3px solid #FFF;
}

.circle-icon {
    height: 30px;
    width: 30px;
    border-radius: 50px;
}

.modal-content {
    position: relative;
    margin: auto;
}

.modal-close-wrap {
    position: absolute;
    right: 0;
    top: 0;
}

.modal-close-wrap .modal-close {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.44);
}

.coupon {
    border: 2px dashed #1D9001;

    color: #1D9001;
}

.modal-product-img {
    height: 100px;
    width: 100px;
}

.modal-product-img img {
    width: 100%;
    height: auto;
}

.h-40px {
    height: 40px;
}

.modal-product-qty {
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 50px;
    background-color: #ff7c00;
    color: white;
}

.cart_quantity_delete {
    padding: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;

    outline: none;
    display: flex;
    color: var(--danger);
    opacity: 0.5;
}

.cart_quantity_delete:hover {
    opacity: 1;
    cursor: pointer;
}

.cut {
    position: absolute;
    right: 20px;
    bottom: -14px;
    transform: rotate(180deg);
}

.w-max {
    width: max-content;
}

.category-info p {
    margin: 0px;
}

.category-info.collapse {
    height: auto;
}

.subcategory-show-more {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 40%);
    height: 100px;
}

.category-info .subcategory-show-more {
    display: none;
}

.filter-button:hover {
    opacity: 0.7;
}

.d-none {
    display: none !important;
}

.f-8 {
    flex: 8;
}

.shipping-banner+.shipping-banner {
    border-left: 1px solid #ddd;
}


.bg-lightgreen {
    background-color: #699000 !important;
}

/* .bg-lightorange{
    background-color: #FFE4CB;
} */
.shipping-banner .bnr-img {
    flex: 1;
    max-height: 40px;
}

.shipping-banner .bnr-info {
    flex: 8;
}

.ws-nowrap {
    white-space: nowrap;
}


.material-icons {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cart-pd-img {
    width: 50px;
    height: 40px;
}

/* select arrow fix for firefox browser*/
select {
    text-indent: 1px;
    padding-right: 20px;
    text-overflow: "";
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url('_fix/_dropdown_icon_fix.png') !important;
    background-position: 95% 50%;
    background-repeat: no-repeat;
    background-size: 11px;
}

select.select-black {
    background-image: url('_fix/_dropdown_icon_black.png') !important;
}

.tab-fill {

    position: relative;
    flex-grow: 1;
}

.tabulator>.tab:first-of-type {
    position: relative;
}

.tabulator>.tab:first-of-type::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background-color: #1d9001;
}

.tab-fill::before {
    content: "";
    position: absolute;
    height: 100%;
    left: 3px;
    top: 0;
    width: 200%;
    transform: skewX(20deg);
    border-bottom: 2px solid #1d9001;
    border-left: 2px solid #1d9001;
    border-bottom-left-radius: 5px;
    background-color: white;
}

.tab-bg-skew {
    content: "";
    background-color: #1d9001;
    ;
    position: absolute;
    transform: skewX(20deg);
    border-radius: 5px;
    left: 0;
    top: 0;
}

.tabulator .tab {
    text-transform: uppercase;
}

.tabulator.hoverable .tab:hover .tab-bg-skew,
.tabulator.hoverable>.tab:first-of-type:hover::before {
    background-color: #0f4f00;
}


.tabulator.hoverable .tab:hover {
    cursor: pointer;
}

.tabulator.hoverable .tab.active:hover .tab-bg-skew,
.tabulator.hoverable .tab.active .tab-bg-skew {
    background-color: #ff7c00;
}

.tabulator.hoverable .tab.active:hover {
    cursor: default;
}

.tabulator.hoverable .tab.active:hover .tab-bg-skew,
.tabulator.hoverable .tab.active .tab-bg-skew,
.tabulator.hoverable>.tab.active:first-of-type::before {
    background-color: #ff7c00;
}


/* ----- END NEZARADENE ----------------------------*/



/* ----- TOP BAR -----------------------------------*/
.top-bar {

    display: flex;

    background: rgb(29, 144, 1);
    background: linear-gradient(90deg, rgba(29, 144, 1, 1) 70%, rgba(15, 79, 0, 1) 40%);
}

.top-bar .left {
    display: flex;
}

.top-bar .search-icon {
    overflow: hidden;
}

.search-icon {
    width: 30px;
    height: 30px;
}

.search-input {
    position: relative;
    margin-left: 13px;
    margin-right: 13px;

}

.search-input:before,
.search-input:after {
    content: "";
    position: absolute;
    background-color: #FFFFFF;
    height: 100%;
    width: 25px;
    transform: skewX(20deg);

}

.search-input:before {
    left: -10px;
    top: 0;
    border-radius: 5px 2.5px;
}

.search-input:after {
    right: -10px;
    top: 0;
    border-radius: 2.5px 5px;
}

.search-input input {
    border: none;
    position: relative;


}

.top-bar .right {
    position: relative;
    display: flex;

}

.top-bar div {
    position: relative;
}

.top-bar .link {
    color: #FFFFFF;
    display: flex;
    text-transform: uppercase;
}

.top-bar .link a:hover {
    /* text-decoration: underline;*/
    opacity: 0.8;
}

.d-inherit {
    display: inherit;
}

.top-bar .right:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 200%;

    transform: skewX(20deg);
    border-bottom-left-radius: 5px;
    background-color: #0f4f00;
}

.top-bar .cart {
    background-color: white;
    border-radius: 20px;

}

.top-bar .link.cart-dropdown-hover a:hover,
.top-bar .link.favorite-dropdown-hover a:hover {
    opacity: 1 !important;
}

.hover-dropdown {
    position: absolute !important;
    top: calc(100% + 3px);
    min-width: 400px;
    right: 0;
    display: flex;
    height: 0;
    overflow: hidden;

}

.hover-dropdown.show {
    height: max-content;
    overflow: visible;
}

.hover-dropdown .hover-content {
    flex-direction: column;
    background-color: white;
    border-radius: 5px 0 5px 5px;
    top: calc(100% + 3px);
    min-width: 300px;
    right: 0;
    color: black;
    display: flex;
    box-shadow: 0px 1px 28px -6px rgba(0, 0, 0, 0.6);
    text-transform: none;
    z-index: 1;
    transition: 0.2s;
    opacity: 0;
    transform: translateY(5%);
}

.hover-dropdown.show .hover-content {
    opacity: 1;
    transform: translateY(0);
}

.cart-header-button {
    height: 20px;
    width: 20px;
    border-radius: 2.5px;
    opacity: 0.5;
}

.cart-header-button:hover {
    opacity: 1;
}

/*
.cart-dropdown-hover,.favorite-dropdown-hover{
    overflow: hidden;
}
.cart-dropdown-hover.show,.favorite-dropdown-hover.show{
    overflow: visible;
}*/
.cart-dropdown-hover.show:after,
.favorite-dropdown-hover.show:after {
    /* position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 100%;
    height: 50px;
    background: white;
    z-index: 2;*/
}

.cart-products,
.favorite-products {
    max-height: 360px;
    overflow-y: auto;
}

.hide-scroll-y {
    max-height: 432px;
    overflow-y: visible;
}

.cart-dropdown .cart-product {

    border-bottom: 1px solid #e6e6e6;
}

.cart-dropdown .cart-product:last-child {
    /* border-bottom: none;*/
}

.top-bar .search-btn {
    border: 0;
    background-color: transparent;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-cart {

    border-bottom-right-radius: 5px;
}

.btn-cart:hover {
    cursor: pointer;
}

.btn-cart:before {
    border-bottom-left-radius: 0 !important;
}

.cart-img {
    height: 70px;
    width: 85px;
}

.cart-remove {
    padding: 2.5px 7.5px;
    border-radius: 50%;
    opacity: 0.5;
}

.cart-remove-checkout {
    color: #2b2b2b;
}




.datalist {
    position: absolute !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    border-bottom: 3px solid #ff7c00;
    top: 100%;
    left: 0;
    border-radius: 5px;
    min-width: 300px;
}

.datalist .data {
    display: block;
    border-bottom: 1px solid #e6e6e6;
}

.datalist .data a:hover {
    /* color: #ff7c00;*/
    color: #1d9001;
    text-decoration: underline;
}

.datalist .data:last-child {
    border-bottom: none;
}

/* ----- END TOP BAR -----------------------------------*/


/* ----- HEADER ------------------------------------*/
.main-header {
    background: rgb(29, 144, 1);
    background: linear-gradient(90deg, rgba(29, 144, 1, 1) 70%, rgba(15, 79, 0, 1) 70%);
}

.logo {
    position: relative;
    background-color: white;
    display: flex;
}

/*POZNAMKA*/
/*toto mozem nahradit novym stylom*/
.logo:before {
    content: "";
    background-color: #1d9001;
    position: absolute;
    height: 100%;
    width: 35px;
    right: 95%;
    top: 0;
    border-radius: 0 0 5px 0;
    transform: skewX(-20deg);
    z-index: 1;
}

.logo:after {
    content: "";
    background-color: #1d9001;
    position: absolute;
    height: 100%;
    width: 35px;
    left: 96%;
    top: 0;
    border-radius: 0 0 0 5px;
    transform: skewX(20deg);
    z-index: 1;
}

.logo .logo-img {
    position: absolute;
    display: flex;
    z-index: 1;
}

.sub-header .categories {
    list-style-type: none;
    display: inline-flex;
}

.sub-header .categories .category {
    position: relative;
    display: flex;
    font-weight: 600;
    /*max-width: 160px;*/
    transition: 0.1s;

}

/*POZNAMKA*/
/*skusit prepisat do noveho stylu*/
.sub-header .categories .category:before {
    content: "";
    position: absolute;
    width: 75%;
    left: 0;
    top: 0;
    height: 100%;
    transform: skewX(-20deg);
    border-top-left-radius: 5px;
    /* background-color: #1d9001;*/

}

.sub-header .categories .category:after {
    content: "";
    position: absolute;
    width: 75%;
    right: 0;
    top: 0;
    height: 100%;
    transform: skewX(-20deg);
    border-bottom-right-radius: 5px;
    /*background-color: #1d9001;*/

}

.sub-header .categories .category span {
    position: relative;
}

/*
.sub-header .categories .category:first-child:before,.sub-header .categories .category:first-child:after{
    background-color: #ff7c00;
}*/
.sub-header .categories .category:first-child {
    max-width: 100%;
}

/*POZNAMKA*/
/*taktiez vieme prepisat do noveho stylu*/
.sub-header .categories .category:first-child:before {
    transform: skewX(20deg);
    border-top-left-radius: 0;
    border-bottom-left-radius: 5px;

}

.sub-header .categories .category:last-child {
    margin: 0;
}

.sub-header .categories .category .category-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
}

.sub-header .categories .category .category-bg-img img {
    position: absolute;
    height: 180px;
    right: 0;
    top: 0;
    z-index: 1;
    opacity: 0.3;

}

.header-icon-wrapper {
    position: relative;
}

.header-icon-wrapper .header-icon {
    color: #1D9001;
}

.header-icon-wrapper .header-icon-count {
    position: absolute;
    top: -2px;
    right: -4px;
    color: white;
    background-color: #ff7c00;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    font-weight: 600;
    border-radius: 50px;
    width: 14px;
    height: 13px;
}

.header-icon-wrapper .header-icon-count.hidden {
    display: none;

}

/* ----- HEADER END --------------------------------*/
/* ----- LEFT SIDEBAR ------------------------------*/
/*POZNAMKA*/
/*skontrolovat a prejst cely sidebar aby neboli height width a ostatne veci*/
.nav-items {
    list-style-type: none;
}

.nav-main-category i {
    z-index: 1;
}

#navigation-categories {
    transition: 0.2s;
}

.nav-item,
.nav-collapse {
    /* background-color: #e6e6e6; */
    background-color: white;
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    color: #808080;

    flex-direction: column;

}

.nav-item {
    margin-left: auto;
    justify-content: flex-end;
    text-align: right;
}

.nav-collapse-text {
    text-decoration: underline;
    text-align: center;
}

.nav-item.active:before,
.nav-item.active:after {
    content: none !important;
}

.sub-items {
    list-style: none;
    line-height: 1.2;
    color: #686868;

}

.sub-items.dropshow {}

.sub-items li>a {
    border-bottom: 1px solid #c1c1c1;
}

.sub-items.dropshow>li>a {
    /*toto tu musi byt bo inak sa to neda*/
    padding: 15px !important;
}

.sub-items.dropshow li {
    /*optional vec ale podla mna sa hodi*/
    /*min-height: 65px;*/
    min-height: fit-content;
}

.sub-items.dropshow li>a {
    border: none;
    text-align: left;
    /*potrebne*/
    font-size: 14px;
}

/*skryt vsetky ostatne po 16tom childe*/
.sub-items.dropshow li:nth-child(1n+28) {
    display: none !important;
}



.sub-items.dropshow li>a:after {
    content: none;
}

/* .sub-items li:last-child > a{
    border-bottom: none;
} */
.nav-items .selected,
.nav-items .selected:before {
    color: #ff7c00;
    background-color: #f1f1f1;
}

.level-depth-1>.sub-items {
    /*   background-color: lightgray;*/
}

.level-depth-2>.sub-items {
    background-color: lightgray;
}

.level-depth-3>.sub-items {
    background-color: #b4b4b4;
}

.sub-items.dropshow .nav-img {
    display: flex;
}

.nav-item a.nav-more {
    display: none;
}

.nav-item>.nav-trigger {
    flex-direction: row-reverse;
}

.nav-trigger {
    align-items: center;
}

.dropshow a.nav-more.nav-trigger {
    display: flex;
}

.sub-items.dropshow .nav-plus {
    display: none;
}

.nav-item a {
    display: flex;
    position: relative;
    z-index: 2;

}

.nav-item .nav-icon {
    height: 25px;
}

.nav-img {
    display: none;
    height: 60px;

}

.nav-item-text {
    margin-right: auto;
    text-align: left;
}

.sub-items.dropshow a:hover {
    background: white !important;
}

/*asi iba na pc by malo byt*/
.sub-items.dropshow,
.sub-items.dropshow.hidden {
    position: absolute;
    top: 0;
    left: 100%;
    width: 800px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    /*background: #f1f1f1;*/
    background: white;
    min-height: 240px;
    border-bottom: 2px solid #ff7c00;
    border-radius: 0 5px 5px 5px;
    box-shadow: 52px 17px 60px 0 rgba(0, 0, 0, 0.34);
    padding: 10px;
}

.sub-items.dropshow li {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/*
.sub-items.dropshow li:nth-child(-n+4){
    border-bottom: none!important;
}
.sub-items.dropshow li:nth-child(4n){
    border-right: none!important;
}*/
.sub-items.dropshow li,
.sub-items.dropshow.hidden li {
    width: 25%;

    display: flex;
}

.sub-items.dropshow li a {
    width: 100%;
}

.sub-items.dropshow li a>span {
    margin-left: 0 !important;
    margin-right: auto !important;
}


.nav-item .w-50+.w-50 {
    border-left: 1px solid #e6e6e6;
}


.nav-item:nth-child(even)>a:before {
    transform: skewX(-25deg);
}

.nav-item:last-child:before {
    border-bottom-left-radius: 2.5px;
}

.nav-wrapper {
    /*POZNAMKA*/
    /* musi mat specialny margin aby pasoval vsade*/
    /*navigacku celu este prejst */
    position: relative;
    /* margin-top: 15px;
    margin-bottom:21px; */
    margin-top: 10px;
}

.nav-wrapper>.nav-items>.nav-item:last-child {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 0 0 5px 5px;
}

.nav-header {
    border-radius: 5px 5px 0 0px;
    position: relative;

    text-transform: uppercase;
    font-weight: 800;

}


.resp-img {
    overflow: hidden;
}

.nav-dropdown {
    display: none;
    background-color: #f1f1f1;
    position: absolute;
    left: 100%;
    top: 0;
    border-bottom: 2px solid #ff7c00;
}

.nav-dropdown.open {
    display: block;
    z-index: 2;
}

.nav-dropdown-item .resp-img {
    height: 100px;
    width: 100px;
}

.dropdown-subcategory {
    display: inline-flex;
}

.nav-dropdown {
    /*POZNAMKA*/
    /*toto este upravime upresnime*/
    width: 800px;
}

.nav-dropdown .dropdown-wrap {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    color: #808080;

}

.dropdown-wrap>div:hover {
    background-color: #ff7c00;
    color: white;
}

.dropdown-subcategory .img {
    /*POZNAMKA*/
    /*este sa prepise
    height: 100px;
    width: 100px;*/
    height: 100px;
}

.dropdown-subcategory .subcategory-name {
    text-align: left;
    line-height: 1;

}


/* ----- END LEFT SIDEBAR -------------------------*/
/* ----- SIDEBAR SALES ---------------------------*/
.sale-item {
    display: flex;
    /*tiez bolo potrebne upresnit vysku*/
    height: 130px;


}

.sale-item .sale-item-img {}

.sale-item .sale-item-info {
    line-height: 1.1;
}

.sale-item-price {
    display: flex;
    justify-content: flex-end;
}

.sale-icon {
    height: 20px;
}

.sale-item-btn {
    position: absolute !important;
    right: 0;
    bottom: 0;
}

.sale-item-btn:before {
    border-bottom-left-radius: 0 !important;
}


.side-block {
    margin-top: 10px;
}

/* Novy sidebar bannery */
.side-banner {
    width: 100%;
    height: 250px;
    min-height: 250px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;

}

.side-banner.side-banner-small {
    height: 150px;
    min-height: 150px;
    transition: 0.2s;
}

.side-banner:hover {
    opacity: 0.8;
    cursor: pointer;
}

.side-banner:hover .side-banner-text {
    transform: scale(1.1);
}

.side-banner-text {
    display: block;
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

.side-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.side-banner-icon {
    position: absolute;
    font-size: 8em;
    bottom: -58px;
    font-weight: bold;
    opacity: 0.2;


}

.side-banner-homepage {
    position: relative;
    overflow: hidden;
}

.side-banner-homepage .side-banner-icon {
    position: absolute;
    right: 0;
    bottom: -10px;
    opacity: 0.3;
    font-size: 40px;
}

.side-banner-homepage .side-banner-icon.lower {
    bottom: -20px;
}


/* ----- END SIDEBAR SALES -----------------------*/

/* ----- PRODUCTS LIST ---------------------------------*/
.subcategory {
    height: 120px;
    /* border: 1px solid #e6e6e6;*/
    border: 1px solid #1d9001;
    border-radius: 5px;
    overflow: hidden;
}

.subcategory:hover {
    opacity: 0.7;
}

.subcategory-label {
    position: absolute;
    bottom: 0;
    right: 0;

}

.subcategory-label-skew:before {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 5px !important;
    left: -10px !important;
}

/* DEPRECATED */
/* .products .product */
.product {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;

    overflow: hidden;
    border: 1px solid white;
    /*  border-left: 1px solid #ddd; */
    position: relative;

    transition: 0.1s;
}

.product.slider-product {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.product-slider {
    /* border: 1px solid blue;
    display: inline-flex;
     overflow: hidden;*/
}

.product.slider-product .product-img {
    height: 160px;
}

.slider-wrapper {
    /* min-height: 270px; */
    overflow: hidden;
}

.slider-button-wrap {
    position: absolute;
    z-index: 1;
    top: 0;
    transition: 0.2s;
    display: flex;
}

.slider-button {
    transition: 0.2s;
}

.slider-button:hover {
    cursor: pointer;
}

.slider-button.type-opacity {
    opacity: 0.7;
}

.slider-button.type-opacity:hover {
    opacity: 1;
}

.slider-button.type-1 {
    height: 35px;
    width: 35px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    color: white;
    transition: 0.2s;
}

.slider-button.type-2 {
    height: 35px;
    width: 35px;
    border-radius: 50px;
    background-color: #ff7c00;
    display: flex;
    color: white;
}

.slider-button.type-3 {
    height: 35px;
    width: 35px;
    border-radius: 50px;
    background-color: #1d9001;
    display: flex;
    color: white;
}

.slider-button.type-4 {
    height: 35px;
    width: 35px;
    border-radius: 50px;
    border: 2px solid white;
    background-color: transparent;
    display: flex;
    color: white;
}

.slider-button.type-5 {
    height: 35px;
    width: 35px;
    border-radius: 50px;
    border: 2px solid white;
    background-color: transparent;
    display: flex;
    color: white;
}

.slider-button.type-5:hover {
    background-color: white;
    color: #ff7c00;
}

.slider-button.type-6 {
    height: 35px;
    width: 35px;
    border-radius: 50px;
    display: flex;
    background-color: white;
    color: #ff7c00;
}

.slider-button.type-7 {
    height: 100%;
    width: 50px;
    display: flex;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 79%);

}

.slider-button.type-8 {
    height: 35px;
    width: 35px;
    border-radius: 5px;
    display: flex;
    background-color: white;
    border: 2px solid #1d9001;
    color: #1d9001;
}

.slider-button.type-8:hover {
    background-color: #1d9001;
    border: 2px solid #1d9001;
    color: white;
}

.slider-button-wrap.right {
    right: 0;
}

.slider-button-wrap.slider-previous {
    left: 0;
}

.slider {
    display: flex;
    transition: 0.5s;
    transition-timing-function: ease-in-out;
    width: max-content;
    gap: 0;
}

.slider-item {}

.product a:hover {
    cursor: pointer;
}

.product .product-name {
    transition: 0.1s;
}

.product .product-img img {
    transition: 0.1s;
}

/* moj navrh*/

.product:hover .product-name {
    text-decoration: underline;
    /* color: #24b401;*/
}

.product .product-img {
    overflow: hidden;
    /*tuna musi byt urcena velkost obrazka ta vlastne udava velkost produktu*/
    /* height: 250px; */
}

.product .product-img img {
    width: 100%;
    padding: 10px;
}

/* .product.smaller-1 .product-img{
    height: 170px;
}
.product.smaller-2 .product-img{
    height: 110px;
} */
.product.smaller-2 .product-img img {
    /* height: 80%; */
    width: 85%;
    padding: 20px;
}

.product.smaller-1 .product-img img {
    width: 90%;
    padding: 20px;
}

.product .product-body {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

/* DEPRECATED */
/* .product .quantity-discount{
	border-bottom: solid 1px #EEE;
	background-color:#EDFFE6 !important;
}

.product .quantity-discount:hover{
	background-color:#CEFFC1 !important;
	transition-duration: 0.3s;
} */

.product-qualities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.product-qualities .quality {
    display: inline-flex; 
    align-items: center;
    white-space: nowrap; 
    color: var(--lightblack);
    
}

.product-qualities .quality i {
    margin-right: 5px;
    font-size: 20px;
    color: var(--secondary);
}

.product-qualities .quality i.color-success {
    color: var(--success);
}

.product-qualities .quality i.color-primary {
    color: var(--primary);
}

.product-qualities .quality i.color-red {
    color: var(--danger);
}

.product-qualities .quality {
    margin-top: 0;
    margin-left: 15px;
}

.product .product-price {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #FFFFFF;
    text-align: right;
    /*POZNAMKA*/
    /*line height vieme prepisat do noveho stylu*/
    line-height: 1.2;
}

.product .product-price div:first-child {
    position: absolute;
    bottom: 100%;
    right: 0;
    padding-right: inherit;
    background-color: #FFFFFF;
}

.product .product-price div:first-child span {
    display: inline-block;
    background-color: #FFFFFF;
    position: relative;

}

.reduction_percent {
    padding: 2px 7px;
    border-radius: 50px;
}

/*POZNAMKA*/
/*skew sa na nahradit novym stylom*/
.product .product-price div:first-child:before {
    content: "";
    background-color: #FFFFFF;
    position: absolute;
    width: 40px;
    height: 100%;
    right: 90%;
    bottom: 0;
    transform: skewX(-20deg);
    border-top-left-radius: 2.5px;

}

/*POZNAMKA*/
/*da sa nahradit d-flex*/
.product .product-img {
    display: flex;
}

.product .product-footer {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    text-align: right;
}

/*POZNAMKA*/
/*da sa nahradit */
.product .product-name {
    line-height: 1.2;
    font-weight: 400;
    color: #1d232d;
}

.slider .product .product-name {
    text-align: center;
    font-weight: 400;
}

.product.smaller-1 .product-name,
.product.smaller-2 .product-name {
    font-size: 12px;
    margin-bottom: 5px;
}

.product .price-from {
    color: #bbbbbb;
    text-decoration: line-through;
}

/*POZNAMKA*/
/*da sa nahradit p-relative*/
.product .product-head {
    position: relative;
}

/* ----- END PRODUCT LIST --------------------------*/
/*pagination*/
.pagination {
    border-bottom: 2px solid #1d9001;
}

.pagination-list {
    display: inline-flex;
}

.pagination-list li.active:hover {
    opacity: 1;
}

.pagination-list li:hover {
    opacity: 0.7;
}

.pagination .pagination-link {
    min-width: 30px;
}

.ls-none {
    list-style: none;
}

/*pagination-end*/
/* ----- TAB ---------------------------------------*/
/*POZNAMKA*/
/*da sa prepisat na d-flex*/
.tab {

    display: flex;

}

.tabs .single-tab+.single-tab+.single-tab:last-child {
    flex: 1;
}

.tabs .single-tab:last-child {
    flex: 3;
}

.tabs .single-tab {
    flex: 1;
}

.tab .tab-title {
    background-color: #1d9001;
    display: flex;
    position: relative;
    text-transform: uppercase;
    color: white;
}

.tabs .single-tab:hover {
    cursor: pointer;
}

.tabs .single-tab.active:hover {
    cursor: default;
}

.tabs .single-tab:hover .tab-title {
    background-color: #0f4f00;
}

.tabs .single-tab.active:hover .tab-title {
    background-color: #ff7c00;
}

.tab .single-tab:nth-child(n+2) .tab-title:before {
    content: "";
    position: absolute;
    height: 100%;
    left: -10px;
    top: 0;
    width: 50px;
    transform: skewX(20deg);
    background-color: inherit;
    border-radius: 5px;
    z-index: -1;
}

.tab .tab-title:after {
    content: "";
    position: absolute;
    height: 100%;
    right: -10px;
    top: 0;
    width: 50px;
    transform: skewX(20deg);
    background-color: inherit;
    border-radius: 5px;
    z-index: -1;
}

.tab .single-tab.active .tab-title {
    background-color: #ff7c00;
}

.tab-select {
    background-color: transparent;
    color: white;
    text-transform: uppercase;
    border: none;
}

.tab .tab-line {
    display: block;
    content: "";
    margin-left: 10px;
    position: relative;
}

.tab .tab-line:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 95%;
    right: 0;
    top: 0;
    border-bottom: 2px solid #1d9001;
}

.tab .tab-line:before {
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;

    width: 50px;
    transform: skewX(20deg);
    border-bottom: 2px solid #1d9001;
    border-left: 2px solid #1d9001;
    border-bottom-left-radius: 5px;
}

/* ----- END TAB -----------------------------------*/

/* ----- SLIDER ------------------------------------*/
/*slider si nevsimat este, na nom pracujem / skusam */
.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-left,
.slider-right {
    position: absolute;
    display: flex;
}

.slider-left {
    left: 0;
    top: 0;
    bottom: 0;
}

.slider-right {
    right: 0;
    top: 0;
    bottom: 0;
}

/* ----- END SLIDER --------------------------------*/


/* ----- SKEW ------------------------------------*/
/*toto tiez este nieje uplne, pracujem na tom */
.skew-left,
.skew-left-reverse,
.skew-right,
.skew-right-reverse,
.skew-bottom-right {
    position: relative;
}

.skew-left:before {
    position: absolute;
    content: "";
    background-color: inherit;
    top: 0;
    left: -8px;
    width: 75%;
    height: 100%;
    transform: skewX(20deg);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 2.5px;
}

.skew-right:after {
    position: absolute;
    content: "";
    background-color: inherit;
    top: 0;
    right: -8px;
    width: 75%;
    height: 100%;
    transform: skewX(20deg);
    border-top-right-radius: 2.5px;
    border-bottom-right-radius: 5px;

}

.skew-left-reverse:before {
    position: absolute;
    content: "";
    background-color: inherit;
    top: 0;
    left: -8px;
    width: 75%;
    height: 100%;

    transform: skewX(-20deg);
    border-top-left-radius: 2.5px;
    border-bottom-left-radius: 5px;
}

.skew-right-reverse:after {
    position: absolute;
    content: "";
    background-color: inherit;
    top: 0;
    right: -8px;
    width: 75%;
    height: 100%;
    transform: skewX(-20deg);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 2.5px;
}

.skew-bottom-right:after {
    content: "";
    position: absolute;
    background-color: inherit;
    width: 100%;
    top: -10px;
    left: 0;
    transform: skewY(3deg);
    height: 20px;
    border-radius: 2.5px;
    z-index: -1;
}

/* ----- END SKEW ----------------------------------*/

/* ----- AWARDS -----------------------------------*/
/*POZNAMKA*/
/*asi tiez prepisat a cele zrusit tuna*/
.award {
    display: flex;
    line-height: 1.2;
    height: 100%;
}

.award img {
    height: 40px;
    margin-top: auto;
    margin-bottom: auto;
}

.small-award-label {
    font-size: 8px;
    background-color: #ff7c01;
    color: white;
    padding: 2px;
}

.award.solo-award img {
    width: 100%;
    height: auto;
}

/* ----- END AWARDS ------------------------------*/

/* ----- NEWSLETTER ------------------------------*/


.newsletter {
    background-color: var(--subgreen);
    padding: 15px;
    border-radius: 10px;
    position: relative;
}

.newsletter .newsletter-title {
    color: white;
    line-height: 1.2;
    font-weight: 700;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-right: 30px;
}

.newsletter form {
    display: flex;
    height: 40px;
    max-height: 40px;
    min-height: 40px;

}

.newsletter form {
    border-radius: 7px;
    overflow: hidden;
}

.newsletter form .input {
    font-size: 12px;
    color: white;
    padding: 0 10px;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    background-color: #1A370A;
}

.newsletter form button {
    width: 40px;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    color: #1A370A;
    background-color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.newsletter .newsletter-title,
.newsletter form {
    position: relative;
    z-index: 1;
}

.newsletter img {
    height: 180px;
    width: auto;
    position: absolute;
    bottom: 10px;
    right: -40px;
}


/* ----- END NEWSLETTER --------------------------*/
/* ----- FOOTER ------------------------------------*/
.footer-block {
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-block .collapse.show {
    height: auto;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0px;

}

.footer-links li {
    display: flex;
    color: white;
}

.footer-links .footer-link+.footer-link {
    margin-top: 10px;
}

.footer-links .footer-link:nth-child(2) {
    margin-top: 0 !important;
}

.footer-link {
    font-size: 12px;
    font-weight: 300;

}

.footer-links li a:hover {
    opacity: 0.75;


}

.footer-headline {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-headline .footer-headline-icon {
    margin-right: 10px;
    background: #ffffff2e;
    border-radius: 7px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.footer-icon img {
    height: 25px;
}

.footer-logo {
    margin-top: -40px;
    width: 250px;
}

.footer-logo img {
    /* height: 75px;
     width: auto;*/
    /*treba upresnit vysku*/
    width: 80%;
    z-index: 1;
}

.footer-logo:before,
.footer-logo:after {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.subfooter:before,
.subfooter:after {
    border-radius: 5px 5px 0 0 !important;
}

.subfooter .subfooter-bar:before {
    border-radius: 2.5px 0 0 2.5px !important;
}

.subfooter .subfooter-bar:after {
    border-radius: 0 2.5px 2.5px 0 !important;
}

.subfooter-links {
    display: inline-flex;

    color: white;
}

.subfooter-links .link {

    display: flex;
}

.subfooter-links .link:hover {
    opacity: 0.75;

}

.subfooter-links .link+.link:before {
    content: "";
    position: absolute;
    height: 50%;
    left: 0;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    border-left: 1px solid #ddd;
}

.footer-icons {
    /* position: relative; */
    overflow: hidden;
}

.footer-icons .payments {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.footer-icons .payments img {
    height: 40px;
    width: auto;
}

.footer-icons .shop-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pay-icon {
    height: 25px;
    width: 40px;
    overflow: hidden;
    border-radius: 4px;
    background-color: white;
    display: inline-flex;
    align-items: center;
    text-align: center;
    padding: 2px;
}

.pay-icon+.pay-icon,
.social-icon+.social-icon {
    margin-left: 5px;
}

.pay-icon img {
    width: 100%;
    height: auto;
}

.social-icon {
    height: 35px;
    width: 35px;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--subgreen);
    display: inline-flex;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.social-icon:hover {
    background-color: #196f06;
}

.social-icon img {
    width: 100%;
    height: auto;
}

.footer-icons .shop-logo img {
    height: 40px;
    width: auto;
}

.social-links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.social-links img {
    height: 40px;
    width: auto;
}

.social-links .icon {
    display: block;
    height: 40px;
    width: auto;
}

.social-links .icon:hover {
    cursor: pointer;
    opacity: 0.7;
}

/* ----- END FOOTER --------------------------------*/
/* ----- PRODUCT LIST ------------------------------*/





/* ----- PRODUCT LIST END --------------------------*/
/* ----- PRODUCT VIEW ------------------------------*/
.single-product .product-img {
    height: 350px;
    border: 1px solid #e6e6e6;
    border-radius: 2.5px;
    overflow: hidden;
}

.single-product .product-subimages .subimage {
    height: 70px;
    border: 1px solid #e6e6e6;

    transition: 0.1s;
    border-radius: 2.5px;
    overflow: hidden;
}

.single-product .product-subimages .subimage img {
    opacity: 0.7;
    transition: 0.1s;
}

.single-product .product-subimages .subimage:hover img {
    opacity: 1;

}

.single-product .product-subimages .subimage:hover {
    cursor: pointer;
    border: 1px solid #FF7C00;
}

.single-product .product-title {
    line-height: 1.2;
}

.single-product .product-price {
    line-height: 1;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 16, 75, 0.05);
    overflow: hidden;

}

.last_day_sale {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-bottom: 1px dashed #ddd;
    color: var(--danger);
    background-color: #fff2f2;
}

.single-product .product-price .price-from {
    display: block;
    text-decoration: line-through;
    opacity: 0.5;
}

.single-product.btn-show-desc {
    display: block;

}

.single-product .btn-show-desc:hover {
    opacity: 0.7;
    cursor: pointer;
}

.single-product .btn-buy img {}

.single-product .status {
    background-color: white;
    border: 1px solid #e6e6e6;
    margin-bottom: -1px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;

}

.single-product .product-status:before {
    border-bottom-left-radius: 0;

}


.subcategories {
    position: relative;
}

.subcategories .show-more-items {
    padding-bottom: 40px;
}

.collapse.subcategories:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: white;
}

/* deprecated
.subcategories [class*="col-"] {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
} */
.sub-catg {
    display: flex;
    height: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
}

.sub-catg .catg-img {
    height: 55px;

}

/*  deprecated
.sub-catg .catg-name{
    position: absolute;
    bottom: 0;
    background-color: rgba(255,255,255,0.8);
} */
.slider-navigation-item {
    display: inline-block;
}

.product-image-slider-navigation .dot {
    content: "";
    background: #ededed;
    width: 13px;
    height: 13px;
    border-radius: 50px;
}

.product-image-slider-navigation .slider-navigation-item:hover {
    cursor: pointer;
}

.product-image-slider-navigation .slider-navigation-item-image {
    border: 2px solid #ddd;
    overflow: hidden;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    opacity: 0.35;
    transition: 0.2s;
}

.product-image-slider-navigation .active .slider-navigation-item-image {
    opacity: 1;
    border: 2px solid var(--primary);
}

.product-image-slider-navigation .slider-navigation-item-image:hover {
    opacity: 1;
}

.product-image-slider-navigation .active .dot {
    background: var(--primary);
}



/*taka mini animacia*/
.sub-header .categories .category:hover .category-bg-img img {
    animation: dingle 0.2s ease-in;
}

.products .product:hover .btn img.abc-icon {
    animation: dingle 0.2s ease-in;
}

.single-product .btn-buy:hover img {
    animation: dingle 0.2s ease-in;
}

@keyframes dingle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* tip
.btn{transition: 0.1s;}
.btn:hover{
    -webkit-box-shadow: 0px 0px 28px -10px rgba(255,124,0,0.56);
    -moz-box-shadow: 0px 0px 28px -10px rgba(255,124,0,0.56);
    box-shadow: 0px 0px 28px -10px rgba(255,124,0,0.56);
}*/
/* ----- PRODUCT VIEW END --------------------------*/
/* ----- BREADCRUMB --------------------------------*/
.breadcrumb li {
    display: inline;

}

.breadcrumb li a:hover {
    color: #ff7c00;
}

.breadcrumb li:after {
    content: ">";
    padding-left: 5px;
    margin-right: 5px;
    color: #808080;
}

.breadcrumb li:last-child:after {
    content: none;
}

.breadcrumb .breadcrumb-link a {
    text-decoration: underline;

}

.breadcrumb .breadcrumb-link:last-child a,
.breadcrumb .breadcrumb-link:last-child {
    text-decoration: none;
    font-weight: 600;
}

/* ----- BREADCRUMB END ----------------------------*/
/* ----- PAGINATION --------------------------------*/
.pagination.pagination-up {
    border-bottom: none;

}

.pagination-list li:hover {
    opacity: 1 !important;
}

.pagination-link:hover {
    opacity: 0.6;
}

.pagination-link.active:hover {
    opacity: 1 !important;
}

.pagination-list .pagination-link {
    border: 1px solid #1d9001;

}

.pagination-link {
    background-color: #1d9001;

}

.pagination-link.active {
    background-color: #0f4f00;
    border: 1px solid #0f4f00;

}

.pagination-link.active:hover {
    background-color: #0f4f00;
    border: 1px solid #0f4f00;
}

.pagination-list li:first-child .pagination-link {
    border: none;

    position: relative;
}

.pagination-list li:first-child .pagination-link:before {
    position: absolute;
    content: "";
    background-color: inherit;
    top: 0;
    left: -10px;
    width: 75%;
    height: 100%;
    transform: skewX(-20deg);
    border-top-left-radius: 5px;
}

.pagination-up .pagination-list li:first-child .pagination-link:before {
    transform: skewX(20deg);
    border-top-left-radius: 0;
    border-bottom-left-radius: 5px;

}

.show_hide_password {
    display: inline;
    padding: 0px !important;
    margin-top: -10px;
}

.show_hide_password input {
    padding-right: 40px;
}

.show_hide_password::after {
    content: url("../../../img/admin/visible.png");
    position: relative;
    top: 10px;
    margin-left: -40px;
    width: 40px;
    cursor: pointer;
}

.hide_password::after {
    content: url("../../../img/admin/not_visible.png");
}

/*Products loader*/
.products-wrapper {
    min-height: 170px;
}

#pds-ldr {
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: 3;
    transform: translate(-50%);
    background-color: #ffffffdb;
    padding: 15px;
    border-radius: 10px;
}

#pds-ldr.sticked {
    position: fixed;

    top: 70px;
}

.filter_notification {
    position: fixed;
    z-index: 99;
    left: 50%
}

/* product label wrapper - used for position and grouping labels*/
.labels-wrap {
    position: absolute;
    top: 10px;
    display: flex;
    flex-direction: column;
}

/* .labels-wrap.skip-first{
	margin-top: 30px;
} */
.labels-wrap.left {
    left: 10px;
}

.labels-wrap.right {
    right: 10px;
}

/* .labels-wrap.right-bottom{
	bottom: 20px;
	top: unset;
	right: 0;
	left: unset;
}

.labels-wrap.left-bottom{
	bottom: 20px;
	top: unset;
	left: 0;
	right: unset;
} */

/* product label */
/* DEPRECATED */
/* .label{
	position: relative;
	display: inline-flex;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 600;
	z-index: 1;
	transition: 0.2s;
	margin-right: auto;
	
}
.label .label-text{
	padding: 5px 5px 5px 10px;
	background-color: #1d9001;
	color: white;
} */
.small-banner {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-image: url(/themes/abczoo/img/bg-texture.jpg);
    background-size: 100% auto;
    background-repeat: repeat-y;
}

.small-banner.orange {
    border: 1px solid #ffca99;
}

.small-banner.lightgreen {
    border: 1px solid #aed546;
}

.small-banner.forest {
    border: 1px solid #B7BB25;
}

.small-banner.darkyellow {
    border: 1px solid #fcf18d;
}

.small-banner.brown {
    border: 1px solid #AC9048;
}

.small-banner.fish {
    background-image: url(/themes/abczoo/img/bg-fish.jpg);
}

.small-banner.nutri {
    background-image: url(/themes/abczoo/img/vyzivove-bg.jpg);
}

.small-banner.outdoor {
    background-image: url(/themes/abczoo/img/outdoor-bg.jpg);
}

.small-banner.house {
    background-image: url(/themes/abczoo/img/house-bg.jpg);
}

.small-banner-label {
    display: inline-flex;
    align-items: center;
    padding: 0 5px;
    border-radius: 50px;
}


.small-banner-title {
    position: relative;
    z-index: 1;
}

.small-banner-content {
    position: relative;
    z-index: 1;
}

.small-banner-img {
    position: absolute;
    right: 15px;
    bottom: 5px;
    height: 90%;
    width: auto;
}

/* DEPRECATED */
/* .label-new{
    border-radius: 50px;
    padding: 3px 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
} */
.product .label+.label {
    margin-top: 5px;
}

.single-product .label {
    margin-right: 5px;
}

.btn-cancel-order[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* DEPRECATED */
/* .label .label-text{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.label .label-text .icon{
	font-size: 13px;
	margin-right: 2px;
}
.label:before{
	position: absolute;
	content: "";
	background-color: inherit;
	top: 0;
	right: -8px;
	width: 75%;
	height: 100%;
	transform: skewX(-20deg);
	border-radius: 0 0 5px 0 ;                                    
} */

/* labels on right side */
/* .labels-wrap.right .label{
	margin-left: auto;
	margin-right: 0;
} */
/* DEPRECATED */
/* .labels-wrap.right .label:first-of-type:before{
	transform: skewX(-20deg);
	border-radius: 5px 0 0 0 ;    
}
.labels-wrap.right .label .label-text{
	padding: 5px 10px 5px 5px;
}
.labels-wrap.right .label:before{
	left: -7px;
	transform: skewX(20deg);
	border-radius: 5px 0 0 2px ; 
} */

/* labels on right bottom side */
/* DEPRECATED */
/* .labels-wrap.right-bottom .label{
	margin-left: auto;
	margin-right: 0;
}
.labels-wrap.left-bottom .label{
	margin-right: auto;
	margin-left: 0;
} */
/* .labels-wrap.right-bottom .label .label-text, .labels-wrap.left-bottom .label .label-text{
	padding: 5px 5px 5px 0px;
}
.labels-wrap.right-bottom .label:before{
	left: -7px;
	border-radius: 5px 0 0 0 ;
}
.labels-wrap.left-bottom .label:before{
	right: -7px;
	border-radius: 0 5px 0 0 ;
} */

/* label color variants */
/* DEPRECATED */
/* .label.label .label-text,.label.label{
	background-color: #1d9001;
	color: white;
}
.label.label-subgreen .label-text,.label.label-subgreen{
	background-color: #0f4f00;
	color: white;
}
.label.label-red .label-text,.label.label-red {
	background-color: #fd0002;
	color: white;
}
.label.label-yellow .label-text,.label.label-yellow{
	background-color: #ffd900;
	color: #0f4f00;
}
.label.label-gradient .label-text,.label.label-gradient{
	background: linear-gradient(90deg, #F0524B,#F88C04,#DBCE17,#3A9A05,#027087);
	color: white;
}
.label.label-gradient:before{
  background-color: #F0524B;                             
} */


/* labels @animations */
/*
.product-animation:hover .labels-wrap .label{
	transform: translateX(-150%);
}
.product-animation:hover .labels-wrap.right .label,.product:hover .labels-wrap.right-bottom .label{
	transform: translateX(+150%);
}
*/

/* Others */
.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 */
}

.disabled {
    color: #666;
}

.pointer {
    cursor: pointer
}

/* UI Slider */
.ui-slider-handle {
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: white;
    box-shadow: 0px 0px 5px 0px #888888
}

.ui-slider-range {
    background: #1d9001;
}

/* daktela fix */
#daktela-web.dw-design-tint-LIGHT .dw-header {
    background-color: #1d9000 !important;
}

#daktela-web.dw-design-tint-LIGHT .dw-header .dw-icon-hide {
    background-image: url('/themes/abczoo/img/icon/expand.svg') !important;
    background-repeat: no-repeat !important;
    background-size: 100% auto !important;
    background-color: unset !important;

}

#daktela-web.dw-design-tint-LIGHT .dw-greetings {
    background-color: #1d9000 !important;
}

#daktela-web.dw-design-tint-LIGHT .dw-icon-times {
    background-image: url('/themes/abczoo/img/icon/close.svg') !important;
    background-size: 100% auto !important;
}

#daktela-web.dw-design-tint-LIGHT .dw-greetings [class*="dw-icon-"] {
    background-color: #1d9000 !important;
}

#daktela-web-header-close {
    background-color: #1d9000 !important;
}

#daktela-web.dw-design-button-BOOKMARK .dw-greetings {
    display: none !important;
}

#daktela-web.dw-design-tint-LIGHT .dw-header-info {
    display: none !important;
}

#daktela-web.dw-design-button-BOOKMARK .dw-body {
    width: 230px;
    max-width: 230px;
}

#daktela-web.dw-design-button-BOOKMARK .dw-body.dw-visible {
    max-width: calc(100% - 20px) !important;
    width: calc(100% - 20px) !important;
    border-radius: 20px !important;
}

/* BLOG */

.blog-comming {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blog-comming form {
    width: 80%;

}

.blog-comming i {
    font-size: 55px;
}

.noscroll {
    height: 100vh !important;
    overflow: hidden !important;
    min-height: -webkit-fill-available !important;
    /* position: fixed !important; */
}

.blog-banner-wrapper {
    background-repeat: no-repeat;
    width: 100%;
    padding: 20px;
    border-radius: 8%;
}

.abcclub-logo {
    height: 50px;
    margin-top: -20px;
}

.bg-cover {
    background-size: contain;
}

.bg-center {
    background-position: center;
}

.input-email {
    background-color: rgb(237, 237, 237);
    padding: 8px;
    font-size: 11px;
    border: none;
    width: 200px;
    color: white;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
}

.btn-register {
    padding: 8px 12px;
    background-color: #ff7300;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 8px;

}

.btn-submit {
    width: 40px;
    background: none;
    color: #1A370A;
    border: none;
    background-color: white;
    display: flex;
    align-items: center;
    text-align: center;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
}

.max-w-350 {
    max-width: 350px;
}

.order-products {
    list-style: none;
    display: flex;
    gap: 5px;
}

.order-products .product-item {
    display: inline-block;
}

.wider-table {
    width: 100%;
    table-layout: auto;
}

.wider-table th,
.wider-table td {
    padding: 10px;
    /* Add padding to give some space between columns */
    text-align: left;
}

/* Products column needs more space */
.wider-table th:nth-child(8),
/* 8th column (Products) */
.wider-table td:nth-child(8) {
    width: 25%;
    /* Adjust this as necessary to fit your needs */
}

.table-history {
    border: 1px solid var(--gray);
}

.table-history tr {
    border-bottom: 1px solid var(--gray);
}

.table-history tr td {
    padding: 10px;
}

/* TOP SELLING MODUL */
.top-selling {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.top-selling .top-selling-title {}

.top-selling .top-selling-title:hover {
    text-decoration: underline;
    cursor: pointer;
}

.top-selling .show-more {
    text-decoration: underline;
}

.top-selling .show-more:hover {
    cursor: pointer;
}

.top-selling .top-selling-product:nth-child(n+4) {
    display: none;
}

.top-selling.show .top-selling-product:nth-child(n+4) {
    display: flex;
}

.top-selling .top-selling-product .img {
    height: 48px;
    width: 48px;
    overflow: hidden;
    display: flex;
}

.top-selling .top-selling-product .img img {
    width: 100%;
    height: auto;
}

.top-selling-product .content {
    width: calc(100% - 60px);
}

.top-selling .top-selling-product+.top-selling-product {
    margin-top: 7px;

    padding-top: 7px;
    border-top: 1px solid #ddd;
}

.text-slashed {
    text-decoration: line-through;
}

/* QUANTITY DISCOUNT */
.quantity_discount {}

.quantity_discount i {
    /*background: white;
     color: #4caf50;*/
    font-size: 13px;
    border-radius: 50px;
    margin-right: 10px;
    opacity: 1;
    background: #e4e4e4;
    color: #e4e4e4;
    font-weight: bold;
    padding: 2px;
}

.quantity_discount.disabled .quantity_text,
.quantity_discount.disabled .quantity_price {
    color: #bbb;
    text-decoration: line-through;
}

.quantity_discount.selected i {
    opacity: 1;
    background: white;
    color: #4caf50;

}

.quantity_discount:hover {
    background: #f2f2f2;
    cursor: pointer;
}

.quantity_discount.disabled:hover {
    background: white;
    cursor: default;
}

.quantity_discount.selected {
    background: #4caf50;
    color: white;
}

.quantity_discount.selected .weight-add {
    display: none;
}

/* END QUANTITY DISCOUNT */
/* PRODUCT VARIANTS ------------- */
.product-variants {
    margin: -5px;
}

.product-variants .variant {
    border-radius: 2.5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #f8f8f8;
    border: 1px solid #fbfbfb;
}

.product-variants .variant .variant-name {
    color: var(--black);
}

.product-variants .variant .variant-price {
    color: #949494;
}

.product-variants .variant.disabled {
    background: #fbfbfb;
}

.product-variants .variant.disabled p {
    color: #b9b9b9;

}

.product-variants .variant.disabled .variant-name {
    text-decoration: line-through;
}

.product-variants .variant.disabled {
    position: relative;
}

.product-variants .variant.disabled .icon {

    position: absolute;
    left: 5px;
    top: 5px;
    color: #b9b9b9;
    font-size: 16px;
}

.product-variants .variant.active.disabled .icon {

    color: inherit;

}

.product-variants .variant-wrap {
    padding: 5px;
}

.product-variants .variant.active,
.product-variants .variant.active:hover {
    border: 1px solid var(--secondary);
    /* background-color: #FFF2E5; */
    background-color: var(--secondary);
    color: white;
}

.product-variants .variant.active .variant-price,
.product-variants .variant.active:hover .variant-price,
.product-variants .variant.active .variant-name {
    color: white;
}

.product-variants .variant:hover {
    cursor: pointer;
    border: 1px solid #a1a1a1;
}

.product-variants .variant.disabled:hover {

    border: 1px solid #fbfbfb;
}

.product-variants .variant.active:hover {
    cursor: default;
}

/* END PRODUCT VARIANTS ------------- */

/* PRODUCT COLLAPSE DESCRIPTION */
.product-description-collapse {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 55%);
    height: 110px;

}

/* show how many filters are active on mobile in filter button */
.total-active-filters {
    display: flex;
    width: 20px;
    height: 20px;
    background: orange;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

/* novy product sorting */
.products-select-sort .select-label {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    background: white;
}

.products-select-sort .select-label:hover {
    border: 1px solid #a1a1a1;
    cursor: pointer;
}

.products-select-sort .select-label.active:hover {

    cursor: default;
}

.products-select-sort .select-label label.disabled {
    color: #ddd;
}

.products-select-sort .select-label.active {
    border: 1px solid #ff9140;
    background-color: #FFF2E5;
}

.products-select-sort .select-label input,
.select-label div {
    display: none;
}

/* PRODUCT PRICE TOTAL  */

.product-club-price {
    font-size: 18px;
    color: #363537;
}

.product-club-points {
    font-size: 12px;
    font-weight: 400;
}

.price-additional-info i {
    display: none;

}

.price-additional-info .color {
    color: var(--success);
}

.price-additional-info.active {
    background-color: var(--soft-success);
    padding: 10px;
}

.price-additional-info.active i {
    display: flex;
    background-color: var(--success);
}

.price-additional-info.active.sold {
    background-color: var(--soft-danger);
    padding: 10px;
}

.price-additional-info.active.sold i {
    display: flex;
    background-color: var(--danger);
}


/* new card */
.card-new {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px 0px rgb(189 184 184 / 35%);
}

/* blockcategories on homepage */

.section-maincategories .category-img {
    width: 90px;
    height: auto;
}

/* new test CTA btn */
.btn-cta {
    border-radius: 5px;
    background: linear-gradient(0deg, rgb(54 165 27) 0%, rgb(67 195 37) 100%);
    /* border: 1px solid hwb(109deg 11% 34%); */
    /* background: linear-gradient(0deg,  #ff7c00 0%,  #ff9531 100%);
    border:1px solid  #ff7c00; */
    display: flex;
    justify-content: center;
    color: white;
    transition: 0.2s;
}

.btn-cta:hover {
    /* background: linear-gradient(0deg, rgb(74, 191, 45) 0%, rgb(85, 213, 56) 100%);
    border: 1px solid rgb(83, 197, 58); */
    background: linear-gradient(0deg, rgb(44, 143, 19) 0%, rgb(55, 172, 29) 100%);
    /* border: 1px solid rgb(44, 148, 20); */
}

.btn-cta.disabled {
    background: linear-gradient(0deg, rgb(54 165 27) 0%, rgb(67 195 37) 100%) !important;
    color: white;
    opacity: 0.3;
    cursor: not-allowed !important;
}

.btn-cta.gray {
    background: linear-gradient(0deg, rgb(235 235 235) 0%, rgb(249, 249, 249) 100%);
    /* border: 1px solid hwb(0deg 84% 16%); */
    color: rgb(100, 100, 100);
}

.btn-cta.gray:hover {
    background: linear-gradient(0deg, rgb(203, 203, 203) 0%, rgb(234, 234, 234) 100%);
    /* border: 1px solid rgb(197, 197, 197); */

}

/* NEW CHECKOUT */

.checkout-tabs .checkout-tab {
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.checkout-tabs .checkout-tab .checkout_number {
    background-color: #d4d4d4;
    height: 25px;
    width: 25px;

    min-height: 25px;
    min-width: 25px;
}

.checkout-tabs .checkout-tab .checkout-tab-title {
    color: #d4d4d4;
}

.checkout-tabs .checkout-tab .checkout_number {
    border-radius: 50px;
}

.checkout-tabs .checkout-tab.active {
    border-bottom: 2px solid rgb(255, 124, 1);
}

.checkout-tabs .checkout-tab.active .checkout-tab-title {
    color: rgb(255, 124, 1);
}

.checkout-tabs .checkout-tab.active .checkout_number {
    background-color: rgb(255, 124, 1);
}

.checkout-wrapper {
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 0;
}

.checkout-wrapper:before,
.checkout-wrapper:after {
    content: "";
    background: #f8f8f8;
    position: absolute;
    top: -1px;
    height: calc(100% + 2px);
    width: 800px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.checkout-wrapper:before {
    right: 100%;
}

.checkout-wrapper:after {
    left: 100%;
}

.checkout-title {
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-flex;
    font-size: 18px;
    align-items: center;
}

.checkout-icon {
    background-color: #1d9001;
    /* background-color: #ff7c00; */
    border-radius: 50px;
    font-size: 16px !important;
    color: white;
    margin-right: 10px;
    padding: 6px;
}

/* START checkout products */
.checkout-products-wrap {
    display: table;
}

.checkout-products-wrap .checkout-product {
    display: table-row;
    background-color: white;
}

.checkout-products-wrap .checkout-product .checkout-product-td {
    display: table-cell;
    vertical-align: top;
    padding-bottom: 5px;
    padding-top: 15px;
}

.checkout-product+.checkout-product .checkout-product-td {
    border-top: 1px solid #ddd;
}

.checkout-product .tooltip {
    top: -30px;
    left: 20px;
}

/* END checkout products */

.checkout-card {
    background-color: white;
    box-shadow: 0px 4px 6px 0px rgb(189 184 184 / 35%);
    padding: 15px;
    border-radius: 5px;
    overflow: hidden;
}


.progress-bar {
    display: flex;
    width: 100%;
    height: 8px;
    border-radius: 3px;
    background-color: #e6e6e6;
    position: relative;
    margin-top: 25px;
}

.progress-bar .progress {
    z-index:1;
    content: "";
    background-color: #1d9001;
    position: relative;
    height: 100%;
    transition: 0.2s;
}

.progress-bar .shipping-range {
    position: absolute;
    white-space: nowrap;       
    z-index:2;
    margin-top:-20px;
    text-align: center !important;
    width: 100%;
    left: 10%;
}

.progress-bar .shipping-range.last {
    left: -10%;
}

.progress-bar .shipping-range.style-2 {
    left: 0% !important;
}


.progress-bar .shipping-car {
    display: inline-flex;      
    align-items: center;        
    justify-content: center;    
    gap: 5px;                   
    white-space: nowrap;     
    border-radius: 5px;
    color: white;
    background-color: var(--secondary);
    padding: 13px;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 16px;
    box-shadow: 0px 0px 3px 0px #ff7c0094;
    margin-top:-12px; 
    left: 0vw;
    z-index:2;
    margin-top: -9px;
}

.progress-bar .shipping-car-end {
    position: absolute;
    display: inline-flex;      
    align-items: center;        
    justify-content: center;    
    gap: 5px;                   
    white-space: nowrap;     
    border-radius: 5px;
    color: white;
    padding: 2px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 16px;
    background: var(--lightgreen);
    box-shadow: 0px 0px 3px 0px #90BF80;
    margin-top:-10px; 
    right: 0vw;
    z-index:2;
}


.shipping-car.success, .shipping-car-end.success{
    background: var(--success);
    box-shadow: 0px 0px 3px 0px #4caf509c;
}

.shipping-car.default{
    background: var(--lightorange);
    box-shadow: 0px 0px 3px 0px #FFAB66;
}

.progress-bar .car-center {
    margin-left: -15% !important;
}

.shipping-car-end .mobile{
    display: none;
}

@media only screen and (max-width: 767px) {

    .progress-bar {
        margin-top: 35px;
    }

    .progress-bar .shipping-range {
        margin-top:-30px;
        left: 20%;
    }

    .progress-bar .shipping-car {
        padding: 4px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .progress-bar .car-center {
        margin-left: -33% !important;
    }

    .progress-bar .shipping-car-end {
        position: absolute !important;
        padding: 0px;
        padding-left: 4px;
        padding-right: 4px;
        margin-left: 52% !important;
    }

    .shipping-car-end .desktop{
        display: none;
    }

    .shipping-car-end .mobile{
        display: flex;
    }
    
}
.progress-bar .progress-point {
    position: absolute;
    border-radius: 100%;
    color: white;
    background-color: var(--secondary);
    padding: 7px;
    font-size: 16px;
    top: -13px;
    right: -1px;
    box-shadow: 0px 0px 9px 0px #ff7c0094;
}

.checkout-discount-wrapper {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    background: #fff7ef;
    padding: 15px;
    border: 1px solid #ffb46e;
    border-radius: 5px;
    border: none;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.checkout-discount-wrapper #modal_freeShippingText,
.checkout-discount-wrapper #modal_noFreeShippingText,
.checkout-discount-wrapper #modal_shippingText {
    display: none;
}

.checkout-discount-wrapper.no_free_shipping #modal_noFreeShippingText,
.checkout-discount-wrapper.shipping #modal_shippingText,
.checkout-discount-wrapper.free_shipping #modal_freeShippingText {
    display: block;
}

.checkout-discount-wrapper.no_free_shipping #freeShippingProgressBar {
    display: none;
}

/* free shipping */
.checkout-discount-wrapper.free_shipping,
.checkout-discount-wrapper.success{
    background-color: var(--soft-success);
}

.checkout-discount-wrapper.free_shipping .progress,
.checkout-discount-wrapper.free_shipping .progress-point,
.checkout-discount-wrapper.success .progress,
.checkout-discount-wrapper.success .progress-point {
    background: var(--success);
}

.checkout-discount-wrapper.free_shipping .progress-point,
.checkout-discount-wrapper.success .progress-point {
    box-shadow: 0px 0px 9px 0px #4caf509c;
    right: -3px;
}



/* .checkout-info-tabs{

    }
    .checkout-info-tabs .checkout-info-tab{
        border-left: 1px solid #1d9001;
        border-top: 1px solid #1d9001;
        border-bottom: 1px solid #1d9001;
        color: #1d9001;
        padding: 10px 20px;
        text-align: center;
        background-color: white;
    }
    .checkout-info-tabs .checkout-info-tab:hover{
        background-color: #e4fcde;
        cursor: pointer;
    }
    .checkout-info-tabs .checkout-info-tab.active:hover{
        background-color: #1d9001;
        cursor: default;
    }
    .checkout-info-tabs .checkout-info-tab:first-child{
        border-radius: 5px 0 0 5px;
    }
    .checkout-info-tabs .checkout-info-tab:last-child{
        border-radius: 0 5px 5px 0;
        border-right: 1px solid #1d9001;
    }
    .checkout-info-tabs .checkout-info-tab.active{
        background-color:  #1d9001;
        color:white;
       
    } */

.checkout-input {
    padding: 7px 14px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.checkout-input.voucher-input {
    width: 60%;
}

@media only screen and (max-width: 767px) {
    .checkout-input {
        padding: 10px 15px;

    }

    .checkout-field .checkbox,
    .form-field .checkbox {
        font-size: 14px;
    }
}

.bg-lightorange .checkout-input {
    border: 1px solid #ffca99;
}

.checkout-validate {
    position: relative;
}

.checkout-validate.loading:after {
    position: absolute;
    right: 30px;
    top: 55%;
    font-family: "Material Icons";
    content: "\e627";
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    color: var(--secondary);
}

/* succesfully validated - green */
.checkout-validate.success .label-icon {
    color: var(--success);
}

.checkout-validate .label-icon {
    display: none;
}

.checkout-validate.success input,
.checkout-input-validated {
    background-color: var(--soft-success);
    border: 1px solid var(--success);
}

/* not validated - red */
.checkout-validate.danger .label-icon {
    color: var(--danger);
}

.checkout-validate.danger input,
.checkout-input-validated {
    background-color: var(--soft-danger);
    border: 1px solid var(--danger);
}

.checkout-validate.success .label-icon,
.checkout-validate.danger .label-icon {
    display: inline-block;
}

.checkout-field,
.form-field {
    margin-top: 15px;
    /* padding-left: 10px;
        padding-right: 10px; */
}

.checkout-field input.show-tooltip,
.form-field input.show-tooltip {
    border: 1px solid #f44336;
}

.checkout-field select.show-tooltip,
.form-field input.show-tooltip {
    border: 1px solid #f44336;
}

.form-field.show_hide_password {
    position: relative;
}


.show_hide_password_new {
    position: relative;
}

.show_hide_password_new {
    content: url("../../../img/admin/visible.png");
    position: absolute;
    top: 27px;
    right: 0px;
    margin-right: 30px;
    cursor: pointer;
}

.hide_password_new {
    content: url("../../../img/admin/not_visible.png");
}

.checkout-overlay,
.loading-overlay {
    display: flex;
    background-color: rgba(255, 255, 255, 0.8);
    /* background-color: #f8f8f8; */
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.checkout-overlay i,
.loading-overlay i {
    font-size: 65px !important;
    position: relative;
    z-index: 5;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* new checkbox */
.checkbox {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 15px;
    width: 15px;
    /* background-color: #eee; */
    transition: 0.15s;
    border: 1px solid #1d8f02;
    border-radius: 2.5px;
}

.checkbox.fs-12 .checkmark {
    top: 1px;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input~.checkmark {
    /* background-color: #ccc; */
    background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked~.checkmark {
    transition: 0.15s;
    background-color: #1d8f02;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark i {
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked~.checkmark i {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark i {
    left: 0;
    top: 0;
    font-size: 13px !important;
    color: white;
    font-weight: 700;
}

.required {
    transition: 0.2s;
}

.required.show-tooltip:before {

    background: #f44336;
    color: white;
    font-size: 12px;
    margin-left: 5px;
    padding: 0 5px;
    border-radius: 50px;
}

.required.show-tooltip:after {
    content: none;
}

.checkout-wrapper .btn-cta,
.checkout-wrapper .btn-cta.disabled:hover {
    border-radius: 5px;
    background: linear-gradient(0deg, rgb(54 165 27) 0%, rgb(67 195 37) 100%);
    border: 1px solid hwb(109deg 11% 34%);

    display: flex;
    justify-content: center;
    color: white;
    transition: 0.2s;
}

.checkout-wrapper .btn-cta:hover {

    background: linear-gradient(0deg, rgb(44, 143, 19) 0%, rgb(55, 172, 29) 100%);
    border: 1px solid rgb(44, 148, 20);
}

.checkout-wrapper .btn-cta.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkout-wrapper .btn-cta.gray {
    background: linear-gradient(0deg, rgb(235 235 235) 0%, rgb(255 255 255) 100%);
    border: 1px solid hwb(0deg 84% 16%);
    color: rgb(71 71 71);
}

.checkout-wrapper .btn-cta.gray:hover {
    background: linear-gradient(0deg, rgb(203, 203, 203) 0%, rgb(234, 234, 234) 100%);
    border: 1px solid rgb(197, 197, 197);

}




/* NEW PRODUCT CARD */

.product .btn-cta {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 4px;
    padding-right: 10px;
    font-size: 14px;
    justify-content: center;
    align-items: center;
}

/* mobile */

.product-summary {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 30px;
}

.product-summary .progress-bar-container {
    width: 100%;
    max-width: 300px;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.product-summary .progress-bar-products {
    height: 100%;
    background-color: #28a745;
    transition: width 0.5s ease-in-out;
    border-radius: 4px;
}

.load-more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

#load-more-btn {
    margin-top: 10px;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
}

.product-price-label {
    border-radius: 5px;
    overflow: hidden;
    flex-grow: 1;
}

.product-price-label .head {
    text-align: center;
    font-weight: 700;
    font-size: 10px;
    color: white;
    background: rgb(0, 0, 0);
    background: linear-gradient(320deg, rgba(0, 0, 0, 1) 0%, rgba(108, 108, 108, 1) 100%);
    padding: 5px;
    text-transform: uppercase;
}

.product-price-label .body {
    padding: 7px;
    background: rgb(255, 233, 27);
    background: linear-gradient(320deg, rgba(255, 233, 27, 1) 0%, rgba(255, 238, 141, 1) 100%);
    color: black;
    text-align: right;
    line-height: 1.1;
    text-align: center;
}

.product-price-label.black-friday .body {
    background: #4c4c4c;
    color: white;
}

.product-price-label.super-reduction .head {
    background: rgb(0, 0, 0);
    background: linear-gradient(320deg, rgba(0, 0, 0, 1) 0%, rgba(108, 108, 108, 1) 100%);
}

.product-price-label.super-reduction .body {
    background: #FD0002;
    background: linear-gradient(320deg, #FD0002 0%, #FD7171 100%);
    color: white;
}

.product-price-label.new .head {
    background: #FFE81B;
    background: linear-gradient(320deg, #FFE81B 0%, #FFF492 100%);
    color: rgb(26, 26, 26);
}

.product-price-label.new .body {
    background: #1D9001;
    background: linear-gradient(320deg, #1D9001 0%, #64D24A 100%);
    color: white;
}

.reduction-price-wrap {
    display: none;
}

.reduction-price-wrap .text {
    color: inherit !important;
}

.product-price-label.super-reduction .reduction-wrap {
    display: block;
}

.product-price-label.convenient-packaging .reduction-price-wrap,
.product-price-label.new .reduction-price-wrap,
.product-price-label.black-friday .reduction-price-wrap {
    display: block;
}

.product-price-label .price {
    display: block;
    font-weight: 700;
    font-size: 16px;
}

.product-price-label .reduction-wrap {
    margin-top: 5px;
    font-size: 10px;
    display: none;
}

.product-price-label .reduction-wrap .reduction {
    font-weight: 700;
}

/* NEW PRODUCT STATUS */
.product-status,
.product-status.availability-1 {
    /* background-color: #E0FFE1;
            padding: 2px 5px; */
    border-radius: 5px;
    overflow: hidden;
    color: #4CAF50;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
}

.product-status .icon {
    margin-right: 3px;
    font-size: inherit;
}

.product-status.availability-2 {
    /* background-color: #FFF8E0; */
    color: #e69230;
}

.product-status.availability-3 {
    /* background-color: #FFE0E0; */
    color: #E9242E;
}

.product-status .text {
    font-weight: 600;

}

/* fix */
.price-final {
    color: #363537;
}

.price-final.reduced {
    color: #E9242E;
}

/* price from fix */
.price-from {
    position: relative;
    font-size: 12px;
    text-decoration: none !important;
    width: fit-content;
}

.price-from:after {
    content: "";
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    border-bottom: 1px solid;
    transform: skewY(-10deg);
}

/* NEW LABELS */
.label {
    border-radius: 50px;
    padding: 3px 7px;
    font-size: 9px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    background-color: #ffd900;
    color: #0f4f00;
    text-transform: uppercase;
    font-weight: 600;
}

.label-gift {
    background-color: #167a3a;
    color: white;
}

.label-valentines {
    background: #ffc5e6;
    color: #d60000;
}

.label-easter {
    background: #fffbc9;
    color: #9b7eb1;
}

.single-product .label {
    display: inline-flex;
    align-items: center;
}

.label.style-2 {
    background-color: #BFD7EA;
    color: #286098;
}

.label.style-3 {
    background-color: #673ab7;
    color: white;
}

.black_friday_label,
.gift_tip_label,
.optimal_nutrition_label,
.acana_sale_label,
.orijen_sale_label,
.valentine_day_label {
    display: flex;
    align-items: center;
    /*  display: table; */
}

/* BlackFriday inside product */

.blackFriday .color-gray {
    color: white;
}

.blackFriday .loyalty_v2-pin-product-page-wrapper {
    color: white;
}

.blackFriday .price-from {
    opacity: 0.9 !important;
}

.product-price.blackFriday {
    overflow: visible;
    background: #4c4c4c;
    color: white;
}

/* /BlackFriday inside product */


.label.style-4 {
    background-color: #000;
    color: #FFFFFF;
    display: inline-block;
    z-index: 1 !important;
    margin-left: 15px !important;
    padding-left: 15px !important;
    padding-top: 4px !important;
    margin-top: 15px;
}

.label.style-5 {
    background-color: #167a3a;
    color: #FFFFFF;
    display: inline-block;
    z-index: 1 !important;
    margin-left: 15px !important;
    padding-left: 15px !important;
    padding-top: 4px !important;
    /*  margin-top: 18px; */
}

.label.style-6 {
    background-color: #ff7c00;
    color: #FFFFFF;
    display: inline-block;
    z-index: 1 !important;
    border-top-left-radius: 0% !important;
    border-bottom-left-radius: 0% !important;
    margin-top: 6px !important;
    margin-left: 35px !important;
    padding-left: 7px !important;
    padding-top: 4px !important;
    /*  margin-top: 18px; */
}
.acana_sale_icon > img.abc-icon,
.orijen_sale_icon > img.abc-icon{
    height: 20px !important;
}

.optimal_nutrition_icon > img.abc-icon{
    height: 30px !important;
}

.common_icon {
    display: inline-block;
    z-index: 2 !important;
    position: absolute;
}

.black_friday_icon,
.gift_tip_icon,
.optimal_nutrition_icon,
.valentine_day_icon {
    @extend .common_icon;
}

.optimal_nutrition_icon {
    position: unset;
}

.labels-wrap.right .label {
    margin-left: auto;
}

.label.price-reduction {
    background-color: #E9242E;
    color: white;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10px;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.f-wrap {
    flex-wrap: wrap;
}

.product .quantity-discount {
    background-color: #e6f5ff;
    border-radius: 5px;
    padding: 3px;

}

.product .quantity-discount .text {
    color: #0B7BAD;
}

/* products in row, when are in class .products */
.products .product-body-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-left: 10px;
    padding-right: 10px;
}

@media only screen and (max-width: 767px) {
    .products .product {
        flex-direction: row;
    }

    .products .product-head-wrapper {
        flex: 2;
    }

    .products .product-body-wrapper {
        flex: 3;
        padding-right: 0;
    }

    .products .product-body-wrapper .product-name {
        margin-top: 0 !important;
    }

    .products .product {
        padding-top: 10px;
        padding-bottom: 10px;
    }

}

/* BLOG */
/* blog all */

.article {
    display: flex;
}

.blog-articles .article+.article {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

@media only screen and (max-width: 767px) {
    .blog-articles .article {
        flex-direction: column;
    }
}

.blog-articles .article .article-img {
    /* width: 20%; */
    height: auto;
    position: relative;
    overflow: hidden;
    display: block;

    flex: 1;
}

.blog-articles .article .article-img img {
    width: 100%;
    height: auto;

}

.blog-articles .article-label {
    color: white;
    font-size: 9px;
    text-transform: uppercase;
    padding: 2px 5px;
    border-radius: 50px;
    position: absolute;
    left: 10px;
    top: 10px;
    background: #0000006e;
    font-weight: 600;
}

.blog-articles .article .content {
    flex: 2;
}



/* blog-article */

.single-article .article-date-wrapper .date {
    border-right: 1px solid var(--gray);
}

.single-article .article-img {
    width: 100%;
    height: auto;
}

.single-article .article-content a {

    color: var(--primary);
    text-decoration: underline;

}

.single-article .article-content p {
    /* font-weight: 300; */
    color: #212427;
}

h2,
h3,
h4,
h5,
h6 {
    transition: 0.2s;
}

h2,
h3,
h4,
h5,
h6:target {
    scroll-margin-top: 70px;
    /*  border-left: 10px solid #ff7c00;padding-left: 10px;color: #ff7c00;  */
}

.article-content {
    position: relative;
}

.article-headings-wrap {
    /* position: absolute;
            right: calc(100% + 20px);
            top: 0;
            min-width: 250px;
            padding-right: 15px;
            border-right: 1px solid #ddd; */
    background-color: #f8f8f8;
    padding: 15px;
}

.article-headings {
    padding-left: 15px;
    margin: 0px;
    /* list-style: number; */
}

.article-headings li+li {
    margin-top: 15px;
}

.article-headings li.lvl-2 {
    margin-left: 30px;
}

.article-headings li.lvl-3 {
    margin-left: 60px;
}

.article-headings li::marker {
    color: #1D9001;
}

.single-article .article-content .article-link {
    color: #000;
    text-decoration: none;
    transition: 0.2s;
    /* border-bottom: 1px solid #1D9001; */
}

.single-article .article-content .article-link:hover {
    text-decoration: underline;
}

.single-article .article-content .article-link.active {
    color: #ff7c00;

}

/* mobile and tablet */
@media only screen and (max-width: 1024px) {
    .single-article .article-content img {
        width: 100%;
        height: auto;
    }

    .article-headings li.lvl-2 {
        margin-left: 20px;
    }

    .article-headings li.lvl-3 {
        margin-left: 40px;
    }
}

/* PC */
@media only screen and (min-width: 1025px) {
    .single-article .article-content img {
        max-height: 432px;
        width: auto;
        display: block;
        margin: 0 auto;
    }

    .article-wrapper .breadcrumb-topwrap {
        text-align: center;
    }

    .article-wrapper .breadcrumb-topwrap .breadcrumb-wrap {
        margin-bottom: 5px !important;
    }
}


/* blog sidebar */



.blog-sidebar .heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}


.blog-sidebar .search {
    border: 1px solid var(--gray);
    padding: 5px 10px;
    display: flex;
    width: 100%;
    align-items: center;
    border-radius: 5px;

}

.blog-sidebar .search .icon {
    color: var(--gray);
    margin-right: 10px;
}

.blog-sidebar .search input {
    color: var(--black);
    border: none;
    flex-grow: 1;
}

.blog-menu {
    padding: 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-size: 14px;
    display: block;

}

.blog-menu .blog-menu-link {
    display: flex;
    align-items: center;
}

.blog-menu .blog-menu-link.active span {
    color: var(--secondary);
    text-decoration: underline;
}

.blog-menu .blog-menu-link:hover span {
    text-decoration: underline;
}

.blog-menu .blog-menu-link+.blog-menu-link {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--gray);

}

@media only screen and (max-width: 1024px) {

    .blog-sidebar .heading {
        text-align: center;
    }

    .blog-sidebar .search {
        padding: 10px 15px;
    }

    .blog-menu .blog-menu-link+.blog-menu-link {
        padding-top: 15px;
        margin-top: 15px;
    }
}

.popular-articles-wrap .popular-article {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;

}

.popular-articles-wrap .popular-article:hover {
    cursor: pointer;
}

.popular-articles-wrap .popular-article:hover .content {
    text-decoration: underline;
}

.popular-articles-wrap .popular-article img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.popular-articles-wrap .popular-article:hover:after {
    height: 100%;
}

.popular-articles-wrap .popular-article .content {
    width: 100%;
    color: var(--black);
    padding-top: 10px;
}

.popular-articles-wrap .popular-article+.popular-article {
    margin-top: 15px;
    border-top: 1px solid var(--gray);
    padding-top: 15px;
}

/* REVIEWS ---- */
.rating-stars {
    position: relative;
    display: inline-block;
    height: 13px;
}

.rating-stars .stars {
    background: url('https://abc-zoo.sk/themes/abczoo/img/star.svg') repeat-x;
    height: 100%;
    width: 70px;
}

.rating-stars .stars-active {
    background: url('https://abc-zoo.sk/themes/abczoo/img/star-active.svg') repeat-x;
    background-size: 14px auto;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
}

.rating-stars-wrapper {
    display: flex;
    align-items: center;
}


.product-rating-wrapper .rating-number {
    font-size: 44px;
    font-weight: 700;
}

.progress-bar.rating-bar {
    background-color: #D9D9D9;
    border: none;
    height: 7px;
}

.progress-bar.rating-bar .progress {
    background-color: var(--secondary);
    border-radius: 3px;
}

.product-reviews .review .review-icon {
    font-size: 40px;
}

.product-reviews .review+.review {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid var(--gray);
}


/* NEW FLUID WRAPPER */

.fluid-wrapper {
    position: relative;
    border-top: 1px solid #ddd;
}

.fluid-wrapper:before {
    right: 100%
}

.fluid-wrapper:after {
    left: 100%
}

.fluid-wrapper:before,
.fluid-wrapper:after {
    content: "";
    background: #f8f8f8;
    position: absolute;
    top: -1px;
    height: calc(100% + 2px);
    width: 800px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.fluid-wrapper .card {
    background-color: white;
    box-shadow: 0px 4px 6px 0px rgb(189 184 184 / 35%);
    padding: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: none;

}

.fluid-wrapper .card .card-header {
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-flex;
    font-size: 18px;
    align-items: center;
    background-color: inherit;
    border: none;
}

/* order tracking */
.order-tracking .status {
    display: flex;
    position: relative;

}

.order-tracking .status:before {
    content: "";
    position: absolute;
    left: 9px;
    top: 0;
    height: 100%;
    width: 1px;

}

.order-tracking .status {
    padding-bottom: 20px;
}

.order-tracking .status:last-child {
    padding: 0;
}

.order-tracking .status:last-child:before {
    content: none;

}

.order-tracking .status+.status {
    padding-top: 0;
}

.order-tracking .status .icon {
    background: white;
    border-radius: 50px;
    font-size: 20px;
    text-align: center;
    z-index: 1;
    width: 20px;
    height: 20px;
}

.order-tracking .status .text {
    font-weight: 700;
}

.order-tracking .status:before {
    background-color: #cdcdcd;
}

.order-tracking .status .text {
    color: #cdcdcd;
}

.order-tracking .status .icon {
    background-color: #cdcdcd;
    color: white
}

.order-tracking .status.done:before {
    background-color: #43C325;
}

.order-tracking .status.done .text {
    color: #43C325;
}

.order-tracking .status.done .icon {
    background-color: #43C325;
    color: white
}

.order-tracking .status.failed:before {
    background-color: var(--danger);
}

.order-tracking .status.failed .text {
    color: var(--danger);
}

.order-tracking .status.failed .icon {
    background-color: var(--danger);
    color: white
}

.order-tracking .status.in-progress:before {
    background-color: #ff7c00;
}

.order-tracking .status.in-progress .text {
    color: #ff7c00;
}

.order-tracking .status.in-progress .icon {
    background-color: #ff7c00;
    color: white
}


.order-tracking .status .text {
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 10px;
}

.fluid-wrapper textarea,
.fluid-wrapper input,
.fluid-wrapper select {
    border: 1px solid #ddd !important;
    background-color: white !important;
}

.messages .card {
    border: 1px solid #ffca99;
    background: #fff4ea;
}

.messages .card+.card {
    margin-top: 10px;
}

.popup-contact {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-contact:hover {
    border: 1px solid #1d9001;
    cursor: pointer;
}

.popup-contact+.popup-contact {
    margin-top: 10px;
}


/* TOOLTIP */
.has-tooltip {
    /*position: relative;*/
    display: inline-block;
}

.tooltip-wrapper {
    z-index: 2;
    position: absolute;
    visibility: hidden;
    background-color: rgb(46, 46, 46);
    opacity: 0;
    transition: opacity .3s;
}

.has-tooltip:hover .tooltip-wrapper {
    visibility: visible;
    opacity: 1;
}

.tooltip {
    display: block;
    position: relative;
    width: 280px;
    background-color: rgb(46, 46, 46);
    color: #fff;
    padding: 5px 7px;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    transition: opacity .3s;
    /* opacity: 0;*/
    top: -10px;
    left: 5px;
}

.tooltip:after {
    content: "";
    position: absolute;
    top: 20px;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent rgb(46, 46, 46) transparent transparent;
}

.tooltip-icon {
    background-color: #b1b1b1;
    color: white;
}

.has-tooltip.product-tooltip .tooltip {
    top: 25px;
    left: -72px;
}

.has-tooltip.product-tooltip .tooltip:after {
    content: none;
}

.has-tooltip.delivery-tooltip .tooltip {
    top: -45px;
    left: -150px;
    white-space: normal !important;    
    max-width: 200px;                   
    word-break: break-word;  
    background-color: #333;
    color: white;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 4px;
    z-index: 9999;
    line-height: 1.4;
}

.has-tooltip.delivery-tooltip .tooltip:after {
    content: none;
}

/* @2023 - new banners on homepage */
.home-banner {
    border-radius: 5px;
    overflow: hidden;
}

.home-banner img {
    width: 100%;
    height: auto;
}

.home-banner .img-icon {
    width: 95px;
}

.home-banner {
    background-color: #F4F4F0;
}

.home-banner.reactive {
    /* padding: 10px; */
    display: flex;
    align-items: center;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 0px;
}

.home-banner.reactive .img-icon {
    position: relative;
}

.home-banner.reactive .img-icon .main-icon {
    position: relative;
    z-index: 1;
}

.home-banner.reactive .before,
.home-banner.reactive .after {
    z-index: 0;
    position: absolute;
    filter: blur(2px);
    width: 60px;
    opacity: 0.3;
}

.home-banner.reactive .before {
    right: -35px;
    top: -35px;
    height: auto;
    transform: rotate(319deg);
}

.home-banner.reactive .after {
    left: -7px;
    bottom: -41px;
    transform: rotate(347deg);
}

.home-banner.reactive .banner-content {
    position: relative;
    z-index: 1;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: 20px;
    transition: 0.1s;
}

.home-banner.reactive .banner-content .banner-title {
    margin-top: 0px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.home-banner.reactive .banner-content a {
    padding: 5px 20px;
    padding-right: 10px;
}

/* hookLeftColumn */
.home-banner.reactive.left .banner-content {
    margin-left: 5px;
}

.home-banner.reactive.left {
    margin: 0px;
    border-radius: 5px;
}

.home-banner.reactive.left .main-icon {
    transition: 0.2s;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
}

.home-banner.reactive.left:hover {
    /* opacity: 0.85; */
}

.home-banner.reactive.left:hover .banner-content {
    /* transform: scale(1.15); */
}

.home-banner.reactive.left:hover .main-icon {
    animation-name: dingle;
    animation-timing-function: ease;
}

.home-banner.left {
    height: 85px;
}

.img-smaller.home-banner.left .img-icon {
    height: 85%;
    width: auto;
}

.img-smaller.home-banner.left {
    height: 60px;
}

.home-banner.left .img-icon {
    height: 85%;
    width: auto;
}

.home-banner.left .img-icon .main-icon {
    height: 100%;
    width: auto;
}

.nav-mobile-wrapper .home-banner+.home-banner {
    margin-top: 15px;
}

.home-banner.left .banner-content {
    padding: 0px;
}

.home-banner.left .banner-content .banner-title:after {
    content: "";
    width: 0px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #1d232d;
    transition: 0.15s;
}

.home-banner.left .banner-content .banner-title.color-white:after {
    background-color: white;
}

.home-banner.left:hover .banner-content .banner-title:after {
    width: 100%;
}

/* blog */
.home-banner.blog .img-icon .main-icon {
    bottom: -10px;
}

.hook-under-price .tooltip {
    top: -80px !important;
    left: -40px !important;
    width: 210px !important;
    font-size: 12px;
}

.customer-account .tooltip {
    top: 10px !important;
}

.product-price .tooltip {
    top: 30px !important;
}

/* authentication */
.login-social {
    display: flex!important;
    align-items: center;
    background-color: white;
    justify-content: center;
    align-items: center;
    padding: 7px 7px!important;
}

.login-social-text {
    font-size: 14px;
    white-space: nowrap;
}

.login-social:hover {
    background-color: #f4f4f4;
}


.login-social .login-social-icon {
    width: 20px;
    height: auto;
    margin-right: 10px;
}

.login-delimiter::before {
    content: "";
    width: 100%;
    position: absolute;
    height: 1px;
    background-color: var(--gray);
    left: 0;
    top: 50%;

}

.login-delimiter {
    position: relative;
    color: var(--gray);
    width: 100%;
    text-align: center;
    display: block;
}

.login-delimiter .text {
    background-color: white;
    padding-left: 7px;
    padding-right: 7px;
    position: relative;
}

.login-tabs .tab {
    display: none;
}

.login-tabs .tab.active {
    display: block;
}

.cursor {
    cursor: pointer !important;
}

/* module: sizetables - modal content */
#sizetablesContent {
    overflow: scroll;
}

#sizetablesContent table {
    width: 100%;
}

#sizetablesContent td,
#sizetablesContent th {
    border: 1px solid #ddd;
    padding: 8px;
}

#sizetablesContent tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* #sizetablesContent tr:hover {background-color: #ddd;} */

#sizetablesContent th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #04AA6D;
    color: white;
}


/* new category description design */
.category-info p,
.category-info span,
.category-info ul,
.category-info ul li {
    font-size: 14px;
    line-height: 19px;
    margin-top: 0;
    font-weight: 400;
    color: #303030;
    /* color: var(--lightblack) */
    text-align: unset !important;
}

.category-info .collapse-btn {
    margin-top: 10px;
}

.category-info strong {
    font-weight: 600;
}

.category-info a {
    color: var(--primary);
    text-decoration: underline;

}

.category-info a:hover {
    text-decoration: underline;
}

.category-info h2,
.category-info h2 strong,
.category-info strong h2 {
    font-weight: 700;
    font-size: 18px;
    margin: 30px 0 0;
    padding-bottom: 0.25em;
    text-align: unset !important;
}

.category-info h2,
.category-info h3 {
    color: #0f4f00;
    text-align: unset !important;
}

.category-info h3,
.category-info strong h3,
.category-info h3 strong {

    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 0.2em;
}

.category-info ul {
    margin-top: 10px;
    padding-left: 0;
}

.category-info ul li {
    padding: 0 0 0 15px;
    list-style: none;
    background: 0 0;
    padding-left: 23px;
    padding-bottom: 10px;
    vertical-align: middle;
}

.category-info ul li:before {
    content: "\e1c4";
    font-family: 'Material Icons';
    display: inline-block;
    margin: 0 8px 0 -23px;
    color: var(--secondary);
    font-size: 16px;
    vertical-align: middle;
}

.filter-used-count {
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 20px;
    height: 20px;
    font-size: 12px;
    margin-left: 5px;
    display: inline-flex;
}

.filter-used-count.hidden {
    display: none !important;
}

/* Skeletons for loading sliders */
@keyframes shine {
    to {
        background-position-x: -300%;
    }
}

.slider-loader .skeleton {
    min-height: 270px;
    border-radius: 5px;
    content: "";
    width: 100%;

    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 300% 200%;
    animation: 2s shine linear infinite;


}

/* ----- SKELETON LOADING --------------------------*/
/* Skeleton loader styles */
.skeleton {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 4px;
    background-size: 300% 200%;
    content: "";

    display: inline-block;
    height: 20px;
    width: 100%;
    animation: 2s shine linear infinite;
}

.skeleton-wrapper {
    display: flex;
    flex-direction: column;
}

.skeleton-checkbox {
    height: 20px;
    width: 20px;
}

.skeleton-text {
    height: 20px;
    width: 80%;
}


/* ----- SKELETON LOADING END ----------------------*/
.skeleton-wrapper-image {
    display: flex;
    gap: 10px;
}

.product-img.skeleton-box {
    height: 150px;
}

.product-name.skeleton-box,
.product-price-label.skeleton-box,
.ajax_add_to_cart_button.skeleton-box {
    height: 20px;
    margin-bottom: 10px;
}

/* ----- SKELETON LOADING END ----------------------*/

/* search.tpl limit results */
.search-categories.limited .search-category>div:nth-child(n+4),
.search-brands.limited .search-brand:nth-child(n+6) {
    display: none !important;
}


/* module catalogads*/
.catalogbanner {
    max-height: 480px;
}

.table-parameters {
    border: 1px solid var(--gray);
}

.table-parameters tr {
    border-bottom: 1px solid var(--gray);
}

.table-parameters tr td {
    padding: 10px;
}

.table-parameters tr td:first-child {
    width: 40%;
    border-right: 1px solid var(--gray);
}

.parameter-label {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
    display: inline-flex;
    align-items: center;
}

.luigi-ac-action-hero.luigi-ac-hero-color.luigi-ac-hero-color-clickable {
    display: none !important;
}

/* modul shopbenefits */
.shopbenefits {
    background-color: var(--soft-secondary);
}

.shopbenefits .benefit {
    /* padding: 10px;
        border-radius: 7px;
        background-color: var(); */
}

.benefit .benefit-icon {
    font-size: 40px;
    color: var(--secondary);
}

.benefit .benefit-title {
    line-height: 1.2;
    font-weight: 600;
}

.benefit .benefit-title,
.benefit .benefit-subtitle {
    color: var(--black);

}

.extraadvert {
    position: relative;
    background-color: var(--soft-secondary);
    border: 2px dashed #fbd7b3;
}

.extraadvert .content {
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.extraadvert .img {
    padding-top: 15px !important;
    padding-right: 15px !important;
    padding-bottom: 15px !important;
    padding-left: 0px !important;
    align-content: center;

}

.extraadvert.checkout-card {
    overflow: visible;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.1s ease-in-out;
}
.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.address-dropdown {
    display: none;
    position: absolute;
    overflow: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    max-width: 44%;
    margin-top: 5%;
    padding: 5px;
    z-index: 1000;
}


/* headernotification module */
.header-notification {
    background-color: #ff7c00;
    color: white;
    padding: 10px;
    height: 40px;
    max-height: 40px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.2;
    align-content: center;
    text-align: center;
}

.notification-content .hidden-line {
    display: none;
}

/* START module loyalty_v2 benefits ------------------------------ */
/* Modal container */
.petloyalty-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    z-index: 1000;
}

/* Modal content box */
.petloyalty-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}

/* Header styles */
.petloyalty-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.petloyalty-modal-title {
    margin: 0;
    font-size: 18px;
}

/* Close button styles */
.petloyalty-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Body content */
.petloyalty-modal-body {
    padding-top: 10px;
    text-align: center;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.loyalty_v2-benefits-wrapper {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 2px 6px 0px rgb(189 184 184 / 21%);
    overflow: hidden;
    display: flex;
    /* border: 1px solid var(--gray); */

}

/* loyalty_v2 benefit */
.loyalty_v2-benefits-wrapper .loyalty_v2-benefit {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    color: var(--gray);
}

.loyalty_v2-benefits-wrapper .slider-item+.slider-item .loyalty_v2-benefit {
    border-left: 1px solid #eee;
}

.loyalty_v2-benefits-wrapper .loyalty_v2-benefit .icon {
    font-size: 36px !important;
}

.loyalty_v2-benefits-wrapper .loyalty_v2-benefit .name {
    font-weight: 600;
}

.loyalty_v2-benefit .benefit-desc {
    position: absolute;
    top: 5px;
    left: 5px;
    color: var(--gray);
    font-size: 20px !important;
    width: 100%;
    text-align: left;
}

.loyalty_v2-benefit .benefit-desc .tooltip-wrapper {
    left: 5px;
    top: 5px;
    width: 100%;
}

.loyalty_v2-benefit .benefit-desc .tooltip-wrapper .tooltip {
    width: 100%;
}

.loyalty_v2-benefit .locked {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    opacity: 0.3;
}

.loyalty_v2-benefit .lock {
    font-size: 50px !important;
}

/* activated */
.loyalty_v2-benefits-wrapper .loyalty_v2-benefit.activated .name {
    color: black;
}

.loyalty_v2-benefits-wrapper .loyalty_v2-benefit.activated .icon {
    color: var(--primary);
}

.slider-navigation.loyalty_v2benefits {
    position: relative !important;
    background: none !important;
}

.slider-navigation.loyalty_v2benefits .banner-dot {
    background-color: var(--gray) !important;
    opacity: 1 !important;

    width: 7px;
    height: 7px;
}

.slider-navigation.loyalty_v2benefits .active .banner-dot {
    background-color: var(--primary) !important;
}

/* loyalty_v2 levels */
.loyalty_v2-levels-wrapper {
    position: relative;
}

.loyalty_v2-levels {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.loyalty_v2-level .icon {
    width: 70px;
    height: 70px;
}

.loyalty_v2-level .icon img {
    height: 100%;
    width: auto;
}

.loyalty_v2-level-sliders {
    display: flex;
    position: absolute;
    left: 0;
    top: 25px;
    width: 100%;
    padding: 0 20px;
}

.loyalty_v2-level-sliders .loyalty_v2-level-slider {
    flex: 1;

}

.loyalty_v2-progress {
    z-index: 0;
    margin-top: 0px !important;
    background-color: #DEDEDE !important;
}

.loyalty_v2-badge {
    font-size: 12px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 3px 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.loyalty_v2-badge i {
    font-size: 14px;
    margin-right: 2px;
}

.loyalty_v2-pin {
    width: 60px;
    position: relative;
    z-index: 1;
}

.loyalty_v2-pin-product-page-wrapper {
    border-top: 1px dashed var(--gray);
    color: #808080;
}

.loyalty_v2-pin-product-page-wrapper .tooltip-wrapper {
    margin-left: -161px;
    text-align: left;
    margin-top: -20px;
}

.loyalty_v2-pin-product-basket-wrapper {
    color: #808080;
}

.loyalty_v2-badge-product-list {
    border-top: 1px dashed var(--gray);
    margin-top: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
    background: #f8f8f8;
    margin-bottom: -10px;
    padding: 10px;
    color: #808080;
    background: linear-gradient(180deg, #f8f8f8 0%, white 70%);
}

.loyalty_v2-badge-product-list .loyalty_v2-pin {
    width: 50px;
}

.loyalty_v2-info-page .sub-catg {
    border: 1px solid white;
    box-shadow: 0 10px 15px -15px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0 10px 15px -15px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 0 10px 15px -15px rgba(0, 0, 0, 0.35);
}

.loyalty_v2-info-page .banner {
    position: relative;
    overflow: hidden;
    /* min-height: 380px; */
    width: 100%;
    /* border: 1px solid #ddd;
        border-radius: 5px; */
}

.loyalty_v2-info-page .banner .content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 40px;
}

.loyalty_v2-info-page.categories .content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
    display: block;
}

.loyalty_v2-info-page.categories .category-img {
    width: 113px;
}

.loyalty_v2-info-page.categories .content.image_exist .col-wrap {
    display: inline-flex;
    align-items: flex-end;
    margin-top: -60px;
    z-index: 2;
}

.loyalty_v2-info-page.categories .banner .content {
    justify-content: start;
}

.loyalty_v2-info-page .banner .bg {
    position: absolute;
    left: 0;
    top: 0;

}

.loyalty_v2-info-page .banner .content h1 {
    line-height: 1.2;
}

.loyalty_v2-info-page .benefit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.loyalty_v2-info-page .benefit .icon {
    background-color: var(--primary);
    height: 60px;
    width: 60px;
    border-radius: 50px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.loyalty_v2-info-page .benefit .icon i {
    font-size: 34px;
}

.loyalty_v2-info-page .benefit p {
    font-size: 14px;
    line-height: 1.2;
}

.loyalty_v2-info-page .price-table {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}

.loyalty_v2-info-page .price-table .badge {
    width: 60px;
    height: auto;
    margin-top: -40px;
}

.loyalty_v2-info-page .price-table {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    position: relative;
    padding: 20px;
    box-shadow: 0 10px 15px -15px rgba(0, 0, 0, 0.35);
    background-color: #fdfdfd;
}

.loyalty_v2-info-page .price-table .title {
    text-align: center;
    font-weight: 700;
    font-size: 20px;

}

.loyalty_v2-info-page .price-table .header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.loyalty_v2-info-page .price-table .tb-item {
    display: flex;

    font-size: 14px;
}

.loyalty_v2-info-page .tb-item i,
.loyalty_v2-info-page .tb-item em {
    font-size: 16px;
    margin-right: 5px;
    margin-top: 3px;
    color: var(--primary);
}

.loyalty_v2-info-page .tb-item.divider {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-weight: 700;
}

.loyalty_v2-info-page .tb-item.danger,
.loyalty_v2-info-page .tb-item.danger i,
.loyalty_v2-info-page .tb-item.danger em {
    color: #b9b9b9;
}

.loyalty_v2-info-page .tb-item+.tb-item {
    margin-top: 10px;
}

.loyalty_v2-info-page .section-title,
.loyalty_v2-info-page h1 {

    font-size: 30px;
}

.loyalty_v2-info-page .price-table .header,
.loyalty_v2-info-page .price-table .color {
    color: #828282;
}

.loyalty_v2-info-page .price-table.gold .header,
.loyalty_v2-info-page .price-table.gold .color {
    color: #faa800;
    border-color: #f7cd64;
}

.loyalty_v2-info-page .price-table.gold {
    border-color: #ffeab5;
    background-color: #fffbf2;
}

.loyalty_v2-info-page .price-table.platinum .header,
.loyalty_v2-info-page .price-table.platinum .color {
    color: #9247f2;
    border-color: #c5a0f7;
}

.loyalty_v2-info-page .price-table.platinum {
    border-color: #ecdeff;
    background-color: #fbf7ff;
    box-shadow: 0 10px 15px -15px rgb(159 60 255 / 56%);
}

.loyalty_v2-faq-container {
    margin: auto;
    display: table;
    border-collapse: collapse;
    width: 100%;
}

.loyalty_v2-faq-row.question-row {
    display: table-row;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    background-color: #f7f7f7;
}

.loyalty_v2-faq-row.question-row .question {
    padding: 10px;
    font-weight: bold;
}

.loyalty_v2-faq-row.answer-row {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    /* Start slightly above */
    transition: opacity 0.3s ease, transform 0.3s ease;
    /* Add transform transition */
}

.loyalty_v2-faq-row.answer-row .answer {
    padding: 10px;
    background-color: #fff;
}

.loyalty_v2-faq-row.answer-row.visible {
    opacity: 1;
}

.loyalty_v2-info-page .banner .content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 40px;
}

.loyalty_v2-info-page.categories .content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
    display: block;
}

.loyalty_v2-info-page.categories .category-img {
    width: 113px;
}

.loyalty_v2-info-page.categories .content.image_exist .col-wrap {
    display: inline-flex;
    align-items: flex-end;
    margin-top: -60px;
    z-index: 2;
}

.loyalty_v2-info-page.categories .banner .content {
    justify-content: start;
}

.loyalty_v2-info-page .banner .bg {
    position: absolute;
    left: 0;
    top: 0;

}

.loyalty_v2-info-page .banner .content h1 {
    line-height: 1.2;
}

.loyalty_v2-info-page .benefit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.loyalty_v2-info-page .benefit .icon {
    background-color: var(--primary);
    height: 60px;
    width: 60px;
    border-radius: 50px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.loyalty_v2-info-page .benefit .icon i {
    font-size: 34px;
}

.loyalty_v2-info-page .benefit p {
    font-size: 14px;
    line-height: 1.2;
}

.loyalty_v2-info-page .price-table {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}

.loyalty_v2-info-page .price-table .badge {
    width: 60px;
    height: auto;
    margin-top: -40px;
}

.loyalty_v2-info-page .price-table {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    position: relative;
    padding: 20px;
    box-shadow: 0 10px 15px -15px rgba(0, 0, 0, 0.35);
    background-color: #fdfdfd;
}

.loyalty_v2-info-page .price-table .title {
    text-align: center;
    font-weight: 700;
    font-size: 20px;

}

.loyalty_v2-info-page .price-table .header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.loyalty_v2-info-page .price-table .tb-item {
    display: flex;

    font-size: 14px;
}

.loyalty_v2-info-page .tb-item i,
.loyalty_v2-info-page .tb-item em {
    font-size: 16px;
    margin-right: 5px;
    margin-top: 3px;
    color: var(--primary);
}

.loyalty_v2-info-page .tb-item.divider {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-weight: 700;
}

.loyalty_v2-info-page .tb-item.danger,
.loyalty_v2-info-page .tb-item.danger i,
.loyalty_v2-info-page .tb-item.danger em {
    color: #b9b9b9;
}

.loyalty_v2-info-page .tb-item+.tb-item {
    margin-top: 10px;
}

.loyalty_v2-info-page .section-title,
.loyalty_v2-info-page h1 {

    font-size: 30px;
}

.loyalty_v2-info-page .price-table .header,
.loyalty_v2-info-page .price-table .color {
    color: #828282;
}

.loyalty_v2-info-page .price-table.gold .header,
.loyalty_v2-info-page .price-table.gold .color {
    color: #faa800;
    border-color: #f7cd64;
}

.loyalty_v2-info-page .price-table.gold {
    border-color: #ffeab5;
    background-color: #fffbf2;
}

.loyalty_v2-info-page .price-table.platinum .header,
.loyalty_v2-info-page .price-table.platinum .color {
    color: #9247f2;
    border-color: #c5a0f7;
}

.loyalty_v2-info-page .price-table.platinum {
    border-color: #ecdeff;
    background-color: #fbf7ff;
    box-shadow: 0 10px 15px -15px rgb(159 60 255 / 56%);
}

.loyalty_v2-faq-container {
    margin: auto;
    display: table;
    border-collapse: collapse;
    width: 100%;
}

.loyalty_v2-faq-row.question-row {
    display: table-row;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    background-color: #f7f7f7;
}

.loyalty_v2-faq-row.question-row .question {
    padding: 10px;
    font-weight: bold;
}

.loyalty_v2-faq-row.answer-row {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    /* Start slightly above */
    transition: opacity 0.3s ease, transform 0.3s ease;
    /* Add transform transition */
}

.loyalty_v2-faq-row.answer-row .answer {
    padding: 10px;
    background-color: #fff;
}

.loyalty_v2-faq-row.answer-row.visible {
    opacity: 1;
}

.section .section-title {
    line-height: 1.2;
}

.section .section-text {
    margin-bottom: 0px;
    margin-top: 0px;
}

.section .subtitle {
    font-size: 24px;
}

.faq-wrapper {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--gray);
    box-shadow: 0 10px 15px -15px rgba(0, 0, 0, 0.35);
    color: var(--black);
}

.faq-wrapper .faq+.faq {
    border-top: 1px solid var(--gray);
}

.faq .faq-header {
    padding: 15px;
    font-weight: 600;
}

/* END module loyalty_v2 benefits ------------------------------ */
.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.btn-primary.disabled {
    background-color: #7e7e7e !important;
    cursor: not-allowed;
}

.btn-white {
    background-color: white;
}

.btn-primary:hover {
    filter: brightness(0.95);
}

.btn-white:hover {
    background-color: #f9f9f9;
}

.account-home .btn-white,
.account-home .btn-primary {
    box-shadow: 0px 2px 6px 0px rgb(189 184 184 / 21%);
}

.account-banner.bg-lightorange:hover {
    background-color: #ffead6 !important;
}

.shadow-up {
    /* box-shadow: 0px -4px 6px 0px rgb(189 184 184 / 20%); */
}

.filter-bw {
    filter: grayscale(1);
}

/* module loyaltypets */
.pet-icon {
    /* height: 150px;
        width: 100%; */
    height: 110px;
    width: 100%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: #f0f0f0;
    border: solid 1px #f4f4f4 !important;
}

.pet-pic-container {
    width: 100%;
    height: 100%;
    min-height: 150px;
    max-height: 150px;
    overflow: hidden;
}
.pet-pic-container-modal {
    width: 100%;
    height: 100%;
    min-height: 150px;
    max-height: 200px;
    overflow: hidden;
}
.pet-img{
    min-height: 150px;
    min-weight: 100%;
}
.pet-icon a {
    width: inherit !important;
    height: inherit !important;
}

.pet-icon img {
    height: inherit;
    width: inherit;
    object-fit: cover;
}

.pet-icon img.taller {
    height: auto;
    width: 100%;
}

.pet-icon.dead img {

    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(1);
}

.pet-icon.dead:after {
    content: "";
    background-color: black;
    width: 15px;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: -28%;
    right: 0;
    -webkit-transform: rotate(126deg);
    /* Chrome, Safari, older iOS */
    -ms-transform: rotate(126deg);
    /* Internet Explorer 9 */
    transform: rotate(126deg);
    /* Standard */

}

.pet-icon .name {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(360deg, rgb(0 0 0 / 70%) 0%, rgba(0, 0, 0, 0) 80%);
    padding: 5px;
    width: 100%;
    color: white;
    font-size: 12px;
    white-space: nowrap;

    height: 100%;
    display: flex;
    align-items: end;
    z-index: 1;
}

.pet-icon.noicon img {
    padding: 15px;
}

.pet-icon.add-new {
    /* background-color: white; */
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary);
    color: var(--primary);
    font-size: 30px;

}

.pet-icon.add-new:hover,
.pet-icon:hover {
    opacity: 0.7;
    /*background-color: #efefef;*/
}

/* .pet-icon picture {
        position: relative;
        display: block;
        height: 100%;
        }
        .pet-icon picture img{
            vertical-align: center;
            display: block !important;
            max-width: 100% !important;
            max-height: 100% !important;
            position: absolute !important;
            height: auto !important;
            width: auto !important;
            top: 50% !important;
            left: 50% !important;
            -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
        } */
.account-section {}

.account-section .headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.account-section .headline .title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;

}

.account-section .headline a {
    text-decoration: underline;
    font-size: 14px;
}

/* override filter-label for pc */
.filter-label-desktop {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;

}

.filter-label-desktop:hover {
    border: 1px solid var(--secondary);
}

.filter-label-desktop:hover,
.filter-label-desktop label:hover,
.filter-label-desktop input:hover {
    cursor: pointer;
}

.filter-label-desktop label.disabled {
    color: #ddd;
    cursor: unset;
}

.filter-label-desktop.active {
    border: 1px solid #ff9140;
    background-color: #FFF2E5;
}

.filter-label-desktop input,
.filter-label-desktop div {
    display: none;
}

.pet-button:hover {
    border: 1px solid var(--secondary);
    cursor: pointer;

}

.progress-points {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-points .point {
    height: 20px;
    min-height: 20px;
    width: 20px;
    min-width: 20px;
    background-color: #ebd9c8;
    content: "";
    display: inline-flex;
    border-radius: 50px;

    transition: none;
}

.progress-points .point.active {
    transition: background-color ease-in-out .15s;
    background-color: var(--secondary);
}

.breed-option {
    text-transform: capitalize;
}

.petloyalty-step {}

.petloyalty-filter-img-wrapper {

    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    overflow: hidden;
    border-radius: 4px;
    background-color: white;
    border: none;
}

.petloyalty-form {}

.petloyalty-step {
    padding-top: 40px;
    padding-bottom: 40px;
}

.petloyalty-step .title {

    font-weight: 600;
    font-size: 16px;
}

.pet-image-upload {
    border: 2px dashed var(--gray);
    border-radius: 5px;
    margin-bottom: -10px !important;
}

.pet-image-upload:hover {
    cursor: pointer;
    border-color: var(--secondary);

}

.pet-image-upload:hover #pet-image-upload-icon {
    color: var(--secondary);
}

#petloyalty-img-upload-wrapper .text-error,
#petloyalty-img-upload-wrapper .text-success,
#petloyalty-img-upload-wrapper.error .text,
#petloyalty-img-upload-wrapper.success .text {
    display: none !important;
}

#petloyalty-img-upload-wrapper.error .text-error {
    display: block !important;
}

#petloyalty-img-upload-wrapper.success .text-success {
    display: block !important;
}

/* Style for form-group */
.form-group+.form-group {
    margin-top: 15px;
    /* Adjust margin bottom as needed */
}


.form-control,
.form-control-select {
    display: block;
    width: 100%;
    padding: 7px 14px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* Additional styles for form-control when focused */
.form-control:focus,
.form-control-select:focus {
    border-color: #1d9001;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Style for label within form-group */
.form-group label {
    display: inline-block;
    margin-bottom: 5px;
    /* Adjust margin bottom as needed */

}

.petFormLoader {
    background-color: white;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

#petloyalty-form .form-group>label {
    font-weight: 600;
}

#petloyalty-form .form-group>label.pet-image-upload,
#petloyalty-form .form-group .checkbox {
    font-weight: unset;
}

#petloyalty-form .food_preference-checkboxes {
    height: 100%;
    border-radius: 5px;
    overflow-y: scroll;
}

#petloyalty-form .food_target-checkboxes {
    height: 200px;
    border-radius: 5px;
    overflow-y: scroll;
}

#petloyalty-form .brand-checkboxes {
    border-radius: 5px;
    overflow-y: scroll;
    height: 100%;
}

#petloyalty-form .brand-checkboxes .checkbox {
    display: block !important;
}

.dropdown {
    overflow: visible !important;
    position: relative;
}

.dropdown .no-items-text,
.dropdown.no-items .dropdown-search,
.dropdown.no-items .checkboxes {
    display: none !important;
}

.dropdown.no-items .no-items-text {
    display: block !important;
}

.dropdown .icon,
.dropdown .dropdown-content {
    transition: 0.2s;
}

.dropdown.active .dropdown-toggle {
    border-color: var(--primary);
}

.dropdown.active .icon {
    transform: rotate(180deg);
}

.dropdown .dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: white;
    box-shadow: 0px 2px 6px 0px rgb(189 184 184 / 21%);
    border-radius: 5px;
    z-index: 1;
    height: 250px;
    overflow: hidden;
}

.dropdown.active .dropdown-content {
    display: block;
}

/* headernotification module */
.header-notification {
    background-color: #ff7c00;
    color: white;
    padding: 10px;
    height: 40px;
    max-height: 40px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.2;
    align-content: center;
}

.notification-content .hidden-line {
    display: none;
}

.checkbox-container {
    padding: 6px 8px;
    border-radius: 6px;
}

.checkbox-container:hover {
    background-color: #1d900114;
}

.tip-wrapper {
    background-color: var(--soft-secondary);
    position: relative;
    padding: 10px;
    padding-top: 13px;
    border-radius: 5px;
    border: 1px dashed #ffd8b4;
}

.tip-wrapper .label-wrap {
    position: absolute;
    left: 10px;
    top: -8px;
    width: 100%;
    display: flex;
    align-items: center;
}

.tip-wrapper .label-wrap>span {
    background-color: var(--secondary);
    padding: 0 7px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
}

.animation-spin {
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

.progress-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.progress-circle::before {
    content: '';
    width: 60px;
    height: 60px;
    background: #fff7ef;
    border-radius: 50%;
    position: absolute;
}

.label-wrap>span {
    position: relative;
    overflow: hidden;
}

.label-wrap>span:after {
    content: '';
    top: 0;
    transform: translateX(100%);
    width: 100%;
    height: 220px;
    position: absolute;
    z-index: 1;
    animation: slide 1s;

    /* 
        CSS Gradient - complete browser support from http://www.colorzilla.com/gradient-editor/ 
        */
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), color-stop(99%, rgba(128, 186, 232, 0)), color-stop(100%, rgba(125, 185, 232, 0)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    /* IE10+ */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#007db9e8', GradientType=1);
    /* IE6-9 */
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}



/* CSS pre toast notifikáciu */
#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
}

#toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#toast-header {
    font-weight: bold;
    margin-bottom: 8px;
    display: none;
}

/* Štýly pre rôzne typy správ */
#toast.error {
    background-color: #f44336;
    /* Červená pre chyby */
}

#toast.warning {
    background-color: #ff9800;
    /* Oranžová pre varovania */
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 60px;
        opacity: 0;
    }
}
