.notiny-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.notiny-container {
    position: fixed;
    z-index: 9999;
}

.notiny-container-fluid-top .notiny-base,
.notiny-container-fluid-bottom .notiny-base {
    width: 100%;
    border-radius: 0;
}

.notiny-container-fluid-top .notiny-base {
    margin-top: 0;
}

.notiny-container-fluid-bottom .notiny-base {
    margin-bottom: 0;
}

.notiny-img {
    display: none;
}

/* Animations */

@-webkit-keyframes notiny-animation-hide {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    20% {
        opacity: 1;
    }

    30% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

    90% {

    }

    100% {
        opacity: 0;
        -webkit-filter: blur(4px);
        filter: blur(4px);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes notiny-animation-hide {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    20% {
        opacity: 1;
    }

    30% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

    90% {

    }

    100% {
        opacity: 0;
        -webkit-filter: blur(4px);
        filter: blur(4px);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes notiny-animation-show {
    0% {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-filter: blur(4px);
        filter: blur(4px);
    }

    15% {
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

    90% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes notiny-animation-show {
    0% {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-filter: blur(4px);
        filter: blur(4px);
    }

    15% {
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

    90% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes notiny-animation-hover {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
    }
}

@keyframes notiny-animation-hover {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
    }
}

/* Default themes */

.notiny-theme-dark {
    background-color: #202020;
    color: #f5f5f5;
}

.notiny-theme-light {
    background-color: #f0f0f0;
    color: #202020;
}

.notiny-default-vars {
    padding: 3px 3px;
    margin: 2px 0px;
    border-radius: 2px;
    min-height: 32px;
    max-width: 100vw;
}

.notiny-default-vars .notiny-img {
    display: block;
    border-radius: 2px;
    width: 32px;
    height: 32px;
    float: left;
}

.notiny-default-vars .notiny-text {
    font-family: sans-serif;
    font-size: 13px;
    padding: 8px 5px 6px 5px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.notiny-default-vars .notiny-with-img .notiny-text {
    padding-left: 6px;
}@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotate(360deg);
    }
}

/* Notiny */
.notiny-container {
    z-index: 999999;
}

.wooac-notiny, .wooac-notiny-adding {
    display: none;
}

.notiny-theme-wooac {
    padding: 10px;
    background-color: #ffffff;
    color: #222222;
    margin: 5px 0;
    min-height: 32px;
    max-width: 100vw;
    display: flex;
    align-items: center;
    border: 1px solid #eeeeee;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.03);
}

.notiny-theme-wooac .notiny-img {
    margin: 0;
    padding: 0;
    width: 48px;
    flex: 0 0 48px;
    margin-right: 10px;
}

.notiny-theme-wooac .notiny-img img {
    width: 100%;
    height: auto;
    margin: 0;
}

.notiny-theme-wooac .notiny-text {
    font-size: 14px;
    line-height: 1.4;
    flex-grow: 1;
}

.notiny-container-fluid-top .notiny-theme-wooac, .notiny-container-fluid-bottom .notiny-theme-wooac {
    width: 90%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.notiny-container-fluid-top {
    top: 10px !important;
}

.notiny-container-fluid-bottom {
    bottom: 10px !important;
}

/* Popup */
.mfp-wooac {
    z-index: 99999992;
}

.mfp-wooac .wooac-popup {
    display: block;
}

.wooac-popup {
    position: relative;
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    box-sizing: border-box;
    text-align: center;
    display: none;
}

.wooac-popup * {
    box-sizing: border-box;
}

.wooac-popup .wooac-image {
    display: block;
    margin-bottom: 10px;
}

.wooac-popup .wooac-image a {
    text-decoration: none;
    outline: none;
    display: block;
}

.wooac-popup .wooac-image img {
    display: block;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.wooac-popup .wooac-text a, .wooac-popup .wooac-text span {
    font-weight: 700;
}

.wooac-popup .wooac-cart-content .wooac-cart-content-total {
    font-weight: 700;
}

.wooac-popup .wooac-cart-content .wooac-cart-content-count {
    opacity: 0.5;
}

.wooac-popup .wooac-suggested {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-width: 1px 0;
    border-style: dashed;
    border-color: #dddddd;
    min-width: 0;
}

.wooac-popup .wooac-suggested .wooac-suggested-heading {
    margin-bottom: 10px;
}

.wooac-popup .wooac-suggested .wooac-suggested-products .wooac-suggested-product {
    outline: none;
    display: flex;
    align-items: center;
}

.wooac-popup .wooac-suggested .wooac-suggested-products .wooac-suggested-product .wooac-suggested-product-image {
    width: 100px;
    flex: 0 0 100px;
    margin-right: 10px;
}

.wooac-popup .wooac-suggested .wooac-suggested-products .wooac-suggested-product .wooac-suggested-product-image img {
    width: 100%;
    height: auto;
}

.wooac-popup .wooac-suggested .wooac-suggested-products .wooac-suggested-product .wooac-suggested-product-info {
    flex-grow: 1;
    text-align: start;
}

.wooac-popup .wooac-suggested .wooac-suggested-products .wooac-suggested-product .wooac-suggested-product-name {
    font-weight: 700;
}

.wooac-popup .wooac-suggested .wooac-suggested-products .wooac-suggested-product .wooac-suggested-product-atc p {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.wooac-popup .wooac-suggested .wooac-suggested-products .wooac-suggested-product .wooac-suggested-product-atc p .button {
    display: block;
    margin: 0;
    outline: none;
}

.wooac-popup .wooac-suggested .wooac-suggested-products:not(.slick-initialized) .wooac-suggested-product {
    padding: 5px 0;
}

.wooac-popup .wooac-suggested .slick-arrow {
    position: absolute;
    z-index: 9;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: none;
    outline: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 0;
    background: none;
}

.wooac-popup .wooac-suggested .slick-arrow:before {
    content: "\e9ea";
    font-family: "feather";
    display: inline-block;
    font-size: 24px;
    color: #444444;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wooac-popup .wooac-suggested .slick-arrow.slick-prev {
    left: 0;
    top: 50%;
    transform: translate3d(-100%, -50%, 0);
}

.wooac-popup .wooac-suggested .slick-arrow.slick-prev:before {
    content: "\e929";
}

.wooac-popup .wooac-suggested .slick-arrow.slick-next {
    right: 0;
    top: 50%;
    transform: translate3d(100%, -50%, 0);
}

.wooac-popup .wooac-suggested .slick-arrow.slick-next:before {
    content: "\e92a";
}

.wooac-popup .wooac-suggested .slick-dots {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.wooac-popup .wooac-suggested .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    font-size: 0;
}

.wooac-popup .wooac-suggested .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    padding: 0;
    font-size: 0;
    background-color: rgba(0, 0, 0, 0.2);
    outline: none;
    overflow: hidden;
}

.wooac-popup .wooac-suggested .slick-dots li.slick-active button {
    background-color: rgba(0, 0, 0, 0.5);
}

.wooac-popup .wooac-action {
    display: block;
    margin-top: 10px;
    margin-left: -5px;
    margin-right: -5px;
}

.wooac-popup .wooac-action a {
    display: inline-block;
    outline: none;
    margin: 0 5px;
    background-color: #eeeeee;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.wooac-popup .wooac-action a:hover {
    background-color: #333333;
    color: #ffffff;
}

.wooac-popup .mfp-close {
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wooac-popup.wooac-popup-horizontal {
    max-width: 690px;
    text-align: start;
}

.wooac-popup.wooac-popup-horizontal .wooac-popup-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.wooac-popup.wooac-popup-horizontal .wooac-popup-inner .wooac-image {
    margin-bottom: 0;
    margin-right: 30px;
    width: 200px;
    flex: 0 0 200px;
}

.wooac-popup.wooac-popup-horizontal .wooac-popup-inner .wooac-content {
    flex-grow: 1;
    width: 100%;
    min-width: 0;
}

@media only screen and (max-width: 767px) {
    .wooac-popup.wooac-popup-horizontal {
        max-width: 360px;
        text-align: center;
    }

    .wooac-popup.wooac-popup-horizontal .wooac-popup-inner {
        flex-direction: column;
    }

    .wooac-popup.wooac-popup-horizontal .wooac-popup-inner .wooac-image {
        margin-right: 0;
        margin-bottom: 10px;
        width: auto;
        flex: 0 0 auto;
    }
}

/* Popup */
.mfp-container {
    padding: 0;
}

.mfp-close {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 0;
}

.mfp-close:hover {
    background-color: transparent;
}

.mfp-close:active {
    top: 0;
}

.mfp-close:focus {
    outline: none;
}

.mfp-close:before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    content: "\e9ea";
    font-family: "feather";
    display: inline-block;
    font-size: 24px;
    color: #222222;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mfp-preloader {
    width: 30px;
    height: 30px;
    font-size: 0;
    margin: 0 auto;
}

.mfp-preloader:before {
    content: "\e9a7";
    font-family: "feather";
    display: inline-block;
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    -webkit-animation: spinner 1s linear infinite;
    -moz-animation: spinner 1s linear infinite;
    -ms-animation: spinner 1s linear infinite;
    -o-animation: spinner 1s linear infinite;
    animation: spinner 1s linear infinite;
}

.mfp-arrow {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: none;
    padding: 0;
    outline: none;
    text-align: center;
    margin-top: -30px;
    border-radius: 0;
    opacity: 1;
}

.mfp-arrow:active {
    margin-top: -30px;
}

.mfp-arrow:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.mfp-arrow:focus {
    outline: none;
}

.mfp-arrow:before {
    width: 60px;
    height: 60px;
    line-height: 60px;
    padding: 0;
    border-width: 0;
    margin: 0;
    display: inline-block;
    font-family: "feather";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff;
}

.mfp-arrow:after {
    display: none;
}

.mfp-arrow.mfp-arrow-left:before {
    content: "\e90e";
}

.mfp-arrow.mfp-arrow-right:before {
    content: "\e90f";
}

/*
====== Fade effect ======
*/
.mfp-fade {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/*
====== Zoom effect ======
*/
.mfp-zoom-in {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/*
====== Newspaper effect ======
*/
.mfp-newspaper {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-newspaper .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.5s;
    transform: scale(0) rotate(500deg);
}

.mfp-newspaper.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}

.mfp-newspaper.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.mfp-newspaper.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-newspaper.mfp-removing .mfp-with-anim {
    transform: scale(0) rotate(500deg);
    opacity: 0;
}

.mfp-newspaper.mfp-removing.mfp-bg {
    opacity: 0;
}

/*
====== Move-horizontal effect ======
*/
.mfp-move-horizontal {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-move-horizontal .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s;
    transform: translateX(-50px);
}

.mfp-move-horizontal.mfp-bg {
    opacity: 0;
    transition: all 0.3s;
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateX(0);
}

.mfp-move-horizontal.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
    transform: translateX(50px);
    opacity: 0;
}

.mfp-move-horizontal.mfp-removing.mfp-bg {
    opacity: 0;
}

/*
====== Move-from-top effect ======
*/
.mfp-move-from-top {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-move-from-top .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s;
    transform: translateY(-100px);
}

.mfp-move-from-top.mfp-bg {
    opacity: 0;
    transition: all 0.2s;
}

.mfp-move-from-top.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateY(0);
}

.mfp-move-from-top.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-move-from-top.mfp-removing .mfp-with-anim {
    transform: translateY(-50px);
    opacity: 0;
}

.mfp-move-from-top.mfp-removing.mfp-bg {
    opacity: 0;
}

/*
====== 3d unfold ======
*/
.mfp-3d-unfold {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-3d-unfold .mfp-content {
    perspective: 2000px;
}

.mfp-3d-unfold .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateY(-60deg);
}

.mfp-3d-unfold.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}

.mfp-3d-unfold.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: rotateY(0deg);
}

.mfp-3d-unfold.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-3d-unfold.mfp-removing .mfp-with-anim {
    transform: rotateY(60deg);
    opacity: 0;
}

.mfp-3d-unfold.mfp-removing.mfp-bg {
    opacity: 0;
}

/*
====== Zoom-out effect ======
*/
.mfp-zoom-out {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-out .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
    transform: scale(1.3);
    opacity: 0;
}

.mfp-zoom-out.mfp-removing.mfp-bg {
    opacity: 0;
}

/*
====== Slide bottom effect ======
*/
.mfp-slide-bottom {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-slide-bottom .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.mfp-slide-bottom.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(600px) rotateX(0);
    -moz-transform: translateY(0) perspective(600px) rotateX(0);
    -ms-transform: translateY(0) perspective(600px) rotateX(0);
    -o-transform: translateY(0) perspective(600px) rotateX(0);
    transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.mfp-slide-bottom.mfp-removing .mfp-with-anim {
    opacity: 0;
    -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.mfp-slide-bottom.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

/* animate out */
.mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}

/*# sourceMappingURL=frontend.css.map */.dgwt-wcas-block-scroll{overflow:hidden}.dgwt-wcas-search-wrapp{position:relative;line-height:100%;display:block;color:#444;min-width:230px;width:100%;text-align:left;margin:0 auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.dgwt-wcas-tpd-image img{margin:0 15px 0 0!important}.rtl .dgwt-wcas-tpd-image img{margin:0 0 0 15px!important}.dgwt-wcas-preloader-wrapp img{margin:10px auto 0;display:block;max-width:200px}.dgwt-wcas-preloader-wrapp img.dgwt-wcas-placeholder-preloader{display:block;width:100%;height:auto;max-width:300px;margin:0}.dgwt-wcas-suggestions-wrapp{background:#fff;border:1px solid #ddd;border-top:none;padding:0;margin:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;overflow-y:auto}.dgwt-wcas-details-wrapp *,.dgwt-wcas-search-wrapp *,.dgwt-wcas-suggestions-wrapp *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.dgwt-wcas-details-wrapp a:focus,.dgwt-wcas-suggestions-wrapp a:focus{outline:0}.dgwt-wcas-suggestions-wrapp.dgwt-wcas-suggestions-wrapp--top{border:1px solid #ddd;border-bottom:none}.dgwt-wcas-is-detail-box .dgwt-wcas-suggestions-wrapp{max-width:550px}.dgwt-wcas-full-width.dgwt-wcas-is-detail-box .dgwt-wcas-suggestion{padding:8px 15px}.dgwt-wcas-details-left .dgwt-wcas-suggestions-wrapp{border-radius:0 0 5px;border-left-color:#eee}.dgwt-wcas-details-right .dgwt-wcas-suggestions-wrapp{border-radius:0 0 0 5px;border-right-color:#eee}.dgwt-wcas-suggestion{cursor:pointer;font-size:12px;line-height:110%;text-align:left;padding:7px 10px;position:relative;border-bottom:1px solid #dfdfdf;display:flex;flex-direction:row;justify-content:space-between;align-items:center;resize:vertical;width:100%;transition:none!important}.dgwt-wcas-suggestion-nores{font-size:15px;line-height:157%;padding:15px;width:100%}.dgwt-wcas-suggestion-nores p{padding:0;margin:0 0 10px;font-size:18px}.dgwt-wcas-suggestion-nores ol,.dgwt-wcas-suggestion-nores ul{padding:0 0 0 30px;margin:0}.dgwt-wcas-suggestion-nores ul li{list-style:disc}.dgwt-wcas-open-pirx .dgwt-wcas-suggestion-nores{padding:10px 10px 10px 34px}.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more{justify-content:center;color:#6d6d6d}a.dgwt-wcas-details-more-products{padding:15px 0 10px;display:block;border-top:1px solid #eee;text-align:center;font-size:12px;text-transform:uppercase;color:#6d6d6d;transition:.2s ease-in-out}a.dgwt-wcas-details-more-products:hover,a.dgwt-wcas-details-post-title:hover,a.dgwt-wcas-details-product-title:hover,a.dgwt-wcas-product-details-readmore:hover{text-decoration:underline}a.dgwt-wcas-product-details-readmore{display:block;text-align:right;margin-top:15px;color:#6d6d6d;text-transform:uppercase;letter-spacing:1px;font-weight:400;font-size:12px}.dgwt-wcas-has-headings .dgwt-wcas-suggestion,.dgwt-wcas-has-headings .dgwt-wcas-suggestion.dgwt-wcas-suggestion-headline,.dgwt-wcas-has-headings .dgwt-wcas-suggestion.dgwt-wcas-suggestion-tax,.dgwt-wcas-suggestion.dgwt-wcas-suggestion-no-border-bottom,body:not(.dgwt-wcas-is-details) .dgwt-wcas-suggestion:last-child{border-bottom:none}.dgwt-wcas-suggestion:after{clear:both;display:block;content:''}.dgwt-wcas-suggestion.dgwt-wcas-nores{cursor:default;opacity:.5}.dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product{padding-top:8px;padding-bottom:8px;min-height:60px}.dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product.dgwt-wcas-suggestion-history-product,.dgwt-wcas-is-details .dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product,.dgwt-wcas-suggestion-history-search{min-height:40px}.dgwt-wcas-is-details .dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-more,.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more{min-height:30px;text-transform:uppercase}.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more .dgwt-wcas-st-more{padding:0 10px;text-align:center}.dgwt-wcas-st{display:block;color:#444;font-size:15px;width:100%;line-height:110%}.dgwt-wcas-st>span{display:inline-block;vertical-align:middle}.dgwt-wcas-has-sku .dgwt-wcas-st-title{margin-right:6px}.dgwt-wcas-st>span.dgwt-wcas-st--direct-headline{display:block;font-style:italic;font-size:10px;text-transform:uppercase;opacity:.4;line-height:10px;margin-bottom:1px;letter-spacing:2px}.dgwt-wcas-st-breadcrumbs{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:80%;text-align:left;opacity:.6;width:100%;padding-right:10px}.rtl .dgwt-wcas-st-breadcrumbs{padding-right:0;padding-left:10px;text-align:right}.dgwt-wcas-sku{font-size:80%}.dgwt-wcas-si{width:50px;display:block;height:100%}.dgwt-wcas-si img{background:#fff;border:1px solid #e8e8e8;border-radius:3px;display:block;margin:auto;padding:2px;height:auto;width:auto;max-height:90%;max-width:100%}.dgwt-wcas-has-img-forced .dgwt-wcas-suggestion-history-product .dgwt-wcas-si,.dgwt-wcas-suggestion-history-search .dgwt-wcas-si{display:flex;align-items:center;justify-content:center}.dgwt-wcas-has-img-forced .dgwt-wcas-suggestion-history-product .dgwt-wcas-si svg,.dgwt-wcas-suggestion-history-search .dgwt-wcas-si svg,.dgwt-wcas-suggestion-searches .dgwt-wcas-si svg{max-width:18px}.dgwt-wcas-has-img:not(.dgwt-wcas-has-img-forced) .dgwt-wcas-suggestion-history-product .dgwt-wcas-si>svg{margin-left:10px}.dgwt-wcas-content-wrapp{display:flex;height:100%;width:100%;justify-content:space-between;align-items:center;resize:vertical;padding-left:10px}.rtl .dgwt-wcas-content-wrapp{padding-left:0;padding-right:10px}.dgwt-wcas-sp{color:#555;font-size:14px;line-height:120%;text-align:right;padding-left:10px}.dgwt-wcas-sp *{line-height:130%}.dgwt-wcas-search-form{margin:0;padding:0;width:100%}.dgwt-wcas-open.dgwt-wcas-nores.dgwt-wcas-is-details:not(.dgwt-wcas-details-outside) .dgwt-wcas-suggestion-nores,.dgwt-wcas-sd{margin-top:5px}.dgwt-wcas-sp del{opacity:.5;font-size:12px}.dgwt-wcas-sd{color:#777;display:block;line-height:14px;width:100%;font-size:.8em}.dgwt-wcas-vendor-city{margin-left:5px;font-size:.8em}.dgwt-wcas-st>.dgwt-wcas-product-vendor{font-size:12px;margin-top:5px;display:block}.dgwt-wcas-suggestion-selected{background-color:#eee}.dgwt-wcas-style-pirx.dgwt-wcas-search-wrapp.dgwt-wcas-search-focused input[type=search].dgwt-wcas-search-input:hover,.dgwt-wcas-tpd-image{background-color:#fff}.dgwt-wcas-suggestion-selected:first-child{border-top:none}.rtl .dgwt-wcas-suggestion{padding-left:0;padding-right:15px;text-align:right}.dgwt-wcas-details-wrapp{background:#fff;border:1px solid #ddd;border-top:none;border-left:none;padding:0;width:300px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;z-index:100;min-height:340px}.dgwt-wcas-datails-title,.dgwt-wcas-pd-title{border-bottom:1px dashed #eee;padding-bottom:5px}.rtl .dgwt-wcas-details-wrapp{border-left:1px solid #ddd;border-right:none}.dgwt-wcas-details-outside .dgwt-wcas-details-wrapp,.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp{margin-top:-1px;border-top:1px solid #ddd}.dgwt-wcas-details-right .dgwt-wcas-details-wrapp{border-left:none;border-right:1px solid #ddd;border-radius:0 5px 5px 0}.dgwt-wcas-details-left .dgwt-wcas-details-wrapp{border-right:none;border-left:1px solid #ddd;border-radius:5px 0 0 5px}.dgwt-wcas-details-inner,.dgwt-wcas-details-notfit .dgwt-wcas-details-wrapp{display:none}.dgwt-wcas-full-width .dgwt-wcas-suggestions-wrapp,.dgwt-wcas-open-pirx .dgwt-wcas-full-width .dgwt-wcas-suggestions-wrapp,.rtl.dgwt-wcas-full-width .dgwt-wcas-details-wrapp{border-radius:0 0 0 5px}.dgwt-wcas-full-width .dgwt-wcas-details-wrapp,.rtl.dgwt-wcas-full-width .dgwt-wcas-suggestions-wrapp{border-radius:0 0 5px}.dgwt-wcas-details-inner.dgwt-wcas-details-inner-active,.dgwt-wcas-details-wrapp .added_to_cart,.dgwt-wcas-has-desc .dgwt-wcas-sp>*,.dgwt-wcas-has-img .dgwt-wcas-sp>*{display:block}.dgwt-wcas-details-inner-taxonomy{margin-top:11px}.woocommerce .dgwt-wcas-pd-rating .star-rating{float:left;margin-right:5px;font-size:12px;color:#ccae72}.rtl .dgwt-wcas-pd-rating .star-rating{float:right;margin-left:5px;margin-right:0}.dgwt-wcas-datails-title{font-size:14px}.dgwt-wcas-pd-title{color:#202020}.dgwt-wcas-pd-title .product-title{color:#202020;text-transform:uppercase;margin:0}.dgwt-wcas-tax-product-details{text-decoration:none;display:flex;align-items:center;justify-content:left;transition:.2s ease-in-out;padding:5px;margin:0 -5px 15px}.dgwt-wcas-pd-rating:after,.dgwt-wcas-tax-product-details:after{content:'';clear:both;display:block}.dgwt-wcas-tax-product-details:hover{box-shadow:0 0 11px 2px rgba(0,0,0,.05)}.rtl .dgwt-wcas-tax-product-details{justify-content:right}.dgwt-wcas-details-wrapp .dgwt-wcas-pd-title{margin-bottom:8px}.dgwt-wcas-overlay-mobile .dgwt-wcas-style-pirx .dgwt-wcas-preloader,.dgwt-wcas-tpd-image{margin-right:15px}.dgwt-wcas-pd-rest .product-title{display:block;line-height:100%;font-weight:500;margin-bottom:5px}.dgwt-wcas-tpd-rest{max-width:200px}.dgwt-wcas-tpd-rest-title{display:block;line-height:125%;font-size:14px;font-weight:500;letter-spacing:0;margin:0 0 8px;overflow:hidden;color:#000}.dgwt-wcas-pd-price,.dgwt-wcas-tpd-price{line-height:120%;overflow:hidden;color:#000;margin-top:15px;font-weight:700;font-size:18px}.dgwt-wcas-tpd-price{font-size:12px;color:#777}.dgwt-wcas-pd-price .woocommerce-price-suffix,.dgwt-wcas-tpd-price .woocommerce-price-suffix{font-size:12px;font-weight:lighter;color:#999;margin-left:4px;display:inline-block}.dgwt-wcas-details-title-tax,.dgwt-wcas-pd-title .product-title{font-weight:900;letter-spacing:-1px;text-transform:uppercase}.dgwt-wcas-pd-price del .amount,.dgwt-wcas-tpd-price del .amount{font-weight:lighter;background:0 0;font-size:90%;opacity:.6}.dgwt-wcas-pd-price ins,.dgwt-wcas-tpd-price ins{background:0 0;text-decoration:none}.dgwt-wcas-pd-rating{font-size:13px;line-height:13px}.dgwt-wcas-pd-review{color:#777;font-size:11px;line-height:11px}.dgwt-wcas-datails-title{display:block;margin:5px 0 15px}.dgwt-wcas-pd-title{margin-bottom:15px;display:block;text-decoration:none}.dgwt-wcas-details-title-tax{margin-right:3px}.rtl .dgwt-wcas-details-title-tax{margin:0 0 0 3px;float:right}.dgwt-wcas-tpd-image{width:70px;padding:4px;border:1px solid #e8e8e8;border-radius:4px;display:flex;flex-direction:column;justify-content:center}.dgwt-wcas-details-space{padding:0 15px 15px}.dgwt-wcas-details-main-image{border-bottom:1px solid #eee;min-height:200px;display:flex}.dgwt-wcas-details-main-image img{width:auto;height:auto;display:block;max-height:250px;max-width:100%;margin:0 auto;padding:0;border:none;align-self:center}.dgwt-wcas-details-right .dgwt-wcas-details-main-image img{border-radius:0 3px 0 0}.dgwt-wcas-details-left .dgwt-wcas-details-main-image img{border-radius:3px 0 0}a.dgwt-wcas-details-post-title,a.dgwt-wcas-details-product-title{color:#333;display:block;line-height:120%;margin:10px 0 0;font-size:21px;font-weight:400;text-decoration:none;text-transform:none}a.dgwt-wcas-details-post-title{margin-bottom:15px}.dgwt-wcas-details-product-sku{display:block;font-size:12px;line-height:110%;color:#999}.dgwt-wcas-tpd-image img{display:block;max-width:100%;width:100%;height:auto}.dgwt-wcas-details-hr{height:1px;width:100%;border-bottom:1px solid #eee;margin:15px 0}.rtl .dgwt-wcas-tpd-image{float:right;margin-right:0;margin-left:15px}.rtl .dgwt-wcas-tpd-rest{float:right;max-width:190px}.rtl input[type=search].dgwt-wcas-search-input{text-align:right}input[type=search].dgwt-wcas-search-input,input[type=text].dgwt-cas-search-input{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;-webkit-box-shadow:none;box-shadow:none;margin:0;-webkit-appearance:textfield;text-align:left}[type=search].dgwt-wcas-search-input::-ms-clear{display:none}[type=search].dgwt-wcas-search-input::-webkit-search-decoration{-webkit-appearance:none}[type=search].dgwt-wcas-search-input::-webkit-search-cancel-button{display:none}.dgwt-wcas-details-desc{font-size:13px;line-height:157%}.dgwt-wcas-details-desc b,.dgwt-wcas-details-desc strong{font-weight:400;color:#000;margin:0;padding:0}.dgwt-wcas-pd-addtc-form{margin:10px 0;display:flex;align-items:center;justify-content:flex-end}.dgwt-wcas-pd-addtc-form>.quantity{margin-right:10px}.dgwt-wcas-pd-addtc-form .add_to_cart_inline,.dgwt-wcas-pd-addtc-form .quantity input.qty{margin-bottom:0;margin-top:0}.dgwt-wcas-stock{display:block;text-align:right;font-size:14px;line-height:14px;margin-bottom:14px}.dgwt-wcas-stock.in-stock{color:#0f834d}.dgwt-wcas-stock.out-of-stock{color:#e2401c}.dgwt-wcas-pd-addtc .add_to_cart_button,.dgwt-wcas-pd-addtc .add_to_cart_inline{margin:0}.dgwt-wcas-has-headings .dgwt-wcas-st>span.dgwt-wcas-st--direct-headline,.dgwt-wcas-layout-icon .dgwt-wcas-icon-preloader,.dgwt-wcas-layout-icon-flexible-inv:not(.dgwt-wcas-layout-icon) .dgwt-wcas-search-icon,.dgwt-wcas-layout-icon-flexible-inv:not(.dgwt-wcas-layout-icon) .dgwt-wcas-search-icon-arrow,.dgwt-wcas-layout-icon-flexible:not(.dgwt-wcas-layout-icon) .dgwt-wcas-search-icon,.dgwt-wcas-layout-icon-flexible:not(.dgwt-wcas-layout-icon) .dgwt-wcas-search-icon-arrow,.dgwt-wcas-om-bar .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit,.dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit,.dgwt-wcas-overlay-mobile .dgwt-wcas-search-icon,.dgwt-wcas-overlay-mobile .dgwt-wcas-search-icon-arrow,.dgwt-wcas-overlay-mobile-on .dgwt-wcas-enable-mobile-form,.dgwt-wcas-overlay-mobile-on .dgwt-wcas-icon-handler,.dgwt-wcas-overlay-mobile-on.dgwt-wcas-is-ios body:not(.dgwt-wcas-theme-flatsome)>:not(.dgwt-wcas-overlay-mobile),.dgwt-wcas-pd-addtc .add_to_cart_button.added,.dgwt-wcas-search-icon-arrow,.dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon.dgwt-wcas-layout-icon-open:not(.dgwt-wcas-has-submit) .dgwt-wcas-sf-wrapp .dgwt-wcas-ico-magnifier,.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:before,.dgwt-wcas-voice-search-supported.dgwt-wcas-search-filled .dgwt-wcas-voice-search,body .dgwt-wcas-content-wrapp .rood,body .dgwt-wcas-content-wrapp .zwave{display:none}button.dgwt-wcas-search-submit,input[type=submit].dgwt-wcas-search-submit{position:relative}.dgwt-wcas-ico-magnifier{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;height:65%;display:block}.dgwt-wcas-preloader{height:100%;position:absolute;right:0;top:0;width:40px;z-index:-1;background-repeat:no-repeat;background-position:right 15px center;background-size:auto 44%}.dgwt-wcas-voice-search{position:absolute;right:0;top:0;height:100%;width:40px;z-index:1;opacity:.5;cursor:pointer;align-items:center;justify-content:center;display:none;-webkit-transition:160ms ease-in-out;-moz-transition:160ms ease-in-out;-ms-transition:160ms ease-in-out;-o-transition:160ms ease-in-out;transition:160ms ease-in-out}.dgwt-wcas-close:hover,.dgwt-wcas-style-pirx .dgwt-wcas-voice-search:hover,.dgwt-wcas-voice-search:hover{opacity:.3}.dgwt-wcas-voice-search path{fill:#444}.dgwt-wcas-voice-search-supported .dgwt-wcas-voice-search{display:flex}.dgwt-wcas-voice-search-supported .dgwt-wcas-preloader{right:40px}.rtl .dgwt-wcas-overlay-mobile .dgwt-wcas-style-pirx .dgwt-wcas-voice-search,.rtl .dgwt-wcas-preloader,.rtl .dgwt-wcas-voice-search{right:auto;left:5px}.dgwt-wcas-mobile-overlay-trigger-active .dgwt-wcas-voice-search{z-index:105}.rtl .dgwt-wcas-voice-search-supported .dgwt-wcas-preloader{right:auto;left:45px}.dgwt-wcas-inner-preloader{background-repeat:no-repeat;background-position:right 8px center;background-size:auto 22px;display:flex;align-items:center;justify-content:center;z-index:1}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.dgwt-wcas-inner-preloader{background-image:url(//fundacjarozwojuosobistego.pl/wp-content/plugins/ajax-search-for-woocommerce/assets/img/preloader.gif)}}.dgwt-wcas-loader-circular{height:24px;width:24px;-webkit-animation:2s linear infinite rotate;-moz-animation:2s linear infinite rotate;animation:2s linear infinite rotate}.dgwt-wcas-loader-circular-path{fill:transparent;stroke-linecap:round;stroke-width:4px;stroke-dasharray:1,200;stroke-dashoffset:0;-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-animation:1s ease-in-out infinite dash;-moz-animation:1s ease-in-out infinite dash;animation:1s ease-in-out infinite dash;stroke:#ddd}@-webkit-keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes rotate{100%{-moz-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@-moz-keyframes dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@keyframes dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}.dgwt-wcas-close:not(.dgwt-wcas-inner-preloader){cursor:pointer;display:flex;align-items:center;justify-content:center;-webkit-transition:160ms ease-in-out;-moz-transition:160ms ease-in-out;-ms-transition:160ms ease-in-out;-o-transition:160ms ease-in-out;transition:160ms ease-in-out;z-index:1}.dgwt-wcas-close:not(.dgwt-wcas-inner-preloader):before{content:'';display:block;position:absolute;background:0 0;height:100%;width:100%;left:0;bottom:0;top:0;right:0;margin:auto}.dgwt-wcas-close path{fill:#ccc}@media screen and (max-width:992px){.dgwt-wcas-is-detail-box .dgwt-wcas-suggestions-wrapp{max-width:none}}.dgwt-wcas-suggestion strong{font-weight:700}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px}.dgwt-wcas-sf-wrapp:after,.dgwt-wcas-sf-wrapp:before{content:"";display:table}.dgwt-wcas-sf-wrapp:after{clear:both}.dgwt-wcas-sf-wrapp{zoom:1;width:100%;max-width:100vw;margin:0;position:relative;background:0 0}.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{width:100%;height:40px;font-size:14px;line-height:100%;padding:10px 15px;margin:0;background:#fff;border:1px solid #ddd;border-radius:3px;-webkit-border-radius:3px;-webkit-appearance:none;box-sizing:border-box}.dgwt-wcas-is-ios .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input,.dgwt-wcas-is-ios .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus{font-size:16px}.dgwt-wcas-open .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{border-radius:3px 3px 0 0}.dgwt-wcas-layout-icon-open.dgwt-wcas-style-pirx .dgwt-wcas-search-icon-arrow,.dgwt-wcas-open.dgwt-wcas-nores .dgwt-wcas-details-wrapp .dgwt-wcas-preloader-wrapp,.dgwt-wcas-open.dgwt-wcas-nores.dgwt-wcas-details-outside .dgwt-wcas-details-wrapp{display:none!important}.dgwt-wcas-open.dgwt-wcas-nores.dgwt-wcas-details-outside .dgwt-wcas-suggestions-wrapp{min-height:0!important;border-radius:0 0 5px 5px;border-right-color:#ddd}.dgwt-wcas-open.dgwt-wcas-nores.dgwt-wcas-full-width .dgwt-wcas-details-wrapp,.dgwt-wcas-open.dgwt-wcas-nores.dgwt-wcas-full-width .dgwt-wcas-suggestions-wrapp{min-height:41px!important}.dgwt-wcas-open.dgwt-wcas-nores.dgwt-wcas-full-width:not(.rtl):not(.dgwt-wcas-details-outside) .dgwt-wcas-suggestions-wrapp{border-right-color:transparent}.rtl.dgwt-wcas-open.dgwt-wcas-nores.dgwt-wcas-full-width:not(.dgwt-wcas-details-outside) .dgwt-wcas-suggestions-wrapp{border-left-color:transparent}.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus{outline:0;background:#fff;box-shadow:0 0 9px 1px rgba(0,0,0,.06);-webkit-transition:150ms ease-in;-moz-transition:150ms ease-in;-ms-transition:150ms ease-in;-o-transition:150ms ease-in;transition:150ms ease-in}.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder{color:#999;font-weight:400;font-style:italic;line-height:normal}.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::-webkit-input-placeholder{color:#999;font-weight:400;font-style:italic;line-height:normal}.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:-moz-placeholder{color:#999;font-weight:400;font-style:italic;line-height:normal}.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::-moz-placeholder{color:#999;font-weight:400;font-style:italic;line-height:normal}.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:-ms-input-placeholder{color:#999;font-weight:400;font-style:italic;line-height:normal}.dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{overflow:visible;position:absolute;border:0;padding:0 15px;margin:0;cursor:pointer;height:40px;min-width:50px;width:auto;line-height:100%;min-height:100%;right:0;left:auto;top:0;bottom:auto;color:#fff;-webkit-transition:250ms ease-in-out;-moz-transition:250ms ease-in-out;-ms-transition:250ms ease-in-out;-o-transition:250ms ease-in-out;transition:250ms ease-in-out;text-transform:uppercase;background-color:#333;border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;text-shadow:0 -1px 0 rgba(0,0,0,.3);-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none}.rtl .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{left:0;right:auto}.dgwt-wcas-open .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit{border-radius:0 2px 0 0}.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:hover,.dgwt-wcas-sugg-hist-clear:hover{opacity:.7}.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:active,.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:focus{opacity:.7;outline:0}.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:before{content:'';position:absolute;border-width:8px 8px 8px 0;border-style:solid solid solid none;border-color:transparent #333;top:12px;left:-6px;-webkit-transition:250ms ease-in-out;-moz-transition:250ms ease-in-out;-ms-transition:250ms ease-in-out;-o-transition:250ms ease-in-out;transition:250ms ease-in-out}.rtl .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:before{left:auto;right:-6px;border-width:8px 0 8px 8px;border-style:solid none solid solid}.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:active:before,.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:focus:before,.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:hover:before{border-right-color:#333}.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit::-moz-focus-inner{border:0;padding:0}.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp{min-height:340px;overflow:visible}.dgwt-wcas-is-details .dgwt-wcas-si{width:30px;max-width:100%;box-sizing:border-box}.dgwt-wcas-is-details .dgwt-wcas-sp{display:flex;top:0;flex-direction:column;height:100%;justify-content:center;resize:vertical}.dgwt-wcas-is-details .dgwt-wcas-sd{font-size:11px;line-height:100%}.dgwt-wcas-has-img .dgwt-wcas-suggestion[data-taxonomy=product_cat],.dgwt-wcas-has-img .dgwt-wcas-suggestion[data-taxonomy=product_tag]{padding-left:15px;min-height:0}.dgwt-wcas-has-img .dgwt-wcas-suggestion[data-taxonomy=product_cat] .dgwt-wcas-st,.dgwt-wcas-has-img .dgwt-wcas-suggestion[data-taxonomy=product_tag] .dgwt-wcas-st{padding-left:0}.dgwt-wcas-ico-magnifier,.dgwt-wcas-ico-magnifier-handler,html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon{max-width:20px}.dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier{height:50%;margin:auto;max-height:20px;width:100%;max-width:20px;left:12px;right:auto;opacity:.5;fill:#444}.rtl .dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier{left:auto;right:12px}.dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{padding:10px 15px 10px 40px}.rtl .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{padding:10px 40px 10px 15px}.dgwt-wcas-overlay-mobile-on,.dgwt-wcas-overlay-mobile-on body{overflow:hidden;min-width:100vw;min-height:100vh}html.dgwt-wcas-overlay-mobile-on{scroll-behavior:unset}.dgwt-wcas-om-bar{display:flex;height:45px;width:100%}.dgwt-wcas-om-bar button.dgwt-wcas-om-return,.dgwt-wcas-om-bar button.dgwt-wcas-om-return:active,.dgwt-wcas-om-bar button.dgwt-wcas-om-return:focus,.dgwt-wcas-om-bar button.dgwt-wcas-om-return:hover{width:45px;height:100%;display:block;background:#ccc;cursor:pointer;position:relative;margin:0;padding:0;box-shadow:none;outline:0;border:none;border-spacing:0;border-radius:0}.dgwt-wcas-om-bar .dgwt-wcas-om-return svg{width:23px;height:23px;position:absolute;left:12px;top:12px;fill:#fff}.rtl .dgwt-wcas-om-bar .dgwt-wcas-om-return svg{left:11px;top:9px;-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.dgwt-wcas-has-submit .dgwt-wcas-search-submit svg path{fill:#fff}.dgwt-wcas-om-bar .dgwt-wcas-has-submit-off .dgwt-wcas-preloader{right:0!important}.rtl .dgwt-wcas-om-bar .dgwt-wcas-has-submit-off .dgwt-wcas-preloader{left:4px!important;right:auto!important}.rtl .dgwt-wcas-om-bar .dgwt-wcas-style-pirx.dgwt-wcas-has-submit-off .dgwt-wcas-preloader{left:10px!important;right:auto!important}@keyframes dgwt-wcas-preloader-price-anim{0%,100%{background:rgba(128,128,128,.03)}50%{background:rgba(128,128,128,.1)}}.dgwt-wcas-preloader-price-inner div:first-child{left:0;animation-delay:-.1s}.dgwt-wcas-preloader-price-inner div:nth-child(2){left:13px;animation-delay:-.2s}.dgwt-wcas-preloader-price-inner div:nth-child(3){left:26px;animation-delay:-.3s}.dgwt-wcas-preloader-price{width:34px;height:10px;display:inline-block;overflow:hidden;background:0 0}.dgwt-wcas-preloader-price-inner{width:100%;height:100%;position:relative;transform:translateZ(0) scale(1);backface-visibility:hidden;transform-origin:0 0}.dgwt-wcas-preloader-price-inner div{position:absolute;width:8px;height:8px;background:rgba(128,128,128,.05);animation:.8s cubic-bezier(0,.5,.5,1) infinite dgwt-wcas-preloader-price-anim;-webkit-transition:.2s ease-in-out;-moz-transition:.2s ease-in-out;-ms-transition:.2s ease-in-out;-o-transition:.2s ease-in-out;transition:.2s ease-in-out}.dgwt-wcas-om-bar .dgwt-wcas-search-wrapp-mobile{width:calc(100% - 45px);max-width:none;margin:0}.dgwt-wcas-overlay-mobile .dgwt-wcas-search-form,.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestion{width:100%}.dgwt-wcas-overlay-mobile{position:absolute;left:0;right:0;top:0;bottom:0;width:100%;background:#fff}.dgwt-wcas-overlay-mobile *{box-sizing:border-box}.dgwt-wcas-search-wrapp-mobile input[type=search].dgwt-wcas-search-input{height:45px!important;border-top:none;border-right:none;border-left:none;border-radius:0;font-size:16px!important}.dgwt-wcas-search-wrapp-mobile input[type=search].dgwt-wcas-search-input:focus{font-size:16px!important}.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp{left:0!important;top:45px!important;width:100%!important;height:calc(100% - 45px)!important;position:absolute;overflow-y:auto;border:none;margin:0;display:block}.dgwt-wcas-enable-mobile-form{position:absolute;z-index:100;left:0;top:0;width:100%;height:100%;cursor:pointer;display:block}html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-icon-mobile .dgwt-wcas-search-form{display:none;position:relative}html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-icon-mobile{min-width:0;display:inline-block;width:28px;height:28px}html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-icon-handler{height:100%;width:100%}html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-icon-handler .dgwt-wcas-ico-magnifier{opacity:1;position:static;max-width:none;max-height:none}.dgwt-wcas-overlay-mobile-on.dgwt-wcas-is-ios body{overflow:auto}.dgwt-wcas-overlay-mobile-on.dgwt-wcas-is-ios{overflow:visible}.dgwt-wcas-overlay-mobile-on.dgwt-wcas-is-ios .dgwt-wcas-suggestions-wrapp{max-height:none!important;height:auto!important}.dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon{min-width:unset}.menu .dgwt-wcas-search-icon,html:not(.dgwt-wcas-overlay-mobile-on) .menu .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon{width:auto}.dgwt-wcas-layout-icon-flexible .dgwt-wcas-search-form,.dgwt-wcas-layout-icon-flexible-inv .dgwt-wcas-search-form{opacity:0}.dgwt-wcas-layout-icon-flexible-inv:not(.dgwt-wcas-layout-icon-flexible-loaded),.dgwt-wcas-layout-icon-flexible-inv:not(.dgwt-wcas-layout-icon-flexible-loaded) .dgwt-wcas-search-form,.dgwt-wcas-layout-icon-flexible:not(.dgwt-wcas-layout-icon-flexible-loaded),.dgwt-wcas-layout-icon-flexible:not(.dgwt-wcas-layout-icon-flexible-loaded) .dgwt-wcas-search-form{max-width:20px;min-width:unset}.dgwt-wcas-icon-preloader{margin:auto;position:absolute;top:0;left:0;bottom:0;right:0}.dgwt-wcas-layout-icon-flexible-loaded .dgwt-wcas-search-form{opacity:1}html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon .dgwt-wcas-search-form{opacity:0;display:none;position:absolute;left:0;top:calc(100% + 8px);min-width:500px;z-index:1000}html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon.dgwt-wcas-layout-icon-open .dgwt-wcas-search-form{display:block;opacity:1}.dgwt-wcas-search-icon{width:20px;height:auto;cursor:pointer;display:block}.dgwt-wcas-ico-magnifier-handler{margin-bottom:-.2em;width:100%}.dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon.dgwt-wcas-layout-icon-open .dgwt-wcas-search-icon{opacity:.6}.dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon.dgwt-wcas-layout-icon-open.dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{padding-left:15px}.dgwt-wcas-layout-icon-open .dgwt-wcas-search-icon-arrow{display:block;position:absolute;top:calc(100% + 2px);left:0;z-index:5;width:15px;height:15px;background:#fff;border:1px solid #ddd;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.dgwt-wcas-has-headings .dgwt-wcas-suggestion-headline{pointer-events:none;display:block;font-weight:500;white-space:nowrap}.dgwt-wcas-suggestion.dgwt-wcas-suggestion-headline-v2{display:block;font-weight:500;white-space:nowrap;cursor:default;font-size:14px;margin-top:5px;margin-bottom:15px}.dgwt-wcas-suggestion.dgwt-wcas-suggestion-headline-v2 .dgwt-wcas-st{padding-bottom:3px;margin-top:16px}.dgwt-wcas-has-headings .dgwt-wcas-suggestion-headline .dgwt-wcas-st{border-bottom:1px solid #ddd;padding-bottom:3px;text-transform:uppercase;margin-top:16px;font-size:12px}.dgwt-wcas-has-headings .dgwt-wcas-suggestion-tax .dgwt-wcas-st{padding:0}.dgwt-wcas-has-headings .dgwt-wcas-suggestion.dgwt-wcas-suggestion-tax.dgwt-wcas-suggestion-selected,.dgwt-wcas-has-headings .dgwt-wcas-suggestion.dgwt-wcas-suggestion-tax:hover{background:0 0;text-decoration:underline}.dgwt-wcas-is-details .dgwt-wcas-has-headings .dgwt-wcas-suggestion.dgwt-wcas-suggestion-tax{min-height:30px}.dgwt-wcas-sugg-hist-clear{cursor:pointer;text-decoration:underline;display:inline-block;margin-left:2px}.dgwt-wcas-darkened-overlay{display:block;position:absolute;opacity:.15;z-index:100000;left:0;top:0}.dgwt-wcas-darkened-overlay>div{background:#111;position:absolute}.dgwt-wcas-search-wrapp.dgwt-wcas-search-darkoverl-on .dgwt-wcas-search-form{background-color:rgba(17,17,17,.15);border:none;border-radius:0}.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp{background:#fff;padding:10px;border-radius:10px}.dgwt-wcas-style-pirx.dgwt-wcas-search-wrapp-mobile .dgwt-wcas-sf-wrapp{padding-top:0;padding-bottom:0}.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{padding:13px 24px 13px 48px;line-height:24px;font-size:17px;border:2px solid transparent;border-radius:30px;height:auto;font-family:Roboto,sans-serif;background-color:#eee}.dgwt-wcas-open-pirx .dgwt-wcas-open .dgwt-wcas-suggestions-wrapp,.dgwt-wcas-open-pirx .dgwt-wcas-open.dgwt-wcas-nores .dgwt-wcas-suggestions-wrapp{border-radius:0 0 5px 5px}.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus{box-shadow:none;transition:30ms ease-in}.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:hover{background-color:#dfdfdf}.dgwt-wcas-style-pirx.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{border-color:#333}.dgwt-wcas-open .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{border-radius:30px}.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{background:0 0;border-radius:100%;border:0;display:flex;align-items:center;justify-content:center;padding:0;margin:0;position:absolute;min-height:33px;min-width:33px;height:33px;width:33px;left:23px;top:21px;pointer-events:none;transition:none}.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg{width:18px;height:18px}.dgwt-wcas-style-pirx.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{left:auto;right:28px;pointer-events:auto;animation:.3s fadeIn}.dgwt-wcas-style-pirx.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{padding-left:24px;padding-right:48px;transition:none!important}.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover{opacity:1;background:#e4e4e4;box-shadow:0 0 0 2px #e4e4e4;border-radius:100%}.dgwt-wcas-style-pirx .dgwt-wcas-preloader{margin-right:35px}.rtl .dgwt-wcas-style-solaris .dgwt-wcas-preloader,.rtl .dgwt-wcas-style-solaris .dgwt-wcas-voice-search{margin-left:4px}.dgwt-wcas-style-pirx .dgwt-wcas-close:not(.dgwt-wcas-inner-preloader){transition:none;width:18px}.dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-om-bar button.dgwt-wcas-om-return path,.dgwt-wcas-style-pirx .dgwt-wcas-close:not(.dgwt-wcas-inner-preloader) path,.dgwt-wcas-style-pirx .dgwt-wcas-voice-search svg path,.dgwt-wcas-style-pirx.dgwt-wcas-has-submit .dgwt-wcas-search-submit svg path{fill:#111}.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder{opacity:1;font-style:normal;font-weight:300;color:#777}.dgwt-wcas-open-pirx .dgwt-wcas-details-wrapp,.dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp{border-color:#fff;padding-top:10px;padding-bottom:10px}.dgwt-wcas-open-pirx .dgwt-wcas-details-inner,.dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp>.dgwt-wcas-suggestion{padding-left:20px;padding-right:20px}.dgwt-wcas-open-pirx .dgwt-wcas-full-width .dgwt-wcas-suggestions-wrapp>.dgwt-wcas-suggestion,.dgwt-wcas-open-pirx body.dgwt-wcas-details-left .dgwt-wcas-details-wrapp{border-right:1px solid #ddd}.dgwt-wcas-open-pirx .dgwt-wcas-details-outside .dgwt-wcas-details-wrapp,.dgwt-wcas-open-pirx .dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp{margin-top:0;border-top:none}.dgwt-wcas-open-pirx body.dgwt-wcas-details-right .dgwt-wcas-suggestions-wrapp{border-right:none}.dgwt-wcas-open-pirx body.dgwt-wcas-details-right .dgwt-wcas-details-wrapp{border-left:1px solid #ddd}.dgwt-wcas-open-pirx body.dgwt-wcas-details-left .dgwt-wcas-suggestions-wrapp{border-left:none}.dgwt-wcas-open-pirx .dgwt-wcas-open.dgwt-wcas-nores.dgwt-wcas-full-width .dgwt-wcas-details-wrapp,.dgwt-wcas-open-pirx .dgwt-wcas-open.dgwt-wcas-nores.dgwt-wcas-full-width .dgwt-wcas-suggestions-wrapp{min-height:70px!important}.dgwt-wcas-style-pirx.dgwt-wcas-search-wrapp-mobile .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{border-radius:0;background:0 0;padding:0 10px}.dgwt-wcas-style-pirx.dgwt-wcas-search-wrapp-mobile.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{border-color:transparent}.dgwt-wcas-style-pirx.dgwt-wcas-search-wrapp-mobile.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{padding-left:10px}.dgwt-wcas-style-pirx.dgwt-wcas-search-wrapp-mobile .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:hover{background-color:transparent}.dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp{border-top:1px solid #e0e2e5}.dgwt-wcas-open-pirx .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp,.dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-om-bar button.dgwt-wcas-om-return{background:#fff}.dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-om-bar button.dgwt-wcas-om-return svg{left:17px;top:16px;width:17px;height:17px}.dgwt-wcas-style-pirx .dgwt-wcas-voice-search{right:20px;top:1px;opacity:1}.rtl .dgwt-wcas-style-pirx .dgwt-wcas-voice-search{right:auto;left:50px}.dgwt-wcas-overlay-mobile .dgwt-wcas-style-pirx .dgwt-wcas-voice-search{right:5px}.dgwt-wcas-overlay-mobile .dgwt-wcas-style-solaris .dgwt-wcas-voice-search{right:5px!important}.rtl .dgwt-wcas-overlay-mobile .dgwt-wcas-style-solaris .dgwt-wcas-voice-search{left:5px!important;right:auto!important}.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp{background:0 0;padding:4px;border-radius:10px 10px 0 0}.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{padding-top:10px;padding-bottom:10px;line-height:normal;font-size:14px}.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{left:15px;top:7px}.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{left:auto;right:23px}html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{background:#fff;box-shadow:0 0 0 1px #eee}html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{border-color:#333;box-shadow:none}.dgwt-wcas-open-pirx-compact .dgwt-wcas-details-wrapp,.dgwt-wcas-open-pirx-compact .dgwt-wcas-suggestions-wrapp{margin-top:1px}.dgwt-wcas-suggestions-wrapp-fixed{position:fixed!important}.elementor-widget-fibosearch-posts::after{content:""!important}.dgwt-wcas-posts-results-grid{display:flex;flex-wrap:wrap;grid-gap:20px;justify-content:flex-start}.dgwt-wcas-posts-results-grid-item{width:calc(25% - 15px);margin-bottom:30px}@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaA.ttf) format('truetype');
}
#cookieInfo {
  -webkit-box-shadow: 0 0 30px -15px rgba(0, 0, 0, 0.5) !important;
  -moz-box-shadow: 0 0 30px -15px rgba(0, 0, 0, 0.5) !important;
  box-shadow: 0 0 30px -165x rgba(0, 0, 0, 0.5) !important;
  background-color: #ffffff;
  opacity: 1;
  transition: all ease-out 1s;
  text-align: center;
  position: fixed;
  bottom: 0px;
  width: 100%;
  display: block;
  z-index: 55;
}
#cookieInfo #cookieTextWrap h2 {
  color: #5E8D83;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
@media (max-width: 800px) {
  #cookieInfo #cookieTextWrap h2 {
    margin-top: 10px;
    font-size: 1.2em;
  }
}
@media (max-width: 600px) {
  #cookieInfo #cookieTextWrap h2 {
    margin-top: 10px;
    font-size: 1em;
  }
}
@media (max-width: 400px) {
  #cookieInfo #cookieTextWrap h2 {
    margin-top: 10px;
    font-size: 0.8em;
  }
}
@media (max-width: 800px) {
  #cookieInfo #cookieTextWrap p {
    font-size: 0.9em;
  }
}
@media (max-width: 600px) {
  #cookieInfo #cookieTextWrap p {
    font-size: 0.7em;
  }
}
@media (max-width: 400px) {
  #cookieInfo #cookieTextWrap p {
    font-size: 0.5em;
  }
}
#cookieInfo:hover {
  opacity: 1;
  transition: all ease-out 1s;
}
#cookieInfo #cookieIcon {
  position: absolute;
  top: 30px;
  left: 30px;
  opacity: 0;
  transition: all ease-out 1s;
}
@media (min-width: 1000px) {
  #cookieInfo #cookieIcon {
    opacity: 1;
  }
}
#cookieInfo #cookieTextWrap {
  display: inline;
  width: 70%;
}
#cookieInfo #cookieTextWrap p {
  padding: 0 20%;
}
#cookieInfo #cookieClose {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all ease-out 1s;
  color: #5E8D83 !important;
  /*        @media (max-width: 630px) {
                    top: -77px;
                    border: solid 1px;
                    border-radius: 8px;
                    background: @color-white;
                }*/
}
@media (max-width: 450px) {
  #cookieInfo #cookieClose {
    top: -5%;
    right: -5%;
    transform: scale(0.5);
  }
}
#cookieInfo #cookieClose a {
  color: #5E8D83 !important;
  height: 64px;
  display: block;
}
#cookieInfo #cookieClose:hover {
  transform: rotate(360deg);
  transition: all ease-out 1s;
  color: #4a6e67;
}
@media (max-width: 630px) {
  #cookieInfo #cookieClose:hover {
    transform: none;
  }
}
.cookieWaiting {
  display: none !important;
}
.cookieHide {
  bottom: -600px !important;
  transition: all ease-out 1s;
}
/*# sourceMappingURL=_cookies.css.map */@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaA.ttf) format('truetype');
}
@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes to-top {
  0% {
    background-color: #5E8D83;
    border-color: #4a6e67;
    width: 42px;
    height: 42px;
  }
  50% {
    background-color: #990924;
    border-color: #690619;
    height: 45px;
  }
  100% {
    background-color: #5E8D83;
    border-color: #4a6e67;
    width: 42px;
    height: 42px;
  }
}
/*# sourceMappingURL=animations.css.map */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaA.ttf) format('truetype');
}
/*/*404*/*/
.btn-container {
  margin: 60px auto 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 930px) {
  .btn-container {
    flex-direction: column;
  }
}
.btn-container a {
  color: #ffffff;
}
.btn-container .btn-sk {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1px;
  border: 1px solid #690619;
  border-radius: 10px;
  padding: 18px 30px;
  margin: 40px;
  box-shadow: 0 2px 5px 0 rgba(3, 6, 26, 0.15);
  background: #990924;
  transition: 0.5s all ease-in-out;
}
.btn-container .btn-sk:hover {
  cursor: pointer;
  background: #690619;
  color: #ffffff;
  animation: none;
}
.btn-container .btn-sk:focus {
  color: #000000;
  background: #E13527;
}
.btn-container .btn-reverse {
  color: #990924 !important;
  border: 2px solid #990924 !important;
  box-shadow: 0 2px 5px 0 rgba(3, 6, 26, 0.15);
  animation: pulse-dark 2s infinite 3s cubic-bezier(0.25, 0, 0, 1) !important;
}
.btn-container .btn-reverse:hover {
  color: #ffffff !important;
}
.btn-container .btn-pulse {
  animation: pulse-white 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 0 #ffffff;
}
@keyframes pulse-white {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}
@keyframes pulse-dark {
  0% {
    box-shadow: inset 0 0 18px 0 #dedede;
  }
  50% {
    box-shadow: inset 0 0 0px 0 #777777;
  }
  100% {
    box-shadow: inset 0 0 18px 0 #dedede;
  }
}
/*.btn-sk
{
background-color: @color-primary !important;
color: white !important;
margin: auto !important;
margin-bottom: auto;
font-size: 14px !important;
font-family: 'Poppins' !important;
text-transform: uppercase !important;
border-color: @color-primary;
border-radius: 7px !important;
margin-bottom: 5% !important;
padding: 13px;
transition: all ease-out .4s;
display: block;
text-align: center;
}*/
.btn-sk:focus,
.btn-sk:hover,
.btn-sk:active {
  transition: all ease-out 0.4s;
}
.btn-sk-outline {
  transition: all ease-out 0.4s;
  border: solid 1px linear-gradient(180deg, #990924 0%, #990924 77%, #690619 100%) !important;
}
.btn-sk-outline:hover {
  transition: all ease-out 0.4s;
  background-color: #690619;
  color: #ffffff;
}
a {
  /*text-shadow: 1px 1px 3px @color-gray-dark;*/
}
a:link {
  color: #222222;
}
a:visited {
  color: #444444;
}
a:hover {
  color: #444444;
}
a:active {
  color: #dedede;
}
.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.flex-start {
  justify-content: flex-start;
}
.flex-end {
  justify-content: flex-end;
}
.center {
  justify-content: center;
}
.space-between {
  justify-content: space-between;
}
.space-around {
  justify-content: space-around;
}
.space-evenly {
  justify-content: space-evenly;
}
.flex-item {
  color: white;
  font-weight: bold;
  font-size: 2em;
  text-align: center;
}
.pagination {
  text-align: center;
  padding: 12px;
  margin-bottom: 10px;
}
.pagination .current {
  border-radius: 6px;
  display: inline-block;
  padding: 9px;
  width: 15px;
  background: #990924;
  text-decoration: none;
  color: #ffffff;
}
.pagination .prev,
.pagination .next {
  width: 120px;
}
.pagination a {
  display: inline-block;
  border-radius: 6px;
  padding: 8px;
  width: 15px;
  border: solid 1px #990924;
  text-decoration: none;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}
::-moz-selection {
  color: #000;
  background: #fffc4b;
}
::selection {
  color: #000;
  background: #fffc4b;
}
a:focus {
  color: #ffffff !important;
  background: #E13527;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  color: #08172e;
  margin: 0 !important;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #08172e;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 23px;
}
h3 {
  font-size: 21px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px;
}
main {
  overflow: hidden;
  min-height: 80vh;
}
.jumbotron {
  padding-left: 5vw;
  padding-right: 5vw;
}
.jumbotron .jumbotron-container {
  margin: 0 auto;
  padding: 3rem 0;
}
@media (min-width: 1000px) {
  .jumbotron .jumbotron-container {
    padding: 5rem 0;
  }
}
.text-container {
  width: min(80vw, 500px);
  max-width: 500px;
}
.container {
  margin: 0;
}
.container-fluid {
  margin: 0 !important;
}
.separator {
  min-height: 50px;
}
.footer-container p {
  margin-bottom: 0;
}
.footer-container .info {
  font-size: 0.7em;
}
.footer-copyright a {
  color: #efefef !important;
}
.text-right {
  text-align: right;
}
@media (max-width: 781px) {
  .text-right {
    text-align: center;
  }
}
.text-left {
  text-align: left;
}
@media (max-width: 781px) {
  .text-left {
    text-align: center;
  }
}
.modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 19;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.modalOverlayActive {
  width: 100vw;
  height: 100vh;
}
.noScroll {
  overflow: hidden;
}
.separate {
  padding-right: 50px !important;
}
.contact-container {
  display: flex;
  background-color: inherit;
}
@media (max-width: 767px) {
  .contact-container {
    flex-direction: column;
  }
}
.contact-container .column {
  flex: 1;
  padding: 10px;
}
.user-card {
  max-width: 100%;
  border: 1px solid #ddd;
  padding: 20px 60px 40px 60px;
  margin: 20px;
  background-color: #fff;
}
.user-card img {
  display: block;
  width: 100%;
  border-radius: 50%;
  margin-bottom: 10px;
}
.user-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 20px 0;
}
.user-card p {
  font-size: 1rem;
  margin-bottom: 2px;
  margin-top: 5px;
}
.user-card p:last-child {
  margin-bottom: 0;
}
.user-card .header {
  font-size: 1.2em;
  margin-top: 25px;
}
.user-card .content {
  color: #82837d;
  text-decoration: none;
}
#addresses ul {
  padding: 0;
}
.entry-content,
.entry-header {
  padding-left: 10vw;
  padding-right: 10vw;
}
.entry-content {
  padding-top: 2vw;
  padding-bottom: 5vw;
  font-family: 'Poppins', sans-serif;
}
.entry-header {
  padding-top: 5vw;
  padding-bottom: 2vw;
  font-family: 'Lato', sans-serif;
}
.grid-container {
  display: grid;
  grid-template-columns: 70% 30%;
  grid-gap: 10px;
  /* Opcjonalnie: odstępy między kolumnami */
  overflow: hidden;
}
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: 100% !important;
  }
}
.column1 {
  grid-column: 1;
}
@media (max-width: 1024px) {
  .column1 {
    grid-column: 1 !important;
  }
}
.column2 {
  grid-column: 2;
  display: none;
  /* Ukrycie dla urządzeń mobilnych */
  padding-right: 10vW;
  padding-top: 88px;
}
@media (min-width: 1024px) {
  /* Widoczne na desktopach o szerokości 768px lub większej */
  .column2 {
    display: block;
  }
}
.sk-block {
  background-color: #e13527;
  border-radius: 10px;
  padding: 20px;
  color: white;
  margin: 20px 0;
  font-family: Poppins;
}
.sk-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.sk-block-header-section:first-child {
  flex: 0.75 !important;
  text-align: left !important;
}
.sk-block-header-section:last-child {
  text-align: right;
  /* Wyrównanie do prawej dla ostatniego elementu */
  fill: white;
  flex: 0.25;
}
.sk-block-content {
  font-size: 16px;
}
.sk-block-content ul {
  list-style: none;
  /* Usunięcie punktorów */
  padding: 0;
}
.sk-block-content ul li {
  margin-bottom: 10px;
}
.sk-block-content ul li a {
  color: white;
  text-decoration: none;
  font-family: Poppins;
}
.sk-block-content ul li a:hover {
  text-decoration: underline;
}
#social_media a {
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#recent_posts .sk-block-header {
  font-size: 1.2em;
}
#contact a {
  display: block;
}
#contact .sk-block-header {
  font-size: 1.4em;
}
#contact .sk-button {
  background-color: white;
  color: black;
  border: none;
  /* Usunięcie ramki */
  border-radius: 5px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 20px;
  font-weight: 600;
  font-family: Lato;
}
.mobile {
  display: none !important;
  /* Ukrycie na większych ekranach */
}
@media (max-width: 1024px) {
  /* Widoczne na urządzeniach mobilnych o szerokości mniejszej niż 768px */
  .mobile {
    display: block !important;
    margin: 15px !important;
  }
}
#contactPage h1 {
  text-align: center;
}
#contactPage p {
  text-align: center;
  color: #82837d;
}
.ionicon {
  height: 20px;
  margin-right: 20px;
  color: #E13527;
}
#addresses {
  /*    display: flex;
    justify-content: center;  Wyśrodkowanie w poziomie 
    align-items: center;  Wyśrodkowanie w pionie (opcjonalnie) 
    height: 100vh;  Wysokość kontenera na całą wysokość widoku 
    @media (max-width: 1024px) {
        display: block !important;
    }*/
}

.header-profiles-block{
  display:flex;
  flex-direction:row;
  gap:10px;
  align-items: center;
  justify-content: center;

}
.header_profiles_label {
  color:white;
  font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 500;
}
.header_promo_label{
  color:white;
  font-size:16px;
  font-family:'Poppins';
  font-weight:500;
}
.header-contact-block{
  display:flex;
  flex-direction: row;
  gap:30px;
  align-items: center;
  justify-content: center;


}
.header_contact_address a, .header_contact_email a{
  color:white;
  font-family:'Montserrat';
  font-size:16px;
  align-items:center;
  justify-content: center;
}
.header_contact_address,.header_contact_email{
  display:flex;
  flex-direction: row;
  gap:10px;
  align-items: center;
  justify-content: center;
}
.address-phone-block{
  display:flex;
  flex-direction:row;
  gap:10px;

}
.address-phone-block .wrapper-2{
  display:flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.wrapper-2 .nav-label{
  color: #8BA4B1;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.wrapper-2 .nav-content a{
  color: #000;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.header_promo_label span{
  font-size:16px;
  font-family:'Montserrat';
  border-radius: 2px;
background: #FE7F4C;
padding: 3px 12px 3px 12px;
}
.header_promo_label{
  display:flex;
  flex-direction: row;
  gap:20px;
}
.sk-carousel  .owl-stage .overlay{
  display:flex;
  flex-direction: column;
  gap:20px;
  justify-content: center;
}
.sk-carousel .owl-nav{
  display:flex;
  justify-content: space-between;
  margin: 0 90px 0 90px;
  
}
.sk-carousel  .slide-button,.slide-content,.slide-header{
  padding:0 !important;
  margin-left:90px;
}
.sk-carousel .owl-stage .owl-item{
  height:900px !important;
}
.sk-carousel .owl-item .slide-header{
  padding:0;
}
.slide-content p{
  color: #FFF;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.slide-content{
  width: 258px;
height: 32px;
border-radius: 2px;
background: #FE7F4C;
display:flex;
align-items: center;
justify-content: center;
}
.slide-header h2{
  color: #FFF;
  font-family: Montserrat;
  font-size: 76px;
  font-style: normal;
  font-weight: 700;
  line-height: 110px; /* 121.212% */
}
.slide-button{


}
.slide-button a{
  color: #FFF;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
padding: 16px 32px 16px 32px;
font-weight: 700;
line-height: 100%; /* 16px */
border-radius: 2px;
background: #FE7F4C;
box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.20);
}
.about-label span{
  color: #FE7F4C;
font-family: Montserrat;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 20px */
}
.about-headling h2{
  color: #5A6C6C;
font-family: Montserrat;
font-size: 66px;
font-style: normal;
font-weight: 700;
line-height: 80px; /* 121.212% */
margin:0;
}
.about-content p{
  color: #6E7A7A;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 178.571% */
}
.about{
  display:flex;
  flex-direction:row;
  gap:20px;
}
.about .col1{
  display:flex;
  flex-direction: column;
  gap:40px;
  flex:50%;

}
.about .col2{
  flex:50%;
}
.about-list ul{
  list-style-type: none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction: row;
  gap:20px;


}
.about-list ul li{
  display:flex;
  flex-direction: row;
  gap:10px;
}
.about-list-col-1, .about-list-col-2{
  display:flex;
  flex-direction: column;
  gap:10px;

}
.about-list-title{
  color: #000;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 18px */

}
.about-list-text{
  color: #6E7A7A;
font-family: 'Poppins';
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 208.333% */
}
.about-button-wrapper a{
  color: #FFF;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 16px */
border-radius: 2px;
background: #FE7F4C;
box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.20);
padding:25px 45px 25px 45px;
margin-top:6%;
}
.about-button-wrapper{
  margin-top:50px;
}
.about-image-1{
  padding-left:40%;

}
.about-image-2{
  position:absolute;
  width:30%;
  bottom: -15%;
    width: 30%;
    right: 10%;

}
.projects-block{
  display:flex;
  flex-direction: column;
  gap:20px;
  

}
.projects-block .projects-block-label{
  color: #FE7F4C;
font-family: Montserrat;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 20px */
}
.projects-block-headling h2{
  color: #5A6C6C;
font-family: Montserrat;
font-size: 66px;
font-style: normal;
font-weight: 700;
line-height: 80px; /* 121.212% */
margin:0;
}
.projects-items-list{
  display:flex;
  flex-direction: row;
  list-style: none;
  padding:0;
  margin:0;
  gap:20px;
}
.projects-list-item-li{
  width:30%;
}
.projects-items-item-title h3{
  color: #5A6C6C;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 80px; /* 333.333% */
margin:0 15px 0 15px;
}
.projects-items-item-data{
  margin:0 15px 0 15px;
}
.projects-items-item-content{
  color: #6E7A7A;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 178.571% */
margin:0 15px 0 15px;
}
.projects-row-3{
  margin-top:15px;
  display:flex;
  flex-direction: row;
  justify-content: space-between;
}
.projects-row-3 .projects-col-1{
  display:flex;
  flex-direction: row;
  justify-content: normal;
  align-items:center;
  gap:10px;
}


.projects-items-item-content{
  color: #6E7A7A;
  font-family: 'Poppins';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 178.571% */
  margin-bottom:10px;

}
.projects-row-1{
  display:flex;
  color: #6E7A7A;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 25px; /* 178.571% */
  justify-content: end;
}
.progress-bar{
  background-color:#5E8D83 !important;
}
.projects-items-item {
  display:flex;
  flex-direction: column;
  gap:10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.projects-items-item-buttons button{
  border-radius: 2px;
  color: #07847F;
font-family: Montserrat;
font-size: 14px;
padding:15px 30px 15px 30px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 14px */
background: #F2F7F7;
box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.20);
border:none;

}
.projects-items-item-buttons{
  margin: 0 15px 15px 15px;
}
.projects-items-item-buttons button:hover{
  transform:scale(1.05);
  cursor:pointer;
  margin: 0 15px 15 15px
}
.projects-items-item-buttons{
  margin-top:20px;
}
.projects-content-2{
  font-weight:bold;
}
.projects-col-2, .projects-col-1{
  flex:50%;
}
.projects-col-2{
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 10px;

}
.elementor-element-0c1e147{
  background: rgb(242,247,247);
background: linear-gradient(180deg, rgba(242,247,247,1) 50%, rgba(255,255,255,1) 100%);
}

.actions-label{
  color: #FE7F4C;
font-family: Montserrat;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 20px */
}
.actions-headling h2{
  color: #5A6C6C;
font-family: Montserrat;
font-size: 66px;
font-style: normal;
font-weight: 700;
margin:0;
line-height: 80px; /* 121.212% */
}
.actions-content{
  color: #6E7A7A;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 178.571% */
width:55%;
}

.actions-button-wrapper button{
  display: inline-flex;
height: 62px;
padding: 16px 32px;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 2px;
background: #FE7F4C;
box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.20);
color: #FFF;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 16px */
border:none;
}
.actions-button-wrapper button:hover{
  transform:scale(1.01);
  cursor:pointer;
}
.actions{
  display:flex;
  flex-direction: row;
  
}
.actions .col1{
  flex:70%;
}
.actions .col2{
  flex:30%
}
.actions .col1{
  display:flex;
  flex-direction: column;
  gap:20px;
}

.actions-image{

}
.actions-list ul{
  list-style-type: none;
  padding:0;
  margin:0;

}
.actions-list{
  width:25%;
}
.actions-list-wrapper{
  display:flex;
  flex-direction: row;
  gap:10px
}
.actions-list ul{
  display:flex;
  flex-direction: column;
  gap:40px;

}
.actions-list-col1{
  display:flex;
  align-items: center;
  justify-content: center;
}
.actions-list-text{
  color: #6E7A7A;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 208.333% */
}
.actions-small-label {
  width:90%;
  margin-top:60px;
  display:flex;
  justify-content: end;
  color: #000;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 18px */
}
.offer-items-item {
  display:flex;
  flex-direction: column;
  gap:20px;
  background-color:white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}
.offer-items-item-title h3{
  color: #5A6C6C;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px; /* 161.111% */
}
.offer-items-item-link{
  color: #6E7A7A;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 178.571% */
}
.offer-items-item-link a{
  color: #FE7F4C;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 14px */
}
.offer-items-item-title, .offer-items-item-link,.offer-items-item-content{
  padding:15px;
}
.offer-items-item-content{
  color: #6E7A7A;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 178.571% */
}
.offer-block-headling h2, .offer-block-headling span{
  color: #5A6C6C;
font-family: Montserrat;
font-size: 66px;
font-style: normal;
font-weight: 700;
line-height: 80px; /* 121.212% */
margin:0;
padding:0;
}
.offer-block-headling{
  width:54%;
}

.offer-block-bottom-subwrapper-col1 button{
  display: inline-flex;
  height: 62px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
background: #FE7F4C;
box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.20);
color: #FFF;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 16px */
border:none;
}

.offer-block-bottom-subwrapper-col1 button:hover{
  transform: scale(1.01);
  cursor:pointer;
}
.offer-block-bottom-subwrapper-col2{
  color: #FE7F4C;
font-family: Montserrat;
font-size: 66px;
font-style: normal;
font-weight: 700;
line-height: 80px; /* 121.212% */
display:flex;
justify-content: end;
align-items: end;
text-align:right;
}
.offer-block-bottom-subwrapper{
  display:flex;
  flex-direction: row;
  gap:10px;
}
.offer-block-bottom-subwrapper-col2{
  width:50%;
}
.offer-block-bottom-subwrapper-col1{
  width:50%;
  display:flex;
  align-items:end;
}
.elementor-element-24d7946  .owl-stage{
  margin-top:80px;
}
.elementor-element-24d7946  .owl-nav{
  position:absolute;
  top:2px;
  right:2px;
}
.elementor-element-24d7946  .owl-nav button svg path {
  fill:#FE7F4C;
}
.elementor-element-24d7946  .owl-nav button:hover{
  transform:scale(1.01);
}
.offer-block-content{
  color: #6E7A7A;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 178.571% */
}
.support-wrapper{
  display:flex;
  align-items: center;
  justify-content: center;
  text-align:center;
  gap:40px;
  flex-direction: column;
  padding:5% 0 5% 0;
}
.support-label span{
  color: #FFF;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 16px */
}

.support-headling h2{
  color: #FFF;
  font-family: Montserrat;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px; /* 181.818% */
}
.support-button-wrapper button{
border:none;
display: inline-flex;
height: 62px;
padding: 16px 32px;
justify-content: center;
align-items: center;
gap: 10px;

border-radius: 2px;
background: #FE7F4C;
box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.20);

color: #FFF;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 16px */
}
.support-button-wrapper button:hover{
  transform: scale(1.01);
  cursor:pointer;
}
.news-block{
  display:flex;
  flex-direction: column;
  gap:20px;
  align-items:center;
  justify-content: center;
  text-align:center;
  margin: 5% 0 5% 0;
}
.news-block-label{
  color: #FE7F4C;
font-family: Montserrat;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 20px */
}
.news-block-headling h2{
  color: #5A6C6C;
text-align: center;
font-family: Montserrat;
font-size: 66px;
font-style: normal;
font-weight: 700;
line-height: 80px; /* 121.212% */
}
.news-items{
  width:100%;
}
.news-items-list{
  list-style-type: none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction: row;
  gap:20px;
  align-items: center;
  justify-content: center;

}
.news-list-item-li{
  width:33%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.news-items-item-rows-wrapper{
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin:15px 10px 15px 10px;
}
.news-items-item-categories ul{
  list-style-type: none;
  padding:0;
  margin:0;
}
.news-items-item-title h3{
  color: #5A6C6C;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 29px; /* 120.833% */
}
.news-items-item-link{
  display:flex;
  align-items: center;
  justify-content: center;
  margin-left:10px;
  
}
.news-items-item-link a{
  color: #FE7F4C;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 14px */
}
.news-items-item{
  padding: 0 0 20px 0;
}
.news-items-item-categories ul li{
  padding:6px;
  display:flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
background: #FE7F4C;
color: #FFF;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 14px */
}
.news-items-item-date{
  color: #5A6C6C;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
}
.elementor-column-gap-default>.elementor-column>.elementor-element-populated{
  padding:0 !important;
}
.elementor-element-e03dc71 .owl-nav{
  display:flex;
  flex-direction: row;
  gap:40px;
}

@media screen and (max-width: 776px) {
  .slide-header h2{
    font-size:45px;
    line-height:75px;
    padding:5px;
    
  }

  .actions-list{
    width:100%;
    flex-direction:column;
  }
  .sk-carousel .slide-button, .slide-content, .slide-header{
    padding:5px;
    margin:0;
    text-align: center;
  }
  .sk-carousel .owl-item .slide-header{
    width:100% !important;
  }
  .sk-carousel .owl-stage .overlay{
    align-items:center !important
  }
  .about{
    flex-direction: column;
  }
  .projects-items-list{
    flex-direction:column;
  }
  .actions-headling h2{
    font-size:36px;
  }
  .offer-block-headling h2,.offer-block-headling span,.offer-block-bottom-subwrapper-col2,.news-block-headling h2{
    font-size:36px;
    width:100%;
  }
  .projects-list-item-li{
    width:100%;
  }
  .news-items-list{
    flex-direction: column;
  }
  .news-list-item-li{
    width:100%;
  }
  .about .col1, .about .col2{
    flex:100%;
  }
  .about-images-row a{
    display:flex;
    align-items: center;
    justify-content: center;
  }
  .about-image-1{
    padding: 20px 0 0 0;
  }
  .projects-block{
    padding:5px;
  }
  .actions{
    flex-direction:column;
  }
  .actions .col1{
    flex:100%;
  }
  .actions-list{
    width:100%;
  }
  .actions-small-label{
    justify-content: center;
  }
 
  .offer-block-headling{
    width:100%;
  }
  .offer-block-bottom-subwrapper{
    flex-direction: column;
  }
  .offer-block-bottom-subwrapper-col1{
    width:100%;
  }
  .offer-block-bottom-subwrapper-col2{
    width:100%;
  }
  
}


@media screen and (max-width: 1430px) {
  .offer-block{
    padding:20px;
  }
  .news-block{
    padding:20px;
  }
  .about{
    padding:20px;
  }
  .actions{
    padding:20px;
  }
  .projects-block{
    padding:20px;
  }
  .elementor-element-21507d6, .elementor-element-a2352fc, .elementor-element-c48495c {
    display:none;
  }
  .header_promo_label{
    align-items: center;
    justify-content: center;
    font-size:14px;
  }
  .offer-items-item{
    gap:5px;
  }
  .offer-items-item-title h3{
    margin:0;
  }
  .offer-items-item-link{
    display:none;
  }
}
@media screen and (max-width: 1430px) {
  .elementor-621 .elementor-element.elementor-element-46046e6 > .elementor-background-overlay{
    background-image:none;
  }
  .actions .col1{
    flex:100%
  }
  .actions{
    flex-direction:column;
  }
  .actions-list ul{
    flex-direction: row;
  }
  .actions-list{
    width:60%;
  }
}
.forminator-input,.forminator-textarea{
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px !important;
}
.news-items-more {
  display:flex;
  justify-content: end;
  
}
.projects-items-more{
  display:flex;
  justify-content: start;
}
.news-items-more a,.projects-items-more a  {
  color:#fe7f4c;
  font-size:16px;
  font-weight:600;
  margin-top:3%;
  
}
.elementor-element-b5b7564 a:focus span{
background-color:#5e8d83;
color:white;
padding:0 3px 0 3px;
}
.elementor-element-b5b7564 a:focus{
  background:none;
}
.modal-content .close:hover{
  cursor:pointer;
  transform:scale(1.01);
}
#openModalBtn:hover{
cursor:pointer;
transform:scale(1.01);
}
.course-wrapper .course-attributes-wrapper .tab.active{
  border-radius:6px;
}
.elementor-element-31c5c9c {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.shop_hero{
  height:528px;
  gap:10px;
  margin-left:7%;
  display:flex;
  justify-content: start;
  align-items: center;

}
.shop_hero .shop_hero-label span{
  color: #FFF;
font-family: Montserrat;
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: normal;
border-radius: 2px;
background: #5E8D83;
padding:10px;
}

.shop_hero .shop_hero-headling h2{
  color: #FFF;
font-family: Montserrat;
font-size: 3.7vw;
font-style: normal;
font-weight: 700;
line-height: calc(1.1 * 3.7vw); /* 112.903% */
}
.shop_hero.shop_hero .col1{
  width:70%;
}
.shop_hero .col2{

}
.shop_hero-button-wrapper button{
  border-radius: 4px;
background: #5E8D83;
box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.20);
color: #FFF;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 8px */
padding:15px;
border:none;
}
button:hover{
  transform:scale(1.02);
  cursor:pointer;
}
.hero2,.hero3{
  height:250px;
  display:flex;
  align-items:center;
  gap:10px;padding:20px;
}
.hero2 .shop_hero-label, .hero3 .shop_hero-label{
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 11px */
}
.hero2 .shop_hero-headling h2,.hero3 .shop_hero-headling h2{
  color: #FFF;
font-family: Montserrat;
font-size: 2.1vw;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 21px */
}
.shop_sale{
  color:white;
  height:400px;
  border-radius: 3px;
  display:flex;
  align-items:center;
  justify-content: center;
  text-align:center;
  flex-direction: column;

}
.shop_sale{

}
.shop_treatments{
  display:flex;
  align-items:end;
  justify-content: center;
  text-align:center;
  flex-direction: column;
  height:400px;
}
.shop_treatments-content .title{
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 2.6vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.shop_treatments-content .subtitle{
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 1vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.shop_treatments-content .content{
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 2.6vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.shop_treatments-content .subcontent{
  color: #FE7F4C;
  font-family: Montserrat;
  font-size: 2.6vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.shop_treatments-content-col2{
  padding:15px;
}
.shop_treatments-button-wrapper button{
  border-radius: 4px;
background: #FE7F4C;
box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.20);
color: #FFF;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 8px */
padding:15px;
border:none;
}
.shop_contact-headling h2{
  color: #FFF;
font-family: Poppins;
font-size: 2.1vw;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.shop_contact-content{
  color: #FFF;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.shop_bestseller{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height:400px;
  gap:10px;

}
.shop_bestseller-headling h2{
  color: #FFF;
font-family: Montserrat;
font-size: 1.7vw;
font-style: normal;
font-weight: 700;
line-height: normal;
margin:0;
}
.shop_bestseller-subheadling{
  color: #FFF;
font-family: Montserrat;
font-size: 1vw;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.shop_bestseller-button-wrapper button{
  border-radius: 3px;
  background: linear-gradient(180deg, #5E8D83 61.36%, rgba(94, 141, 131, 0.00) 100%);
  color: #FFF;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: normal;
border:none;
padding:12px 20px 12px 20px;
}
.shop_bestseller-name{
  color: #FFF;
text-align: center;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.product-list{
  list-style-type: none;
  margin:0;
  padding:0;
  gap:20px;
}

.elementor-element-694b26b{
  border-radius: 3px;
background: linear-gradient(100deg, #DADADA 23.3%, rgba(218, 218, 218, 0.00) 50.69%);
}
.woocommerce ul.products.columns-1 li.product, .woocommerce-page ul.products.columns-1 li.product{
  background:none;
}
.ella-block .woocommerce ul.products li.product a img{
  border: 1px solid #E0E0E0;

}
.ella-block .owl-item{
  background:none !important;
}
.ella-block .woocommerce-loop-product__title{
  font-size:11px !important;
}
.ella-block .owl-nav button svg path{
  fill:#5E8D83;
}
.ella-block svg{
  width:10px;
}
.ella-block .owl-nav{
  position:absolute;
  top:-50px;
  right:1px;

}
.product-list{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content: center;
}
.product-list li{
  display:flex;
  flex-direction:row;
  gap:10px;
  justify-content: center;
  align-items:center;
  background:none !important;
  border:none !important;
}
.product-content-col-1{
  flex:30%;
}
.product-content-col-2{
  flex:70%;
}
.product-list-li a img{
  
}
.top_rated-wrapper .product-content-col-1 img,.recently_viewed-wrapper img{
  border: 2px solid #E0E0E0 !important;
}
.product-list{
  padding:10px;
}
.shop_top_rated-headling h2,.shop_recently_viewed-headling h2{
  color: #000;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
padding:15px;
border-bottom:2px solid #E0E0E0;
}
.shop_recently_viewed-headling{
  text-align:Center;
}
.shop_product{
  padding:20px;
  border-radius: 1px;
border: 1px solid #DADADA;
background: #FFF;
}
.shop_product-headling h2{
  border-bottom:1px solid #DADADA;
  padding-bottom:15px;

}
.shop_product-wrapper{
  display:flex;
  flex-direction: row;
  gap:20px;

}
.shop_product-col1,.shop_product-col2{
  flex:50%;
}
.shop_product-col1 img{
  width:100%;
  height:100%;
}
.shop_product-name h2{
  color: #000;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
border-bottom:1px solid #DADADA;
padding-bottom:15px;

}
.shop_product-price{
  color: #000;
font-family: Montserrat;
font-size: 2.2vw;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.recently_viewed-wrapper .product-content-col-2 span{
  font-weight:700;
  font-size:14px;
}
.recently_viewed-wrapper .product-price span{
  font-weight:400 !important;
}
.shop_product-stock .pre_stock{
  color: #5E8D83;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.shop_product-stock .post_stock{
  color: #5E8D83;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.shop_product-stock{
  border-bottom:1px solid #DADADA;
  padding-bottom:20px;
}
.shop_product .shop_product-col2{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.shop_product-add {

background: #FFF;
padding:15px;
}
.shop_product-add  input,.shop_product-add  input:focus{
  background-image:none;
  background-color:transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 3px;
border: 1px solid #DADADA;
padding:15px;
}
.shop_product-add  button{
  border-radius: 3px;
background: #5E8D83;
color: #FFF;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: normal;
padding:15px;
border:none;
}
.shop_product-add {
  display:flex;
  gap:20px;
  flex-direction: column;

}
.shop_product-add .cart input, .shop_product-add .cart button{
  flex:50%;
}
.shop_product-shipment{
  display:flex;
  flex-direction: row;
  gap:20px;
  justify-content: center;
  align-items: center;
  padding-left:20px;
}

.shop_product-shipment .shop_product-col2{
  color: #5E8D83;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.shop_product-shipment .shop_product-col1 svg{
  height:2em;
  fill:#5E8D83;
}
.shop_product-shipment .shop_product-col1{
flex:10%;
}
.shop_category_top_5-headling h2{
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding:15px;
  border-bottom:2px solid #E0E0E0;
}
.category_top_5-wrapper .product-content-col-2 span{
  font-weight: 700;
    font-size: 14px;
}
.category_top_5-wrapper .product-content-col-2 .product-price span{
  font-weight: 400 !important;
}

.elementor-element-af991b2{
  border-radius: 3px;
border: 1px solid #F5F5F5;
background: #F5F5F5;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.hustle-ui.module_id_1 .hustle-layout .hustle-layout-body{
  background:none !important;
}
.hustle-ui.module_id_1 .hustle-form button.hustle-button-submit{
  background-color:#5E8D83 !important;
  border-color:#5E8D83 !important;
}
.header-shop-single-info{
  display:flex;
  flex-direction:row;
  gap:10px;
  justify-content: center;
  align-items: center;
}
.header-shop-single-info .c1 svg{
height:3em;
width:3em;
fill:#5e8d83;
}
.header-shop-single-info .c2 span{
  color: #5A6C6C;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.cart-icon{
  width:40px;
}
.cart-icon svg{
  background-color:#5E8D83;
  border-radius:50%;
  padding:5px;
width:3em;
height:3em;
}
.cart-icon .ionicon{
 color:white !important;
}
.cart-count{
  background-color:#fe7f4c !important;
  padding:7px 10px 7px 10px !important;
  top: -15px !important;
  right: -20px !important;;
}
.woocommerce-products-header__title{
  text-align:center;
}
.price{
  font-weight:500 !important;
  font-size:14px !important;
}
.address-phone-block .nav-content a:focus,.address-mail-block a:focus{
  color:#5E8D83 !important;
}
@media (max-width: 1024px) {
  .shop_product .shop_product-wrapper{
    flex-direction: column;
  }
}
.woocommerce-breadcrumb{
  padding: 0 0 0 5px !important;
}
span.onsale{
  background-color:#fe7f4c !important;
  color:white;
  padding:0 3px 0 3px !important;
}

.product-categories-menu{
  margin:0;
  padding:0;
  list-style-type: none;
  text-decoration: none !important;
}
.list-level-1{
  padding:10px;
  list-style-type: none;

}
.shop-products .col1 .menu-block{
  background:#F2F7F7;
  padding:10px;
  border-radius:3px;
}
.shop-products .menu-block ul li a{
  text-decoration: none;
}
.list-level-2{
  padding:0;
  margin-left:10px;
  list-style-type: ' -';
}
.list-level-3{
  padding:0;
  margin-left:20px;
  list-style-type: ' -';
}
.list-level-1 li a{
  font-weight:600 !important;
  font-size:18px !important;
}
.list-level-2 li a{
  font-weight:400 !important;
  font-size:16px !important;
}
.list-level-3 li a{
  font-weight:300 !important;
  font-size:14px !important;
}
.list-level-1{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.list-level-2{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding: 5px 0 5px 0;
}
.list-level-3{
  display:flex;
  flex-direction: column;
  gap:10px;
  padding: 5px 0 5px 0;
}
.shop-products .search-block h2{
  color: #5A6C6C;
font-family: Montserrat;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.shop-products .search-block {
  margin-bottom:3%;
  background-color:#F2F7F7;
  padding:20px;
}
.shop-products .search-block input{
  font-size:14px;
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  border:none;
  font-family:'Poppins';
  box-sizing: border-box;
}
.product-categories-menu .active a{
  background:none;
  color:#fe7f4c;
}
.product-categories-menu .active{
  background:none !important;
}
.added_to_cart{
  margin-top:10px;
  display:block;
  color:white !important;
  background-color:#fe7f4c;
  padding:10px;
}
.products-wrapper .orderby{
  border-radius:3px;
  padding:15px;
  font-family:'Poppins';
}
@media (max-width: 1024px) {
  .shop-nav-content{
    text-align:center;
    font-size:18px;
  }
  .shop_hero .shop_hero-headling h2,.hero2 .shop_hero-headling h2, .hero3 .shop_hero-headling h2,.shop_contact-headling h2{
    font-size:36px;
    line-height: calc(2.5 * 3.7vw);
  }
  .shop_product-add input, .shop_product-add input:focus{
    margin-bottom:28px !important;
  }
  .shop_contact-content{
    font-size:36px;
  }
  .shop_treatments-content .title{
    font-size:35px;
  }
  .shop_treatments-content .subtitle{
font-size:29px
  }
  .shop_treatments-content .content{
    font-size:38px

  }
  .shop_treatments-content .subcontent{
    font-size:38px

  }
  .shop_treatments{
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 1440px) {
  .elementor-element-ac43a1a,.elementor-element-450c532{
    display:none
  }
  .woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3{
    font-size:11px;
  }
}
.result .woocommerce-Price-amount{
  font-size:16px;

}
.result .service_subtitle {
  font-size:14px;

}
.result .iworks-omnibus{
  margin-top:5px !important;
  font-size:14px;
  font-weight:400;
}
.result .shop_product-price bdi,.result del{
}
.result del bdi{
  font-weight:400;
  text-decoration: line-through !important;
}
.result ins{
  color:#FE7F4C;
  text-decoration: none !important;
}
.shop-phone-block a{
  color: #5A6C6C;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; 
}
.offers-wrapper{
 
}
.woocommerce-billing-fields input,.woocommerce-billing-fields select,.woocommerce-MyAccount-content input{
  padding: 12px;
  border: none;
  border-radius: 4px;
  box-shadow: 2px 2px 7px 0 rgb(0, 0, 0, 0.2);
  outline: none;
  color: dimgray;
  font-family:'Poppins'
}
.woocommerce-additional-fields__field-wrapper textarea{
  padding: 12px;
  border: 1px solid dimgray;
  border-radius: 4px;
  box-shadow: 2px 2px 7px 0 rgb(0, 0, 0, 0.2);
  outline: none;
  color: dimgray;
}
.header{
  text-align:Center;
}
/*# sourceMappingURL=custom.css.map */@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaA.ttf) format('truetype');
}
.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  /* Kolor obramowania */
  border-top: 4px solid #5E8D83;
  /* Kolor obramowania na górze */
  border-radius: 50%;
  /* Koło */
  width: 40px;
  /* Szerokość */
  height: 40px;
  /* Wysokość */
  animation: spin 1s linear infinite;
  /* Animacja obracania */
  text-align: center;
  margin: auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.offers-wrapper {
  overflow: hidden;
}
.offers-wrapper .intro-block {
  min-height: 480px;
  overflow: hidden;
}
.offers-wrapper .intro-block .item {
  min-height: inherit;
  background-size: cover;
  background-position: center center;
  height: 100%;
}
.offers-wrapper .intro-block .item .overlay {
  min-height: inherit;
  background: linear-gradient(107deg, #5E8D83BB 61.78%, rgba(94, 141, 131, 0) 61.78%, #FFFFFF70 61.78%);
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5% 10%;
}
@media screen and (max-width: 1050px) {
  .offers-wrapper .intro-block .item .overlay {
    background: #5E8D83BB;
  }
}
.offers-wrapper .intro-block .item .overlay .intro-label {
  border-radius: 2px;
  background: #FE7F4C;
  color: #FFF;
  display: inline-block;
  padding: 0 10px;
  width: 130px;
  text-align: center;
}
.offers-wrapper .intro-block .item .overlay .intro-label p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.offers-wrapper .intro-block .item .overlay .intro-header {
  width: 50%;
}
@media screen and (max-width: 1050px) {
  .offers-wrapper .intro-block .item .overlay .intro-header {
    width: 100% !important;
  }
}
.offers-wrapper .intro-block .item .overlay .intro-header h1 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  /* 121.212% */
}
@media screen and (max-width: 1050px) {
  .offers-wrapper .intro-block .item .overlay .intro-header h1 {
    font-size: 46px;
  }
}
.offers-wrapper .intro-block .item .overlay .intro-content {
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 178.571% */
  width: 50%;
}
@media screen and (max-width: 1050px) {
  .offers-wrapper .intro-block .item .overlay .intro-content {
    width: 100% !important;
  }
}
.offers-wrapper .breadcrumbs-block {
  padding: 40px 30px;
  overflow: hidden;
}
.offers-wrapper .breadcrumbs-block .breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .offers-wrapper .breadcrumbs-block .breadcrumbs {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.offers-wrapper .breadcrumbs-block .breadcrumbs li {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  font-variant: all-small-caps;
  margin-right: 5px;
}
@media screen and (max-width: 900px) {
  .offers-wrapper .breadcrumbs-block .breadcrumbs li:nth-child(even) {
    display: none;
  }
}
.offers-wrapper .breadcrumbs-block .breadcrumbs li:last-child {
  color: #5E8D83;
}
.offers-wrapper .breadcrumbs-block .breadcrumbs li a {
  text-decoration: none;
  color: inherit;
}
.offers-wrapper .breadcrumbs-block .breadcrumbs li.current {
  font-weight: normal;
  font-variant: normal;
}
.offers-wrapper .offers-block {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
}
@media screen and (max-width: 1600px) {
  .offers-wrapper .offers-block {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1050px) {
  .offers-wrapper .offers-block {
    grid-template-columns: 1fr;
  }
}
.offers-wrapper .offers-block .offer-item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #5E8D83;
}
@media screen and (max-width: 700px) {
  .offers-wrapper .offers-block .offer-item-wrapper {
    grid-template-columns: 1fr;
  }
}
.offers-wrapper .offers-block .offer-item-wrapper .offer-item-col-1 {
  width: 300px;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.offers-wrapper .offers-block .offer-item-wrapper .offer-item-col-2 {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offers-wrapper .offers-block .offer-item-wrapper .offer-item-col-2 .offer-item-row p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 166.667% */
}
.offers-wrapper .offers-block .offer-item-wrapper .offer-item-col-2 .offer-item-row a {
  display: flex;
  width: 119px;
  height: 40px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  background: #FE7F4C;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  text-decoration: none;
}
.offers-wrapper .offers-block .offer-item-wrapper .offer-item-col-2 .offer-title p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  /* 156.25% */
  font-variant: all-small-caps;
  margin: 0;
  padding: 0;
}
.offers-wrapper .offers-block .offer-item-wrapper .offer-item-col-2 .offer-link {
  margin-bottom: 22px;
}
.offers-wrapper .offers-block .alert {
  width: 100%;
  padding: 20px;
}
.offer-wrapper {
  overflow: hidden;
}
.offer-wrapper .breadcrumbs-wrapper {
  background: #5E8D83;
  mix-blend-mode: multiply;
  min-height: 46px;
}
.offer-wrapper .breadcrumbs-wrapper .breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .offer-wrapper .breadcrumbs-wrapper .breadcrumbs {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.offer-wrapper .breadcrumbs-wrapper .breadcrumbs li {
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 138.889% */
  font-variant: all-small-caps;
  padding: 9px 3px;
}
@media screen and (max-width: 900px) {
  .offer-wrapper .breadcrumbs-wrapper .breadcrumbs li:nth-child(even) {
    display: none;
  }
}
.offer-wrapper .breadcrumbs-wrapper .breadcrumbs li:last-child {
  font-weight: 600;
}
.offer-wrapper .breadcrumbs-wrapper .breadcrumbs li a {
  text-decoration: none;
  color: inherit;
}
.offer-wrapper .breadcrumbs-wrapper .breadcrumbs li.current {
  font-weight: normal;
  font-variant: normal;
}
.offer-wrapper .offer-content-wrapper {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 20px;
}
.offer-wrapper .offer-content-wrapper .offer-content-col-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
.offer-wrapper .offer-content-wrapper .offer-content-col-1 .offer-image {
  width: 464px;
  height: 499px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.offer-wrapper .offer-content-wrapper .offer-content-col-2 {
  padding: 50px;
}
.offer-wrapper .offer-content-wrapper .offer-content-col-2 .offer-content-buttons {
  /* Responsive styles */
}
.offer-wrapper .offer-content-wrapper .offer-content-col-2 .offer-content-buttons button {
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
  border-radius: 2px;
  background: #FE7F4C;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  display: inline-flex;
  height: 62px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  margin-right: 20px;
}
.offer-wrapper .offer-content-wrapper .offer-content-col-2 .offer-content-buttons .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.offer-wrapper .offer-content-wrapper .offer-content-col-2 .offer-content-buttons .modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.offer-wrapper .offer-content-wrapper .offer-content-col-2 .offer-content-buttons .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .offer-wrapper .offer-content-wrapper .offer-content-col-2 .offer-content-buttons .modal-content {
    width: 90%;
  }
}
.offer-wrapper .offer-attributes-wrapper .tabs-container {
  display: flex;
  background: #5E8D83;
  mix-blend-mode: multiply;
  min-height: 46px;
  padding-left: 46px;
}
.offer-wrapper .offer-attributes-wrapper .tab {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  height: 30px;
  margin: 8px;
  padding: 0 25px;
  cursor: pointer;
  text-transform: uppercase;
}
.offer-wrapper .offer-attributes-wrapper .tab.active {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #FFF;
}
.offer-wrapper .offer-attributes-wrapper .tab-content {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  border-top: none;
  padding-left: 52px;
}
.offer-wrapper .offer-attributes-wrapper .tab-content.active {
  display: block;
}
.offer-wrapper .related-products-wrapper .related-container {
  background: #5E8D83;
  mix-blend-mode: multiply;
  min-height: 46px;
  width: 100%;
  color: #FFF;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  padding: 0 25px;
  text-transform: uppercase;
  text-align: center;
}
.offer-wrapper .related-products-wrapper .related-container p {
  margin: 8px;
}
.offer-wrapper .related-products-wrapper .products-list-wrapper {
  padding: 12px;
}
.offer-wrapper .related-products-wrapper .products-list-wrapper .products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* Pięć kolumn */
  grid-gap: 20px;
}
.offer-wrapper .related-products-wrapper .products-list-wrapper .products:before {
  display: none;
}
.offer-wrapper .related-products-wrapper .products-list-wrapper .products .product {
  border-radius: 1px;
  border: 1px solid #DADADA;
  background: #FFF;
  padding: 15px;
  text-align: center;
  width: 90%;
}
.offer-wrapper .related-products-wrapper .products-list-wrapper .products .product h2 {
  min-height: 75px;
}
.offer-wrapper .related-products-wrapper .products-list-wrapper .products .product .price {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.offer-wrapper .related-products-wrapper .products-list-wrapper .products .product .add_to_cart_button {
  margin: 0 auto;
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  border-radius: 2px;
  background: #5E8D83;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  display: flex;
  width: 135px;
  height: 40px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.courses-wrapper {
  overflow: hidden;
}
.courses-wrapper .intro-block {
  min-height: 480px;
  overflow: hidden;
}
.courses-wrapper .intro-block .item {
  min-height: inherit;
  background-size: cover;
  background-position: center center;
  height: 100%;
}
.courses-wrapper .intro-block .item .overlay {
  min-height: inherit;
  background: linear-gradient(107deg, #5E8D83BB 61.78%, rgba(94, 141, 131, 0) 61.78%, #FFFFFF70 61.78%);
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5% 10%;
}
@media screen and (max-width: 1050px) {
  .courses-wrapper .intro-block .item .overlay {
    background: #5E8D83BB;
  }
}
.courses-wrapper .intro-block .item .overlay .intro-label {
  border-radius: 2px;
  background: #FE7F4C;
  color: #FFF;
  display: inline-block;
  padding: 0 10px;
  width: 130px;
  text-align: center;
}
.courses-wrapper .intro-block .item .overlay .intro-label p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.courses-wrapper .intro-block .item .overlay .intro-header {
  width: 50%;
}
@media screen and (max-width: 1050px) {
  .courses-wrapper .intro-block .item .overlay .intro-header {
    width: 100% !important;
  }
}
.courses-wrapper .intro-block .item .overlay .intro-header h1 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  /* 121.212% */
}
@media screen and (max-width: 1050px) {
  .courses-wrapper .intro-block .item .overlay .intro-header h1 {
    font-size: 46px;
  }
}
.courses-wrapper .intro-block .item .overlay .intro-content {
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 178.571% */
  width: 50%;
}
@media screen and (max-width: 1050px) {
  .courses-wrapper .intro-block .item .overlay .intro-content {
    width: 100% !important;
  }
}
.courses-wrapper .breadcrumbs-block {
  padding: 40px 30px;
  overflow: hidden;
}
.courses-wrapper .breadcrumbs-block .breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .courses-wrapper .breadcrumbs-block .breadcrumbs {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.courses-wrapper .breadcrumbs-block .breadcrumbs li {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  font-variant: all-small-caps;
  margin-right: 5px;
}
@media screen and (max-width: 900px) {
  .courses-wrapper .breadcrumbs-block .breadcrumbs li:nth-child(even) {
    display: none;
  }
}
.courses-wrapper .breadcrumbs-block .breadcrumbs li:last-child {
  color: #5E8D83;
}
.courses-wrapper .breadcrumbs-block .breadcrumbs li a {
  text-decoration: none;
  color: inherit;
}
.courses-wrapper .breadcrumbs-block .breadcrumbs li.current {
  font-weight: normal;
  font-variant: normal;
}
.courses-wrapper .courses-block {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
}
@media screen and (max-width: 1600px) {
  .courses-wrapper .courses-block {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1050px) {
  .courses-wrapper .courses-block {
    grid-template-columns: 1fr;
  }
}
.courses-wrapper .courses-block .course-item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #5E8D83;
}
@media screen and (max-width: 700px) {
  .courses-wrapper .courses-block .course-item-wrapper {
    grid-template-columns: 1fr;
  }
}
.courses-wrapper .courses-block .course-item-wrapper .course-item-col-1 {
  width: 300px;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.courses-wrapper .courses-block .course-item-wrapper .course-item-col-2 {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.courses-wrapper .courses-block .course-item-wrapper .course-item-col-2 .course-item-row .course-content-row {
  padding: 30px 0;
  color: white;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 450px) {
  .courses-wrapper .courses-block .course-item-wrapper .course-item-col-2 .course-item-row .course-content-row {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.courses-wrapper .courses-block .course-item-wrapper .course-item-col-2 .course-item-row .course-content-row .course-content-content-col-1 .ionicon {
  color: white !important;
}
.courses-wrapper .courses-block .course-item-wrapper .course-item-col-2 .course-item-row .course-content-row .course-content-content-col-2 {
  min-width: 100px;
}
.courses-wrapper .courses-block .course-item-wrapper .course-item-col-2 .course-item-row .course-content-row .course-content-content-col-3 {
  margin-left: 10px;
}
.courses-wrapper .courses-block .course-item-wrapper .course-item-col-2 .course-item-row p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 166.667% */
}
.courses-wrapper .courses-block .course-item-wrapper .course-item-col-2 .course-item-row a {
  display: flex;
  width: 119px;
  height: 40px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  background: #FE7F4C;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  text-decoration: none;
}
.courses-wrapper .courses-block .course-item-wrapper .course-item-col-2 .course-title p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  /* 156.25% */
  font-variant: all-small-caps;
  margin: 0;
  padding: 0;
}
.courses-wrapper .courses-block .course-item-wrapper .course-item-col-2 .course-title p:hover {
  transform: scale(1.01);
}
.courses-wrapper .courses-block .course-item-wrapper .course-item-col-2 .offer-link {
  margin-bottom: 22px;
}
.courses-wrapper .courses-block .alert {
  width: 100%;
  padding: 20px;
}
.course-wrapper {
  overflow: hidden;
}
.course-wrapper .breadcrumbs-wrapper {
  background: #5E8D83;
  mix-blend-mode: multiply;
  min-height: 46px;
}
.course-wrapper .breadcrumbs-wrapper .breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .course-wrapper .breadcrumbs-wrapper .breadcrumbs {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.course-wrapper .breadcrumbs-wrapper .breadcrumbs li {
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 138.889% */
  font-variant: all-small-caps;
  padding: 9px 3px;
}
@media screen and (max-width: 900px) {
  .course-wrapper .breadcrumbs-wrapper .breadcrumbs li:nth-child(even) {
    display: none;
  }
}
.course-wrapper .breadcrumbs-wrapper .breadcrumbs li:last-child {
  font-weight: 600;
}
.course-wrapper .breadcrumbs-wrapper .breadcrumbs li a {
  text-decoration: none;
  color: inherit;
}
.course-wrapper .breadcrumbs-wrapper .breadcrumbs li.current {
  font-weight: normal;
  font-variant: normal;
}
.course-wrapper .course-content-wrapper {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 20px;
}
@media screen and (max-width: 1050px) {
  .course-wrapper .course-content-wrapper {
    grid-template-columns: 1fr;
  }
}
.course-wrapper .course-content-wrapper .course-content-col-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  overflow: hidden;
}
.course-wrapper .course-content-wrapper .course-content-col-1 .course-image {
  width: 464px;
  height: 499px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.course-wrapper .course-content-wrapper .course-content-col-2 {
  padding: 50px;
  overflow: hidden;
}
.course-wrapper .course-content-wrapper .course-content-col-2 .course-content-content {
  padding: 20px 0;
}
.course-wrapper .course-content-wrapper .course-content-col-2 .course-content-content .course-content-row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 450px) {
  .course-wrapper .course-content-wrapper .course-content-col-2 .course-content-content .course-content-row {
    display: block;
  }
}
.course-wrapper .course-content-wrapper .course-content-col-2 .course-content-content .course-content-row .course-content-content-col-2 {
  min-width: 180px;
}
.course-wrapper .course-content-wrapper .course-content-col-2 .course-content-content .course-content-row .course-content-content-col-3 {
  margin-left: 10px;
}
.course-wrapper .course-content-wrapper .course-content-col-2 .course-content-buttons {
  /* Responsive styles */
}
.course-wrapper .course-content-wrapper .course-content-col-2 .course-content-buttons button {
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
  border-radius: 2px;
  background: #FE7F4C;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  display: inline-flex;
  height: 62px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  margin-right: 20px;
}
.course-wrapper .course-content-wrapper .course-content-col-2 .course-content-buttons span {
  display: block;
  margin: 40px 0;
  font-size: 12px;
  color: gray;
}
.course-wrapper .course-content-wrapper .course-content-col-2 .course-content-buttons .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.course-wrapper .course-content-wrapper .course-content-col-2 .course-content-buttons .modal-content {
  background-color: white;
  margin: auto auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  height: 100vh;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  overflow-y: scroll;
}
.course-wrapper .course-content-wrapper .course-content-col-2 .course-content-buttons .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .course-wrapper .course-content-wrapper .course-content-col-2 .course-content-buttons .modal-content {
    width: 90%;
  }
}
.course-wrapper .course-attributes-wrapper .tabs-container {
  display: flex;
  background: #5E8D83;
  mix-blend-mode: multiply;
  min-height: 46px;
  padding-left: 46px;
}
@media screen and (max-width: 1050px) {
  .course-wrapper .course-attributes-wrapper .tabs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .course-wrapper .course-attributes-wrapper .tabs-container .tab {
    padding-top: 6px;
    font-size: 14px;
  }
}
@media screen and (max-width: 570px) {
  .course-wrapper .course-attributes-wrapper .tabs-container {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
  }
  .course-wrapper .course-attributes-wrapper .tabs-container .tab {
    padding-top: 6px;
    font-size: 14px;
  }
}
.course-wrapper .course-attributes-wrapper .tab {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  height: 30px;
  margin: 8px;
  padding: 0 25px;
  cursor: pointer;
  text-transform: uppercase;
}
.course-wrapper .course-attributes-wrapper .tab.active {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #FFF;
}
@media screen and (max-width: 1050px) {
  .course-wrapper .course-attributes-wrapper .tab.active {
    padding-top: 6px;
    font-size: 14px;
  }
}
.course-wrapper .course-attributes-wrapper .tab-content {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  border-top: none;
  padding-left: 52px;
}
.course-wrapper .course-attributes-wrapper .tab-content.active {
  display: block;
}
.projects-wrapper {
  overflow: hidden;
}
.projects-wrapper .intro-block {
  min-height: 480px;
  overflow: hidden;
}
.projects-wrapper .intro-block .item {
  min-height: inherit;
  background-size: cover;
  background-position: center center;
  height: 100%;
}
.projects-wrapper .intro-block .item .overlay {
  min-height: inherit;
  background: linear-gradient(107deg, #5E8D83BB 61.78%, rgba(94, 141, 131, 0) 61.78%, #FFFFFF70 61.78%);
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5% 10%;
}
@media screen and (max-width: 1050px) {
  .projects-wrapper .intro-block .item .overlay {
    background: #5E8D83BB;
  }
}
.projects-wrapper .intro-block .item .overlay .intro-label {
  border-radius: 2px;
  background: #FE7F4C;
  color: #FFF;
  display: inline-block;
  padding: 0 10px;
  width: 130px;
  text-align: center;
}
.projects-wrapper .intro-block .item .overlay .intro-label p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.projects-wrapper .intro-block .item .overlay .intro-header {
  width: 50%;
}
@media screen and (max-width: 1050px) {
  .projects-wrapper .intro-block .item .overlay .intro-header {
    width: 100% !important;
  }
}
.projects-wrapper .intro-block .item .overlay .intro-header h1 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  /* 121.212% */
}
@media screen and (max-width: 1050px) {
  .projects-wrapper .intro-block .item .overlay .intro-header h1 {
    font-size: 46px;
  }
}
.projects-wrapper .intro-block .item .overlay .intro-content {
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 178.571% */
  width: 50%;
}
@media screen and (max-width: 1050px) {
  .projects-wrapper .intro-block .item .overlay .intro-content {
    width: 100% !important;
  }
}
.projects-wrapper .breadcrumbs-block {
  padding: 40px 30px;
  overflow: hidden;
}
.projects-wrapper .breadcrumbs-block .breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .projects-wrapper .breadcrumbs-block .breadcrumbs {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.projects-wrapper .breadcrumbs-block .breadcrumbs li {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  font-variant: all-small-caps;
  margin-right: 5px;
}
@media screen and (max-width: 900px) {
  .projects-wrapper .breadcrumbs-block .breadcrumbs li:nth-child(even) {
    display: none;
  }
}
.projects-wrapper .breadcrumbs-block .breadcrumbs li:last-child {
  color: #5E8D83;
}
.projects-wrapper .breadcrumbs-block .breadcrumbs li a {
  text-decoration: none;
  color: inherit;
}
.projects-wrapper .breadcrumbs-block .breadcrumbs li.current {
  font-weight: normal;
  font-variant: normal;
}
.projects-wrapper .projects-block {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
}
.projects-wrapper .projects-block .project-item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #5E8D83;
}
.projects-wrapper .projects-block .project-item-wrapper .project-item-col-1 {
  width: 300px;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.projects-wrapper .projects-block .project-item-wrapper .project-item-col-2 {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.projects-wrapper .projects-block .project-item-wrapper .project-item-row {
  color: white;
}
.projects-wrapper .projects-block .project-item-wrapper .project-item-row .project-item-content {
  padding: 20px 0;
}
.projects-wrapper .projects-block .project-item-wrapper .project-item-row .project-item-content p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 166.667% */
}
.projects-wrapper .projects-block .project-item-wrapper .project-item-row .project-item-content a {
  display: flex;
  width: 119px;
  height: 40px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  background: #FE7F4C;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  text-decoration: none;
}
.projects-wrapper .projects-block .project-item-wrapper .project-item-row .project-item-data .projects-row-1 {
  display: flex;
  color: white !important;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  text-transform: capitalize;
  justify-content: end;
}
.projects-wrapper .projects-block .project-item-wrapper .project-item-row .project-item-data .projects-row-2 .progress-container {
  width: 100%;
  background-color: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
  height: 20px;
}
.projects-wrapper .projects-block .project-item-wrapper .project-item-row .project-item-data .projects-row-2 .progress-bar {
  height: 100%;
  width: var(--progress-width, 0);
  background-color: #FE7F4C !important;
  transition: width 0.5s ease-in-out;
}
.projects-wrapper .projects-block .project-item-wrapper .project-item-row .project-item-data .projects-row-3 {
  font-size: 12px;
}
.projects-wrapper .projects-block .project-item-wrapper .project-title p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 23px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  /* 156.25% */
  font-variant: all-small-caps;
  margin: 0;
  padding: 0;
}
.projects-wrapper .projects-block .project-item-wrapper .project-title p:hover {
  transform: scale(1.01);
}
.projects-wrapper .projects-block .project-item-wrapper .project-link {
  margin: 22px 0;
  border-radius: 2px;
  color: #07847F;
  font-family: Montserrat;
  font-size: 14px;
  padding: 15px 30px 15px 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  background: #F2F7F7;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  border: none;
}
.projects-wrapper .projects-block .project-item-wrapper .project-link a {
  text-decoration: none;
  color: #07847F;
}
.cosmetology-wrapper {
  overflow: hidden;
}
.cosmetology-wrapper .intro-block {
  min-height: 480px;
  overflow: hidden;
}
.cosmetology-wrapper .intro-block .item {
  min-height: inherit;
  background-size: cover;
  background-position: center center;
  height: 100%;
}
.cosmetology-wrapper .intro-block .item .overlay {
  min-height: inherit;
  background: linear-gradient(107deg, #5E8D83BB 61.78%, rgba(94, 141, 131, 0) 61.78%, #FFFFFF70 61.78%);
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5% 10%;
}
@media screen and (max-width: 1050px) {
  .cosmetology-wrapper .intro-block .item .overlay {
    background: #5E8D83BB;
  }
}
.cosmetology-wrapper .intro-block .item .overlay .intro-label {
  border-radius: 2px;
  background: #FE7F4C;
  color: #FFF;
  display: inline-block;
  padding: 0 10px;
  width: 130px;
  text-align: center;
}
.cosmetology-wrapper .intro-block .item .overlay .intro-label p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.cosmetology-wrapper .intro-block .item .overlay .intro-header {
  width: 50%;
}
@media screen and (max-width: 1050px) {
  .cosmetology-wrapper .intro-block .item .overlay .intro-header {
    width: 100% !important;
  }
}
.cosmetology-wrapper .intro-block .item .overlay .intro-header h1 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  /* 121.212% */
}
@media screen and (max-width: 1050px) {
  .cosmetology-wrapper .intro-block .item .overlay .intro-header h1 {
    font-size: 46px;
  }
}
.cosmetology-wrapper .intro-block .item .overlay .intro-content {
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 178.571% */
  width: 50%;
}
@media screen and (max-width: 1050px) {
  .cosmetology-wrapper .intro-block .item .overlay .intro-content {
    width: 100% !important;
  }
}
.cosmetology-wrapper .breadcrumbs-wrapper {
  background: #5E8D83;
  mix-blend-mode: multiply;
  min-height: 46px;
}
.cosmetology-wrapper .breadcrumbs-wrapper .breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .cosmetology-wrapper .breadcrumbs-wrapper .breadcrumbs {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.cosmetology-wrapper .breadcrumbs-wrapper .breadcrumbs li {
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 138.889% */
  font-variant: all-small-caps;
  padding: 9px 3px;
}
@media screen and (max-width: 900px) {
  .cosmetology-wrapper .breadcrumbs-wrapper .breadcrumbs li:nth-child(even) {
    display: none;
  }
}
.cosmetology-wrapper .breadcrumbs-wrapper .breadcrumbs li:last-child {
  font-weight: 600;
}
.cosmetology-wrapper .breadcrumbs-wrapper .breadcrumbs li a {
  text-decoration: none;
  color: inherit;
}
.cosmetology-wrapper .breadcrumbs-wrapper .breadcrumbs li.current {
  font-weight: normal;
  font-variant: normal;
}
.cosmetology-wrapper .page-content {
  padding: 0 5%;
}
.cosmetology-wrapper .page-content .step {
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.cosmetology-wrapper .page-content .step h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.cosmetology-wrapper .page-content .step h3 {
  color: darkgray;
}
.cosmetology-wrapper .page-content .step .item {
  width: 200px;
  height: 200px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: inline-flex;
  /* Używamy flexboxa */
  justify-content: center;
  /* Wyśrodkowanie w poziomie */
  align-items: center;
  /* Wyśrodkowanie w pionie */
}
.cosmetology-wrapper .page-content .step .item.active {
  border-color: #5E8D83;
  /* Zmiana koloru obramowania dla klasy "active" */
}
.cosmetology-wrapper .page-content #result {
  padding: 12px;
  text-align: center;
}
.cosmetology-wrapper .page-content #result .products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* Pięć kolumn */
  grid-gap: 20px;
}
.cosmetology-wrapper .page-content #result .products:before {
  display: none;
}
.cosmetology-wrapper .page-content #result .products .product {
  border-radius: 1px;
  border: 1px solid #DADADA;
  background: #FFF;
  padding: 15px;
  text-align: center;
  width: 90%;
}
.cosmetology-wrapper .page-content #result .products .product h2 {
  min-height: 75px;
}
.cosmetology-wrapper .page-content #result .products .product .price {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.cosmetology-wrapper .page-content #result .products .product .add_to_cart_button {
  margin: 0 auto;
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  border-radius: 2px;
  background: #5E8D83;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  display: flex;
  width: 135px;
  height: 40px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cosmetology-wrapper .page-content #nowaKosmetologia {
  margin: 0 auto;
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  border-radius: 2px;
  background: #5E8D83;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  display: flex;
  width: 200px;
  height: 50px;
  padding: 27px 60px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 0;
}
.cosmetology-wrapper .page-content .alert {
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  margin: auto;
}
.woocommerce-breadcrumb {
  background: #5E8D83;
  mix-blend-mode: multiply;
  min-height: 46px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white !important;
  font-variant: all-small-caps;
  font-size: 18px !important;
}
@media screen and (max-width: 900px) {
  .woocommerce-breadcrumb {
    display: grid;
    grid-template-columns: 1fr;
  }
  .woocommerce-breadcrumb .clay {
    display: none;
  }
}
.woocommerce-breadcrumb a {
  color: #FFF !important;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 138.889% */
  padding: 9px 3px;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  .woocommerce-breadcrumb a {
    padding: 0;
  }
}
.woocommerce-products-header {
  padding: 0 5%;
}
.products-wrapper {
  padding: 0 5%;
}
.products-wrapper .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Pięć kolumn */
  grid-gap: 20px;
}
.products-wrapper .products:before {
  display: none !important;
}
.products-wrapper .products .product {
  border-radius: 1px;
  border: 1px solid #DADADA;
  background: #FFF;
  padding: 15px;
  text-align: center;
  width: 90% !important;
  padding-bottom: 20px !important;
}
.products-wrapper .products .product h2 {
  min-height: 75px;
}
.products-wrapper .products .product .price {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.products-wrapper .products .product .add_to_cart_button {
  margin: 0 auto;
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  border-radius: 2px;
  background: #5E8D83;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  display: flex;
  width: 135px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.products-wrapper .woocommerce-pagination ul {
  border: 1px solid transparent !important;
}
.products-wrapper .woocommerce-pagination ul li {
  border-right: 1px solid transparent !important;
}
.products-wrapper .woocommerce-pagination ul li:last-child {
  border-right: 1px solid transparent !important;
}
.products-wrapper .woocommerce-pagination ul li a {
  border: solid 1px #5E8D83;
  margin: 2px;
  border-radius: 6px;
  color: #fe7f4c;
  font-size: 16px!important;
  font-weight: 600!important;
}
.products-wrapper .woocommerce-pagination ul li .current {
  background: #5E8D83 !important;
  border-radius: 6px;
  color: white !important;
  padding: 9px !important;
}
.products-wrapper .orderby {
  background-color: white;
  border: 1px solid #5E8D83 !important;
  padding: 5px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.product-wrapper {
  padding: 0 5%;
}
.product-wrapper form input {
  height: 36px;
}
.product-wrapper form .button {
  background-color: #5E8D83 !important;
  height: 40px;
}
.product-wrapper .woocommerce-product-gallery__image {
  display: flex;
  justify-content: center;
  /* Wyśrodkowanie w poziomie */
  align-items: center;
  /* Wyśrodkowanie w pionie */
}
.product-wrapper .images img {
  height: inherit !important;
  width: inherit !important;
}
.product-wrapper .upsells {
  display: none;
}
.product-wrapper .related-wrapper .products,
.product-wrapper .upsells .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Pięć kolumn */
  grid-gap: 20px;
}
.product-wrapper .related-wrapper .products:before,
.product-wrapper .upsells .products:before {
  display: none !important;
}
.product-wrapper .related-wrapper .products .product,
.product-wrapper .upsells .products .product {
  border-radius: 1px;
  border: 1px solid #DADADA;
  background: #FFF;
  padding: 15px;
  text-align: center;
  width: 90% !important;
  padding-bottom: 20px !important;
}
.product-wrapper .related-wrapper .products .product h2,
.product-wrapper .upsells .products .product h2 {
  min-height: 75px;
}
.product-wrapper .related-wrapper .products .product .price,
.product-wrapper .upsells .products .product .price {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.product-wrapper .related-wrapper .products .product .add_to_cart_button,
.product-wrapper .upsells .products .product .add_to_cart_button {
  margin: 0 auto;
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  border-radius: 2px;
  background: #5E8D83;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  display: flex;
  width: 135px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.tabs-container {
  display: flex;
  background: none;
  mix-blend-mode: multiply;
  min-height: 46px;
  padding-left: 46px;
}
@media (max-width: 600px) {
  .tabs-container {
    display: block;
    text-align: center;
  }
}
.tab {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  height: 30px;
  margin: 8px;
  padding: 0 25px;
  cursor: pointer;
}
.tab:not(:last-child) {
  border-right: 1px solid gray;
  padding-right: 36px;
}
@media (max-width: 600px) {
  .tab {
    border: none !important;
  }
}
.tab.active {
  color: #FE7F4C;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #FFF;
}
.tab-content {
  display: none;
  padding: 20px;
  /*border: 1px solid #ccc;*/
  border-top: none;
  padding-left: 52px;
}
.tab-content.active {
  display: block;
}
.shop_products_block .products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* Pięć kolumn */
  grid-gap: 20px;
}
@media (max-width: 1050px) {
  .shop_products_block .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .shop_products_block .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 440px) {
  .shop_products_block .products {
    grid-template-columns: repeat(1, 1fr);
  }
}
.shop_products_block .products:before {
  display: none !important;
}
.shop_products_block .products .product {
  border-radius: 1px;
  border: 1px solid #DADADA;
  background: #FFF;
  padding: 15px;
  text-align: center;
  width: 90% !important;
  padding-bottom: 20px !important;
}
.shop_products_block .products .product h2 {
  min-height: 75px;
}
.shop_products_block .products .product .price {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.shop_products_block .products .product .add_to_cart_button {
  margin: 0 auto;
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  border-radius: 2px;
  background: #5E8D83;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  display: flex;
  width: 135px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.woocommerce-pagination ul {
  border: 1px solid transparent !important;
}
.woocommerce-pagination ul li {
  border-right: 1px solid transparent !important;
}
.woocommerce-pagination ul li:last-child {
  border-right: 1px solid transparent !important;
}
.woocommerce-pagination ul li a {
  border: solid 1px #5E8D83;
  margin: 2px;
  border-radius: 6px;
  color: #fe7f4c;
  font-size: 16px!important;
  font-weight: 600!important;
}
.woocommerce-pagination ul li .current {
  background: #5E8D83 !important;
  border-radius: 6px;
  color: white !important;
  padding: 9px !important;
}
.orderby {
  background-color: white;
  border: 1px solid #5E8D83 !important;
  padding: 5px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.cart-icon {
  position: relative;
}
.cart-icon img {
  width: 30px;
  /* Dostosuj rozmiar ikony do swoich potrzeb */
}
.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #ff0000;
  /* Dostosuj kolor tła */
  color: #ffffff;
  /* Dostosuj kolor tekstu */
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 12px;
  /* Dostosuj rozmiar czcionki */
}
.amount_buttons .item_plus {
  cursor: pointer;
  border-radius: 3px;
  background: #5E8D83;
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 15px;
  border: none;
  margin: 5px;
}
.amount_buttons .item_minus {
  cursor: pointer;
  border-radius: 3px;
  background: #5E8D83;
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 15px;
  border: none;
  margin: 5px;
}
.content-area {
  max-width: 1600px;
  margin: 0 auto;
}
.shop-products {
  display: grid;
  grid-template-columns: 20% 80%;
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  .shop-products {
    grid-template-columns: 100%;
  }
}
.shop-products .col1 {
  /* Stylizacja strzałek do menu rozwijalnego */
}
.shop-products .col1 .product-categories-menu .toggle-submenu {
  margin-left: 5px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .shop-products .col2 .products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .shop-products .col2 .products li {
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 550px) {
  .shop-products .col2 .products {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .shop-products .col2 .products li {
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 370px) {
  .shop-products .col2 .products {
    display: grid;
    grid-template-columns: 1fr;
  }
  .shop-products .col2 .products li {
    margin: 0 auto !important;
  }
}
#search_result_block {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* Pięć kolumn */
  grid-gap: 20px;
}
@media (max-width: 1050px) {
  #search_result_block {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  #search_result_block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 440px) {
  #search_result_block {
    grid-template-columns: repeat(1, 1fr);
  }
}
#search_result_block:before {
  display: none !important;
}
#search_result_block .product {
  border-radius: 1px;
  border: 1px solid #DADADA;
  background: #FFF;
  padding: 15px;
  text-align: center;
  width: 90% !important;
  padding-bottom: 20px !important;
}
#search_result_block .product h2 {
  min-height: 75px;
}
#search_result_block .product .price {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#search_result_block .product .add_to_cart_button {
  margin: 0 auto;
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  border-radius: 2px;
  background: #5E8D83;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  display: flex;
  width: 135px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 10px;
}
.woocommerce-MyAccount-navigation a {
  color: #0073e6;
  text-decoration: none;
  transition: color 0.3s ease;
}
.woocommerce-MyAccount-navigation a:hover {
  color: #0051a8;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.woocommerce-MyAccount-content {
  animation: fadeIn 1s ease;
}
.woocommerce-MyAccount-content .woocommerce-message {
  background-color: #4caf50;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.woocommerce-MyAccount-content a {
  color: #0073e6;
  text-decoration: none;
  transition: color 0.3s ease;
}
.woocommerce-MyAccount-content a:hover {
  color: #0051a8;
}
.woocommerce-MyAccount-content button .button {
  background-color: #0073e6;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 24px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.woocommerce-MyAccount-content button .button:hover {
  background-color: #0051a8;
}
.woocommerce-MyAccount-content h2 {
  font-size: 28px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 2px solid #0073e6;
  padding-bottom: 10px;
}
.woocommerce-MyAccount-content form .login {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
  .single-product .related-wrapper .products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr !important;
  }
  .single-product .related-wrapper .products li {
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 615px) {
  .single-product .related-wrapper .products {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
  }
  .single-product .related-wrapper .products li {
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 430px) {
  .single-product .related-wrapper .products {
    display: grid;
    grid-template-columns: 1fr !important;
  }
  .single-product .related-wrapper .products li {
    margin: 0 auto !important;
  }
}
/*# sourceMappingURL=theme.css.map */@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaA.ttf) format('truetype');
}
/*search page styling*/
.result {
  margin-bottom: 30px;
}
.result form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  margin-bottom: 2.5rem;
  padding: 1.25rem;
}
.result form .search {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.result form .search-field {
  font-size: 1rem;
  min-height: 4rem;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  padding: 0.5rem 0.75rem;
  flex: 80%;
}
.result form .search-submit {
  flex: 20%;
  border-radius: 4px;
  background: #5E8D83;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.2);
  color: #FFF;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 14px */
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  border: none;
  cursor: pointer;
}
.result .result-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  margin-bottom: 2.5rem;
  padding: 1.25rem;
}
.result .search_result {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.result .search_result li {
  flex: 100%;
  background-color: white;
  padding: 3em 2em;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  border-style: solid;
  text-align: center;
  border-width: 1px;
  border-color: #dcdcde;
  border-radius: 10px;
}
.result .search_result li a {
  text-decoration: none;
}
/*# sourceMappingURL=wyszukiwarka.css.map */@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaA.ttf) format('truetype');
}
.wp-site-blocks {
  padding-bottom: 0;
  padding-top: 0;
  /*overflow: hidden;*/
}
.wp-block-post-title {
  /*font-size: clamp(3.2rem, 4vw, 6rem);*/
  line-height: 1;
  text-align: center;
}
.wp-block-gallery {
  margin: 0 !important;
}
#wp--skip-link--target {
  margin-top: 0 !important;
}
.container {
  margin-left: 10vw;
  margin-right: 10vw;
  max-width: none;
  width: auto;
}
@media (max-width: 650px) {
  .container {
    margin-left: 2vw;
    margin-right: 2vw;
  }
}
.container h2,
.container h3,
.container h4,
.container h5 {
  margin: 0 !important;
  min-width: 100%;
}
.container p {
  margin: 0 !important;
  min-width: 100%;
}
.container ol,
.container ul {
  margin: 0 !important;
  min-width: 100%;
}
#simpleMap {
  margin-bottom: 5vh !important;
}
#simpleMap div {
  margin: 0 !important;
}
.btn-slider a {
  background-color: #fdb32c !important;
  color: yellow;
  transition: all 0.5s ease-in-out;
}
.btn-slider a:focus {
  background-color: #fecc70 !important;
}
.btn-slider a:hover {
  transition: all 0.5s ease-in-out;
  background-color: #fecc70 !important;
}
.ggbl_next:focus {
  border-left: 2vw solid rgba(0, 0, 0, 0.9) !important;
}
.ggbl_prev:focus {
  border-right: 2vw solid rgba(0, 0, 0, 0.9) !important;
}
.entry-content p,
.wp-block-column p,
article p,
.entry-content ol li,
.wp-block-column ol li,
article ol li {
  line-height: 2 !important;
  /*text-align: left !important;*/
  /*text-justify: inter-word !important;*/
}
.entry-content ul,
.wp-block-column ul,
article ul {
  margin: 0 !important;
}
.entry-content ul li,
.wp-block-column ul li,
article ul li {
  line-height: 2 !important;
}
.slider-button:hover {
  background-color: #990924;
  border-radius: 4px;
}
.slider-button a:focus {
  background-color: #fecc70 !important;
}
.fund-img {
  max-width: none !important;
}
#main_menu .menu-item:focus-within a {
  color: black !important;
}
#main_menu .menu-item .sub-menu {
  display: none !important;
}
#main_menu .menu-item .sub-menu2 {
  display: block !important;
  position: absolute;
  top: 65px;
  background: white;
  z-index: 999;
  padding-left: 0;
}
#main_menu .menu-item .sub-menu2 ~ a {
  color: black !important;
}
#main_menu .menu-item .sub-menu2 a {
  color: black !important;
}
#main_menu .menu-item .sub-menu2 li {
  height: inherit !important;
  border-bottom: 1px solid gray;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
  min-height: 60px;
}
#main_menu .menu-item .sub-menu2 li a {
  padding-left: 5px;
  padding-right: 5px;
  width: 95% !important;
  min-height: 60px;
  height: initial !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: black !important;
}
#main_menu .menu-item i {
  margin-right: 10px;
}
#main_menu .menu-item:hover a {
  color: black !important;
}
#main_menu .menu-item:hover .sub-menu {
  display: block !important;
  position: absolute;
  top: 65px;
  background: white;
  z-index: 999;
  padding-left: 0;
}
#main_menu .menu-item:hover .sub-menu li {
  height: inherit !important;
  border-bottom: 1px solid gray;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
  min-height: 60px;
}
#main_menu .menu-item:hover .sub-menu li a {
  padding-left: 5px;
  padding-right: 5px;
  width: 95% !important;
  min-height: 60px;
  height: initial !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: black !important;
}
#content {
  margin-top: 0px !important;
}
.sub {
  text-transform: none !important;
}
.active {
  background-color: #eee;
  /* lub inny styl według twojego wyboru */
}
.hiddenSearch {
  display: none;
}
.visibleSearch {
  display: block;
}
.support {
  background-size: cover;
  background-position: center;
}
.progress-container {
  width: 100%;
  background-color: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
  height: 20px;
}
.progress-bar {
  height: 100%;
  width: var(--progress-width, 0);
  background-color: #4caf50;
  transition: width 0.5s ease-in-out;
}
.news-items-item-image-block {
  height: 273px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
a:focus {
  color: #ffffff !important;
  background: #FE7F4C;
}
.offers-items .offer-items-item-content {
  min-height: 150px;
}
.ionicon {
  height: 20px;
  margin-right: 20px;
  color: #5E8D83;
}
.icon_content {
  position: relative;
  top: -13px;
  left: -43px;
}
.icon_content_2 {
  position: relative;
  top: -14px;
  left: -47px;
}
.news-items-more {
  grid-column: span 3;
}
.pagination .current {
  background: #5E8D83;
}
.pagination a {
  border: solid 1px #5E8D83;
}
.post .grid-container {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 10px;
  overflow: hidden;
}
.address-mail-block {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.address-mail-block .wrapper-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.address-mail-block .wrapper-2 .nav-label {
  color: #8BA4B1;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.address-mail-block .wrapper-2 .nav-content a {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.woocommerce-cart #coupon_code,
.woocommerce-checkout #coupon_code {
  width: 200px;
  height: 36px;
}
.woocommerce-cart input,
.woocommerce-checkout input,
.woocommerce-cart .wc-poczta__input,
.woocommerce-checkout .wc-poczta__input {
  border: 1px solid #ccc;
  /* Grubość i styl obramowania */
  border-radius: 3px;
  /* Zaokrąglone rogi */
  padding: 10px;
  /* Wewnętrzny odstęp */
  font-size: 16px;
  /* Rozmiar czcionki */
  outline: none;
  /* Usunięcie obramowania po kliknięciu */
}
.woocommerce-cart input:focus,
.woocommerce-checkout input:focus,
.woocommerce-cart .wc-poczta__input:focus,
.woocommerce-checkout .wc-poczta__input:focus {
  border-color: #007bff;
  /* Kolor obramowania po kliknięciu */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  /* Cień po kliknięciu */
}
.woocommerce-cart .shop_table,
.woocommerce-checkout .shop_table {
  font-size: 12px !important;
}
.woocommerce-cart .shop_table tr th:first-child,
.woocommerce-checkout .shop_table tr th:first-child {
  width: 10% !important;
}
.woocommerce-cart .cart_item,
.woocommerce-checkout .cart_item {
  font-size: 12px !important;
}
.woocommerce-cart .iworks-omnibus,
.woocommerce-checkout .iworks-omnibus {
  margin: 0 !important;
}
.woocommerce-cart .breadcrumbs-block,
.woocommerce-checkout .breadcrumbs-block {
  padding-left: 8vw;
  padding-right: 8vw;
}
.woocommerce-cart .checkout-button,
.woocommerce-checkout .checkout-button,
.woocommerce-cart #place_order,
.woocommerce-checkout #place_order {
  background-color: #5e8d83 !important;
}
.woocommerce-cart .actions,
.woocommerce-checkout .actions {
  display: revert !important;
}
.woocommerce-cart .actions button,
.woocommerce-checkout .actions button {
  background-color: #5e8d83 !important;
  color: white;
  font-size: 16px;
  height: 36px;
}
.woocommerce-cart .actions button:disabled,
.woocommerce-checkout .actions button:disabled {
  color: white !important;
}
.woocommerce-cart .cart_items,
.woocommerce-checkout .cart_items {
  float: left;
  width: 48%;
}
@media (max-width: 1200px) {
  .woocommerce-cart .cart_items,
  .woocommerce-checkout .cart_items {
    clear: both;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .woocommerce-cart .cart_totals,
  .woocommerce-checkout .cart_totals {
    clear: both !important;
    width: 100% !important;
  }
}
.woocommerce-account .breadcrumbs-block {
  padding-left: 8vw;
  padding-right: 8vw;
}
@media screen and (max-width: 1192px) {
  .address-phone-block .nav-icon {
    overflow: hidden;
    height: 56px;
    width: 66px;
  }
  .address-phone-block .nav-icon .icon_content {
    top: -44px;
    left: 12px;
  }
}
@media screen and (max-width: 1050px) {
  .address-phone-block .nav-icon {
    overflow: hidden;
    height: 56px;
    width: 56px;
  }
  .address-phone-block .nav-icon .icon_content {
    top: -44px;
    left: 12px;
  }
}
@media screen and (max-width: 1312px) {
  .address-phone-block .nav-label {
    font-size: 13px !important;
  }
}
@media screen and (max-width: 1192px) {
  .address-phone-block .nav-label {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 1050px) {
  .address-phone-block .nav-label {
    font-size: 10px !important;
  }
}
@media screen and (max-width: 1312px) {
  .address-phone-block .nav-content a {
    font-size: 13px !important;
  }
}
@media screen and (max-width: 1192px) {
  .address-phone-block .nav-content a {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 1050px) {
  .address-phone-block .nav-content a {
    font-size: 10px !important;
  }
}
@media screen and (max-width: 900px) {
  .actions .actions-content {
    width: 100% !important;
  }
}
@media screen and (max-width: 900px) {
  .actions .actions-list {
    width: 100% !important;
  }
}
@media screen and (max-width: 900px) {
  .actions .actions-list ul {
    display: grid;
    grid-template-columns: 1fr;
  }
  .actions .actions-list ul li .actions-list-wrapper {
    display: grid;
    grid-template-columns: 10% 90%;
  }
}
@media screen and (max-width: 1600px) {
  .about-image-2 {
    bottom: -10%;
  }
}
@media screen and (max-width: 1400px) {
  .about-image-2 {
    bottom: 3%;
  }
}
@media screen and (max-width: 1200px) {
  .about-image-2 {
    bottom: 3%;
  }
}
@media screen and (max-width: 1000px) {
  .about-image-2 {
    bottom: 38%;
  }
}
@media screen and (max-width: 777px) {
  .about-image-2 {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .projects-col-1,
  .projects-col-2 {
    font-size: 12px;
  }
}
.projects-items-item-image {
  height: 280px;
}
.projects-items-item-title {
  height: 80px;
}
/*# sourceMappingURL=override.css.map *//**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(//fundacjarozwojuosobistego.pl/wp-content/themes/soft-komp/node_modules/owl.carousel/dist/assets/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}.sk-carousel {
  min-height: 620px;
  overflow: hidden;
}
.sk-carousel .owl-stage {
  height: 620px;
}
.sk-carousel .owl-nav {
  position: relative;
  top: -90px;
}
@media (max-width: 1050px) {
  .sk-carousel .owl-nav {
    top: -52px;
    width: 48%;
  }
}
.sk-carousel .owl-nav span {
  font-size: 34px;
  line-height: 0.4;
  color: white;
}
.sk-carousel .owl-nav span:hover {
  background-color: none;
}
.sk-carousel .owl-dots {
  position: relative;
  top: -90px;
}
@media (max-width: 1050px) {
  .sk-carousel .owl-dots {
    width: 48%;
    margin-left: 52%;
  }
}
.sk-carousel .owl-dots .owl-dot {
  background: rgba(255, 255, 255, 0);
  opacity: 1;
  padding: 2px;
  box-shadow: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 0px;
  margin: 5px;
  transition: all 0.3s;
}
.sk-carousel .owl-dots .owl-dot.active {
  background: #fff;
  border: 2px solid #ffffff;
  padding: 3px;
}
.sk-carousel .owl-dots .owl-dot.active span {
  background: none;
  margin: 6px 3px;
}
.sk-carousel .owl-dots .owl-dot.active span:hover {
  background: none;
}
.sk-carousel .owl-dots .owl-dot span {
  background: none;
  width: 0;
  height: 0;
  margin: 4px 2px;
}
.sk-carousel .owl-dots .owl-dot span:hover {
  background: none;
}
.sk-carousel .item {
  background-size: cover;
  background-position: center center;
  height: 100%;
  /* or whatever height you want */
}
.sk-carousel .overlay {
  background: linear-gradient(107deg, #5E8D83BB 61.78%, rgba(94, 141, 131, 0) 61.78%, #FFFFFF70 61.78%);
  height: 100%;
  position: relative;
}
.sk-carousel .owl-item {
  height: 100%;
  background-color: #028090;
  position: relative;
  color: white;
}
.sk-carousel .owl-item img {
  height: 100%;
  width: auto;
  /* Aby zachować proporcje obrazu */
}
.sk-carousel .owl-item .slide-header {
  padding: 5px 45px;
  width: 50%;
}
.sk-carousel .owl-item .slide-header .h1 {
  color: white !important;
}
.sk-carousel .owl-item .slide-logo {
  height: 100px;
  width: inherit;
  position: absolute;
  right: 15px;
  top: 15px;
}
@media (min-width: 782px) and (max-width: 1300px) {
  .sk-carousel .owl-item .slide-logo {
    padding: 0 45px;
    position: relative;
    width: 100%;
  }
}
@media (max-width: 450px) {
  .sk-carousel .owl-item .slide-logo {
    padding: 0 45px;
    position: relative;
    width: 100%;
  }
}
.sk-carousel .owl-item .slide-content {
  padding: 5px 45px;
}
@media (max-width: 1024px) {
  .sk-carousel .owl-item .slide-content {
    font-size: 14px;
  }
  .sk-carousel .owl-item .slide-content p {
    line-height: 1.3 !important;
  }
}
.sk-carousel .owl-item .slide-applications {
  position: absolute;
  bottom: 140px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  grid-gap: 10px;
}
@media (max-width: 1300px) {
  .sk-carousel .owl-item .slide-applications {
    grid-template-columns: repeat(3, 1fr);
    bottom: 90px;
    font-size: 12px;
    grid-gap: 2px;
  }
}
.sk-carousel .owl-item .slide-applications > * {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sk-carousel .owl-item .slide-applications .application {
  height: 80px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 1300px) {
  .sk-carousel .owl-item .slide-applications .application {
    height: 80px;
  }
}
.sk-carousel .owl-item .slide-applications .application div {
  display: block;
  text-align: center;
}
.sk-carousel .owl-item .slide-applications .application div img {
  margin: auto;
}
@media (min-width: 782px) and (max-width: 1300px) {
  .sk-carousel .owl-item .slide-applications .application div img {
    height: 50px;
  }
}
@media (max-width: 450px) {
  .sk-carousel .owl-item .slide-applications .application div img {
    height: 68px;
  }
}
.sk-carousel .owl-item .slide-applications .application div p {
  display: block;
}
/*# sourceMappingURL=sk_carousel.css.map */.fs-free-shipping-notice-and-button-wrapper{align-content:start;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.fs-free-shipping-notice-continue-shopping-button-wrapper,.fs-free-shipping-notice-text-and-progress-bar-wrapper{flex:0 1 auto;margin:0 .5em}.fs-free-shipping-notice-progress-bar-wrapper{align-items:center;display:flex;flex-direction:row}.fs-free-shipping-notice-progress-bar{border:1px solid #fff;border-radius:10px;height:10px;margin-left:10px;margin-right:10px;position:relative;width:100%}.fs-free-shipping-notice-progress-bar>span{background-color:#fff;border-bottom-left-radius:10px;border-top-left-radius:10px;display:block;height:100%;overflow:hidden;position:relative}.button.flexible-shipping-free-shipping-button{margin-left:0}.intl-tel-input{position:relative;display:inline-block}.intl-tel-input *{box-sizing:border-box;-moz-box-sizing:border-box}.intl-tel-input .hide{display:none}.intl-tel-input .v-hide{visibility:hidden}.intl-tel-input input,.intl-tel-input input[type=tel],.intl-tel-input input[type=text]{position:relative;z-index:0;margin-top:0!important;margin-bottom:0!important;padding-right:36px;margin-right:0}.intl-tel-input .flag-container{position:absolute;top:0;bottom:0;right:0;padding:1px}.intl-tel-input .selected-flag{z-index:1;position:relative;width:36px;height:100%;padding:0 0 0 8px}.intl-tel-input .selected-flag .iti-flag{position:absolute;top:0;bottom:0;margin:auto}.intl-tel-input .selected-flag .iti-arrow{position:absolute;top:50%;margin-top:-2px;right:6px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.intl-tel-input .selected-flag .iti-arrow.up{border-top:none;border-bottom:4px solid #555}.intl-tel-input .country-list{position:absolute;z-index:2;list-style:none;text-align:left;padding:0;margin:0 0 0 -1px;box-shadow:1px 1px 4px rgba(0,0,0,.2);background-color:#fff;border:1px solid #ccc;white-space:nowrap;max-height:200px;overflow-y:scroll;-webkit-overflow-scrolling:touch}.intl-tel-input .country-list.dropup{bottom:100%;margin-bottom:-1px}.intl-tel-input .country-list .flag-box{display:inline-block;width:20px}@media (max-width:500px){.intl-tel-input .country-list{white-space:normal}}.intl-tel-input .country-list .divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.intl-tel-input .country-list .country{padding:5px 10px}.intl-tel-input .country-list .country .dial-code{color:#999}.intl-tel-input .country-list .country.highlight{background-color:rgba(0,0,0,.05)}.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .dial-code,.intl-tel-input .country-list .flag-box{vertical-align:middle}.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .flag-box{margin-right:6px}.intl-tel-input.allow-dropdown input,.intl-tel-input.allow-dropdown input[type=tel],.intl-tel-input.allow-dropdown input[type=text],.intl-tel-input.separate-dial-code input,.intl-tel-input.separate-dial-code input[type=tel],.intl-tel-input.separate-dial-code input[type=text]{padding-right:6px;padding-left:52px;margin-left:0}.intl-tel-input.allow-dropdown .flag-container,.intl-tel-input.separate-dial-code .flag-container{right:auto;left:0}.intl-tel-input.allow-dropdown .selected-flag,.intl-tel-input.separate-dial-code .selected-flag{width:46px}.intl-tel-input.allow-dropdown .flag-container:hover{cursor:pointer}.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag{background-color:rgba(0,0,0,.05)}.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover{cursor:default}.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover .selected-flag,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover .selected-flag{background-color:transparent}.intl-tel-input.separate-dial-code .selected-flag{background-color:rgba(0,0,0,.05);display:table}.intl-tel-input.separate-dial-code .selected-dial-code{display:table-cell;vertical-align:middle;padding-left:28px}.intl-tel-input.separate-dial-code.iti-sdc-2 input,.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text]{padding-left:66px}.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag{width:60px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text]{padding-left:76px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag{width:70px}.intl-tel-input.separate-dial-code.iti-sdc-3 input,.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text]{padding-left:74px}.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag{width:68px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text]{padding-left:84px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag{width:78px}.intl-tel-input.separate-dial-code.iti-sdc-4 input,.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text]{padding-left:82px}.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag{width:76px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text]{padding-left:92px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag{width:86px}.intl-tel-input.separate-dial-code.iti-sdc-5 input,.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text]{padding-left:90px}.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag{width:84px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text]{padding-left:100px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag{width:94px}.intl-tel-input.iti-container{position:absolute;top:-1000px;left:-1000px;z-index:1060;padding:1px}.intl-tel-input.iti-container:hover{cursor:pointer}.iti-mobile .intl-tel-input.iti-container{top:30px;bottom:30px;left:30px;right:30px;position:fixed}.iti-mobile .intl-tel-input .country-list{max-height:100%;width:100%}.iti-mobile .intl-tel-input .country-list .country{padding:10px 10px;line-height:1.5em}.iti-flag{width:20px}.iti-flag.be{width:18px}.iti-flag.ch{width:15px}.iti-flag.mc{width:19px}.iti-flag.ne{width:18px}.iti-flag.np{width:13px}.iti-flag.va{width:15px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti-flag{background-size:5652px 15px}}.iti-flag.ac{height:10px;background-position:0 0}.iti-flag.ad{height:14px;background-position:-22px 0}.iti-flag.ae{height:10px;background-position:-44px 0}.iti-flag.af{height:14px;background-position:-66px 0}.iti-flag.ag{height:14px;background-position:-88px 0}.iti-flag.ai{height:10px;background-position:-110px 0}.iti-flag.al{height:15px;background-position:-132px 0}.iti-flag.am{height:10px;background-position:-154px 0}.iti-flag.ao{height:14px;background-position:-176px 0}.iti-flag.aq{height:14px;background-position:-198px 0}.iti-flag.ar{height:13px;background-position:-220px 0}.iti-flag.as{height:10px;background-position:-242px 0}.iti-flag.at{height:14px;background-position:-264px 0}.iti-flag.au{height:10px;background-position:-286px 0}.iti-flag.aw{height:14px;background-position:-308px 0}.iti-flag.ax{height:13px;background-position:-330px 0}.iti-flag.az{height:10px;background-position:-352px 0}.iti-flag.ba{height:10px;background-position:-374px 0}.iti-flag.bb{height:14px;background-position:-396px 0}.iti-flag.bd{height:12px;background-position:-418px 0}.iti-flag.be{height:15px;background-position:-440px 0}.iti-flag.bf{height:14px;background-position:-460px 0}.iti-flag.bg{height:12px;background-position:-482px 0}.iti-flag.bh{height:12px;background-position:-504px 0}.iti-flag.bi{height:12px;background-position:-526px 0}.iti-flag.bj{height:14px;background-position:-548px 0}.iti-flag.bl{height:14px;background-position:-570px 0}.iti-flag.bm{height:10px;background-position:-592px 0}.iti-flag.bn{height:10px;background-position:-614px 0}.iti-flag.bo{height:14px;background-position:-636px 0}.iti-flag.bq{height:14px;background-position:-658px 0}.iti-flag.br{height:14px;background-position:-680px 0}.iti-flag.bs{height:10px;background-position:-702px 0}.iti-flag.bt{height:14px;background-position:-724px 0}.iti-flag.bv{height:15px;background-position:-746px 0}.iti-flag.bw{height:14px;background-position:-768px 0}.iti-flag.by{height:10px;background-position:-790px 0}.iti-flag.bz{height:14px;background-position:-812px 0}.iti-flag.ca{height:10px;background-position:-834px 0}.iti-flag.cc{height:10px;background-position:-856px 0}.iti-flag.cd{height:15px;background-position:-878px 0}.iti-flag.cf{height:14px;background-position:-900px 0}.iti-flag.cg{height:14px;background-position:-922px 0}.iti-flag.ch{height:15px;background-position:-944px 0}.iti-flag.ci{height:14px;background-position:-961px 0}.iti-flag.ck{height:10px;background-position:-983px 0}.iti-flag.cl{height:14px;background-position:-1005px 0}.iti-flag.cm{height:14px;background-position:-1027px 0}.iti-flag.cn{height:14px;background-position:-1049px 0}.iti-flag.co{height:14px;background-position:-1071px 0}.iti-flag.cp{height:14px;background-position:-1093px 0}.iti-flag.cr{height:12px;background-position:-1115px 0}.iti-flag.cu{height:10px;background-position:-1137px 0}.iti-flag.cv{height:12px;background-position:-1159px 0}.iti-flag.cw{height:14px;background-position:-1181px 0}.iti-flag.cx{height:10px;background-position:-1203px 0}.iti-flag.cy{height:14px;background-position:-1225px 0}.iti-flag.cz{height:14px;background-position:-1247px 0}.iti-flag.de{height:12px;background-position:-1269px 0}.iti-flag.dg{height:10px;background-position:-1291px 0}.iti-flag.dj{height:14px;background-position:-1313px 0}.iti-flag.dk{height:15px;background-position:-1335px 0}.iti-flag.dm{height:10px;background-position:-1357px 0}.iti-flag.do{height:14px;background-position:-1379px 0}.iti-flag.dz{height:14px;background-position:-1401px 0}.iti-flag.ea{height:14px;background-position:-1423px 0}.iti-flag.ec{height:14px;background-position:-1445px 0}.iti-flag.ee{height:13px;background-position:-1467px 0}.iti-flag.eg{height:14px;background-position:-1489px 0}.iti-flag.eh{height:10px;background-position:-1511px 0}.iti-flag.er{height:10px;background-position:-1533px 0}.iti-flag.es{height:14px;background-position:-1555px 0}.iti-flag.et{height:10px;background-position:-1577px 0}.iti-flag.eu{height:14px;background-position:-1599px 0}.iti-flag.fi{height:12px;background-position:-1621px 0}.iti-flag.fj{height:10px;background-position:-1643px 0}.iti-flag.fk{height:10px;background-position:-1665px 0}.iti-flag.fm{height:11px;background-position:-1687px 0}.iti-flag.fo{height:15px;background-position:-1709px 0}.iti-flag.fr{height:14px;background-position:-1731px 0}.iti-flag.ga{height:15px;background-position:-1753px 0}.iti-flag.gb{height:10px;background-position:-1775px 0}.iti-flag.gd{height:12px;background-position:-1797px 0}.iti-flag.ge{height:14px;background-position:-1819px 0}.iti-flag.gf{height:14px;background-position:-1841px 0}.iti-flag.gg{height:14px;background-position:-1863px 0}.iti-flag.gh{height:14px;background-position:-1885px 0}.iti-flag.gi{height:10px;background-position:-1907px 0}.iti-flag.gl{height:14px;background-position:-1929px 0}.iti-flag.gm{height:14px;background-position:-1951px 0}.iti-flag.gn{height:14px;background-position:-1973px 0}.iti-flag.gp{height:14px;background-position:-1995px 0}.iti-flag.gq{height:14px;background-position:-2017px 0}.iti-flag.gr{height:14px;background-position:-2039px 0}.iti-flag.gs{height:10px;background-position:-2061px 0}.iti-flag.gt{height:13px;background-position:-2083px 0}.iti-flag.gu{height:11px;background-position:-2105px 0}.iti-flag.gw{height:10px;background-position:-2127px 0}.iti-flag.gy{height:12px;background-position:-2149px 0}.iti-flag.hk{height:14px;background-position:-2171px 0}.iti-flag.hm{height:10px;background-position:-2193px 0}.iti-flag.hn{height:10px;background-position:-2215px 0}.iti-flag.hr{height:10px;background-position:-2237px 0}.iti-flag.ht{height:12px;background-position:-2259px 0}.iti-flag.hu{height:10px;background-position:-2281px 0}.iti-flag.ic{height:14px;background-position:-2303px 0}.iti-flag.id{height:14px;background-position:-2325px 0}.iti-flag.ie{height:10px;background-position:-2347px 0}.iti-flag.il{height:15px;background-position:-2369px 0}.iti-flag.im{height:10px;background-position:-2391px 0}.iti-flag.in{height:14px;background-position:-2413px 0}.iti-flag.io{height:10px;background-position:-2435px 0}.iti-flag.iq{height:14px;background-position:-2457px 0}.iti-flag.ir{height:12px;background-position:-2479px 0}.iti-flag.is{height:15px;background-position:-2501px 0}.iti-flag.it{height:14px;background-position:-2523px 0}.iti-flag.je{height:12px;background-position:-2545px 0}.iti-flag.jm{height:10px;background-position:-2567px 0}.iti-flag.jo{height:10px;background-position:-2589px 0}.iti-flag.jp{height:14px;background-position:-2611px 0}.iti-flag.ke{height:14px;background-position:-2633px 0}.iti-flag.kg{height:12px;background-position:-2655px 0}.iti-flag.kh{height:13px;background-position:-2677px 0}.iti-flag.ki{height:10px;background-position:-2699px 0}.iti-flag.km{height:12px;background-position:-2721px 0}.iti-flag.kn{height:14px;background-position:-2743px 0}.iti-flag.kp{height:10px;background-position:-2765px 0}.iti-flag.kr{height:14px;background-position:-2787px 0}.iti-flag.kw{height:10px;background-position:-2809px 0}.iti-flag.ky{height:10px;background-position:-2831px 0}.iti-flag.kz{height:10px;background-position:-2853px 0}.iti-flag.la{height:14px;background-position:-2875px 0}.iti-flag.lb{height:14px;background-position:-2897px 0}.iti-flag.lc{height:10px;background-position:-2919px 0}.iti-flag.li{height:12px;background-position:-2941px 0}.iti-flag.lk{height:10px;background-position:-2963px 0}.iti-flag.lr{height:11px;background-position:-2985px 0}.iti-flag.ls{height:14px;background-position:-3007px 0}.iti-flag.lt{height:12px;background-position:-3029px 0}.iti-flag.lu{height:12px;background-position:-3051px 0}.iti-flag.lv{height:10px;background-position:-3073px 0}.iti-flag.ly{height:10px;background-position:-3095px 0}.iti-flag.ma{height:14px;background-position:-3117px 0}.iti-flag.mc{height:15px;background-position:-3139px 0}.iti-flag.md{height:10px;background-position:-3160px 0}.iti-flag.me{height:10px;background-position:-3182px 0}.iti-flag.mf{height:14px;background-position:-3204px 0}.iti-flag.mg{height:14px;background-position:-3226px 0}.iti-flag.mh{height:11px;background-position:-3248px 0}.iti-flag.mk{height:10px;background-position:-3270px 0}.iti-flag.ml{height:14px;background-position:-3292px 0}.iti-flag.mm{height:14px;background-position:-3314px 0}.iti-flag.mn{height:10px;background-position:-3336px 0}.iti-flag.mo{height:14px;background-position:-3358px 0}.iti-flag.mp{height:10px;background-position:-3380px 0}.iti-flag.mq{height:14px;background-position:-3402px 0}.iti-flag.mr{height:14px;background-position:-3424px 0}.iti-flag.ms{height:10px;background-position:-3446px 0}.iti-flag.mt{height:14px;background-position:-3468px 0}.iti-flag.mu{height:14px;background-position:-3490px 0}.iti-flag.mv{height:14px;background-position:-3512px 0}.iti-flag.mw{height:14px;background-position:-3534px 0}.iti-flag.mx{height:12px;background-position:-3556px 0}.iti-flag.my{height:10px;background-position:-3578px 0}.iti-flag.mz{height:14px;background-position:-3600px 0}.iti-flag.na{height:14px;background-position:-3622px 0}.iti-flag.nc{height:10px;background-position:-3644px 0}.iti-flag.ne{height:15px;background-position:-3666px 0}.iti-flag.nf{height:10px;background-position:-3686px 0}.iti-flag.ng{height:10px;background-position:-3708px 0}.iti-flag.ni{height:12px;background-position:-3730px 0}.iti-flag.nl{height:14px;background-position:-3752px 0}.iti-flag.no{height:15px;background-position:-3774px 0}.iti-flag.np{height:15px;background-position:-3796px 0}.iti-flag.nr{height:10px;background-position:-3811px 0}.iti-flag.nu{height:10px;background-position:-3833px 0}.iti-flag.nz{height:10px;background-position:-3855px 0}.iti-flag.om{height:10px;background-position:-3877px 0}.iti-flag.pa{height:14px;background-position:-3899px 0}.iti-flag.pe{height:14px;background-position:-3921px 0}.iti-flag.pf{height:14px;background-position:-3943px 0}.iti-flag.pg{height:15px;background-position:-3965px 0}.iti-flag.ph{height:10px;background-position:-3987px 0}.iti-flag.pk{height:14px;background-position:-4009px 0}.iti-flag.pl{height:13px;background-position:-4031px 0}.iti-flag.pm{height:14px;background-position:-4053px 0}.iti-flag.pn{height:10px;background-position:-4075px 0}.iti-flag.pr{height:14px;background-position:-4097px 0}.iti-flag.ps{height:10px;background-position:-4119px 0}.iti-flag.pt{height:14px;background-position:-4141px 0}.iti-flag.pw{height:13px;background-position:-4163px 0}.iti-flag.py{height:11px;background-position:-4185px 0}.iti-flag.qa{height:8px;background-position:-4207px 0}.iti-flag.re{height:14px;background-position:-4229px 0}.iti-flag.ro{height:14px;background-position:-4251px 0}.iti-flag.rs{height:14px;background-position:-4273px 0}.iti-flag.ru{height:14px;background-position:-4295px 0}.iti-flag.rw{height:14px;background-position:-4317px 0}.iti-flag.sa{height:14px;background-position:-4339px 0}.iti-flag.sb{height:10px;background-position:-4361px 0}.iti-flag.sc{height:10px;background-position:-4383px 0}.iti-flag.sd{height:10px;background-position:-4405px 0}.iti-flag.se{height:13px;background-position:-4427px 0}.iti-flag.sg{height:14px;background-position:-4449px 0}.iti-flag.sh{height:10px;background-position:-4471px 0}.iti-flag.si{height:10px;background-position:-4493px 0}.iti-flag.sj{height:15px;background-position:-4515px 0}.iti-flag.sk{height:14px;background-position:-4537px 0}.iti-flag.sl{height:14px;background-position:-4559px 0}.iti-flag.sm{height:15px;background-position:-4581px 0}.iti-flag.sn{height:14px;background-position:-4603px 0}.iti-flag.so{height:14px;background-position:-4625px 0}.iti-flag.sr{height:14px;background-position:-4647px 0}.iti-flag.ss{height:10px;background-position:-4669px 0}.iti-flag.st{height:10px;background-position:-4691px 0}.iti-flag.sv{height:12px;background-position:-4713px 0}.iti-flag.sx{height:14px;background-position:-4735px 0}.iti-flag.sy{height:14px;background-position:-4757px 0}.iti-flag.sz{height:14px;background-position:-4779px 0}.iti-flag.ta{height:10px;background-position:-4801px 0}.iti-flag.tc{height:10px;background-position:-4823px 0}.iti-flag.td{height:14px;background-position:-4845px 0}.iti-flag.tf{height:14px;background-position:-4867px 0}.iti-flag.tg{height:13px;background-position:-4889px 0}.iti-flag.th{height:14px;background-position:-4911px 0}.iti-flag.tj{height:10px;background-position:-4933px 0}.iti-flag.tk{height:10px;background-position:-4955px 0}.iti-flag.tl{height:10px;background-position:-4977px 0}.iti-flag.tm{height:14px;background-position:-4999px 0}.iti-flag.tn{height:14px;background-position:-5021px 0}.iti-flag.to{height:10px;background-position:-5043px 0}.iti-flag.tr{height:14px;background-position:-5065px 0}.iti-flag.tt{height:12px;background-position:-5087px 0}.iti-flag.tv{height:10px;background-position:-5109px 0}.iti-flag.tw{height:14px;background-position:-5131px 0}.iti-flag.tz{height:14px;background-position:-5153px 0}.iti-flag.ua{height:14px;background-position:-5175px 0}.iti-flag.ug{height:14px;background-position:-5197px 0}.iti-flag.um{height:11px;background-position:-5219px 0}.iti-flag.un{height:14px;background-position:-5241px 0}.iti-flag.us{height:11px;background-position:-5263px 0}.iti-flag.uy{height:14px;background-position:-5285px 0}.iti-flag.uz{height:10px;background-position:-5307px 0}.iti-flag.va{height:15px;background-position:-5329px 0}.iti-flag.vc{height:14px;background-position:-5346px 0}.iti-flag.ve{height:14px;background-position:-5368px 0}.iti-flag.vg{height:10px;background-position:-5390px 0}.iti-flag.vi{height:14px;background-position:-5412px 0}.iti-flag.vn{height:14px;background-position:-5434px 0}.iti-flag.vu{height:12px;background-position:-5456px 0}.iti-flag.wf{height:14px;background-position:-5478px 0}.iti-flag.ws{height:10px;background-position:-5500px 0}.iti-flag.xk{height:15px;background-position:-5522px 0}.iti-flag.ye{height:14px;background-position:-5544px 0}.iti-flag.yt{height:14px;background-position:-5566px 0}.iti-flag.za{height:14px;background-position:-5588px 0}.iti-flag.zm{height:14px;background-position:-5610px 0}.iti-flag.zw{height:10px;background-position:-5632px 0}.iti-flag{width:20px;height:15px;box-shadow:0 0 1px 0 #888;background-image:url(//fundacjarozwojuosobistego.pl/wp-content/plugins/woo-phone-validator/assets/vendor/img/flags.png);background-repeat:no-repeat;background-color:#dbdbdb;background-position:20px 0}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti-flag{background-image:url(//fundacjarozwojuosobistego.pl/wp-content/plugins/woo-phone-validator/assets/vendor/img/flags@2x.png)}}.iti-flag.np{background-color:transparent}.wc-pv-intl{overflow:visible!important}.wc-pv-intl .intl-tel-input{width:100%!important}.wc-pv-intl .intl-tel-input input{padding-left:55px!important}.wc-pv-intl.wc-pv-separate-dial-code .selected-flag{width:83px!important}.wc-pv-intl.wc-pv-separate-dial-code .intl-tel-input input{padding-left:88px!important}.pbl-container{display:flex;justify-content:center;flex-direction:column}.pbl-container .payu-list-banks{list-style-type:none;display:flex;flex-wrap:wrap;margin:0;padding:0;justify-content:center}.pbl-container .payu-list-banks li{padding:5px 3px 0}.pbl-container .payu-list-banks li.payu-inactive{opacity:.5;filter:grayscale(1)}.pbl-container .payu-list-banks li:not(.payu-inactive) label{cursor:pointer}.pbl-container .payu-list-banks li:not(.payu-inactive) label:hover{background:#ddd;border-color:#aaa}.pbl-container .payu-list-banks li label{padding:10px;display:flex;border:1px solid #bbb;transition:all 250ms;width:86px;justify-content:center;align-items:center}.pbl-container .payu-list-banks li label.active{background:#ddd;border-color:#aaa}.pbl-container .payu-list-banks li label img{width:auto;height:31px;object-fit:contain;margin:0 !important;padding:0}.pbl-container .payu-list-banks li label input{display:none}.pbl-container .pbl-error{padding-top:.5em;padding-bottom:.5em;margin-top:.5em;margin-bottom:.5em;display:none}.pbl-container .pbl-error:before{top:.5em}.payu-accept-conditions{margin-top:15px}.payu-accept-conditions .payu-conditions-description{font-size:12px;line-height:120%;margin-top:8px;text-align:justify}.payu-accept-conditions .payu-conditions-description>div{margin:5px 0}.payu-accept-conditions .payu-conditions-description a{text-decoration:underline}.payu-accept-conditions .payu-conditions-description .payu-read-more{text-decoration:underline;cursor:pointer}.payu-accept-conditions .payu-conditions-description .payu-more-hidden{display:none}#payu-card-container{max-width:350px;margin:10px auto 10px;text-align:left;box-sizing:border-box;border:1px solid #bbb;padding:5px;border-radius:5px;background-color:#ddd;color:#333}#payu-card-container .payu-sf-validation-error,#payu-card-container .payu-sf-technical-error{display:none;color:#b21b0f;font-size:13px}#payu-card-container .payu-card-form{background-color:#fff;padding:5px;border-radius:4px;border:1px solid rgba(0,0,0,0)}#payu-card-container .payu-secure-form-invalid:not(.payu-secure-form-focus){border-color:#b21b0f}#payu-card-container label{padding-bottom:2px;font-size:15px}.card-details{clear:both;overflow:auto;margin-top:10px}.card-details .expiration{width:47%;float:left;margin-right:5%}.card-details .cvv{width:47%;float:left}#tokenizeButton{border:none;background:#438f29;padding:8px 15px;cursor:pointer;color:#fff;display:table;margin:10px auto 0}.response-success{color:#438f29}.response-error{color:#900}.autonomy-payu-button{display:flex;align-items:center;text-decoration:none;margin:10px 0}.autonomy-payu-button img{margin-left:10px;width:50px;height:auto}label[for*=payment_method_payu] img{border-radius:0}.payu-block-method{gap:10px}.payu-block-method-logo{margin-left:5px}.payu-block-installments-label{display:flex;justify-content:space-between;width:100%}.payu-block-installments-label>div{align-items:center;display:flex}.payu-block-list-banks{display:flex;flex-direction:row;flex-wrap:wrap;gap:5px;justify-content:center;margin-top:10px}.payu-block-list-banks>.payu-bank{align-items:center;background-color:#fff;border:1px solid #ccc;cursor:pointer;display:flex;justify-content:center;padding:8px;transition:all 250ms;width:82px}.payu-block-list-banks>.payu-bank.disabled{cursor:not-allowed;filter:grayscale(1);opacity:.5}.payu-block-list-banks>.payu-bank:not(.disabled):hover{background:#eee;border-color:#13100d}.payu-block-list-banks>.payu-bank.active{background:#eee;border-color:#13100d}.payu-block-list-banks>.payu-bank>img{border-radius:0;height:28px;object-fit:contain;width:auto}.block-payu-card{display:flex;flex-wrap:wrap;gap:0 10px;margin:10px 0;padding:10px}.block-payu-card .payu-sf-validation-error{color:#b21b0f;font-size:13px}.block-payu-card>.block-payu-card-number{flex:1 0 100%}.block-payu-card>.block-payu-card-date,.block-payu-card .block-payu-card-cvv{flex:1 0 calc(50% - 10px)}.block-payu-card .payu-card-form{background-color:#fff;border:1px solid #999;border-radius:5px;padding:8px 6px}.block-payu-card .payu-card-form.payu-secure-form-focus{border-color:#666;box-shadow:0 0 0 1px #666}.block-payu-card .payu-card-form.payu-secure-form-invalid:not(.payu-secure-form-focus){border-color:#cc1818}/*! elementor - v3.24.0 - 15-10-2024 */
.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:flex;font-size:inherit;align-items:var(--icon-vertical-align,center)}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{align-self:center;padding-inline-start:5px}.elementor-widget .elementor-icon-list-icon{display:flex;position:relative;top:var(--icon-vertical-offset,initial)}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (min-width:-1){.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-widescreen-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-widescreen-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-widescreen-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-widescreen-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:-1){.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-laptop-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-laptop-align-left .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-laptop-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-laptop-align-right .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-laptop-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-laptop-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-laptop-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:-1){.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet_extra-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-tablet_extra-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet_extra-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:-1){.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile_extra-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-mobile_extra-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile_extra-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}/*! elementor - v3.24.0 - 15-10-2024 */
.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot);
  src: url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2) format("woff2"), url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff) format("woff"), url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf) format("truetype"), url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg#fontawesome) format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-bacteria:before {
  content: "\e059"; }

.fa-bacterium:before {
  content: "\e05a"; }

.fa-bahai:before {
  content: "\f666"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-tissue:before {
  content: "\e05b"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caravan:before {
  content: "\f8ff"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudflare:before {
  content: "\e07d"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-alt:before {
  content: "\f422"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dailymotion:before {
  content: "\e052"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-deezer:before {
  content: "\e077"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edge-legacy:before {
  content: "\e078"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-alt:before {
  content: "\f424"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-faucet:before {
  content: "\e005"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-firefox-browser:before {
  content: "\e007"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-pay:before {
  content: "\e079"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guilded:before {
  content: "\e07e"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-medical:before {
  content: "\e05c"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-sparkles:before {
  content: "\e05d"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-wash:before {
  content: "\e05e"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-handshake-alt-slash:before {
  content: "\e05f"; }

.fa-handshake-slash:before {
  content: "\e060"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-cowboy:before {
  content: "\f8c0"; }

.fa-hat-cowboy-side:before {
  content: "\f8c1"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-head-side-cough:before {
  content: "\e061"; }

.fa-head-side-cough-slash:before {
  content: "\e062"; }

.fa-head-side-mask:before {
  content: "\e063"; }

.fa-head-side-virus:before {
  content: "\e064"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hive:before {
  content: "\e07f"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hospital-user:before {
  content: "\f80d"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-house-user:before {
  content: "\e065"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-ideal:before {
  content: "\e013"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-innosoft:before {
  content: "\e080"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-instagram-square:before {
  content: "\e055"; }

.fa-instalod:before {
  content: "\e081"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-house:before {
  content: "\e066"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lungs-virus:before {
  content: "\e067"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-mdb:before {
  content: "\f8ca"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microblog:before {
  content: "\e01a"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mixer:before {
  content: "\e056"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse:before {
  content: "\f8cc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-octopus-deploy:before {
  content: "\e082"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-orcid:before {
  content: "\f8d2"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-arrows:before {
  content: "\e068"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-perbyte:before {
  content: "\e083"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-square:before {
  content: "\e01e"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-plane-slash:before {
  content: "\e069"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pump-medical:before {
  content: "\e06a"; }

.fa-pump-soap:before {
  content: "\e06b"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-record-vinyl:before {
  content: "\f8d9"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-rust:before {
  content: "\e07a"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-shield-virus:before {
  content: "\e06c"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopify:before {
  content: "\e057"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sink:before {
  content: "\e06d"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-soap:before {
  content: "\e06e"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-stopwatch-20:before {
  content: "\e06f"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-store-alt-slash:before {
  content: "\e070"; }

.fa-store-slash:before {
  content: "\e071"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-tiktok:before {
  content: "\e07b"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-threads:before {
  content: '\e9cb'; }

.fa-threads-square:before {
  content: '\e9cc'; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-slash:before {
  content: "\e072"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-trailer:before {
  content: "\e041"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbraco:before {
  content: "\f8e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-uncharted:before {
  content: "\e084"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-unity:before {
  content: "\e049"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-unsplash:before {
  content: "\e07c"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-users-slash:before {
  content: "\e073"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-vest:before {
  content: "\e085"; }

.fa-vest-patches:before {
  content: "\e086"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-virus:before {
  content: "\e074"; }

.fa-virus-slash:before {
  content: "\e075"; }

.fa-viruses:before {
  content: "\e076"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-watchman-monitoring:before {
  content: "\e087"; }

.fa-water:before {
  content: "\f773"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wodu:before {
  content: "\e088"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-x-twitter:before {
  content: "\e9ca"; }

.fa-x-twitter-square:before {
  content: "\e9c9"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot);
  src: url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"), url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff) format("woff"), url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf) format("truetype"), url(//fundacjarozwojuosobistego.pl/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg#fontawesome) format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }