/* Country Select */
.page-search-social #menu-language-menu {
    display: none !important;
}

.country-navigation {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    margin-top: -5px;
}

.country-navigation__list {
    position: absolute;
    top: 100%;
    right: 0;
    padding: 20px;
    background: #ffffff;
    z-index: 25;
    display: none;
}

.country-navigation:hover .country-navigation__list {
    display: block;
}

.country-navigation__list-item {
    margin-bottom: 5px;
}

.country-navigation__link {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
    padding: 3px 0;
}

.country-navigation__link:hover {
    text-decoration: underline;
}

.country-navigation__name {
    margin-left: 8px;
}

.country-navigation__flag {
    width: 22px;
    height: 22px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #111111;
    overflow: hidden;
}

/* Cookie Consent */


.aw-cookie-banner {
    position: fixed;
    width: calc(100% - 40px);
    max-width: 500px;
    max-height: calc(100% - 40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 1.5;
    background: #f7f7f7;
    border-radius: 3px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow: auto;
    scroll-behavior: smooth;
}

/* .aw-cookie-banner ::-webkit-scrollbar {
    width: 5px;
}

.aw-cookie-banner ::-webkit-scrollbar-track {
    background: #d4d4d4;
}

.aw-cookie-banner ::-webkit-scrollbar-thumb {
    background: #888;
}

.aw-cookie-banner ::-webkit-scrollbar-thumb:hover {
    background: #666;
} */

.aw-cookie-banner--no-scroll {
    overflow: hidden;
}

.aw-cookie-banner--hidden {
    left: -1000%;
}

.aw-cookie-banner p, .aw-cookie-banner ul {
    margin: 20px auto;
}

.aw-cookie-banner a {
    text-decoration: underline;
    white-space: nowrap;
}

.aw-cookie-banner__inner {
    position: relative;
    overflow: hidden;
}

.aw-cookie-banner__info {
    height: 100%;
    padding: 20px 35px;
    overflow: auto;
    opacity: 1;
    transition: all ease-in-out 0.15s;
}

.aw-cookie-banner__info--hidden {
    opacity: 0;
}

.aw-cookie-banner__settings {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px 35px;
    background: #f7f7f7;
    overflow: auto;
    border-radius: 3px;
    z-index: 2;
    transition: top ease-in-out 0.5s;
}

.aw-cookie-banner__settings--hidden {
    position: absolute;
    top: 100%;
}

.aw-cookie-list {
    padding: 0;
}

.aw-cookie-list__item {
    list-style: none;
    margin-bottom: 30px;
}

.aw-cookie p {
    margin: 10px 0;
}

.aw-cookie__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.aw-cookie__title {
    width: calc(100% - 50px);
}

.aw-cookie__checkbox {
    width: 50px;
}

.aw-cookie-actions {
    text-align: center;
    margin: 20px auto;
}

.aw-cookie-actions__button {
    max-width: 240px;
    margin: 5px;
    padding: 12px 17px;
    text-decoration: none;
    line-height: 1.2;
    font-size: inherit;
    color: #fff;
    background: #111;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    z-index: 10;
    font-family: inherit;
}

.aw-cookie-actions__button--secondary {
    color: #111;
    background: transparent;
    text-decoration: underline;
}

.aw-cookie-actions__button--gray {
    background: #909090;
}

.aw-cookie-actions__button:focus {
    outline: 1px dotted #ccc;
}

.aw-cookie-hide-settings {
    position: fixed;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background: transparent;
    border: none;
    opacity: 1;
    transition: opacity ease-in-out 0.3s;
    cursor: pointer;
}

.aw-cookie-hide-settings--hidden {
    opacity: 0;
}

.aw-cookie-hide-settings span:before, .aw-cookie-hide-settings span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 5;
}

.aw-cookie-hide-settings span:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.aw-cookie-hide-settings:focus {
    outline: 1px dotted #ccc;
}

.aw-switch {
    position: relative;
    display: block;
    width: 46px;
    height: 26px;
}

.aw-switch__input {
    opacity: 0;
    width: 0;
    height: 0;
}

.aw-switch__input:checked + .aw-switch__slider {
    background: #42ca00;
}

.aw-switch__input:checked + .aw-switch__slider:before {
    transform: translateX(20px);
}

.aw-switch__input:focus + .aw-switch__slider {
    outline: 1px dotted #ccc;
}

.aw-switch__input:disabled + .aw-switch__slider {
    opacity: 0.4;
}

.aw-switch__slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 26px;
    transition: all ease-in-out 0.1s;
}

.aw-switch__slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #f7f7f7;
    border-radius: 50%;
    transition: all ease-in-out 0.1s;
}

.aw-switch__state {
    font-size: 12px;
}

.aw-cookie-banner-overly {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.aw-cookie-banner-overly--hidden {
    display: none;
}

.hide-cookie-overlay .aw-cookie-banner-overly {
    display: none;
}

.wpcf7-response-output {
    display: none !important;
}

/* Post Products */
.post-products {
    max-width: 1320px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.post-products__title {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    font-size: 38px;
}

.post-products__item {
    width: calc(100% - 20px);
    margin: 0 auto 10px auto;
}

@media (min-width: 568px) {
    .post-products__item {
        width: calc(50% - 20px);
        margin: 0 10px 10px 10px;
    }
}

@media (min-width: 1024px) {
    .post-products__item {
        width: calc(33.3333% - 30px);
        margin: 0 15px 15px 15px;
    }
}


.post-product {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    text-align: center;
    border: 1px solid transparent;
    transition: border ease-in-out 0.3s;
}

.post-product:hover {
    border: 1px solid #111111;
}

.post-product__name {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.3;
    text-transform: none !important;
}

.post-product__price {
    position: absolute;
    top: 10px;
    right: 10px;
    margin-bottom: 0;
    padding: 10px!important;
    font-weight: bold;
    z-index: 3;
}

.post-product__material {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 20px;
    left: 20px;
    font-size: 12px;
    z-index: 3;
}

.post-product__link {
    width: 100%;
    display: inline-block;
    padding: 10px 15px;
    font-size: 15px;
    text-decoration: none !important;
    text-transform: uppercase;
    border: 1px solid #111;
}

.post-product__link:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.post-product__image {
    width: 100%;
    opacity: 1;
    transition: opacity ease-in-out 0.5s;
}

.post-product--added-image-load:hover .post-product__image {
    opacity: 0;
}

.post-product__image--additional {
    position: absolute;
    width: calc(100% - 20px);
    left: 10px;
    top: 10px;
    opacity: 0;
}

.post-product--added-image-load:hover .post-product__image--additional {
    opacity: 1;
}

.load-post-products {
    position: relative;
    width: 100%;
    max-width: 240px;
    display: none;
    margin: 60px auto;
    padding: 15px 20px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    border: none;
    border-radius: 60px;
    background-color: #111;
    box-shadow: unset;
    -webkit-appearance: none;
    transition: background-color ease-in-out 0.3s;
    cursor: pointer;
}

.load-post-products:hover {
    background: #3e3e3e;
}

.load-post-products--visible {
    display: block;
}

.post-product-counter {
    position: absolute;
    left: 50%;
    top: calc(100% + 5px);
    transform: translate(-50%, 0);
    font-size: 14px;
    color: #111111;
}

.post-products-loading {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 40px auto;
}

.post-products-loading:after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #111;
    opacity: 0;
    animation: loading-animation 2s infinite;
}

@keyframes loading-animation {
    0% {
        width: 10px;
        height: 10px;
        opacity: 0;
    }
    50% {
        width: 40px;
        height: 40px;
        opacity: 1;
    }
    100% {
        width: 10px;
        height: 10px;
        opacity: 0;
    }
}

/* List Elements */
.entry-content ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 18px;
    margin: 5px 0;
}

.entry-content ol {
    list-style-type: decimal;
    list-style-position: outside;
    padding-left: 18px;
    margin: 5px 0;
}



/* Fix Horizontal Scroll
.containerwidth {
    overflow-x: hidden;
} */

/* Beaver Caption Padding */
.fl-photo-caption-below {
    padding-bottom: 0!important;
}

.pp-col-separator .pp-big-triangle {
    display: none!important;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}