@font-face {
    font-family: Nunito-Regular;
    src: url(../fonts/Nunito-Regular.ttf);
}

@font-face {
    font-family: Nunito-SemiBold;
    src: url(../fonts/Nunito-SemiBold.ttf);
}

@font-face {
    font-family: Nunito-Bold;
    src: url(../fonts/Nunito-Bold.ttf);
}

@font-face {
    font-family: Nunito-ExtraBold;
    src: url(../fonts/Nunito-ExtraBold.ttf);
}

:root {
    --mainBlue: #004AAD;
    --lightBlue: #85D5F6;
    --grey: #EAEAEA;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    scrollbar-color: #004AAD #f1f1f1;
    scrollbar-width: 15px;
}

body {
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #004AAD;
}

::-webkit-scrollbar-thumb:hover {
    background: #85D5F6;
}

* {
    text-align: left;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-family: Nunito-Regular;
    color: #03111A;
}

b, strong, sub, sup, font {
    color: inherit !important;
    font-family: inherit !important;
}

.display_none {
    display: none !important;
}

.display_block {
    display: block !important;
}

.width_100 {
    width: 100% !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.width_100>ul {
    pointer-events: auto !important;
}

.set_max_width {
    max-width: 1630px;
    margin: 0 auto;
}

.set_max_height {
    max-height: 2000px !important;
    transition: max-height .3s ease-in-out;
    -webkit-transition: max-height .3s ease-in-out;
    -moz-transition: max-height .3s ease-in-out;
    -ms-transition: max-height .3s ease-in-out;
    -o-transition: max-height .3s ease-in-out;
}

.set_max_width_set_margin {
    margin: 0px 10px;
}

.opacity_0 {
    opacity: 0 !important;
}

.opacity_1 {
    opacity: 1 !important;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
}

.arrow_right {
    margin-left: 8px;
    color: inherit;
}

main.main_404 {
    padding: 200px 25px;
    text-align: center;
}

main.main_404 * {
    text-align: center;
}

main.main_404 div {
    width: 100%;
}

main.search_main {
    margin-top: 86px;
    padding: 50px 0px;
}

main.search_main .vysledky_hledani_wrap *, main.main_privacy_policy * {
    text-align: left !important;
}

main.main_privacy_policy p {
    margin-bottom: 10px;
}

main.main_privacy_policy h2, main.main_privacy_policy h3, main.main_privacy_policy h4 {
    margin-bottom: 25px;
    margin-top: 25px;
}

.navigation {
    text-align: center;
    margin-top: 25px;
}

.navigation a {
    text-decoration: none;
    font-family: Nunito-SemiBold;
}

.navigation a:hover {
    color: #004AAD;
}

main.search_main h1 {
    margin-bottom: 20px;
    font-size: 55px;
}

main.search_main h2 {
    margin-top: 20px;
}

main.search_main a:hover {
    color: #004AAD;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

main.search_main a {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

input, select, textarea {
    padding: 10px;
    color: #060F26;
    border-radius: 30px;
    border: 1px solid #f1f1f1;
}

textarea {
    padding: 20px;
    resize: none;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border: 1px solid #004AAD;
}

/* CUSTOM SELECT */

.custom_select {
    position: relative;
}

.custom_select select {
    display: none;
}

.select_selected {
    background-color: #fff;
    border: 1px solid #000;
    white-space: nowrap;
    height: 100%;
    width: 100%;
}

.select_selected:after {
    position: absolute;
    content: "";
    top: 30px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #E11824 transparent transparent transparent;
}

.select_selected.select_arrow_active:after {
    border-color: transparent transparent #E11824 transparent;
    top: 23px;
}

.select_selected {
    color: #000;
    padding: 8px 16px;
    border: 1px solid #000;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.select_items div {
    color: #000;
    padding: 8px 16px;
    border: 1px solid #000;
    border-top: 0;
    cursor: pointer;
}

.select_items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select_hide {
    display: none;
}

.select_items div:hover, .same_as_selected {
    background-color: #E11824;
    color: #fff !important;
}

/* END CUSTOM SELECT */

.btn_a {
    text-decoration: none;
    display: inline-block;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    white-space: nowrap;
}

.btn_a:hover {
    cursor: pointer;
}

button.btn_a_purple_wo, a.btn_a_purple_wo {
    background: linear-gradient(to right, #85D5F6 -90%, #85D5F6 100%);
    border: none;
    border-radius: 25px;
    padding: 11px 22px;
    color: #fff;
    font-family: Nunito-Bold;
    font-size: 18px;
    position: relative;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.btn_a_purple_wo:after {
    content: none;
}

.btn_a_purple_wo:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.btn_a_purple {
    background-color: var(--mainBlue) !important;
    text-align: center !important;
    border: none;
    border-radius: 25px;
    padding: 11px 58px 11px 20px;
    color: #fff;
    font-family: Nunito-Bold;
    font-size: 18px;
    position: relative;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.btn_a_purple:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

/*.btn_a_purple:after {
    content: url('../img/shopping_bag.svg');
    background-color: #fff;
    border-radius: 50%;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    padding-left: 2px;
    align-items: center;
    position: absolute;
    right: 5px;
    top: 50%;
    width: 38px;
    height: 38px;
    line-height: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
*/
.btn_a_small_purple {
    background-color: var(--mainBlue) !important;
    border: none;
    border-radius: 25px;
    padding: 10px 22px;
    color: #fff;
    font-family: Nunito-Bold;
    font-size: 18px;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.btn_a_item {
    margin-top: 0;
    text-decoration: none;
    display: inline-block;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    border-radius: 6px;
    white-space: nowrap;
    background-color: #fff;
    border-radius: 25px;
    border: 2px solid #004AAD;
    position: relative;
    color: #03111A;
    font-size: 18px;
    font-family: Nunito-Bold;
    
    padding: 11px 20px;
    transition: all ease-in-out .3s;
}

.btn_a_item[disabled] {
    background-color: #EEEEEF;
    border-color: #EEEEEF;
}

.btn_a_item[disabled]:hover {
    background: #EEEEEF;
    cursor: not-allowed;
}

/*.btn_a_item:after {
    content: url('../img/shopping_bag.svg');
    background-color: #F8F8FB;
    border-radius: 50%;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5px;
    top: 50%;
    width: 38px;
    height: 38px;
    line-height: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-weight: 800;
}*/

.btn_a_item:hover {
    background: #85D5F6;
    color: white;
}

.btn_a_item.added:after {
    content: "\2713";
}

.btn_a_item.loading:after {
    content: ' ';
}

.btn_a_item.loading:before {
    content: '';
    position: absolute;
    right: 25px;
    top: 30%;
    z-index: 2;
    background-color: #004AAD;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.btn_a_white {
    background: transparent;
    border: #fff 2px solid;
    border-radius: 25px;
    padding: 11px 22px;
    color: #fff;
    font-family: Nunito-Bold;
    font-size: 20px;
}

.btn_a_white:hover {
    background: #fff;
    color: #03111A;
}

.btn_a_more {
    background: transparent;
    border: #004AAD 2px solid;
    border-radius: 25px;
    padding: 11px 22px 11px 22px;
    color: #03111A;
    font-family: Nunito-Bold;
    font-size: 18px;
    position: relative;
}

.btn_a_more:hover {
    background: var(--lightBlue);
}

/*.btn_a_more:after {
    position: absolute;
    width: 16.5px;
    height: 16.5px;
    line-height: 16.5px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}*/

.btn_a_notbtn {
    background: transparent;
    border: none;
    padding: 11px 30px 11px 22px;
    color: #03111A;
    font-family: Nunito-Bold;
    font-size: 14px;
    position: relative;
}

.btn_a_notbtn:hover {
    color: #004AAD;
}

.btn_a_notbtn:after {
    position: absolute;
    content: url('../img/round_arrow_23.svg');
    width: 23px;
    height: 23px;
    object-fit: contain;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.btn_a:disabled {
    background: #a0a0a0;
}

.btn_a:disabled:hover {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    background: #a0a0a0;
    box-shadow: none;
}

h1 {
    /* font-size: 55px; */
    /* display: inline-block; */
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px !important;
}

h2 {
    font-size: 26px;
    text-align: center;
    font-family: Nunito-Bold;
    margin-bottom: 50px;
}

h3 {
    font-size: 22px;
    text-align: center;
    font-family: Nunito-Bold;
    color: #004AAD;
}

section {
    padding-top: 75px;
    padding-bottom: 75px;
    clear: both;
}

main {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

/* LIGHTBOX */

.lb-details * {
    text-align: left;
}

.lb-outerContainer {
    min-width: 80%;
}

.lb-image {
    margin: 0 auto;
}

.lb-dataContainer {
    min-width: 80%;
}

/* MENU */

.mobile_menu_wrap {
    /* position: absolute; */
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    padding: 0 10px;
    /* right: 0;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%); */
    z-index: 1;
}

.mobile_menu_wrap>* {
    margin-right: 10px;
}

.mobile_menu_wrap>div:last-of-type {
    margin-right: 0;
}

.hamburger {
    position: relative;
    width: 26px;
    height: 22px;
    display: inline-block;
    margin-left: 10px;
    /* top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%); */
    color: #fff;
    border: none;
    z-index: 1;
    transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -ms-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

.blok {
    height: 3px;
    border-radius: 20%;
    background-image: linear-gradient(to right, #85D5F6 -90%, #85D5F6 100%);;
    position: absolute;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
}

.blok1 {
    width: 100%;
    opacity: 0;
    top: 0%;
    right: 0;
}

.blok2 {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
}

.blok3 {
    width: 70%;
    opacity: 0;
    bottom: 0px;
    right: 0;
}

.blok4 {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}

.blokk4 {
    transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
}

.blokk2 {
    transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
}

.blokk {
    opacity: 1;
}

.blokk3 {
    opacity: 1;
}

.no_border_radius {
    border-radius: 0 !important;
}

/* MORE*/

#site-navigation>ul>li.more {
    display: none;
}

.more {
    cursor: default;
    float: right;
    text-decoration: none;
    position: relative;
}

.more>a {
    font-family: Nunito-Bold;
    color: var(--mainBlue);
}

.more>a:hover {
    transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    -webkit-transform: none !important;
    color: #03111A !important;
}

.more a img {
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    vertical-align: middle;
    margin-left: 15px;
}

.more ul {
    height: auto !important;
    min-width: 100%;
}

.more:hover .sub-menu {
    opacity: 1 !important;
    pointer-events: visible !important;
    display: block !important;
    top: 100% !important;
    right: 0 !important;
}

.more .sub-menu {
    top: 100% !important;
    right: 0 !important;
}

.more ul li {
    text-align: left;
    display: block !important;
}

#site-navigation .more>ul {
    display: block;
    background-color: #fff;
    pointer-events: none;
    opacity: 0;
    list-style: none;
    margin: 0;
    position: absolute;
    top: 150%;
    right: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.more:hover>ul {
    pointer-events: visible !important;
    opacity: 1 !important;
    top: 90% !important;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.more:hover ul {
    opacity: 1 !important;
    pointer-events: visible !important;
    display: block !important;
    background-color: #fff;
    height: auto;
    box-shadow: #3A455A28 0px 7px 25px;
}

/* END MORE MENU*/

/* PRIMARY MENU */

#theme_header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;
}

.primary-navigation {
    position: relative;
    z-index: 99;
    height: 68px;
    width: 100%;
    background: #fff;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.primary-navigation-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.primary-navigation .set_max_width_set_margin, .primary-navigation .set_max_width {
    height: 100%;
}

.primary-navigation .primary-menu-container ul {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    height: 100%;
}

.primary-navigation .primary-menu-container ul li a {
    text-align: center;
}

.primary-menu-container li {
    font-size: 18px;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.primary-menu-container li a {
    text-decoration: none;
    margin: 0 40px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.menu li a:hover {
    color: #004AAD;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.menu-item a {
    position: relative;
    font-family: Nunito-Bold;
    display: inline-block;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.primary-menu-container {
    position: relative;
    height: 100%;
    /* opacity: 0; */
    transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -ms-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
}

.primary-menu-container-mobile {
    clear: both;
    background-color: #fff;
    position: absolute;
    top: 68px;
    height: calc(100vh - 68px);
    width: 0px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.primary-menu-container-mobile .menu-item-has-children .submenu_arrow_down_wrap {
    position: absolute;
    right: 10px;
    top: 0px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.primary-menu-container-mobile ul {
    background-color: #fff;
    list-style: none;
    max-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* margin-left: 15px; */
    margin-bottom: 15px;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    overflow: hidden;
    padding-left: 10px;
}

.primary-menu-container-mobile>ul {
    padding-left: 15px;
    max-width: 500px;
    pointer-events: none;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 50px;
    height: 100%;
    max-height: 100%;
}

.primary-menu-container-mobile .menu-item-has-children {
    padding-right: 30px
}

.primary-menu-container-mobile .show_mobile_submenu>.sub-menu {
    max-height: 2000em;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.primary-menu-container-mobile .show_mobile_submenu>.submenu_arrow_down_wrap {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.primary-menu-container-mobile ul::-webkit-scrollbar {
    display: none;
    width: 0 !important;
}

.primary-menu-container-mobile ul li {
    text-align: left;
    height: auto;
    /* padding-right: 15px;
    padding-left: 15px; */
    width: 100%;
}

.primary-menu-container-mobile ul li a {
    margin: 0 auto;
    text-decoration: none;
    margin-bottom: 10px;
    text-align: left;
    display: inline-flex;
    align-items: center;
}

.primary-navigation .current-menu-item>a {
    color: #004AAD;
    position: relative;
}

.primary-navigation .current-menu-parent>a {
    color: #004AAD;
    position: relative;
}

/* SUBMENU */

.submenu_arrow_down_wrap {
    position: relative;
    width: 25px;
    height: 25px;
    display: inline-block;
}

.submenu_arrow_down, .primary-menu-container-mobile .submenu_arrow_down {
    position: absolute;
    color: #151627;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform-origin: center center;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -o-transform-origin: center center;
    -ms-transform-origin: center center;
    bottom: -2px;
    left: 10px;
}

.primary-menu-container-mobile .submenu_arrow_down {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(90deg);
    -webkit-transform: translate(-50%, 50%) rotate(90deg);
    -moz-transform: translate(-50%, 50%) rotate(90deg);
    -o-transform: translate(-50%, 50%) rotate(90deg);
    -ms-transform: translate(-50%, 50%) rotate(90deg);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.primary-menu-container .menu-item-has-children .sub-menu .submenu_arrow_down {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    bottom: 0px;
}

.primary-menu-container .more .menu-item-has-children .sub-menu .submenu_arrow_down {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    bottom: -2px;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children>a {
    position: relative;
}

.primary-menu-container .menu-item-has-children .sub-menu {
    display: block;
    position: absolute;
    pointer-events: none;
    opacity: 0;
    top: 150%;
    min-width: 100%;
    background-color: #fff;
    height: auto;
    box-shadow: #3A455A28 0px 7px 45px;
    z-index: 2;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.primary-menu-container .more .menu-item-has-children .sub-menu {
    box-shadow: none;
}

.primary-menu-container-mobile .menu-item-has-children .sub-menu {
    opacity: 1;
    pointer-events: visible;
}

.menu-item-has-children .sub-menu li {
    justify-content: left;
}

.more li a {
    justify-content: flex-end !important;
}

.primary-menu-container>ul>.menu-item-has-children:hover>.sub-menu {
    pointer-events: visible;
    opacity: 1;
    top: 90%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.primary-menu-container>ul>li>.sub-menu .menu-item-has-children .sub-menu {
    min-height: 100%;
    top: 150%;
    left: 100%;
}

.primary-menu-container>ul>li>.sub-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    pointer-events: visible;
    top: 0%;
}

.primary-menu-container>ul>.menu-item-has-children>.sub-menu li, .primary-menu-container .more ul li {
    height: auto;
    min-width: 100%;
    width: auto;
    padding: 10px 15px;
}

.sub-menu li a, .more li a {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left;
}

.primary-menu-container>ul>.mega-menu-parent.menu-item-has-children {
    position: unset;
}

.primary-menu-container>ul>.mega-menu-parent>.sub-menu {
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 5px;
    z-index: 200;
}

.primary-menu-container>ul>.mega-menu-parent>.sub-menu .sub-menu {
    position: unset !important;
    display: inline-block;
    box-shadow: none !important;
}

.primary-menu-container>ul>.mega-menu-parent:hover>.sub-menu .sub-menu {
    opacity: 1 !important;
    pointer-events: all !important;
}

.primary-menu-container>ul>.mega-menu-parent>.sub-menu .sub-menu .menu-item-object-product_cat>a:before {
    content: none !important;
}

.primary-menu-container>ul>.mega-menu-parent>.sub-menu .sub-menu .menu-item-object-product_cat {
    font-size: 15px;
    padding: 5px 10px;
    padding-left: 85px;
    min-width: unset;
}

.primary-menu-container>ul>.mega-menu-parent>.sub-menu>.menu-item-object-product_cat {
    width: 25%;
    min-width: unset;
    flex-wrap: wrap !important;
}

.primary-menu-container>ul>.mega-menu-parent>.sub-menu .menu-item-object-product_cat a {
    white-space: normal;
    text-align: left !important;
}

.primary-menu-container>ul>.mega-menu-parent>.sub-menu .menu-item-object-product_cat a .submenu_arrow_down_wrap {
    display: none !important;
}

.primary-menu-container>ul>.mega-menu-parent>.sub-menu .menu-item-object-product_cat>a:before {
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 75px;
    height: 75px;
    margin-right: 10px;
    content: "";
}

/* STICKY */

.primary-navigation-sticky {
    position: fixed;
    top: 0;
    height: 68px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

/* .primary-navigation-sticky .menu_logo {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.primary-navigation-sticky .menu_logo img {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
} */

.primary-navigation-sticky .primary-menu-container-mobile {
    top: 68px;
    height: calc(100vh - 68px);
}

.main_sticky {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

/* MENU FLOAT RIGHT */

.menu_float_right {
    float: right;
    height: 100%;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    position: relative;
    /* opacity: 0; */
    transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -ms-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
}

.menu_float_right ul {
    list-style: none;
}

/* BEFORE MENU */

.before_menu {
    width: 100%;
    /* opacity: 0; */
}

.before_menu_wrap {
    width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_menu {
    width: calc(100% / 3);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommenrce_menu {
    width: calc(100% / 3);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-right: 10px;
    list-style: none;
}

.woocommerce_menu_item>a {
    font-size: 18px;
    font-family: Nunito-Bold;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    text-decoration: none;
    border: solid 1.5px transparent;
    padding: 10px;
    position: relative;
    gap: 10px;
}

.primary-menu-container-mobile .woocommerce_menu_item>a {
    justify-content: left;
}

.woocommerce_menu_item>a:hover {
    border-radius: 3px;
    border: solid 1.5px #E4E6F9;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    color: #004AAD;
}

.woocommerce_menu_item>a img {
    vertical-align: middle;
}

.cart_link {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    border: solid 1.5px transparent;
    padding: 10px;
    position: relative;
    cursor: pointer;
}

.cart_link_cart_title {
    font-size: 18px;
    font-family: Nunito-Bold;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.cart_link:hover .cart_link_cart_title {
    color: #004AAD;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.cart_link:hover {
    border: solid 1.5px #E4E6F9;
}

/* account_link img,  */

.cart_link img {
    margin-right: 10px;
}

.woocommerce_menu_item_cart, .woocommerce_menu_item_cart .cart_link {
    position: relative;
}

/* MINICART */

.cart_items_number {
    background-color: #004AAD;
    color: #fff;
    pointer-events: none;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    font-size: 13px;
    z-index: 150;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.widget_shopping_cart_content ul {
    list-style: none;
    width: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: 360px;
}

.minicart_container {
    position: absolute;
    z-index: 150;
    padding: 10px;
    min-width: 250px;
    min-height: 150px;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    border: solid 1.5px #E4E6F9;
    background-color: #fff;
    transition: opacity .3s ease-in-out;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}

.minicart_container_show {
    pointer-events: visible !important;
    opacity: 1 !important;
    transition: opacity .3s ease-in-out;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
}

.minicart_container:hover {
    pointer-events: visible !important;
    opacity: 1 !important;
    transition: opacity .3s ease-in-out;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
}

.minicart_container:after {
    position: absolute;
    pointer-events: none;
    top: -16px;
    right: 64px;
    content: '';
    z-index: 2;
    width: 0;
    outline: green 1px;
    height: 0;
    border-left: transparent 15px solid;
    border-right: transparent 15px solid;
    border-bottom: #E4E6F9 15px solid;
}

.widget_shopping_cart_content .woocommerce-mini-cart__total {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.widget_shopping_cart_content .woocommerce-mini-cart__total {
    text-align: right;
    width: 100%;
    padding: 10px;
    /* display: flex;
justify-content: right; */
}

.widget_shopping_cart_content .woocommerce-mini-cart__total bdi {
    width: 100px;
    display: inline-block;
    padding-left: 20px;
    text-align: left;
}

.woocommerce-mini-cart-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1.5px #E4E6F9;
    padding: 10px 0;
}

.minicart_item_flex_left {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
}

.woocommerce-mini-cart-item:first-of-type {
    padding-top: 0;
}

.woocommerce-mini-cart-item>* {
    vertical-align: middle;
}

.woocommerce-mini-cart-item .remove_from_cart_button {
    width: 40px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 100px;
    border: 1px solid #E4E6F9;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.woocommerce-mini-cart-item .remove_from_cart_button:hover {
    color: #b81c23;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.woocommerce-mini-cart-item a:nth-of-type(2) {
    border: 1px solid #E4E6F9;
    width: 270px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    margin: 0 10px;
    padding: 10px;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.woocommerce-mini-cart-item a:nth-of-type(2):hover {
    color: #004AAD;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.woocommerce-mini-cart-item a img {
    min-width: 80px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 10px;
}

.woocommerce-mini-cart-item .quantity {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    width: 100px;
}

.woocommerce-mini-cart-item .quantity .woocommerce-Price-amount {
    width: 100%;
    text-align: left;
}

.widget_shopping_cart_content .button.wc-forward {
    margin-top: 0;
    text-decoration: none;
    display: inline-block;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    border-radius: 6px;
    white-space: nowrap;
    background-color: #fff;
    border-radius: 25px;
    border: 2px solid #004AAD;
    position: relative;
    color: #03111A;
    font-size: 18px;
    font-family: Nunito-Bold;
    padding: 11px 50px 11px 20px;
}

.widget_shopping_cart_content .button.wc-forward:after {
    content: url('../img/shopping_bag.svg');
    background-color: #F8F8FB;
    border-radius: 50%;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    padding-left: 2px;
    align-items: center;
    position: absolute;
    right: 5px;
    top: 50%;
    width: 38px;
    height: 38px;
    line-height: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-weight: 800;
}

.widget_shopping_cart_content .button.wc-forward:hover {
    background-image: linear-gradient(to right, #85D5F6 -90%, #85D5F6 100%);;
}

.widget_shopping_cart_content .button.checkout {
    display: none !important;
}

/* .account_link{
  padding-left: 45px !important;
    }
.account_link:before{
position: absolute;
content: url('../img/account.svg');
left:10px;
top: 50%;
transform: translateY(-50%);
} */

.menu_logo_wrap {
    width: calc(100% / 3);
}

.menu_logo {
    width: 300px;
    /* float: left;  */
    height: 75px;
    display: flex;
    align-items: center;
    margin-left: 50px;
    z-index: 1;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.menu_logo a {
    height: 100%;
}

.menu_logo img {
    padding: 5px 0;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    max-height: 100%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

/* AKCE BANNER */

.akce_wrap {
    background-image: linear-gradient(to right, #85D5F6 -90%, #85D5F6 100%);;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    display: none;
}

.akce_wrap * {
    font-family: Nunito-Regular;
    font-size: 16px;
    color: #fff;
}

/* HERO */

.hero {
    width: 100%;
}

.hero_swiper_slide {
    display: flex;
    flex-wrap: nowrap;
    min-height: 500px !important;
    height: 500px !important;
}

.hero_swiper_slide .hero_slide_container:first-of-type {
    margin-left: 0;
}

.hero_swiper_slide .hero_slide_container:last-of-type {
    margin-right: 0;
}

.swiper_container_hero {
    padding-bottom: 16px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero_slide_container {
    width: 100%;
    margin: 0 2px;
    z-index: 0;
    position: relative;
    height: 100%;
}

.hero_slide_gradient {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, #00000061, #03111A00);
}

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

.hero_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero_slide_text_wrap * {
    text-align: left;
}

.hero_slide_text_wrap>div {
    width: 100%;
}

.hero_slide_text_wrap {
    height: 100%;
    max-width: 420px;
    padding: 50px 10px 50px 50px;
    display: flex;
    align-items: flex-end;
    justify-content: left;
}

.hero_swiper_slide:first-of-type .hero_slide_text_wrap {
    align-items: center !important;
    padding-left: 50px;
}

.hero_slide_text_wrap p {
    font-family: Nunito-Bold;
    font-size: 27px;
    line-height: 1.2em;
    color: var(--lightBlue);
    margin-top: 15px;
    margin-bottom: 15px;
}

.hero_slide_nadpis {
    font-family: Nunito-ExtraBold;
    font-size: 45px;
    color: #fff;
    line-height: 1em;
    margin: 0;
}

.hero_swiper_pagination {
    bottom: 0px !important;
    position: absolute;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    padding: 5px 0;
}

.hero_swiper_pagination .swiper-pagination-bullet {
    opacity: 1;
    width: 100%;
    height: 6px;
    display: inline-block;
    border-radius: 4px;
    background: #EEEEEF;
    position: relative;
    margin: 0 12px !important;
}

.hero_swiper_pagination .swiper-pagination-bullet:first-of-type {
    margin-left: 0px !important;
}

.hero_swiper_pagination .swiper-pagination-bullet:last-of-type {
    margin-right: 0px !important;
}

.hero_swiper_pagination .swiper-pagination-bullet-active {
    background: var(--mainBlue);
}

.swiper_hero_button_container * {
    color: #fff;
    font-size: 22px;
    font-family: Nunito-Bold;
}

.swiper_hero_button_container {
    position: absolute;
    bottom: 30px;
    right: 20px;
    z-index: 1;
}

.swiper_hero_button {
    cursor: pointer;
}

/* LOGA GALLERY */

.section_loga {
    padding: 0px 0px 50px 0px;
    position: relative;
    overflow: hidden;
    clear: both;
}

.loga_gallery {
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0px 50px;
}

.loga_gallery img {
    max-width: 158px;
}

.loga_gallery .swiper-wrapper {
    flex-direction: row !important;
}

.loga_gallery .swiper-slide {
    display: flex;
    align-items: center;
    margin-top: 0 !important;
}

.loga_gallery .swiper-scrollbar {
    height: 8px !important;
    bottom: -10px !important;
    left: 50px !important;
    width: calc(100% - 100px) !important;
    background: #EEEEEF !important;
}

.loga_gallery .swiper-scrollbar .swiper-scrollbar-drag {
    background: #B0A3E4 !important;
}

/* FOOT */

#footer {
    background-color: #F8F8FB;
}

.foot {
    padding-top: 50px;
}

.foot_logo {
    vertical-align: middle;
}

.foot_logo img {
    max-width: 188px;
    vertical-align: middle;
}

.foot ul {
    list-style: none;
}

.foot ul li a {
    text-decoration: none;
    font-family: Nunito-Regular;
    margin: 5px 0;
    font-size: 14px;
}

.foot_menu_nadpis {
    font-family: Nunito-Bold;
    font-size: 16px;
    color: var(--mainBlue);
    border-bottom: 1.5px solid var(--mainBlue);
    width: 80%;
    display: block;
    margin-bottom: 10px;

}

.foot_row_2>div:first-of-type ul {
    margin-top: 5px;
}

.foot_copyright {
    border-top: 1px solid #B2BACF;
}

.foot_copyright .set_max_width {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 0px;
}

.foot_copyright_left {
    font-family: Nunito-SemiBold;
    font-size: 12px;
}

.yashica_logo_img {
    width: 77px;
}

.foot_row {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
}

.foot_row>div {
    width: 70%;
    display: flex;
    justify-content: left;
    align-items: center;
}

.foot_row>div>div {
    width: calc(100%/3);
}

.foot_kontakt {
    padding-right: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
}

.foot_kontakt img {
    vertical-align: middle;
    margin-right: 10px;
}

.foot_kontakt a {
    text-decoration: none;
    font-family: Nunito-SemiBold;
    font-size: 20px;
    vertical-align: middle;
    font-weight: 600;
}

.foot_kontakt a:hover {
    color: #004AAD;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.foot_row_2 {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    width: 100%;
    padding: 50px 0;
}

.foot_row_2>div:first-of-type {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 70%;
}

.foot_row_2>div:first-of-type * {
    text-align: left;
}

.foot_row_2>div:first-of-type>div {
    padding-right: 10px;
}

.foot_row_2>div:last-of-type {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    width: 100%;
}

.foot_menu_container_1 {
    width: calc(100%/3);
}

.foot_menu_container_2 {
    width: calc(100%/3);
}

.foot_menu_container_3 {
    width: calc(100%/3);
}

.foot_menu_container_5 {
    width: 100%;
}

.foot_menu_container_5>div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.foot_menu_container_5>div img {
    margin: 10px 20px 10px 0px;
}

.foot_menu_container_5>div img:last-of-type {
    margin-right: 0;
}

/* ODKAZY SECTION */

.odkazy_wrap {
    overflow: auto;
}

.odkaz_container {
    float: left;
    position: relative;
    height: 251px;
    overflow: hidden;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -moz-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
}

.odkaz_container:hover .odkaz_container_bg {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -moz-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
}

.odkaz_container:first-of-type {
    height: 526px;
    margin-right: 12px;
    width: calc(25% - 12px);
}

.odkaz_container:nth-of-type(2) {
    width: calc(33% - 24px);
    margin-right: 12px;
    margin-left: 12px;
    margin-bottom: 24px;
}

.odkaz_container:nth-of-type(3) {
    width: calc(42% - 12px);
    margin-left: 12px;
    margin-right: 0px;
    margin-bottom: 24px;
}

.odkaz_container:nth-of-type(4) {
    width: calc(42% - 24px);
    margin-right: 12px;
    margin-left: 12px;
}

.odkaz_container:nth-of-type(5) {
    width: calc(15% - 24px);
    margin-right: 12px;
    margin-left: 12px;
}

.odkaz_container_a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    text-decoration: none;
}

.odkaz_container:first-of-type .odkaz_container_a {
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
}

.odkaz_container:first-of-type .odkaz_container_logo {
    padding: 0 17px;
    max-width: 100%;
    margin: auto auto 0 auto;
}

.odkaz_container_bg {
    position: absolute;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: -2;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -moz-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
}

.odkaz_container_odkaz {
    width: auto;
    text-align: right;
    font-size: 22px;
    font-family: Nunito-Bold;
    color: #fff;
    padding: 17px;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -moz-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
}

.odkaz_container:first-of-type .odkaz_container_odkaz {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.odkaz_container:hover .odkaz_container_odkaz {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -moz-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
}

.round_arrow {
    vertical-align: middle;
    margin-left: 10px;
}

.odkaz_container:nth-of-type(2) .odkaz_container_logo {
    position: absolute;
    bottom: 17px;
    left: 17px;
    max-width: calc(50% - 17px);
}

.odkaz_container:nth-of-type(3) .odkaz_container_logo {
    position: absolute;
    bottom: 17px;
    left: 17px;
    max-width: calc(50% - 17px);
}

.odkaz_container:nth-of-type(4) .odkaz_container_logo {
    position: absolute;
    top: 17px;
    right: 17px;
    max-width: calc(100% - 34px);
}

.odkaz_container:nth-of-type(5) .odkaz_container_logo {
    position: absolute;
    top: 17px;
    right: 17px;
    max-width: calc(100% - 34px);
}

.odkaz_container_gradient {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.odkaz_container:first-of-type .odkaz_container_gradient {
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, #00000061, #03111A00);
}

.odkaz_container:nth-of-type(2) .odkaz_container_gradient {
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, #00000061, #03111A00);
}

.odkaz_container:nth-of-type(3) .odkaz_container_gradient {
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, #00000061, #03111A00);
}

.odkaz_container:nth-of-type(4) .odkaz_container_gradient {
    width: 50%;
    height: 100%;
    background-image: linear-gradient(to left, #00000061, #03111A00);
}

.odkaz_container:nth-of-type(5) .odkaz_container_gradient {
    width: 50%;
    height: 100%;
    background-image: linear-gradient(to left, #00000061, #03111A00);
}

.odkaz_container_all {
    position: relative;
    height: 251px;
    width: calc(18% - 12px);
    margin-right: 0px;
    margin-left: 12px;
    float: left;
    background-color: #F8F8FB;
    overflow: hidden;
}

.odkaz_container_all .odkaz_container_a {
    align-items: center;
    justify-content: center;
}

.odkaz_container_all span {
    font-size: 22px;
    font-family: Nunito-Bold;
    color: #03111A;
    text-align: center;
    width: 100%;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -moz-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
    padding: 17px;
}

.odkaz_container_all:hover span {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -moz-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
}

.plus_img {
    padding: 9px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 19px;
    vertical-align: middle;
}

/* FOOT BANNER */

.foot_banner {
    padding: 7px 0;
    width: 100%;
    background: var(--mainBlue);
}

.foot_banner_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.social_media_container {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social_media_container img {
    vertical-align: middle;
    margin: 0 10px;
}

.social_media_container a {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.social_media_container a:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.banner_newsletter_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 460px;
}

.banner_newsletter_container .wpcf7-response-output {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
}

.newsletter_container {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ROLL LIST */

.roll_container {
    border-radius: 28px;
    background-color: #F8F8FB;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 0px 25px;
    position: relative;
}

.roll_center_visible {
    min-height: 55px;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 0;
    cursor: pointer;
}

.roll_center_visible p {
    font-size: 16px;
    text-align: left;
    font-family: Nunito-SemiBold;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.roll_center_hidden {
    text-align: left;
    max-height: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.roll_center_hidden p {
    color: #88888E;
    font-family: Nunito-Regular;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
}

.roll_arrow {
    height: 55px;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roll_arrow_img {
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
    -moz-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    -ms-transition: .3s all ease-in-out;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.roll_container_open .roll_arrow_img {
    transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
    -moz-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    -ms-transition: .3s all ease-in-out;
}

.roll_container_open .roll_center_hidden {
    max-height: 2000px !important;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    padding-bottom: 40px;
}

.roll_container_open .roll_center_visible p {
    color: #004AAD;
    font-family: Nunito-Bold;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

/* SECTION CONTENT */

.section_content {
    padding-top: 0;
}

.section_content p {
    margin-bottom: 20px;
    text-align: left;
}

.section_content ul li {
    text-align: left;
}

/* SECITON PORADNA PRISPEVKY */

.section_poradna_prispevky_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.section_poradna_prispevky_wrap h3 {
    margin-bottom: 20px;
}

.poradna_wrap {
    width: 50%;
    padding-right: 10px;
    text-align: right;
}

.prispevky_wrap {
    width: 50%;
    padding-left: 10px;
    text-align: right;
}

.prispevek_container {
    width: 100%;
    background-color: #F8F8FB;
    display: flex;
    padding: 11px;
    margin-bottom: 20px;
}

.prispevek_container .wp-post-image {
    width: 100%;
    height: auto;
    max-width: 256px;
    max-height: 175px;
}

.prispevek_container_text_wrap {
    position: relative;
    padding: 15px 15px 50px 15px;
}

.prispevek_container_text_wrap * {
    text-align: left;
}

.prispevek_container_text_wrap .btn_a {
    position: absolute;
    right: 15px;
    bottom: 0px;
    text-align: center;
}

.prispevek_container h4 {
    font-family: Nunito-Bold;
    font-size: 16px;
}

.prispevek_container p {
    font-family: Nunito-Regular;
    font-size: 14px;
    color: #88888e;
}

/* SINGLE PRODUKT */

.woocommerce-tabs {
    padding-top: 0;
}

.produkt-swiper-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.produkt-swiper-container.gallery-top {
    overflow: hidden;
    display: block;
    height: 530px;
    width: 100%;
    position: relative;
}

.produkt-swiper-container.gallery-top .produkt_tags_wrap {
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
}

.produkt-swiper-container.gallery-top .produkt_tags_wrap .onsale {
    font-size: 24px;
    transform: rotate(34deg);
    -webkit-transform: rotate(34deg);
    -moz-transform: rotate(34deg);
    -o-transform: rotate(34deg);
    -ms-transform: rotate(34deg);
    width: 75px;
    height: 75px;
    line-height: 75px;
    display: block;
}

.produkt-swiper-container.gallery-top .produkt_tags_wrap .produkt_tags_container {
    position: static;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    order: -1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
}

.produkt-swiper-container-wrap {
    width: 100%;
    height: 207px;
    overflow: hidden;
    display: block;
    padding: 20px 0px;
}

.produkt-swiper-container.gallery-top .swiper-slide {
    background-color: #F8F8FB;
}

.produkt-swiper-container.gallery-top .swiper-slide a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produkt-swiper-container.gallery-top .swiper-slide img {
    object-fit: contain;
    width: 80%;
    height: 80%;
}

.produkt-swiper-container.gallery-thumbs .swiper-slide img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    background-color: #F8F8FB;
}

.produkt-swiper-container.gallery-thumbs {
    height: 100%;
    position: relative;
}

.gallery-thumbs .swiper-slide {
    height: 100%;
}

.produkt-swiper-container.gallery-thumbs .swiper-slide-thumb-active {
    border: 1px solid #888888;
}

.gallery-thumbs-swiper-button {
    cursor: pointer;
    position: absolute;
    top: 0;
    background: #88888800;
    width: 40px;
    height: 100%;
    line-height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.gallery-thumbs-swiper-button.swiper-button-disabled {
    display: none;
}

.gallery-thumbs-swiper-button-next {
    right: 0px;
}

.gallery-thumbs-swiper-button-prev {
    left: 0px;
}

.gallery-thumbs-swiper-button:hover {
    background: #88888855;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.produkt_galerie_container {
    width: calc(50% - 30px);
    margin-right: 30px;
}

.produkt_uvod_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.woocommerce-product-details__short-description {
    margin: 10px auto 30px auto;
}

table.variations {
    margin: 30px 0;
}

table.variations td {
    display: block;
}

table.variations label {
    margin-right: 10px;
}

.custom_list_wrap select::-ms-expand {
    display: none !important;
}

.custom_list_wrap select {
    padding-right: 35px;
    -moz-appearance: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    max-width: 100%;
}

.woocommerce-variation-price, .woocommerce-variation-availability {
    display: none;
}

.product-type-variable .stock_wrapper .stock {
    display: none;
}

.custom_list_wrap {
    display: inline-block;
    position: relative;
    margin: 10px 10px 10px 0;
    max-width: 100%;
}

.custom_list_wrap:after {
    position: absolute;
    pointer-events: none;
    top: 50%;
    right: 15px;
    content: '\00276F';
    transform: translateY(-50%) rotate(90deg);
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
}

.produkt_popis_wrap {
    width: calc(50% - 30px);
    margin-left: 30px;
}

.produkt_popis_wrap .product_title {
    font-size: 26px;
    line-height: 39px;
    font-family: Nunito-ExtraBold;
}

.produkt_popis_wrap p {
    font-size: 16px;
    line-height: 28px;
}

.produkt_popis_odkaz {
    color: #004AAD;
}

.produkt_dalsi_popis {
    background-color: #fff;
    border-radius: 23px;
    box-shadow: 0 6px 38px #1e2fc81e;
    padding: 22px 27px 35px 27px;
    margin: 30px auto;
}

.produkt_dalsi_popis ul li {
    margin-left: 20px;
    line-height: 32px;
}

.produkt_dalsi_popis h3 {
    color: #004AAD;
    font-size: 16px;
}

.single_produkt_cart {
    border-radius: 47px;
    background-color: #F8F8FB;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    /* padding: 20px 20px 20px 30px; */
    margin-top: 30px;
}

.single_produkt_price_wrap {
    margin: 20px 20px 20px 30px;
}

.single_produkt_price_wrap .price {
    display: flex;
    flex-wrap: wrap;
}

.single_produkt_price_wrap .price * {
    display: flex;
    flex-wrap: wrap;
    font-size: 26px;
    font-family: Nunito-ExtraBold;
}

.single_produkt_price_wrap .price del * {
    font-size: 15px;
    font-family: Nunito-ExtraBold;
    color: #FC5E5E;
    text-decoration: line-through;
}

.single_produkt_price_wrap .price ins {
    width: 100%;
    text-decoration: none;
}

.single_produkt_price_wrap .price ins * {
    font-size: 26px;
    font-family: Nunito-ExtraBold;
    text-decoration: none;
}

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

.single_produkt_cart_qty_wrap {
    background-color: #fff;
    border-radius: 22px;
    padding: 8px;
    margin: 20px 0 20px 30px;
}

.single_produkt_cart_button_wrap .btn_a_purple {
    margin: 20px 20px 20px 30px;
}

.single_produkt_cart_qty_wrap * {
    font-size: 23px;
    font-family: Nunito-SemiBold;
}

.single_produkt_cart_qty_wrap .quantity {
    display: inline-block;
}

.single_produkt_cart_qty_wrap input {
    background: none;
    border: none;
    pointer-events: none;
    width: 30px;
    text-align: center !important;
    padding: 0;
}

.woocommerce-grouped-product-list-item__quantity .cb_container {
    margin: 0 !important;
    height: 25px;
    padding-left: 35px !important;
    font-size: 16px;
    line-height: 25px;
}

.woocommerce-grouped-product-list-item__quantity .cb_container .checkmark {
    top: 0;
}

.single_produkt_cart_qty_wrap input::-webkit-outer-spin-button, .single_produkt_cart_qty_wrap input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-type-grouped .cart.grouped_form {
    border-radius: 47px;
    background-color: #F8F8FB;
    padding: 20px;
}

.product-type-grouped .cart.grouped_form .quantity_wrap {
    background-color: #fff;
    border-radius: 22px;
    padding: 8px;
    display: inline-flex;
    flex-wrap: nowrap;
}

.product-type-grouped .cart.grouped_form .quantity_wrap input::-webkit-outer-spin-button, .product-type-grouped .cart.grouped_form .quantity_wrap input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-type-grouped .cart.grouped_form .quantity_wrap input {
    -moz-appearance: textfield;
}

.product-type-grouped .cart.grouped_form .quantity_wrap>* {
    display: inline-block;
}

.product-type-grouped .cart.grouped_form .quantity_wrap .quantity {
    margin: 0;
}

.product-type-grouped .cart.grouped_form .btn_a_purple {
    margin-top: 5px;
}

.woocommerce-grouped-product-list.group_table tr td {
    padding: 5px;
}

.woocommerce-grouped-product-list-item__price .woocommerce-Price-amount {
    margin-right: 10px;
}

.woocommerce-grouped-product-list-item__price del * {
    font-size: 15px;
    font-family: Nunito-ExtraBold;
    color: #FC5E5E;
    text-decoration: line-through;
}

.woocommerce-grouped-product-list-item__price, .woocommerce-grouped-product-list-item__price * {
    font-size: 26px;
    font-family: Nunito-ExtraBold;
    text-decoration: none;
}

.woocommerce-grouped-product-list-item__label a {
    color: #004AAD;
}

/* RATING */

.star-rating {
    overflow: hidden;
    position: relative;
    height: 1.618em;
    line-height: 1.618;
    font-size: 1.5em;
    width: 4.5em;
    /* font-family: "Font Awesome 5 Free"; */
    font-weight: 400;
}

.star-rating:before, .star-rating span:before {
    content: "\01F7CA\01F7CA\01F7CA\01F7CA\01F7CA";
    top: 0;
    left: 0;
    position: absolute;
}

.star-rating:before {
    opacity: .25;
    float: left;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
    color: #43454b;
}

p.stars {
    display: inline-block;
    margin: 0;
}

p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.5em;
}

p.stars a:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    content: "\01F7CA";
    font-size: .95em;
    color: #43454b;
    text-indent: 0;
    opacity: .25;
}

.star-rating span:before, p.stars a:hover:after, p.stars a:after, .star-rating span:before {
    color: #004AAD;
}

p.stars a:hover~a:before {
    color: #43454b;
    opacity: .25;
}

p.stars:hover a:before {
    color: #004AAD;
    opacity: 1;
}

p.stars.selected a.active:before {
    color: #004AAD;
    opacity: 1;
}

p.stars.selected a.active~a:before {
    color: #43454b;
    opacity: .25;
}

p.stars.selected a:not(.active):before {
    color: #004AAD;
    opacity: 1;
}

.single-product div.product .woocommerce-product-rating {
    margin-bottom: 1.618em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.single-product div.product .woocommerce-product-rating::before, .single-product div.product .woocommerce-product-rating::after {
    content: "";
    display: table;
}

.single-product div.product .woocommerce-product-rating::after {
    clear: both;
}

.single-product div.product .woocommerce-product-rating a {
    font-weight: 600;
    text-decoration: underline;
}

.single-product div.product .woocommerce-product-rating a:hover {
    text-decoration: none;
}

.single-product div.product .woocommerce-product-rating .star-rating {
    float: left;
    margin-right: .6180469716em;
}

#reviews .commentlist li .comment_container .comment-text .star-rating {
    float: right;
    /* font-size: .875em; */
    font-size: 1.5em;
    line-height: 1;
    height: 1em;
}

#reviews {
    outline: none;
    max-width: 600px;
}

#reviews #comments {
    padding-top: 0;
}

#reviews .comment-reply-title {
    display: none;
}

#reviews .commentlist {
    list-style: none;
    margin-left: 0;
}

#reviews .commentlist li {
    margin-bottom: 2.617924em;
    list-style: none;
    clear: both;
}

#reviews .commentlist li::before, #reviews .commentlist li::after {
    content: "";
    display: table;
}

#reviews .commentlist li::after {
    clear: both;
}

#reviews .commentlist li .comment_container {
    border-radius: 3px;
}

#reviews .commentlist li .comment_container::before, #reviews .commentlist li .comment_container::after {
    content: "";
    display: table;
}

#reviews .commentlist li .comment_container::after {
    clear: both;
}

#reviews .commentlist li .comment_container .comment-text {
    width: 81.8181818182%;
    float: right;
    margin-right: 0;
}

#reviews .commentlist li:last-child {
    border-bottom: 1px solid #004AAD;
    margin-bottom: 25px;
}

#reviews .commentlist li time {
    opacity: .5;
    font-size: .875em;
}

#reviews .commentlist li .avatar {
    width: 9.0909090909%;
    float: left;
    margin-right: 9.0909090909%;
    height: auto;
}

#reviews .commentlist li p.meta {
    margin-bottom: 1em;
}

#reviews .commentlist li p.meta strong {
    line-height: 1;
}

#reviews .commentlist li p.meta time {
    display: block;
}

#reviews .commentlist li p.meta .verified {
    font-style: normal;
    font-size: .875em;
}

#reviews .commentlist li p.meta .woocommerce-review__dash {
    display: none;
}

#reviews .commentlist li ul.children {
    margin: 0;
    width: 81.8181818182%;
    float: right;
    margin-right: 0;
    padding-top: 1.618em;
}

#reviews .commentlist li ul.children .avatar {
    width: 11.1111111111%;
    float: left;
    margin-right: 11.1111111111%;
}

#reviews .commentlist li ul.children .comment-text {
    width: 77.7777777778%;
    float: right;
    margin-right: 0;
}

#reviews .commentlist li ul.children li {
    margin-bottom: 1.618em;
}

#reviews .commentlist li ul.children li:last-child {
    margin-bottom: 0;
}

#reviews .comment-form-rating {
    clear: both;
}

#reviews .comment-form-rating label {
    display: block;
}

.comment-form-comment {
    display: flex;
    flex-wrap: wrap;
}

.comment-form-comment textarea {
    width: 100%;
}

#commentform input[type="submit"] {
    background-image: linear-gradient(to right, #85D5F6 -90%, #85D5F6 100%);;
    border: none;
    border-radius: 25px;
    padding: 11px 20px;
    color: #fff;
    font-family: Nunito-Bold;
    font-size: 18px;
    position: relative;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

#commentform input[type="submit"]:hover {
    cursor: pointer;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

/* Firefox */

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

.product_meta {
    display: flex;
    flex-wrap: wrap;
}

.product_meta *, .stock {
    font-family: Nunito-SemiBold;
}

.product_meta>span {
    font-size: 16px;
    margin: 10px 30px 10px 0;
    display: flex;
    align-items: center;
}

.product_meta .znacka, .sku {
    margin-left: 10px;
}

.stock {
    /* margin: 10px 30px 10px 0; */
    line-height: normal;
    display: inline-block;
}

.stock_nowrap_part {
    white-space: nowrap;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.stock:before {
    display: inline-block;
    width: 21px;
    height: 25px;
    margin-right: 10px;
    vertical-align: middle;
}

.stock.in-stock {
    color: #53CE57;
}

.stock.in-stock:before {
    content: url('../img/in_stock.svg');
}

.stock.out-of-stock {
    color: #b81c23;
}

.stock.out-of-stock:before {
    content: url('../img/out_of_stock.svg');
}

.stock.available-on-backorder {
    color: #c4a622;
}

.stock.available-on-backorder:before {
    content: url('../img/available_on_backorder.svg');
}

.woocommerce-error, .woocommerce-message, .woocommerce-info {
    background-color: #F8F8FB;
    padding: 1em 2em 1em 3.5em;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    overflow: auto;
}

.woocommerce-error *, .woocommerce-message *, .woocommerce-info * {
    text-align: left;
}

.woocommerce-message {
    border-top: 3px solid #8fae1b;
}

.woocommerce-error {
    border-top: 3px solid #b81c23;
    list-style: none;
}

.woocommerce-info {
    border-top: 3px solid #5b95a4;
}

.woocommerce-error:before, .woocommerce-info:before, .woocommerce-message:before {
    content: "!";
    font-weight: 800;
    position: absolute;
    top: 1em;
    left: 1.5em;
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.woocommerce-message:before {
    content: "\2713";
    background-color: #8fae1b;
}

.woocommerce-error:before {
    background-color: #b81c23;
}

.woocommerce-info:before {
    background-color: #5b95a4;
}

.woocommerce-notices-wrapper .restore-item {
    background: transparent;
    border: #004AAD 2px solid;
    border-radius: 25px;
    padding: 11px 50px 11px 22px;
    color: inherit;
    font-family: Nunito-Bold;
    font-size: 18px;
    position: relative;
}

.woocommerce-notices-wrapper .restore-item:after {
    position: absolute;
    content: url('../img/plus_15.svg');
    width: 16.5px;
    height: 16.5px;
    line-height: 16.5px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.woocommerce-notices-wrapper .button.wc-forward {
    background-image: linear-gradient(to right, #85D5F6 -90%, #85D5F6 100%);;
    border: none;
    border-radius: 25px;
    padding: 11px 58px 11px 22px;
    color: #fff;
    font-family: Nunito-Bold;
    font-size: 18px;
    position: relative;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    text-decoration: none;
    float: right;
    margin-left: 10px;
}

.woocommerce-notices-wrapper .button.wc-forward:after {
    content: url('../img/shopping_bag.svg');
    background-color: #fff;
    border-radius: 50%;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    padding-left: 2px;
    align-items: center;
    position: absolute;
    right: 5px;
    top: 50%;
    width: 38px;
    height: 38px;
    line-height: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.woocommerce-breadcrumb {
    padding: 20px 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
}

.woocommerce-breadcrumb a {
    vertical-align: middle;
    text-decoration: none;
}

.woocommerce-breadcrumb a:first-of-type img {
    margin-left: 10px;
    vertical-align: middle;
}

.woocommerce-breadcrumb>span:last-of-type a {
    text-decoration: underline;
    color: #004AAD;
}

.woocommerce-breadcrumb a:hover {
    text-decoration: underline;
    color: #004AAD;
}

.woocommerce-breadcrumb .path_delimiter {
    color: #004AAD;
    margin: 0 10px;
    font-size: 13px;
}

.woocommerce-breadcrumb .last_path {
    vertical-align: middle;
}

.woocommerce-breadcrumb>span:first-of-type .path_delimiter {
    color: #03111A;
}

.tabs.wc-tabs {
    /* display: none !important; */
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
    border-bottom: 2px #004AAD solid;
    border-radius: 2px;
}

.tabs.wc-tabs li {
    margin-right: 25px;
    margin-bottom: 20px;
}

.tabs.wc-tabs li a {
    color: #03111A;
    text-decoration: none;
    font-family: Nunito-Bold;
}

.tabs.wc-tabs li.active a {
    color: #004AAD;
}

.summary.entry-summary * {
    text-align: left;
}

.woocommerce-Tabs-panel * {
    text-align: left;
}

.woocommerce-Tabs-panel>h2 {
    color: #004AAD;
    font-size: 22px;
    font-family: Nunito-Bold;
    margin-bottom: 30px;
}

.woocommerce-Tabs-panel h3 {
    color: #03111A;
    font-size: 16px;
    font-family: Nunito-Bold;
}

.woocommerce-Tabs-panel p:not(.stars) {
    font-size: 16px;
    font-family: Nunito-Regular;
    line-height: 28px;
    margin-bottom: 20px;
}

.custom_form_wrap form {
    display: flex;
    flex-wrap: wrap;
    max-width: 660px;
}

.woocommerce-Tabs-panel .woocommerce-product-attributes th {
    padding-right: 10px;
}

.woocommerce-Tabs-panel .woocommerce-product-attributes p {
    margin-bottom: 0;
}

.custom_form_wrap form>div {
    width: 100%;
}

.custom_form_wrap form input, .custom_form_wrap form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding-left: 20px;
}

.custom_form_wrap .wpcf7-response-output {
    text-align: left;
}

.woocommerce-product-rating {
    margin-bottom: 20px;
}

.woocommerce-product-rating .rating {
    color: #004AAD !important;
}

.woocommerce-review-link {
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.woocommerce-review-link:hover {
    color: #004AAD;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.commentlist {
    list-style: none;
}

/* PRODUKT ITEM */

.section_with_background {
    background-color: #F8F8FB;
}

.section_with_no_background {
    background-color: #fff;
}

ul.products {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    flex-wrap: wrap;
    list-style: none;
}

.more_button_wrap {
    text-align: center;
    margin-top: 10px;
}

.produkt_item {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    text-align: right;
    overflow: hidden;
    width: calc(100% / 5 - 20px);
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 20px;
    position: relative;
    min-height: 367px;
    height: auto;
}

.produkt_item:hover {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 38px #1e2fc81e;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    overflow: hidden;
}

.produkt_item:hover .woocommerce-loop-product__link {
    padding: 5px 5px 0 5px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.produkt_item:hover .woocommerce-loop-product__link>img {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.produkt_tags_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 275px;
    padding: 10px;
    text-align: left;
}

.produkt_tags_container {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 275px;
    left: 0;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    padding: 10px;
}

.produkt_tags_container>div {
    width: 100%;
    margin: 5px 0 5px 0;
    text-align: left;
}

.yith-wcwl-share-title {
    text-align: left;
}

.wishlist_tag {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
}

.wishlist_tag * {
    margin: 0 !important;
}

.wishlist_tag .yith-wcwl-add-button a {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.wishlist_tag .yith-wcwl-add-button a:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.wishlist_tag .yith-wcwl-add-button .add_to_wishlist {
    content: url('../img/wishlist_20.svg');
}

.wishlist_tag .yith-wcwl-add-button .delete_item {
    content: url('../img/wishlist_20_added.svg');
}

.produkt_buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.produkt_buttons>div {
    display: inline-block;
    margin: 0;
    margin-right: 10px;
    margin-bottom: 10px;
}

.produkt_buttons .br_compare_button {
    padding: 0;
    text-decoration: none;
    vertical-align: middle;
}

.produkt_buttons .br_compare_button:hover, .produkt_buttons .br_compare_button:hover * {
    background: none !important;
}

.produkt_buttons .br_compare_button:hover:before {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.produkt_buttons .br_compare_button i {
    display: none !important;
}

.produkt_buttons .br_compare_button:before {
    content: url('../img/compare_purple.svg');
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.produkt_buttons .yith-wcwl-add-button a:before {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.produkt_buttons .yith-wcwl-add-button a:hover:before {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.produkt_buttons .yith-wcwl-add-button .add_to_wishlist:before {
    content: url('../img/wishlist_purple.svg');
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}

.produkt_buttons a, .produkt_buttons a * {
    color: #004AAD;
    font-family: Nunito-Bold;
    font-size: 16px;
    text-decoration: none;
}

.produkt_buttons .yith-wcwl-add-button .delete_item:before {
    content: url('../img/wishlist_purple_added.svg');
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}

.produkt_buttons .yith-wcwl-add-button .separator, .produkt_buttons .yith-wcwl-add-button .view-wishlist {
    display: none;
}

.produkt_tag {
    color: #fff;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 3px;
    display: inline-block;
}

.produkt_tags_container>div:last-of-type {
    margin: 5px 0 0 0;
}

.produkt_tag_akcni-nabidka {
    background-image: linear-gradient(to left, #E95252 0%, #FF5E5E 100%);
}

.produkt_tag_novinka {
    background-image: linear-gradient(to right, #85D5F6 -90%, #85D5F6 100%);;
}

.produkt_tag_in-stock {
    background: transparent;
    color: #2DBE01;
}

.produkt_tag_out-of-stock {
    background-image: linear-gradient(to left, #03111A 0%, #525252 100%);
}

.produkt_tag_available-on-backorder {
    background-image: linear-gradient(to left, #c4a622 0%, #e1cf6c 100%);
    font-size: 15px;
}

.onsale {
    font-size: 16px;
    margin: 0;
    position: static;
    display: inline-block;
    background-color: #B4B4C5;
    color: #fff;
    border-radius: 50%;
    transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.produkt_item .woocommerce-loop-product__link {
    width: 100%;
    height: 275px;
    text-decoration: none;
    text-align: left;
    display: block;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.main_shop .produkt_item .woocommerce-loop-product__link img {
    background-color: #F8F8FB;
}

.section_with_no_background .produkt_item .woocommerce-loop-product__link img {
    background-color: #F8F8FB;
}

.section_with_background .produkt_item .woocommerce-loop-product__link img {
    background-color: #fff;
}

.produkt_item .woocommerce-loop-product__link>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.produkt_item .price del {
    margin-right: 5px;
    opacity: 1;
}

.produkt_item .price del * {
    color: #FC5E5E;
    font-size: 15px;
    text-decoration: line-through;
}

.produkt_item_text_wrap {
    text-align: left;
}

.produkt_item h2 {
    text-align: left;
    font-size: 16px;
    font-family: Nunito-Bold;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
    line-height: 24px;
    color: black;
}

.produkt_item .price {
    padding-left: 10px !important;
    padding-right: 10px !important;
    display: flex;
    justify-content: flex-end;

}

.produkt_item .price * {
    color: #004AAD;
    font-size: 18px;
    font-family: Nunito-ExtraBold;
    text-decoration: none;
}

.added_to_cart.wc-forward {
    display: none !important;
}

.quantity_wrap {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

.produkt_item .quantity_wrap {
    opacity: 1;
    pointer-events: none;
}

.quantity_wrap>div {
    display: flex;
    flex-wrap: nowrap;
    margin: 5px 10px 5px 0;
    justify-content: space-evenly;
    flex: 1 0 20%;
}

.produkt_item:hover .quantity_wrap {
    opacity: 1;
    pointer-events: visible;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

button.minus, button.plus {
    font-size: 21px;
    text-align: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    background: transparent;
}

button.minus:hover, button.plus:hover {
    color: #004AAD;
}

.input_quantity {
    max-width: 40px;
    font-size: 18px;
    text-align: center !important;
    color: #000;
    background-color: transparent;
    border: none;
    pointer-events: none;
    padding: 0;
    font-weight: 600;
}

.all_products_wrap {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.produkty_vypis_wrap {
    position: relative;
}

.produkty_vypis_overlay {
    pointer-events: none;
    opacity: 0;
    background-color: #ffffffaa;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 50px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    z-index: 10;
}

.loading_loader {
    background-color: #004AAD;
    opacity: 0.75;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 100%;
    padding: 0;
    position: relative;
}

.loading_loader:after {
    content: '';
    position: absolute;
    background-color: #fbfbfc;
    top: 10px;
    left: 10px;
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 100%;
    transform-origin: 15px 15px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* NEWSLETER */

#newsletter_popup_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: -100;
    opacity: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.newsletter_bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000055;
    z-index: 201;
}

#newsletter_banner_container {
    position: relative;
    max-width: 640px;
    min-height: 367px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 202;
}

.newsletter_banner_container h3 {
    font-family: Nunito-ExtraBold;
    font-size: 26px;
    line-height: 32px;
    color: #03111A;
    max-width: 400px;
    margin-bottom: 10px;
}

.newsletter_banner_container p {
    font-family: Nunito-SemiBold;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    text-align: center;
    max-width: 400px;
    margin-bottom: 10px;
}

#newsletter_banner_container>img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -2;
    object-fit: cover;
}

.newsletter_banner_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    background: var(--lightBlue);
    padding: 60px;

}

.newsletter_banner_pozadi_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.66;
    z-index: -1;
    background-image: linear-gradient(to right, #85D5F6 -90%, #85D5F6 100%);;
}

.close_cross {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 25px;
    line-height: 1em;
    cursor: pointer;
}

.show_popup {
    pointer-events: all !important;
    z-index: 200 !important;
    opacity: 1 !important;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.hide_popup {
    pointer-events: none !important;
    z-index: -100 !important;
    opacity: 0 !important;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

/* ARCHIVE PRODUKTY */

.produkty_ordering_wrap {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    padding: 12px 10px;
}

.produkty_ordering_wrap span {
    font-family: Nunito-Bold;
    font-size: 18px;
    cursor: pointer;
    margin: 12px 25px 12px 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.produkty_ordering_wrap span:hover {
    color: #004AAD;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.produkty_ordering_wrap span.selected_order {
    color: #004AAD;
    font-size: 20px;
    cursor: default;
    text-decoration: underline;
}

.custom_subcategories_archive_wrap {
    margin-bottom: 25px;
}

.custom_subcategories_archive_container {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #004AAD;
    border-top: 2px solid #004AAD;

    padding-top: 20px;
}

.subcategory_a {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    text-decoration: none;
    font-family: Nunito-Bold;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border: solid 1.5px transparent;
    text-align: left;
}

.subcategory_a:hover {
    color: #004AAD;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    border: solid 1.5px #E4E6F9;
    border-radius: 3px;
}

.subcategory_a img {
    width: 75px;
    height: 75px;
    margin-right: 10px;
    object-fit: contain;
}

.custom_roll_list_btn_wrap {
    display: none;
    margin-bottom: 20px;
    width: 100%;
}

.products_ul_wrap {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

.products_filer_wrap {
    width: 310px;
    border-right: 2px solid #004AAD;
    margin-right: 10px;
    text-align: left;
    border-bottom: transparent solid 2px;
    border-top: transparent solid 2px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.products_filer_container {
    padding: 20px 10px 20px 20px;
}

.products_filer_wrap ul {
    list-style: none;
}

.products_filer_container * {
    text-align: left;
}

.products_filer_container h2 {
    margin: 10px 0;
    font-size: 20px;
    font-family: Nunito-Bold;
}

.products_filer_container .price_slider_amount .price_label * {
    font-family: inherit;
}

.products_filer_container .custom_roll_list_container_max {
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.products_filer_container .custom_roll_list_show .custom_roll_list_container_max {
    max-height: 300px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    overflow: auto;
    border-top: 1px solid #004AAD;
    border-bottom: 1px solid #004AAD;
}

.products_filer_container .custom_roll_list_btn {
    cursor: pointer;
    position: relative;
    padding-right: 25px;
}

.products_filer_container .custom_roll_list_btn:after {
    position: absolute;
    right: 10px;
    top: -2px;
    content: '\276F';
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}
.products_filer_container .custom_roll_list_show .custom_roll_list_btn:after {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}
.products_ul_wrap ul.products {
    width: calc(100% - 320px);
}

.products_filer_wrap .woocommerce-widget-layered-nav-list__item a {
    text-decoration: none;
   
    
}

.products_filer_wrap .woocommerce-widget-layered-nav-list__item {
    position: relative;
    padding-left: 25px;
    margin: 10px 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.products_filer_wrap .woocommerce-widget-layered-nav-list__item a:hover {
    color: #004AAD;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.products_filer_wrap .woocommerce-widget-layered-nav-list__item a:hover:before {
    background-color: #004AAD66;
}

.products_filer_wrap .woocommerce-widget-layered-nav-list__item a:before {
    position: absolute;
    content: '';
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #004AAD;
}

.products_filer_wrap .woocommerce-widget-layered-nav-list__item.chosen a:after {
    position: absolute;
    content: '';
    left: 3px;
    top: 5px;
    width: 10px;
    height: 5px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    border-left: solid 2px #fff;
    border-bottom: solid 2px #fff;
}

.products_filer_wrap .woocommerce-widget-layered-nav-list__item.chosen a:before {
    background-color: #004AAD;
}

.widget_layered_nav_filters ul {
    display: flex;
    flex-wrap: wrap;
}

.widget_layered_nav_filters ul li {
    margin: 0 10px 10px 0;
}

.products_filer_wrap .widget_layered_nav_filters .chosen a {
    text-decoration: none;
    color: #fff;
    background-color: #004AAD;
    border-radius: 10px;
    position: relative;
    padding: 0 20px 0 5px;
}

.products_filer_wrap .widget_layered_nav_filters .chosen a * {
    color: inherit !important;
}

.products_filer_wrap .widget_layered_nav_filters .chosen a:after {
    content: '\292B';
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.ui-slider-horizontal {
    height: .8em;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    display: block;
    z-index: 2;
    width: 15px;
    top: -7px;
    height: 25px;
    background: #fff;
    border: 1px solid #555;
    border-radius: 4px;
}

.ui-slider .ui-slider-handle:focus {
    outline: none;
}

.ui-slider .ui-slider-handle:hover {
    cursor: pointer;
}

.ui-slider {
    position: relative;
    background: #fff;
    border: 1px solid #B2BACF;
    border-radius: 4px;
    width: calc(100% - 15px);
}

.products_filer_wrap .ui-slider-range {
    background-color: var(--lightBlue) !important;
    position: absolute;
    height: 100%;
}

.price_slider_wrapper {
    display: flex;
    flex-wrap: wrap;
}

.price_slider_wrapper .price_slider_amount {
    order: -1;
}

.price_label .to, .price_label .from {
    white-space: nowrap;
}

/* WOOCOMMERCE NAVIGATION */

.woocommerce-ordering {
    padding: 25px 0;
}

.woocommerce-pagination {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 25px;
    padding: 0;
    clear: both;
}

.woocommerce-pagination * {
    text-align: center;
}

.woocommerce-pagination .page-numbers {
    list-style: none;
}

.woocommerce-pagination ul.page-numbers li {
    display: inline-block;
}

.woocommerce-pagination ul.page-numbers li * {
    padding: 4px 10px;
    font-size: 18px;
    font-family: Nunito-Bold;
    margin: 0 2px;
    text-decoration: none;
}

.woocommerce-pagination span.page-numbers.current {
    background: linear-gradient(to right, #85D5F6 -90%, #85D5F6 100%);;
    border-radius: 5px;
    color: #fff;
}

.woocommerce-pagination li .page-numbers:hover:not(.current) {
    color: #004AAD;
}

/* OTHER NAVIGATION */

.navigation.pagination {
    width: 100%;
    margin-top: 50px;
    padding: 0;
}

.navigation.pagination * {
    text-align: center;
}

.navigation.pagination .page-numbers {
    padding: 4px 10px;
    font-size: 18px;
    font-family: Nunito-Bold;
    margin: 0 2px;
    text-decoration: none;
}

.navigation.pagination .page-numbers.current {
    background: linear-gradient(to right, #85D5F6 -90%, #85D5F6 100%);;
    border-radius: 5px;
    color: #fff;
}

.navigation.pagination .page-numbers:hover {
    color: #004AAD;
}

.navigation.pagination .page-numbers:hover:not(.current) {
    color: #004AAD;
}

/* NEWSLETTERS */

.kontakt_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.banner_newsletter_container form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.kontakt_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: auto !important;
    position: relative;
    background-color: #fff;
    border-radius: 30px;
    padding: 4px 4px 4px 15px;
}

.kontakt_wrap .ajax-loader {
    position: absolute !important;
    margin: 0 !important;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.kontakt_container .your-email {
    display: inline-block;
    width: 100%;
}

.kontakt_container .your-email:before {
    content: url("../img/email_send.svg");
    display: inline-block;
    vertical-align: middle;
    height: 17px;
}

.kontakt_container .your-email .input_email {
    height: 100%;
    width: calc(100% - 42px);
    display: inline-block;
    margin: 0px 10px;
    font-size: 15px;
    border: none;
    text-align: left;
    padding: 10px;
    color: #060F26;
    border-radius: 30px;
    border: 1px solid transparent;
}

.kontakt_container .your-email .input_email:focus {
    outline: none;
    border: 1px solid #004AAD;
}

.kontakt_submit_wrap {
    position: relative;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.kontakt_submit_wrap:hover {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
}

.wpcf7-not-valid {
    border: 1px solid #b81c23 !important;
}

.wpcf7-response-output {
    text-align: center;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.wpcf7-response-output {
    border: none !important;
    margin: 1em 0.5em 1em !important;
}

/* CART */

.cart-collaterals {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 25px;
    flex-wrap: wrap;
}

.wc-proceed-to-checkout {
    margin-bottom: 25px;
}

.cart_totals {
    widtH: 50%;
}

.cross-sells {
    width: 100%;
    order: 10;
}

.shop_table {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #004AAD;
}

.shop_table td, .shop_table th {
    padding: 9px 12px;
    border-bottom: 1px solid #004AAD;
}

.shop_table tr:last-of-type td, .shop_table tr:last-of-type th {
    border-bottom: 0;
}

.shop_table * {
    text-align: left;
}

td.product-name a:hover {
    color: #004AAD;
}

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

.product-remove a {
    text-decoration: none;
    font-weight: 600;
}

.product-remove a:hover {
    color: #b81c23;
}

.wc-proceed-to-checkout {
    margin-top: 25px;
    text-align: right;
}

.shop_table tr:nth-child(2n) th, .shop_table tr:nth-child(2n) td {
    background-color: rgba(0, 0, 0, .025);
}

.woocommerce-checkout-review-order-table tbody tr th, .woocommerce-checkout-review-order-table tbody tr td {
    background-color: rgba(0, 0, 0, 0) !important;
}

.shop_table tfoot tr th, .shop_table tfoot tr td {
    background-color: rgba(0, 0, 0, .035) !important;
}

.shop_table .product-thumbnail img {
    width: 100px;
    height: 100px;
    vertical-align: middle;
}

.shop_table td.actions {
    overflow: auto;
}

.cart_update_wrap {
    float: right;
}

.coupon_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    float: left;
}

.coupon_wrap input[type="text"] {
    margin-right: 10px;
}

.product-quantity input {
    width: 100px;
}

.woocommerce-shipping-calculator {
    display: none;
}

.woocommerce-shipping-methods {
    list-style: none;
}

.woocommerce-shipping-methods li {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.shipping_method {
    margin-right: 10px;
    height: 20px;
}

.checkout_coupon.woocommerce-form-coupon p {
    margin-bottom: 10px;
}

/* SEARCH */

#keyword {
    border-radius: 25px;
    border: 1px solid #1E2FC81e;
    padding: 14px 14px 14px 50px;
    width: 100%;
    font-size: 16px;
    text-align: left;
}

#keyword:focus {
    outline: none;
    border: 1px solid #004AAD;
}

.search_bar_wrap {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.search_bar_wrap:before {
    content: url('../img/search.svg');
    position: absolute;
    left: 15px;
    top: 50%;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

#datafetch_wrap {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 150;
    background-color: #fff;
    border: 1px solid #004AAD;
    border-radius: 25px;
    display: none;
    overflow: hidden;
}

#datafetch {
    padding: 20px;
    max-width: 500px;
    overflow-y: auto;
    max-height: 500px;
    scrollbar-color: #004AAD #f1f1f1;
    scrollbar-width: 10px;
}

#datafetch h5 {
    font-weight: normal;
}

#datafetch * {
    text-align: left;
}

#datafetch a:hover {
    color: #004AAD;
}

#datafetch::-webkit-scrollbar {
    width: 10px;
}

#datafetch::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#datafetch::-webkit-scrollbar-thumb {
    background: #004AAD;
}

#datafetch::-webkit-scrollbar-thumb:hover {
    background: #85D5F6;
}

.search_cat_wrap {
    padding: 10px 0;
    border-top: 1px solid #EEEEEF;
}

.search_cat_wrap:last-of-type {
    border-bottom: 1px solid #EEEEEF;
}

.search_cat_wrap span {
    display: inline-block;
}

.search_cat_wrap span h5:after {
    content: ', ';
    display: inline-block;
}

.search_cat_wrap span:last-of-type h5:after {
    content: '';
}

.search_cat {
    margin-bottom: 20px;
}

.search_cat:last-of-type {
    margin-bottom: 0;
}

.product_search_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5px;
    text-decoration: none;
}

.product_search_container:first-of-type {
    margin-top: 5px;
}

.product_search_container:hover {
    background-color: #004AAD33;
}

.product_search_text_container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 5px;
}

.product_search_container img {
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

#datafetch .stock {
    font-size: 12px;
    margin: 0;
}

#datafetch .stock:before {
    content: none;
}

.product_search_price_container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.product_search_price_container>* {
    width: 100%;
}

.product_search_price_container * {
    text-align: right !important;
    font-family: Nunito-ExtraBold;
    font-size: 15px;
}

.product_search_price_container del * {
    color: #FC5E5E;
    text-decoration: line-through;
}

.product_search_price_container ins * {
    text-decoration: none;
}

/* MY ACC*/

.woocommerce_custom_form {
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #004AAD;
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 25px;
}

.woocommerce_custom_form * {
    text-align: left;
}

.woocommerce_custom_form p {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 10px 0;
}

.woocommerce_custom_form label {
    margin-bottom: 5px;
}

.woocommerce_custom_form p label.checkbox {
    display: block;
}

.woocommerce_custom_form p label:not(.checkbox), .woocommerce_custom_form p input:not(.input-checkbox), .woocommerce_custom_form .password-input {
    width: 100%;
}

.woocommerce_custom_form .lost_password {
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.woocommerce_custom_form_button_wrap {
    align-items: center !important;
    justify-content: space-between;
}

.cb_container {
    display: block;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    width: auto !important;
    margin: 10px 10px 10px 0!important;
}

.cb_container span {
    font-size: 17px;
    text-align: left;
    margin: 0;
}

.cb_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #004AAD;
}

.cb_container:hover .checkmark {
    background-color: #EEEEEF;
}

.cb_container .checkmark.checked {
    background-color: #004AAD;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.cb_container .checkmark.checked:after {
    display: block;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.woocommerce-password-strength {
    margin-top: 10px;
}

.woocommerce-password-strength.strong {
    color: #008000;
}

.woocommerce-password-strength.good {
    color: #ffba00;
}

.woocommerce-password-strength.bad, .woocommerce-password-strength.short {
    color: #a00;
}

.woocommerce-input-wrapper {
    width: 100%;
}

.woocommerce-MyAccount-navigation {
    border-bottom: 2px solid #004AAD;
    border-radius: 2px;
    margin-bottom: 25px;
}

.woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link {
    margin-right: 35px;
    margin-bottom: 15px;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a {
    text-decoration: none;
    font-family: Nunito-Bold;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:hover {
    color: #004AAD;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link.is-active a {
    color: #004AAD;
    font-family: Nunito-ExtraBold;
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
    background-image: linear-gradient(to right, #85D5F6 -90%, #85D5F6 100%);
    border: none;
    border-radius: 25px;
    padding: 11px 22px;
    color: #fff;
    font-family: Nunito-Bold;
    font-size: 18px;
    position: relative;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.woocommerce-MyAccount-content a:hover {
    color: #004AAD;
}

.woocommerce-MyAccount-content h3, .woocommerce-customer-details h2 {
    margin-bottom: 10px;
    margin-top: 10px;
}

.woocommerce-MyAccount-content header, .woocommerce-MyAccount-content address, .woocommerce-MyAccount-content p, .woocommerce-order p, .woocommerce-thankyou-order-details li, .woocommerce-customer-details address {
    text-align: center;
}

.order_comments, .woocommerce-order>.woocommerce-notice, .woocommerce-order .woocommerce-order-overview {
    margin-bottom: 5px;
}

.woocommerce-customer-details {
    padding: 0;
}

ul.wc_payment_methods {
    list-style: none;
    margin-top: 10px;
}

ul.wc_payment_methods * {
    text-align: left;
}

.woocommerce-orders-table__cell-order-actions a {
    margin-right: 10px;
}

.woocommerce-orders-table__cell-order-actions a:last-of-type {
    margin-right: 0;
}

.woocommerce-terms-and-conditions-wrapper * {
    text-align: left;
}

.inline_flex_span {
    display: inline-flex;
    flex-wrap: wrap;
}

/* POKLADNA */

form.woocommerce-checkout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

form.woocommerce-checkout .woocommerce-NoticeGroup {
    width: 100%;
}

.woocommerce-checkout .checkout_part_wrap_1 {
    width: 60%;
    padding-right: 30px;
}

.woocommerce-checkout .checkout_part_wrap_2 {
    width: 40%;
    padding-right: 0;
}

.checkout_part_wrap h3 {
    margin-bottom: 20px;
}

#order_comments {
    width: 100%;
    height: 150px;
    resize: none;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
    margin: 10px 0;
}

.screen-reader-text {
    width: 1px !important;
}

/* COMPARE */

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

div.br_top_table .br_main_top, div.br_top_table .br_opacity_top {
    top: 1px !important;
}

.br_top_table .br_main_top {
    z-index: 1 !important;
}

.br_popup_wrapper {
    width: 94% !important;
}

#br_popup .br_popup_wrapper .popup_animation {
    padding-left: 0 !important;
}

/* WISHLIST */

.wishlist_table p {
    margin-bottom: 0;
}

.table.wishlist_table tbody td, table.wishlist_table thead th {
    border-color: #004AAD !important;
}

table.wishlist_table tbody td, table.wishlist_table thead th {
    border-color: #004AAD !important;
}

.wishlist-items-wrapper .quantity_wrap>div {
    background-color: #fff;
    border-radius: 22px;
    padding: 8px;
}

.wishlist-items-wrapper .quantity_wrap_variable {
    justify-content: flex-start;
}

.wishlist-items-wrapper .quantity_wrap_groupped {
    justify-content: flex-start;
}

.wishlist_table .product-add-to-cart .quantity_wrap a {
    margin: 0 !important;
}

.wishlist-items-wrapper .product-thumbnail a {
    max-width: 100px !important;
}

.wishlist-items-wrapper .product-thumbnail img {
    width: 100px !important;
    height: 100px !important;
}

.wishlist-items-wrapper .product-remove div {
    text-align: center;
    font-size: 18px;
}

.wishlist-items-wrapper .product-price del {
    margin-right: 5px;
}

.wishlist-items-wrapper .product-price .woocommerce-Price-amount {
    white-space: nowrap;
}

.wishlist-items-wrapper .product-price del * {
    color: #FC5E5E;
    font-size: 15px;
    text-decoration: line-through;
}

.wishlist-items-wrapper .product-price * {
    color: #004AAD;
    font-size: 18px;
    font-family: Nunito-ExtraBold;
    text-decoration: none;
}

.wishlist_table.mobile li .item-wrapper .product-thumbnail {
    max-width: 100px !important;
}

.wishlist_table.mobile li .item-wrapper {
    display: flex !important;
    flex-wrap: nowrap;
    width: 100% !important;
}

.wishlist_table.mobile li .item-wrapper .item-details {
    width: 100% !important;
}

.wishlist_table.mobile .quantity_wrap_variable {
    justify-content: flex-end;
}

.wishlist_table.mobile .quantity_wrap_groupped {
    justify-content: flex-end;
}

.wishlist_table.mobile .wishlist_mobile_tr_price .value del {
    margin-right: 5px;
}

.wishlist_table.mobile li {
    padding-bottom: 15px !important;
    padding-top: 15px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #004AAD;
}

.wishlist_table.mobile li:last-of-type {
    border-bottom: 0;
}

.wishlist_table.mobile .wishlist_mobile_tr_price .value .woocommerce-Price-amount {
    white-space: nowrap;
}

.wishlist_table.mobile .wishlist_mobile_tr_price .value del * {
    color: #FC5E5E;
    font-size: 12px;
    text-decoration: line-through;
}

.wishlist_table.mobile .wishlist_mobile_tr_price .value * {
    color: #004AAD;
    font-size: 14px;
    font-family: Nunito-ExtraBold;
    text-decoration: none;
}

.wishlist_table.mobile .product-remove {
    padding-right: 10px;
    font-size: 25px;
}

.wishlist_table.mobile .product-remove .fa {
    color: #004AAD;
}

.wishlist_table.mobile .item-details-table {
    width: 100%;
}

.wishlist_table.mobile .item-details-table .label {
    text-align: left;
    font-weight: 700;
}

.wishlist_table.mobile .item-details-table .value {
    text-align: right;
}

.wishlist_table.mobile .product-name h3 {
    font-size: 18px;
}
/* ALL POSTS */
.all_posts_container_a, .all_posts_container_a *{
text-decoration: none;
text-align: left;
}
.all_posts_container_a{
    margin-bottom: 25px;
    display: block;
    max-width: 600px;
    }
    .all_posts_container_a:hover .all_posts_container_nadpis{
color: #004AAD;
        }
.all_posts_container_nadpis{
    margin-bottom: 10px;
    font-size: 18px;
}
.all_posts_container_excerpt p{
    margin-bottom: 10px;
}
@media only screen and (max-width: 1350px) {}

@media only screen and (max-width: 1660px) {
    /* PRODUKT ITEM */
    .products_ul_wrap .produkt_item {
        width: calc(100% / 4 - 20px);
    }
    /* SECTION ODKAZY */
    .odkaz_container:nth-of-type(4) {
        width: calc(33% - 24px);
    }
    .odkaz_container:nth-of-type(5) {
        width: calc(24% - 24px);
    }
}

@media only screen and (max-width: 1350px) {
    /* PRODUKT ITEM */
    .products_ul_wrap .produkt_item {
        width: calc(100% / 3 - 20px);
    }
    .produkt_item {
        width: calc(100% / 4 - 20px);
    }
}

@media only screen and (max-width: 1290px) {
    /* ARCHIVE PRODUCT */
    .products_filer_wrap {
        width: 230px;
    }
    .products_ul_wrap ul.products {
        width: calc(100% - 240px);
    }
    /* PRODUKT ITEM */
    .products_ul_wrap .produkt_item {
        width: calc(100% / 3 - 20px);
    }
    .produkt_item {
        width: calc(100% / 4 - 20px);
    }
    .hero_slide_nadpis {
        font-size: 40px;
    }
    .hero_slide_text_wrap p {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1024px) {
    * {
        text-align: center;
    }
    .custom_roll_list_btn_wrap {
        display: block;
    }
    .custom_roll_list_arrow_down {
        color: inherit;
        transition: .3s all ease-in-out;
        -webkit-transition: .3s all ease-in-out;
        -moz-transition: .3s all ease-in-out;
        -o-transition: .3s all ease-in-out;
        -ms-transition: .3s all ease-in-out;
        margin-left: 10px;
        display: inline-block;
        transform: rotate( 90deg);
        -webkit-transform: rotate( 90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }
    .custom_roll_list_show .custom_roll_list_arrow_down {
        transition: .3s all ease-in-out;
        -webkit-transition: .3s all ease-in-out;
        -moz-transition: .3s all ease-in-out;
        -o-transition: .3s all ease-in-out;
        -ms-transition: .3s all ease-in-out;
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
    }
    .custom_roll_list_container {
        max-height: 0;
        overflow: hidden;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
    }
    .custom_roll_list_show .custom_roll_list_container {
     
        max-height: 300px;
        overflow-y: auto;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
    }
    .custom_roll_list_show .products_filer_wrap.custom_roll_list_container_max {
        max-height: 2000em;
        overflow: hidden;
    }
    .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
        flex-wrap: wrap;
    }
    .btn_a_white {
        padding: 8px 17px;
        font-size: 17px;
    }
    .btn_a_purple {
        padding: 8px 45px 8px 17px;
        font-size: 17px;
    }
    .btn_a_purple:after {
        width: 30px;
        height: 30px;
    }
    .btn_a_item {
        padding: 8px 19px;
        font-size: 17px;
        padding: 8px 45px 8px 17px;
    }
    .btn_a_item:after {
        width: 30px;
        height: 30px;
    }
    .btn_a_more {
        padding: 8px 19px;
        font-size: 17px;
        padding: 8px 60px 8px 17px;
    }
    .btn_a_purple_wo {
        padding: 8px 17px;
        font-size: 17px;
    }
    .woocommerce-MyAccount-navigation-link--customer-logout a {
        padding: 8px 17px;
        font-size: 17px;
    }
    .widget_shopping_cart_content .button.wc-forward {
        padding: 8px 19px;
        font-size: 17px;
        padding: 8px 45px 8px 17px;
        margin: 10px 10px;
    }
    .widget_shopping_cart_content .button.wc-forward:after {
        width: 30px;
        height: 30px;
    }
    .btn_a_item.loading:before {
        right: 22px;
    }
    main.search_main h1 {
        font-size: 34px;
    }
    .primary-navigation {
        height: 68px;
    }
    .primary-navigation .set_max_width_set_margin {
        margin: 0 auto;
    }
    .menu_logo {
        margin-left: 10px;
        max-width: 65%;
        height: 68px;
    }
    /* HERO */
    .hero_swiper_pagination .swiper-pagination-bullet {
        margin: 0 6px !important;
    }
    .hero_slide_text_wrap {
        padding: 55px 10px;
    }
    .hero_slide_nadpis {
        font-size: 35px;
    }
    .hero_slide_text_wrap p {
        font-size: 17px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    /* SECTION ODKAZY */
    .odkaz_container:first-of-type {
        margin-bottom: 24px;
        width: calc(50% - 12px);
    }
    .odkaz_container:nth-of-type(2) {
        width: calc(50% - 12px);
        margin-right: 0;
    }
    .odkaz_container:nth-of-type(3) {
        width: calc(50% - 12px);
        margin-right: 0;
    }
    .odkaz_container:nth-of-type(4) {
        width: calc(100%/3 - 12px);
        margin-right: 12px;
        margin-left: 0px;
    }
    .odkaz_container:nth-of-type(5) {
        width: calc(100%/3 - 24px);
    }
    .odkaz_container_all {
        width: calc(100%/3 - 12px);
    }
    /* FOOT BANNER */
    .social_media_container {
        width: 100%;
    }
    .newsletter_container {
        width: 100%;
        padding-top: 25px;
    }
    /* FOOT MENU */
    .foot_kontakt {
        padding-right: 0px;
        justify-content: center;
    }
    .foot_kontakt img {
        margin-right: 0px;
    }
    .foot_kontakt a {
        margin: 0 10px;
    }
    .foot_row_2 {
        flex-wrap: wrap;
    }
    .foot_row_2>div:first-of-type {
        width: 100%;
        margin-bottom: 50px;
    }
    .foot_row_2>div:last-of-type {
        width: 100%;
    }
    .foot_row>div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }
    .foot_row>div>div {
        width: 100%;
        margin-bottom: 20px;
    }
    .foot_row>div>div {
        width: 100%;
        margin-bottom: 20px;
    }
    .foot_row>div>div:last-of-type {
        margin-bottom: 0;
    }
    .foot_menu_container_5>div {
        justify-content: center;
    }
    /* SECTION PORADNA PRISPEVKY */
    .poradna_wrap {
        width: 100%;
        padding: 0;
    }
    .prispevky_wrap {
        width: 100%;
        padding: 0;
        padding-top: 25px;
    }
    /* PRODUKT ITEM */
    .produkt_item {
        width: calc(100% / 3 - 20px);
    }
    /* PRODUKT SINGLE */
    .produkt_galerie_container {
        width: 100%;
        max-width: 768px;
        margin: 0 auto;
    }
    .produkt_popis_wrap {
        width: 100%;
        max-width: 768px;
        margin: 0 auto;
    }
    .woocommerce-grouped-product-list-item__price, .woocommerce-grouped-product-list-item__price {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }
    .woocommerce-grouped-product-list.group_table .woocommerce-grouped-product-list-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 25px;
    }
    .woocommerce-grouped-product-list.group_table .woocommerce-grouped-product-list-item:last-of-type {
        margin-bottom: 0;
    }
    .woocommerce-grouped-product-list.group_table .woocommerce-grouped-product-list-item td {
        min-width: 175px;
    }
    .custom_form_wrap .wpcf7-response-output {
        text-align: center;
    }
    /* BEFORE MENU */
    .before_menu_wrap {
        flex-wrap: wrap;
    }
    .search_menu {
        width: 100%;
        padding: 10px;
    }
    .woocommenrce_menu {
        padding: 0;
    }
    /* MINICART */
    .minicart_container {
        width: calc(100% - 1px);
        max-width: 500px;
        left: auto !important;
        right: 0 !important;
        min-width: auto;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
    .cart_link_cart_title {
        display: none;
    }
    .cart_link img {
        margin-right: 0;
    }
    /* CART */
    .cart-collaterals {
        justify-content: center;
    }
    .cart_totals {
        width: 100%;
        max-width: 500px;
    }
    .wc-proceed-to-checkout {
        text-align: center;
    }
    /* POKLADNA */
    .woocommerce-checkout .checkout_part_wrap_1 {
        width: 100%;
        padding-right: 0;
    }
    .woocommerce-checkout .checkout_part_wrap_2 {
        width: 100%;
        padding-right: 0;
    }
    .woocommerce-additional-fields__field-wrapper *, .woocommerce-checkout-payment .place-order {
        text-align: left;
    }
    /* PRODUKT ARCHIVE */
    .custom_subcategories_archive_container {
        border-bottom: 2px solid transparent;
        border-top: 2px solid transparent;
        padding-top: 0;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        
    }
    .custom_roll_list_show .custom_subcategories_archive_container {
        padding-top: 20px;
        border-bottom: 2px solid #004AAD;
        border-top: 2px solid #004AAD;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
    }
    .subcategory_a {
        margin-right: 0;
        width: calc(100% / 3);
    }
    .products_ul_wrap {
        flex-wrap: wrap;
    }
    .products_filer_wrap {
        width: 100%;
        margin-right: 0;
        border-right: 0;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        margin-bottom: 10px;
    }
    .custom_roll_list_show .products_filer_wrap {
        border-bottom: #004AAD solid 2px;
        border-top: #004AAD solid 2px;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
    }
    .products_ul_wrap ul.products {
        width: 100%;
    }
}

@media only screen and (max-height: 800px) {
    @media only screen and (max-width: 1024px) {
        /* MINICART */
        .widget_shopping_cart_content ul {
            max-height: 200px;
        }
    }
}

@media only screen and (max-width: 768px) {
    /* HERO */
    .hero_swiper_slide[data-slides-count="1"] .hero_slide_container_img_wrap {
        min-height: 500px;
    }
    .hero_swiper_slide[data-slides-count="2"] .hero_slide_container_img_wrap {
        min-height: 250px;
    }
    .hero_swiper_slide[data-slides-count="3"] .hero_slide_container_img_wrap {
        min-height: calc(500px / 3);
    }
    .hero_slide_container_img_wrap {
        display: flex;
        align-items: center;
        margin: 2px 0;
    }
    .hero_swiper_slide .hero_slide_container:first-of-type .hero_slide_container_img_wrap {
        margin-top: 0;
    }
    .hero_swiper_slide .hero_slide_container:last-of-type .hero_slide_container_img_wrap {
        margin-bottom: 0;
    }
    .hero_slide_text_wrap {
        width: 100%;
        height: 100%;
        max-width: none;
        padding: 50px 10px 50px 10px;
    }
    .hero_slide_text_wrap * {
        text-align: center;
    }
    .hero_swiper_slide {
        display: table;
        flex-wrap: wrap;
        height: auto !important;
    }
    .hero_swiper_slide:first-of-type .hero_slide_text_wrap {
        padding-left: 10px;
    }
    .hero_slide_container {
        align-items: center;
    }
    /* SECTION ODKAZY */
    .odkaz_container:first-of-type {
        height: 527px;
        margin-right: 0px;
        width: 100%;
    }
    .odkaz_container:nth-of-type(2) {
        width: calc(50% - 12px);
        margin-right: 12px;
        margin-left: 0px;
        margin-bottom: 24px;
    }
    .odkaz_container:nth-of-type(3) {
        width: calc(50% - 12px);
        margin-left: 12px;
        margin-right: 0px;
        margin-bottom: 24px;
    }
    .odkaz_container:nth-of-type(4) {
        width: calc(50% - 12px);
        margin-right: 12px;
        margin-left: 0px;
        margin-bottom: 24px;
    }
    .odkaz_container:nth-of-type(5) {
        width: calc(50% - 12px);
        margin-right: 0px;
        margin-left: 12px;
        margin-bottom: 24px;
    }
    .odkaz_container_all {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
    }
    /* SECTION PORADNA PRISPEVKY */
    .poradna_wrap {
        text-align: center;
    }
    .prispevky_wrap {
        text-align: center;
    }
    /* PRODUKT ITEM */
    .produkt_item {
        width: calc(100% / 2 - 20px);
    }
    .products_ul_wrap .produkt_item {
        width: calc(100% / 2 - 20px);
    }
    .quantity_wrap {
        opacity: 1;
        pointer-events: visible;
    }
    /* CART */
    .shop_table_responsive.cart thead {
        display: none;
    }
    .shop_table_responsive.cart td {
        display: inline-block;
        width: 100%;
    }
    .shop_table_responsive td, .shop_table_responsive td * {
        text-align: right;
    }
    .shop_table_responsive input {
        text-align: left;
    }
    .shop_table_responsive.cart td:before {
        content: attr(data-title) ": ";
        font-weight: 700;
        float: left;
        padding-right: 10px;
    }
    .shop_table_responsive.cart td.actions:before, td.product-thumbnail:before, td.product-remove:before {
        content: none !important;
    }
    .shop_table_responsive.cart .product-remove, .shop_table_responsive.cart .product-thumbnail {
        width: 50%;
    }
    .coupon_wrap {
        width: 100%;
        clear: both;
        justify-content: center;
        padding-bottom: 10px;
    }
    .cart_update_wrap {
        clear: both;
        width: 100%;
        text-align: center !important;
    }
    .coupon_wrap input[type="text"] {
        margin-right: 0;
    }
    .coupon_wrap>span {
        margin: 10px;
    }
    .shop_table_responsive.cart .product-thumbnail img {
        width: 50px;
        height: 50px;
    }
    .shop_table_responsive.cart .product-name {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    .shop_table_responsive.cart .product-thumbnail {
        float: right;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 70px;
    }
    .shop_table_responsive.cart .product-remove {
        text-align: left;
        height: 70px;
        display: flex;
        align-items: center;
        float: left;
    }
    /* MY ACC */
    .woocommerce-table--order-downloads thead {
        display: none;
    }
    .woocommerce-table--order-downloads td {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .woocommerce-table--order-downloads td[data-title]:before {
        content: attr(data-title) ": ";
        font-weight: 600;
        text-align: left;
        padding-right: 5px;
    }
    .woocommerce-table--order-downloads tr td {
        border-bottom: 0;
    }
    .woocommerce-table--order-downloads tr td:last-of-type {
        border-bottom: 1px solid #004AAD;
    }
    .woocommerce-table--order-downloads tr:last-of-type td:last-of-type {
        border-bottom: 0;
    }
    .account-orders-table thead {
        display: none;
    }
    .account-orders-table td {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .account-orders-table td[data-title]:before {
        content: attr(data-title) ": ";
        font-weight: 600;
        text-align: left;
        padding-right: 5px;
    }
    .my_account_orders tr td {
        border-bottom: 0;
    }
    .my_account_orders tr td:last-of-type {
        border-bottom: 1px solid #004AAD;
    }
    .my_account_orders tr:last-of-type td:last-of-type {
        border-bottom: 0;
    }
}

@media only screen and (max-width: 640px) {
    /* FOOT */
    .foot_copyright .set_max_width {
        justify-content: center;
    }
    .foot_copyright .set_max_width>div {
        width: 100%;
        margin-bottom: 10px;
    }
    .foot_copyright .set_max_width>div:last-of-type {
        margin-bottom: 0;
    }
    /* FOOT MENU */
    .foot_menu_container_1 {
        width: 50%;
    }
    .foot_menu_container_2 {
        width: 50%;
    }
    .foot_menu_container_3 {
        width: 50%;
        margin-top: 25px;
    }
    /* PRODUKT SINGLE */
    .produkt-swiper-container.gallery-top {
        height: 430px;
    }
    .produkt-swiper-container-wrap {
        height: 120px;
        padding: 10px 0;
    }
    .produkt-swiper-container.gallery-top .produkt_tags_wrap .onsale {
        font-size: 16px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    .produkt_tag {
        font-size: 16px;
    }
    .single_produkt_price_wrap {
        margin-bottom: 0;
    }
    .single_produkt_cart_button_wrap {
        width: 100%;
    }
    /*newslatter*/
    .kontakt_container {
        padding: 4px;
        flex-wrap: wrap;
    }
    .kontakt_container .your-email .input_email {
        text-align: center;
        margin: 0;
        width: 100%;
        margin: 5px auto;
    }
    /* ARCHIVE PRODUCT */
    .subcategory_a {
        width: calc(100% / 2);
    }
    .subcategory_a img {
        width: 50px;
        height: 50px;
    }
}

@media only screen and (max-width: 540px) {
    /* LOGA GALERIE */
    .loga_gallery {
        padding: 0;
    }
    .loga_gallery .swiper-slide {
        justify-content: center;
    }
    /* SECTION ODKAZY */
    .odkaz_container:first-of-type {
        height: 251px;
        margin-right: 0px;
        margin-left: 0px;
        width: 100%;
    }
    .odkaz_container:nth-of-type(2) {
        width: 100%;
        margin-right: 0px;
        margin-left: 0px;
    }
    .odkaz_container:nth-of-type(3) {
        width: 100%;
        margin-right: 0px;
        margin-left: 0px;
    }
    .odkaz_container:nth-of-type(4) {
        width: 100%;
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 24px;
    }
    .odkaz_container:nth-of-type(5) {
        width: 100%;
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 24px;
    }
    .odkaz_container_all {
        width: 100%;
    }
    /* SECTION PORADNA PRISPEVKY */
    .prispevek_container {
        flex-wrap: wrap;
    }
    .prispevek_container .wp-post-image {
        margin: 0 auto;
    }
    .prispevek_container_text_wrap {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    /* PRODUKT ITEM */
    ul.products {
        justify-content: center;
    }
    .produkt_item {
        width: 100%;
        max-width: 310px;
        margin-bottom: 25px;
    }
    .products_ul_wrap .produkt_item {
        width: 100%;
    }
    /* MINICART */
    .minicart_container {
        max-width: none;
    }
    .woocommerce-mini-cart-item {
        flex-wrap: wrap;
    }
    .woocommerce-mini-cart-item .quantity {
        flex-wrap: nowrap;
        flex-direction: column;
        width: 100%;
        text-align: right;
    }
    .woocommerce-mini-cart-item .quantity .woocommerce-Price-amount {
        text-align: right;
    }
    .woocommerce-mini-cart-item a:nth-of-type(2) {
        width: 100%;
    }
    .minicart_item_flex_left {
        width: 100%;
        flex-wrap: nowrap;
    }
    .widget_shopping_cart_content .woocommerce-mini-cart__total bdi {
        text-align: right;
    }
    .widget_shopping_cart_content ul {
        max-height: 200px;
    }
}

@media only screen and (max-width: 420px) {
    /* FOOT MENU */
    .foot_menu_container_1 {
        width: 100%;
    }
    .foot_menu_container_2 {
        width: 100%;
        margin-top: 25px;
    }
    .foot_menu_container_3 {
        width: 100%;
        margin-top: 25px;
    }
    .foot_row_2>div:first-of-type>div {
        padding-right: 0;
    }
    /* ARCHIVE PRODUKTY */
    .subcategory_a {
        width: 100%;
    }
}

li.menu-item {
    width: fit-content;
}

li.menu-item > a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.wpcf7-spinner {
    position: absolute;
    top: 0.5rem;
    margin: 0 !important;
}

.kontakt_submit_wrap {
    display: flex;
}

.wpcf7-form-control.wpcf7-submit.has-spinner.btn_a.btn_a_small_purple {
    margin-left: 1rem;
}