@import url('nav.css');
@import url('carousel.css');
@import url('slider.css');

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.ttf') format('truetype');
    font-style: normal;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
    font-style: normal;
    font-weight: 500;
    text-rendering: optimizeLegibility;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
    text-rendering: optimizeLegibility;
    font-display: swap;
}

@font-face {
    font-family: 'PT Serif';
    src: url('../fonts/PTSerif-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
    text-rendering: optimizeLegibility;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: 'Roboto', sans-serif;
    height: 100%;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    padding: 0;
    margin: 0;
    color: #515151;
    /* background-color: #fff; */
    background-color: #f4f4f4;
}

body {
    font-size: 100%;
    line-height: 1.5;
    min-height: 100vh;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 4px;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #1D3557;
    /* Zmieniamy kolor scrolla na #1D3557 */
    background-image: -webkit-gradient(linear,
            40% 0%,
            75% 84%,
            from(#1D3557),
            /* Ustawiamy kolor na #1D3557 */
            to(#1D3557),
            /* Ustawiamy kolor na #1D3557 */
            color-stop(.6, #1D3557))
}

h1 {
    font-family: 'Roboto', sans-serif;
}

h2 {
    background-color: transparent;
    font-weight: 700;
    font-size: 1.556rem;
    color: #1D3557;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.444rem;
    font-weight: 700;
    color: #427AA1;
    margin-bottom: 20px;
}

a {
    color: #1D3557;
    text-decoration: none;
}

a:hover {
    color: #4FAF5E;
    text-decoration: none;
}

p {
    font-size: 1rem;
    line-height: 30px;
    /* margin-bottom: 0.556rem; */
    font-weight: 300;
}

b,
strong {
    font-weight: 500;
}

dl,
ol,
ul {
    /* padding: 0 0 20px 20px; */
    padding: 0 0 0 20px;
}

ol ul {
    list-style-type: disc;
}

hr {
    background-color: #DBDBDB;
    opacity: .5;
    margin: 35px 0;
}

.separate-line {
    width: 100%;
    display: block;
    height: 1px;
    background-color: rgb(221, 221, 221);

}

.scrolled {
    width: 100%;
    height: auto;
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    z-index: 9;
    position: fixed;
    top: 0;
}

.scrolled div.ruby-wrapper,
.scrolled div.ruby-wrapper.ruby-vertical {
    box-shadow: none;
}

/*
 * Default WP Alignment Classes
 *****************************************************************************/

.aligncenter,
.alignleft,
.alignright {
    display: block;
    padding: 0;
}

.aligncenter {
    float: none;
    margin: .5em auto 1.5em;
}

.alignright {
    float: right;
    margin: .5em 0 1.5em .5em;
}

.alignleft {
    float: left;
    margin: .5em 1.5em 1em 0;
}

.wp-caption {
    padding: 5px 0;
    text-align: center;
    max-width: 100%;
}

.wp-caption img {
    display: inline;
    max-width: 100%;
    height: auto;
}

p img {
    max-width: 100%;
    height: auto;
}

.wp-caption p.wp-caption-text {
    margin: 5px 0 0;
    line-height: normal;
    padding: 0;
    text-align: center;
    font-size: 75%;
    font-weight: 100;
    color: #515151;
}

/* Icon*/
.icon-right {
    background-image: url('../img/icons/arrow_circle_right.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 22px;
    min-width: 22px;
    height: 22px;
    display: block;
    position: relative;
    margin-left: 10px;
}

.icon-right-white {
    background-image: url('../img/icons/arrow_circle_right_white.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    display: block;
    position: relative;
    margin-left: 10px;
}

.darklooks-mode-changer-enabled .icon-right {
    background-image: url('../img/icons/arrow_circle_right_white.svg');
}

.icon-search {
    background-image: url('../img/icons/search.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    display: block;
    position: relative;
    margin-left: 10px;
}

.icon-user {
    background-image: url('../img/icons/login.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    display: block;
    position: relative;
    margin-left: 20px;
}

.icon-calendar {
    background-image: url('../img/icons/icon-calendar.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 16px;
    height: 14px;
    display: block;
    position: relative;
    margin-right: 10px;
    top: -1px;
}

.icon-list {
    background-image: url('../img/icon-list.png;');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    display: block;
    position: relative;
    margin-right: 10px;
}

.icon-lock {
    background-image: url('../img/icons/lock.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: inline-flex;
    position: relative;
    margin-bottom: 10px;
    top: -2px;
}

/* button*/
button:focus {
    outline: none;
}

.grey-btn {
    background-color: #E5E5E5;
    border-radius: 6px;
    padding: 12px 20px;
    color: #1D3557;
    font-weight: 700;
    text-decoration: none !important;
    width: fit-content;
    min-height: 43px;
    line-height: 1;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 0.667rem;
    transition: transform 0.2s ease-in-out;
}

.btn-border-green {
    background: transparent;
    border-radius: 6px;
    padding: 12px 25px;
    line-height: 1;
    font-weight: 700;
    font-size: 0.667rem;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #4FAF5E;
    color: #4FAF5E;
    margin-right: 10px;
    transition: transform 0.2s ease-in-out;
}

.page-content .btn-border-green {
    margin-bottom: 10px;
}

.btn-border-green:hover {
    border: 1px solid #4FAF5E;
    background: #4FAF5E;
    color: #fff;
}


.btn-green,
#searchsubmit {
    background: #4FAF5E;
    border-radius: 6px;
    padding: 12px 25px;
    line-height: 1;
    letter-spacing: .3px;
    font-weight: 700;
    font-size: 0.667rem;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #4FAF5E;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 7px;
    transition: transform 0.2s ease-in-out;
}

.btn-green:hover,
#searchsubmit:hover {
    border: 1px solid #1D3557;
    color: #1D3557;
    background: #fff;
}

#btn-calendar:hover,
#btn-list:hover {
    border: 1px solid #1D3557;
    color: #fff;
    background: #1D3557;
}

.btn-more span {
    margin-left: 15px;
}

.btn-all {
    color: #1D3557;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 0.778rem;
    display: flex;
    align-items: center;
    transition: 0.3s all;
    margin-top: 10px;
    min-width: fit-content;
    transition: transform 0.2s ease-in-out;
}

.btn-all:hover {
    color: #4FAF5E;
    cursor: pointer;
    text-decoration: none;
}

.btn-border-black {
    border: 1px solid #1D3557;
    background-color: #fff;
    color: #1D3557;
    border-radius: 6px;
    padding: 12px 25px;
    line-height: 1;
    font-weight: 700;
    font-size: 0.667rem;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.btn-border-black:hover {
    border: 1px solid #4FAF5E;
    background: #4FAF5E;
    color: #fff;
}

.btn-more-events {
    text-align: center;
    display: inline-block;
    position: relative;
}

.btn-more-events i {
    position: absolute;
    right: 13px;
    width: 15px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-border-black:hover i.icon-right {
    background-image: url('../img/icons/arrow_circle_right_white.svg');
}

.btn-border {
    background: transparent;
    border-radius: 6px;
    padding: 12px 25px;
    line-height: 1;
    font-weight: 700;
    font-size: 0.667rem;
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #fff;
    color: #fff;
}

.btn-border:hover {
    border: 1px solid #113257;
    color: #113257;
}

.content-members-add .btn-border:hover,
.materials .btn-border:hover,
.page-subtitle .btn-border:hover {
    border: 1px solid #4faf5e;
    color: #4faf5e;
}

.login-btn {
    background: #4FAF5E;
    border: 1px solid #4faf5e;
    color: #fff;
    border-radius: 6px;
    padding: 12px 25px;
    line-height: 1;
    font-weight: 700;
    font-size: 0.667rem;
    display: flex;
    align-items: center;
    width: fit-content;
}

.login-btn:hover {
    background: #1D3557;
    color: #fff;
    border: 1px solid #fff;
}

.members-links .login-btn:hover {
    background: #fff;
    color: #1D3557;
    border: 1px solid #fff;
}

.btn-more {
    /*float: right;
    min-width: 166px;
    zoom: .95;
    width: max-content; */
}

.btn-back,
.share__cover {
    padding: 8px 25px;
}

.btn-back span {
    margin-right: 15px;
}

/* .btn-back {
    min-width: 132px;
    zoom: .95;
} */

.btn-blue {
    background: #113257;
    border: 1px solid #113257;
    color: #fff;
    border-radius: 6px;
    padding: 12px 25px;
    line-height: 1;
    font-weight: 700;
    font-size: 0.667rem;
    display: flex;
    align-items: center;
    width: fit-content;
}

.btn-blue:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #113257;
}

.back:hover {
    background: #4FAF5E;
    color: #fff;
    cursor: pointer;

}

#searchform #s {
    padding: 6px 25px;
    border: 1px solid #cacaca;
    background-color: #ffffff;
    color: #515151;
    border-radius: 6px;
    box-shadow: none;
    outline: none;
    margin-right: 10px;
    min-height: 43px;
}

/* resize text*/
.wpavefrsz {
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
}



.wpavefrsz-theme-dark .wpavefrsz-minus,
.wpavefrsz-theme-dark .wpavefrsz-plus,
.wpavefrsz-theme-dark .wpavefrsz-reset {
    border: none;
    border: none;
    background-color: #a5a5a5;
    color: #fff;

}

.wpavefrsz-minus:before {
    content: 'A-' !important;
    font-family: 'Roboto';
    font-size: 0.556rem;
    font-weight: 700;
}

.wpavefrsz-plus:before {
    content: 'A+' !important;
    font-family: 'Roboto';
    font-size: 0.556rem;
    font-weight: 700;
}

.wpavefrsz-reset:before {
    zoom: .8;
}

.wpavefrsz-theme-dark .wpavefrsz-reset {
    display: none;
}

.menu-wcag-menu-container {
    margin: auto 10px;
}

/* dark*/
#wcag-menu-id {
    margin: 0;
    padding: 0;
}

.wcag-menu-class {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;

}


.dl-switch.style2 .dl-slider:before {
    width: 23px;
    height: 23px;
    left: 3px;
    top: 3px;
}

.dl-switch.style2 input:checked+.dl-slider:before {
    transform: translateX(28px);
}

.wcag-menu-class .dl-active-border {
    display: none;
}

.dl-switch.style5 {
    height: 45px;
}

.dl-switch.style5 .dl-light,
.dl-switch.style5 .dl-dark {
    top: 50%;
}

.dl-switch .dl-slider {
    background-color: #113257;
    border: 1px solid transparent;

    -webkit-box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 1x 1px rgba(255, 255, 255, 1);
}

.dl-switch input:checked+.dl-slider {
    background-color: #113257;


    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.darklooks-mode-changer-enabled .dl-switch input:checked+.dl-slider {
    background-color: #FFCC2F;
}

#forminator-module-592 {
    border: none !important;
}

/* search */
#masthead-search {
    width: 100%;
    max-width: 200px;
    position: relative;
    -webkit-appearance: none;
    display: none;
    display: flex;
    /* padding: 0 50px 0 0;
    margin-right: 20px; */
}

/* #masthead-search:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #898989;
    right: 0;
} */

#masthead-search .input-text {
    display: block;
    width: 100%;
    height: 26px;
    border-width: 0 0 2px 0;
    border-color: #c4c4c4;
    background-color: transparent !important;
    font-size: 0.889rem;
    line-height: 26px;
    font-weight: 400;
}



html.darklooks-mode-changer-enabled #masthead-search button {
    background-color: transparent !important;
}

#masthead-search .input-text:focus {
    outline: none;
}

#masthead-search .input-text:focus+.label,
#masthead-search .input-text.not-empty+.label {
    transform: translateY(-24px);
}

#masthead-search .label {
    position: absolute;
    left: 0px;
    margin-bottom: 0;
    bottom: 2px;
    font-size: 0.889rem;
    line-height: 24px;
    font-weight: 400;
    color: #a5a5a5;
    cursor: text;
    transition: transform 0.2s ease-in-out;
}

#masthead-search button {
    background-color: transparent;
    border: none;
    position: absolute;
    right: -20px;
}

.home section {
    margin-bottom: 20px;
}

.page:not(.home) #main-content,
.blog #main-content,
.archive #main-content,
.single #main-content {
    padding: 20px 0 0;
}

.footer-category-page {
    margin: 40px 0px 0;
}

.footer-category-page .btn-more {
    float: right;
}

#main-wrapper {
    padding-bottom: 45px;
}

.single-wydarzenia #main-wrapper,
.page-template-page-zjazd #main-wrapper {
    padding-bottom: 0;
}

.custom-logo-link {
    z-index: 9;
}

.custom-logo {
    height: 35px;
    width: auto;
    max-width: 100%;
}

.header-top {
    padding: 15px 0;
    background-color: #fff;
    z-index: 9;
}

.header-top .col-12 {
    z-index: 9;
}

/* .page-header-wrap .container {
    padding: 0;
} */

.page-header-wrap {
    margin-bottom: 20px;
}

.page-header-wrap .page-header-title {
    min-height: 180px;
    border-radius: 40px;
}

.page-header-title {
    background-color: #1D3557;
    border: 1px solid #1D3557;
    color: #fff;
    height: auto;
    padding: 27px 25px;
    position: relative;
}

.page-header-title::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    background-image: url('../img/pto-bg.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    height: 79px;
    width: 100%;
}

.page-header-green .page-header-title {
    background-color: #4faf5e;
    border: 1px solid #4faf5e;
}

.page-header-title h1 {
    font-size: 1.556rem;
    font-weight: 500;
    line-height: normal;
}

.page-subtitle {
    font-size: 0.889rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
}

.page-content {
    background-color: #fff;
    padding: 25px;
    position: relative;
    border-radius: 40px;
}

/* Dodaj cień na pełną szerokość */
/* .page-content::before,
.page-content::after {
    content: '';
    position: absolute;
    left: -15px;
    width: 100vw;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.page-content::before {
    top: -10px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.page-content::after {
    bottom: -10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0..8);
} */

.page-content-next {
    margin-top: 25px;
}

/* ul,
ol {
    list-style: inherit;
    margin-bottom: 0;
} */

.page-content ul li::marker {
    color: #4FAF5E;
    font-size: 80%;
}

.page-template-page-management .section-header {
    flex-direction: column;
    align-items: baseline;
}

.section-title,
.section-header h2,
.sidebar-header h2 {
    color: #1D3557;
    font-family: "PT Serif";
    font-weight: 700;
    font-size: 1.333em;
    margin-bottom: 30px;
    background-color: transparent;
}

.section-header h2,
.sidebar-header h2 {
    margin-bottom: 0;
}

/*Page menagment */


.menagment-page p,
.menagment-page li {
    font-size: 0.889rem;
}

.menagment-page h3 {
    margin-bottom: 14px;
}

.menagment-wrap {
    margin: auto;
    text-align: center;
}

.img-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* float: left; */
    vertical-align: top;
    margin: 35px 0;
}

.bg-zaslepka {
    border-radius: 100%;
    height: 94px;
    width: 94px;
    min-width: 94px;
    background: #ededed;
    margin-right: 20px;
}

.img-wrapper img {
    border-radius: 100%;
    height: 94px;
    width: 94px;
    margin-right: 20px;

}

.img-wrapper .media-title {
    color: #113257;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 22px;
    text-align: left;
}

.img-wrapper .media-position {
    color: #4FAF5E;
    line-height: 22px;
    text-align: left;
}

/*Home members section*/


.members .menbers-img {
    border-radius: 40px;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
}

.members .row-gap {
    row-gap: 15px;
}

.content-members-add,
.memmbers-login {
    color: #fff;
    border-radius: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
    justify-content: center;
    min-height: 400px;

}

.content-members-add p,
.memmbers-login p {
    font-size: 0.889rem;
    line-height: normal;
}

.content-members-add {
    background-color: #1D3557;
    border: 1px solid #1D3557;
}

.memmbers-login {
    background-color: #4FAF5E;
    border: 1px solid #4FAF5E;
    justify-content: center;
}

.members h2 {
    color: #fff;
    font-family: "PT Serif";
    font-size: 1.778rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.members-links a {
    display: inline-block;
    padding: 12px 15px;

}

.content-members-add a:first-child {
    margin-right: 13px;
    margin-bottom: 10px;
}

.events-img {
    /* height: auto;
    min-height: 244px;
    width: 100%;
    border-radius: 40px;

    transition: all 0.6s ease;
    display: block; */
    height: fit-content;
    max-height: 200px;
    width: 100%;
    /* max-width: 100%; */
    border-radius: 40px;
    object-fit: cover;
    transition: all 0.6s ease;
    display: block;
    aspect-ratio: 3 / 2;
    /* object-fit: cover; */
    border-radius: 40px;
}

.events-upcoming-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    height: 100%;
}

.events-upcoming-img-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease-in-out;
    border-radius: 40px;
    opacity: 0;
}

.events-upcoming-img-container img:first-child {
    opacity: 1;
    /* Pierwszy obrazek startuje jako widoczny */
}

.single .events-img {
    margin-bottom: 34px;
}

.single .events {
    margin-top: 30px;
    margin-bottom: 30px;
}

.materials {
    background-color: #1D3557;
    padding: 40px 0;
}

.materials p {
    font-size: 0.889rem;
    line-height: normal;
    min-height: 40px;
}

.magazines-wrap {
    margin: auto;
    width: 100%;
    border-radius: 40px;
    border: 2px solid #fff;
    z-index: 1;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 27px;
}

.magazines-wrap .btn-border {
    position: relative;
    bottom: 33px;
}

.magazines__background {
    border-radius: 13px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
}

.center-image,
.magazines_background img {
    width: 100%;
    min-height: 100%;
    position: relative;
    -o-object-fit: cover;
    object-fit: cover;
}

.magazines-wrap h4 {
    font-size: 0.778rem;
    line-height: normal;
    margin-bottom: 0;
    font-family: "PT Serif";
    color: #fff;
}

.magazines-text {
    color: #fff;
    font-size: 0.778rem;
    margin-bottom: 45px;
    max-height: 220px;
}

.magazines-text h3 {
    margin: 13px 0 20px;
    color: #fff;
    font-size: 1.778rem;
    line-height: 38px;
    font-family: "PT Serif";
}

.shadow-line {
    width: 100%;
    height: .5px;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.3);
    margin: 20px 0;
    background: rgba(0, 0, 0, .08);
    display: block;
}

.materials-item {
    position: relative;
    display: flex;
    margin-bottom: 48px;
}

.materials-item:last-child {
    margin-bottom: 0;
}

.icon-download {
    background: url('../img/icons/download_pdf.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 43px;
    height: 43px;
    display: block;
    position: relative;
    margin-right: 17px;
    display: none;
}


.icon-loop {

    background: url('../img/icons/loop-green.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    display: block;
    position: relative;
    margin-left: 17px;

}

.btn-border-green:hover .icon-loop {
    background: url('../img/icons/loop-white.svg');
    width: 14px;
    height: 14px;

}

.icon-file {

    background: url('../img/icons/download-green.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    display: block;
    position: relative;
    margin-left: 17px;
}

.btn-border-green:hover .icon-file {
    background: url('../img/icons/download-white.svg');
    width: 14px;
    height: 14px;
}

.materials-item h4 {
    color: #1D3557;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.materials-item h5 {
    font-size: 0.889rem;
    color: #b0b0b0;
    margin-bottom: 20px;
}

materials-desc {
    margin-bottom: 20px;
}

/* Korzysći */
.icons-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-around;
}

.icons-wrap .icon-item {
    width: 100%;
}

.icons-wrap .icon-item img {
    width: 57px;
    height: 57px;
    object-fit: contain;
    margin-bottom: 30px;
}

.icons-wrap .icon-item .icon-content {
    color: #113257;
    margin-bottom: 50px;
}



/****** Accourdion - uchwały ******/
.accordion-item {
    border-top: 1px solid #C0C0C0;
}

.accordion-link {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: #4FAF5E;
    text-decoration: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    cursor: pointer;
}

.accordion-link h3 {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: #4FAF5E;
    text-decoration: underline;
    margin-bottom: 5px;
}

.accordion-link span {
    font-weight: 700;
    color: #4FAF5E;
    text-decoration: none;
    zoom: .95;
}

.accordion-link .icon {
    padding: .5rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    position: relative;
    margin-left: 10px;
}

.accordion-candidates h2 {
    color: #5d5d5d;
    font-size: 1.5rem;
}

.accordion-candidates h3 {
    color: #5d5d5d;
    text-decoration: none;
}

.icon-arrow-down {
    background: url('../img/icons/arrow_down_navigate.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
}

.icon-arrow-up {
    background: url('../img/icons/arrow_up_navigate.svg');
    display: none;
}

.icon-calendar-events-widget {
    background: url('../img/icons/calendar.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 18px;
    margin-right: 10px;
    display: block;
    position: relative;
}

.icon-arrow-menu {
    background: url('../img/icons/arrow_right_navigate.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    display: block;
    position: relative;
}

.darklooks-mode-changer-enabled .icon-arrow-menu {
    background: url('../img/icons/arrow_right_navigate_white.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    display: block;
    position: relative;
}

.answer.open {
    padding: 0 0 35px 0;
}

.answer {
    display: none;
    /* Używamy jQuery do pokazania/ukrycia sekcji */

}

/* Ukrycie ikon na start */
.accordion-link .icon-arrow-up {
    display: none;
}

.accordion-link .icon-arrow-up.active {
    display: block;
    /* Pokaż ikonę "up", gdy aktywna */
}

.accordion-link .icon-arrow-down.active {
    display: block;
    /* Pokaż ikonę "down", gdy aktywna */
}

.accordion-link .icon-arrow-down {
    display: none;
    /* Ukryj ikonę "down", gdy nieaktywna */
}

/*****Single Post Page ***/
.post-card {
    flex-direction: column-reverse;
    border-radius: 0;

    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.post-card h1 {
    color: #fff;
    font-size: 1.444rem;
    font-weight: 500;
}


.post-img {
    height: 275px;
    border-radius: 40px 40px 0 0;
    max-width: 100%;
}

.img-one,
.img-two,
.img-three {
    background-size: cover;
    background-position: center;
    display: block;
}

.post-text {
    padding: 25px;
    background-color: #1D3557;
    display: flex;
    text-align: left;
    color: #fff;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    border-radius: 0 0 40px 40px;
}

.darklooks-mode-changer-enabled .post-text {
    border: 1px solid #1D3557;
}

.post-content {
    background-color: #fff;
    border: 1px solid #fff;
    padding: 25px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
    border-radius: 40px;
}

.single-post .post-content a {
    font-weight: 700;
    position: relative;
    overflow-wrap: break-word;
}

.post-categories {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    flex-wrap: wrap;
}

.post-date {
    color: #4faf5e;
    margin-bottom: 10px;
}

.single-post .post-content a:not([href^="mailto:"]):not([href^="http"]):not([href^="tel:"]):not(.btn-green):not(.btn-border-green) {
    display: flex;
}

.single-post .post-content a:not([href^="mailto:"]):not([href^="http"]):not([href^="tel:"]):not(.btn-green):not(.btn-border-green):before {
    position: relative;
    content: "";
    background-image: url('../img/icons/arrow_circle_right.svg');
    min-width: 20px;
    height: 20px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 25px;
    top: 7px;
}

.post-category {
    padding: 7px 15px;
    color: #4FAF5E;
    border: 1px solid #4FAF5E;
    display: inline-flex;
    line-height: normal;
    width: fit-content;
    font-weight: 700;
    margin: 0 10px 10px 0;
    text-transform: uppercase;
    font-size: 0.778rem;
    border-radius: 6px;
    cursor: pointer;
    zoom: .85;
}

.post-category:hover {
    color: #fff;
    background: #4FAF5E;
    cursor: pointer;
}

.post-item {
    background-color: #fff;
    border-radius: 40px;
    overflow: hidden;
    transition: all linear .2s;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: normal;
    margin-bottom: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-direction: column;
    height: 420px;
}

#main-wrapper .regular-post:last-child .post-item {
    margin-bottom: 0;
}

.content-area {
    padding: 40px 30px;
}

.post-item-search {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #e7e7e7;
    padding: 30px;
    justify-content: space-between;
}

.post-item-search:hover {
    background: #4FAF5E;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
}

.darklooks-mode-changer-enabled .post-item-search.post-item-search:hover {
    background: transparent !important;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
}

.post-item-search:hover h3,
.post-item-search:hover h2,
.post-item-search:hover a,
.post-item-search:hover p {
    color: #fff;
}

.post-item-search:hover .icon-right {
    background-image: url('../img/icons/arrow_circle_right_white.svg');
}

.post-item-column {
    border-radius: 40px;
    background-color: #fff;
    overflow: hidden;
    transition: all linear .2s;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: normal;
    margin-bottom: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-item:hover {
    cursor: pointer;
}

.post-item-column:hover {
    cursor: pointer;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}

.disabled-item {
    position: relative;
    /* Aby pseudo-element odnosił się do tego elementu */
    pointer-events: none;
    /* Blokada kliknięć */
    user-select: none;
    /* Blokada zaznaczania tekstu */
    z-index: 1;
}

.disabled-item::after {
    content: '';
    /* Dodanie pustego pseudo-elementu */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    /* Białe tło */
    opacity: 0.4;
    /* Przezroczystość tła, możesz ją zmienić */
    z-index: 2;
    /* Zakrycie zawartości */
}

.disabled-item .post-desc,
.disabled-item .post-thumbnail {
    position: relative;
    z-index: 2;
    /* Sprawia, że pseudo-element znajduje się nad elementami */
}

.event-item {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: baseline;
    flex-direction: column;
    justify-content: space-between;
    height: 360px;
    margin-bottom: 20px;
    transition: 0.4s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.calendar-events .event-item {
    height: 360px;
}

.sidebar-events .event-item {
    height: auto;
}

.event-item .post-category {
    margin-bottom: 16px;
    zoom: .8;
    font-size: 0.778rem;
}

.event-item .post-category:hover {
    background-color: #fff;
    color: #4FAF5E;
    border: 1px solid #4FAF5E;
}

.event-excerpt {
    height: 100%;
    width: 100%;
    position: relative;
    padding: 16px 26px;
    display: flex;
    background: #fff;
    border: 1px solid #fff;
    flex-direction: column;
    border-radius: 0 0 40px 40px;
}


.event-item h4 {
    color: #1D3557;
    margin-bottom: 16px;
    font-size: 0.889rem;
    font-weight: 700;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: fit-content;
}

@supports (-webkit-line-clamp: 5) {

    .event-item h4 {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.event-item .event-thumbnail {
    width: 100%;
    height: 200px;
}

.event-item .event-thumbnail img {
    width: 100%;
    /* object-fit: cover; */
    max-height: 100%;
}

.event-date {
    font-weight: 400;
    font-size: 0.889rem;
    position: relative;
    line-height: 1;
    width: 100%;
    margin-bottom: 10px;
    color: #4faf5e;
}


.event-item P {
    margin-top: 20px;
    font-size: 0.714em;
}

.event-item .post-thumbnail-link {
    display: block;
    opacity: 1;
    margin-top: 10px;
    transition: 0.4s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.calendar-events .event-item .post-thumbnail-link {
    opacity: 1;
}

#pagination-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

.event-item:hover {
    cursor: pointer;
    transform: scale(1.04);
    z-index: 2;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.event-item:hover .post-thumbnail-link {
    display: block;
    opacity: 1;
    background: #77a8f1;
    border-color: #77a8f1;
}

.events-today-and-upcoming-wrap {
    background-color: #fff;
    border: 1px solid #fff;
    height: fit-content;
    padding: 20px;
    border-radius: 40px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.events-today-and-upcoming h3,
.events-today-and-upcoming h2 {
    font-family: "PT Serif";
    color: #1D3557;
    font-size: 1.333rem;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.events-today-and-upcoming .post-category {
    background: #4FAF5E;
    color: #fff;
    zoom: .85;
}

.events-today-and-upcoming .events-none-info {
    color: #898989;
    padding-bottom: 9px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e7e7e7;
}

.events-today-and-upcoming-wrap .btn-border-black {
    width: fit-content;
    min-width: 240px;
    margin: 10px auto 0;
}

.events-today-and-upcoming p {
    font-size: 0.778rem;
    line-height: normal;
}


.events-today-and-upcoming hr {
    margin: 10px 0;
}

.events-upcoming h3,
.events-today h3 {
    font-family: 'Roboto', sans-serif;
    color: #1D3557;
    font-weight: 700;
    font-size: 0.667rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: fit-content;
    font-size: 0.778rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

@supports (-webkit-line-clamp: 2) {

    .events-upcoming h3,
    .events-today h3 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.events-upcoming .date,
.events-today .date {
    color: #427AA1;
    font-size: 0.778rem;
    margin-bottom: 5px;
}

.events-upcoming,
.events-today {
    margin-bottom: 5px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
}

/* Dla ostatniego elementu .events-today (nawet jeśli jest tylko jeden) */
.events-today-and-upcoming .events-today:last-of-type {
    border-bottom: 0;
    margin-bottom: 10px;
}

/* Dla ostatniego elementu .events-upcoming */
.events-today-and-upcoming .events-upcoming:last-of-type {
    border-bottom: 0;
}

.events-today:hover {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.events-upcoming-wrap {
    height: fit-content;
    margin-bottom: 10px;
}

.events-upcoming-wrap .events-upcoming {
    padding: 15px;
    margin: 3px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.events-upcoming-wrap .post-category {
    zoom: .85;
}

.events-upcoming.active-event {
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-upcoming-wrap i.icon-right {
    min-width: 21px;
    height: 21px;
    width: 21px;
}

.events-upcoming-wrap h4 {
    font-size: 0.889rem;
    -webkit-line-clamp: 3;
    margin-bottom: 0;
}

@supports (-webkit-line-clamp: 3) {

    .events-upcoming-wrap h4 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.events-upcoming-wrap .events-text {
    max-width: 300px;
    display: flex;
    align-items: baseline;
    flex-direction: column;
}


.post-thumbnail {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 210px;
    border-radius: 40px 40px 0 0;
}

.post-desc {
    padding: 22px 25px;
    border: 1px solid #fff;
    overflow: hidden;
    display: flex;
    /* flex-basis: 50%; */
    text-align: left;
    color: #fff;
    flex-direction: column;
    align-items: baseline;
    justify-content: normal;
    min-height: 210px;
    height: auto;
    border-radius: 0 0 40px 40px;
}

.post-desc h3 {
    font-size: 1rem;
    margin-bottom: 0;
}



.post-desc h3 a {
    /* Dostosuj wysokość do swoich potrzeb */
    margin-bottom: 13px;
    line-height: 1.1;
    display: -webkit-box;
    height: fit-content;
}

.post-desc .post-category {
    font-size: 0.556rem;
    font-weight: 700;
    padding: 5px 15px 3.5px;
    margin-bottom: 13px;
    zoom: .85;
}

.post-excerpt,
.post-excerpt p {
    display: -webkit-box;
    /* -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; */
    height: fit-content;
    color: #777;
    font-size: 0.833rem;
    line-height: 1.1;
    margin-bottom: 0;
}

.more-article {
    margin-top: 50px;
}

.archive .more-article,
.blog .more-article {
    margin-bottom: 20px;
}

/* @supports (-webkit-line-clamp: 4) {

    .post-excerpt,
    .post-excerpt p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
} */

/********** Breadcrumbs*******/
#breadcrumbs {
    margin-bottom: 20px;
}

#breadcrumbs>span {
    display: inline-flex;
    flex-wrap: wrap;
}

#breadcrumbs span {
    font-size: 0.9em;
    font-weight: 300;
    line-height: 1.4;
    display: inline-flex;
    margin-right: 5px;
    margin-left: 5px;
}

#breadcrumbs span:first-child {
    margin-left: 0;
}

#breadcrumbs span a {
    color: #898989;
}

#breadcrumbs .breadcrumb_last {
    color: #4faf5e;
}

/*back*/
.back {
    background: #E5E5E5;
    border-radius: 10px;
    padding: 12px 17px;
    color: #1D3557;
    font-weight: 700;
    margin-right: 15px;
    text-decoration: none !important;
    width: 132px;
    height: 42px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: -72px;
    top: auto;
    font-size: 0.889rem;
}

.back:hover {
    background: #4FAF5E;
    color: #fff;
    cursor: pointer;
}



/********** Custom pagination ***********/
.custom-pagination {
    list-style: none !important;
    padding: 0;
    /* margin: 30px 0 0; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom-pagination li {
    margin: 0 5px;
}

.custom-pagination a,
.custom-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    width: 38px;
    height: 38px;
    background-color: #fff;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    border: 2px solid #fff;
}

.custom-pagination a:hover {
    color: #4FAF5E;
    cursor: pointer;
}

.custom-pagination .current {
    background-color: #4FAF5E;
    border: 2px solid #4FAF5E;
    color: #fff;
    font-weight: bold;
}

.custom-pagination span {
    cursor: default;
}

/******** Ctegory filter ******/
.tag-filters {
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    margin-top: 15px;
}

.tag-filters span {
    font-weight: 700;
    color: #1D3557;
    font-size: .8em;
    margin-right: 20px;
    display: none;
}

.tag-filters ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}


.tag-filters ul li a {
    text-decoration: none;
    display: flex;
    margin: 0 10px 10px 0;
    font-weight: 700;
    color: #1D3557;
    padding: 7px 15px 7px;
    border: 1px solid #1D3557;
    text-transform: uppercase;
    border-radius: 10px;
    font-size: 0.556rem;
    line-height: normal;
}

.tag-filters ul li a.active {
    background-color: #1D3557;
    color: #fff;
    border-color: #1D3557;
}

.tag-filters ul li a:hover {
    background-color: #1D3557;
    color: #fff;
    border-color: #1D3557;
}

/**** Section Partners ***/
.partners {
    margin: 0;
}


.slick-partners .slick-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
    margin-top: 25px;
    width: 100%;
    display: flex;
    align-items: center;
}

/* The width of each slide */
.slick-partners .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;

}

.slick-partners .slick-slide img {
    max-width: 100%;
    height: auto;
}

/****Footer*****/
#footer-main {
    background: #1D3557;
    border-top: 1px solid #1D3557;
    color: #fff;
}

#footer-main ul {
    list-style: none;
    padding: 10px 0;
}

#footer-main p {
    font-size: 0.714em;
    color: #fff;
    font-weight: 300;
    line-height: 1.7;
}

.menu-menu-widget-container li {
    font-size: 1rem;
    margin-bottom: 5px;
}

.menu-menu-widget-container a,
.menu-menu-widget-container p,
#footer-main .menu-item {
    font-size: 0.714em;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 5px;
}

#footer-main .icon-menu-ul li,
#footer-main .contact-item {
    color: #fff;
    font-size: 0.714em;
    line-height: 1.7;
}

#footer-main .icon-menu-ul li,
#footer-main .contact-item a {
    margin-bottom: 5px;
}

#footer-main a {
    color: #fff;
}

#footer-main a:hover {
    color: #4FAF5E;
}

.footer-top {
    display: flex;
    flex-direction: column;
}

.footer-top {
    padding-top: 1.571em;
    padding-bottom: 1.571em;
}

.footer-bottom {
    background: #0D2540;
}

.footer-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1.6em 0 0;
    margin: 0;
    flex-direction: column;
    text-align: center;
}

.footer-link li {
    padding: 5px 0 0px 0;
    font-size: 0.714em;
    zoom: .95;
}

.footer-link li span {
    display: block;
}

.icon-menu-ul li {
    display: flex;
    width: 100%;
    flex-direction: row;
}

.icon-menu-ul li a {
    white-space: pre;
}

.footer-social {
    display: flex;
    width: 100%;
}

.footer-social li {
    display: block;
    margin: 10px;
}

#footer-logotype {
    margin: 10px 0 20px;
    display: block;
    height: 35px;
    width: auto;
    max-width: 100%;
}

.icon-social-footer {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    display: block;
}

.icon-facebook {
    background-image: url("../img/icons/facebook.svg");
    width: 10px;
    height: 18px;
}

.social-li {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.footer-facebook {
    margin-right: 15px;
}

.icon-x {
    background-image: url("../img/x.svg");
}

.icon-linkedin {
    background-image: url("../img/linkedin.svg");
}

.icon-instagram {
    background-image: url("../img/icons/instagram.svg");
    width: 16px;
    height: 16px;
}

.icon-menu {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 14px;
    height: 14px;
    display: block;
    margin-right: 20px;
    mask-size: cover;
    mask-repeat: no-repeat;
    background-color: #fff;
    margin-top: 3px;
}

.page-content .icon-menu {
    background-color: #113257;
    margin-right: 18px;
    margin-top: 0px;
    min-width: 16px;
    height: 16px;
}

.darklooks-mode-changer-enabled .page-content .icon-menu {
    background-color: #fff;
}

.page-content .ul-icons li {
    margin-bottom: 0;
}

.page-education-content p {
    color: #727272;
}

.page-template-page-dla_czlonkow .private-content-box {
    max-width: 840px;
    margin: 40px auto 0;
}

.icon-1 {
    mask-image: url("../img/location_home.svg");
}

.icon-2 {
    mask-image: url("../img/location_on.svg");
}

.icon-3 {
    mask-image: url("../img/call.svg");
}

.icon-4 {
    mask-image: url("../img/mail.svg");
}

.icon-5 {
    mask-image: url("../img/captive_portal.svg");
}

.icon-6 {
    mask-image: url("../img/credit_card.svg");
}

.icon-7 {
    mask-image: url("../img/Icon_nip.svg");
    height: 8px;
}

.icon-8 {
    mask-image: url("../img/fax.svg");

}

.icon-9 {
    mask-image: url("../img/icons/pace.svg");

}

.ul-icons {
    padding: 0;
}

.ul-icons li {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
    flex-direction: row;
}

.ul-icons li a {
    white-space: pre;
}

.contact-wrap {
    display: flex;
    flex-direction: column;
    column-gap: 6%;
}

.contact-item {
    margin-bottom: 20px;
}



.contact-wrap a {
    display: block;
}

.footer-realization {
    display: flex;
    background: #fff;
    padding: 15px;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.714em;
    zoom: .95;
}

#footer-main .footer-realization a {
    margin-left: 10px;
}

.footer-realization a img {
    width: 100px;
    height: auto;
    display: flex;
    margin: 0;
    aspect-ratio: 25 / 3;
}

.widget-column {
    flex: 0 0 100%;
}

.widget-left,
.widget-center {
    margin-bottom: 30px;
}

.widget-center h2,
.widget-right h2 {
    margin-bottom: 17px;
    color: #fff;
    font-family: "PT Serif";
}

/* fixed social*/
#fixed-social {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    z-index: 8;
    box-shadow: 0 0 10px 0 #ffffff4d;
}

#fixed-social a {
    background: #1D3557;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    position: relative;
    text-align: center;
    line-height: 35px;
    width: 35px;
    z-index: 2;
}

#fixed-social a:hover>span {
    visibility: visible;
    right: 36px;
    opacity: 1;
}

#fixed-social a span {
    box-shadow: 0 0 10px 0 #ffffff4d;
    line-height: 35px;
    right: 60px;
    position: absolute;
    text-align: center;
    width: 120px;
    visibility: hidden;
    transition-duration: 0.5s;
    z-index: 1;
    opacity: 0;
    background: #1D3557;
}

#pdfModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

#pdfViewer {
    width: 80%;
    height: 80%;
    margin: 5% auto;
    display: block;
    background: white;
}

/* Maps*/
/* .map-poland-container {
    display: -webkit-box; 
    display: -ms-flexbox;
    display: flex;
     -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
     -webkit-box-orient: vertical;
    -webkit-box-direction: normal; 
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
} */
.cssmap-loader {
    background: #0D428B;
    color: #fff;
    padding: 8px 18px;
}

.survey-map-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cssmap {
    z-index: 1;
}

/* .survey-map-wrapper {
    display: grid;
    grid-template-columns: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
} */
.cssmap-visible-list-container {
    width: 100%;
    max-width: 250px;
}


#demo-agents {
    display: inline-block;
    vertical-align: top;
    margin-top: 50px;
}

#demo-agents>ul {
    display: block !important;
    padding: 0;
}

#demo-agents h5,
.cssmap-visible-list li a {
    color: #0D428B;
    font-size: 0.778rem;
    font-weight: 700;
}

.cssmap-visible-list li {
    margin-bottom: 10px;
}

.cssmap-visible-list li:hover a {
    color: #F8C43A;
}

.cssmap-visible-list li.title-list-map {
    font-weight: 700;
    color: #0D428B;
    font-size: 1.3rem;
    margin: 40px auto;
}

#demo-agents h3 {
    font-size: 1.778rem;
    font-weight: 700;
    color: #1D3557;
}

#demo-agents p a {
    display: inline-block;
}

#demo-agents p a:hover {
    color: #4FAF5E;
}

#demo-agents .map-list-wrapper div {}

.map-list-wrapper ul {
    list-style-type: disc !important;
    margin-bottom: 20px;
}

**** Select ****/ #oddzial-select-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    width: 100%;
    border-radius: 50px;
    position: relative;
    background: rgb(3, 38, 115);
    background: linear-gradient(90deg, rgba(3, 38, 115, 1) 0%, rgba(119, 168, 241, 1) 100%);
}

.select-name {
    color: #fff;
    font-weight: 700;
}

.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #fff;
    width: 260px;
    height: 45px;

}

.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    border: 2px solid #fff;
    padding: 8px 15px;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    border-radius: 50px;
}

.select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 16px;
    right: 10px;
}

.select-styled:hover {
    background-color: #113257;
}

.select-styled:active,
.select-styled.active {
    background-color: #113257;
}

.select-styled:active:after,
.select-styled.active:after {
    top: 9px;
    border-color: transparent transparent #fff transparent;
}

.select-options {
    list-style: none !important;
    padding: 0 !important;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 5px 0 0 0;
    padding: 0;
    list-style: none;
    background-color: #113257;
    height: 205px;
    overflow-y: auto;
}

.select-options li {
    margin: 0;
    padding: 10px;
    font-size: initial;
    border-top: 1px solid #fff;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.select-options li:first-child {
    border: none;
}

.select-options li:hover,
.select-options li.is-selected {
    color: #032673;
    background: #fff;
}

.select-options li[rel="hide"] {
    display: none;
}

/*Edukacja*/
.webinar-private-box {
    background-color: #113257;
    color: #fff;
    padding: 10px 0 0px 0;
    margin-bottom: 40px;
}

.private-box-overflow {
    top: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    right: 0;
    background-color: rgba(255, 255, 255, .5);
}

.private-content-box {
    display: flex;
    align-items: center;
    background-color: #113257;
    border: 1px solid #113257;
    color: #fff;
    border-radius: 10px;
    padding: 10px 10px 10px 20px;
    justify-content: space-between;
    flex-direction: column;
    column-gap: 10px;
    row-gap: 10px;
}

.private-content-box p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
    flex-direction: column;
    text-align: center;
}

.private-buttons a {
    margin: 10px;
    min-width: 165px;
    justify-content: center;
}

.private-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/*zjazd*/
.buttons-container {
    margin: 26px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
}

.button-box {
    background-color: #4faf5e;
    border: 1px solid #4faf5e;
    border-radius: 6px;
    width: 100%;
    max-width: 450px;
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.button-box:hover {
    cursor: pointer;
    background-color: #113257;
}



.button-box p {
    font-size: 1rem;
    zoom: .9;
    margin-bottom: 0;
}

.button-box p strong {
    font-size: 1rem;
    zoom: 1;
}

/* LOGIN  i Register page style */
.login-wrapper,
.register-wrapper {
    width: 100%;
    padding: 30px 20px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.login-register-container {
    flex-direction: column;
    row-gap: 20px;
    margin: 0 15px 40px;
}

/*Start Login Style*/
.login-wrapper {
    min-height: 100%;
}

.login-wrapper #custom-login-form {
    width: 100%;
}

.ur-frontend-form.login,
.ur-frontend-form {
    border: none !important;
    padding: 0;
    margin-bottom: 0 !important;
}

.ur-frontend-form .ur-button-container {
    align-items: center;
    text-align: center;
}

.user-registration-profile-fields h2 {
    display: none;
}

.ur-form-grid div {
    display: flex;
    flex-direction: column;
    /* flex-direction: column-reverse; */
}

/* .login p, .label-input {
	width:100%;
	display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
} */
/* .login p input {
    margin: 10px auto 10px;
} */

.login form,
.ur-form-grid fieldset {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login h3,
.register-wrapper h3,
.login-wrapper h3 {
    margin-top: 0;

}

.login h3,
.login-wrapper h3 {
    color: #113257;
    width: 100%;
}

.register-wrapper h3 {
    color: #fff;
    text-align: left;
    width: 100%;
}

.ur-label.checkbox {
    display: flex !important;
    float: left;
    max-width: 11px;
    margin-right: 5px;
}

/* .ur-label.checkbox {
text-indent: -20px;
    padding-left: 20px;
    position: relative;
    left: -20px;
} */
.ur-frontend-form button,
.ur-frontend-form button,
.ur-frontend-form input[type="submit"],
.ur-frontend-form button[type="submit"] {
    margin: 20px auto 0;
    border-radius: 6px !important;
    background: #4FAF5E;
    padding: 12px 25px !important;
    line-height: 1 !important;
    font-weight: 700;
    font-size: 0.667rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 1px solid #4FAF5E !important;
    color: #fff;
    margin-bottom: 7px;
    min-width: 162px;
}

.ur-frontend-form input[type="submit"]:hover,
.ur-frontend-form button[type="submit"]:hover,
.ur-frontend-form button:hover,
.ur-frontend-form input[type="submit"]:hover,
.ur-frontend-form button[type="submit"]:hover {
    background: #fff;
    color: #4faf5e;
    cursor: pointer;
}

#user-registration .user-registration-MyAccount-content h2,
#user-registration .user-registration-MyAccount-content .edit-password legend {
    text-align: center;
    width: 100%;
}

.ur-frontend-form,
#user-registration {
    width: 100%;
}

.user-registration-form__label-for-checkbox {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.ur-frontend-form input[type="submit"] {
    float: none !important;
}

.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group,
.ur-frontend-form .ur-form-row {
    width: 100%;
}

#user-registration {
    background-color: transparent !important;
    margin: 10px 0;
}

#user-registration.horizontal,
#user-registration {
    box-shadow: none !important;
    border: 2px solid #f0f1f5;
    margin: 0;
}

.login-wrapper #user-registration {
    border: none;
    margin: 0;
}

#user-registration p {
    width: 100%;
    text-align: center;
}

#user-registration.vertical .user-registration-MyAccount-content__body p a,
#user-registration.horizontal .user-registration-MyAccount-content__body p a,
#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a {
    color: #1D3557 !important;
}

#user-registration.vertical .user-registration-MyAccount-navigation {
    max-width: 100% !important;
}

.user-registration-MyAccount-content h1 {
    color: #1D3557 !important;
    margin-bottom: 0;
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.ur-frontend-form .ur-form-row .ur-form-grid input[type="text"],
.ur-frontend-form .ur-form-row .ur-form-grid input[type="email"],
.ur-frontend-form .ur-form-row .ur-form-grid input[type="url"],
.ur-frontend-form .ur-form-row .ur-form-grid input[type="password"],
.ur-frontend-form .ur-form-row .ur-form-grid input[type="date"],
.ur-frontend-form .ur-form-row .ur-form-grid input[type="number"],
.ur-frontend-form .ur-form-row .ur-form-grid input[type="timepicker"],
.ur-frontend-form .ur-form-row .ur-form-grid input[type="phone"],
.ur-frontend-form .ur-form-row .ur-form-grid textarea,
.ur-frontend-form .ur-form-row .ur-form-grid select,
.ur-frontend-form .ur-form-row .ur-form-grid .__PrivateStripeElement {
    border-radius: 8px !important;
    border: 1px solid #cacaca;
    background-color: #ffffff;
    color: #515151;
    line-height: 1.3em;
    height: 50px;
    padding: 12px 25px;
}

.ur-frontend-form .ur-form-row .ur-form-grid legend,
.ur-frontend-form .ur-form-row .ur-form-grid label,
#user-registration.vertical .user-registration-MyAccount-content__body .ur-frontend-form.login .ur-form-row .ur-form-grid fieldset .user-registration-form-row label,
#user-registration.horizontal .user-registration-MyAccount-content__body .ur-frontend-form.login .ur-form-row .ur-form-grid fieldset .user-registration-form-row label {

    color: #828282 !important;
}


#user-registration.vertical .user-registration-MyAccount-content__body .ur-frontend-form.login .ur-form-row .ur-form-grid>p input[type="submit"],
#user-registration.horizontal .user-registration-MyAccount-content__body .ur-frontend-form.login .ur-form-row .ur-form-grid>p input[type="submit"] {
    border-color: #4FAF5E !important;
    background: #4FAF5E !important;
    background: #4FAF5E;
    border: 1px solid #4faf5e;
    color: #fff;
    border-radius: 6px;
    padding: 12px 25px;
    line-height: 1;
    font-weight: 700;
    font-size: 0.667rem;
    display: flex;
    align-items: center;
    width: fit-content;
}

#user-registration .user-registration-MyAccount-content .user-registration-profile-header {
    display: none !important;
}

#user-registration .user-registration-MyAccount-content .user-registration-profile-header header h3 {
    color: #4FAF5E !important;
}

#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a {
    border-color: #4FAF5E !important;
}

#user-registration p a {
    font-size: .8em;
}

#user-registration p {
    color: #515151;
}

#user-registration .ur-frontend-form .ur-form-row .ur-form-grid label {
    font-weight: 400 !important;
    margin-top: 0 !important;
    margin-bottom: 5px;
}


#privacy_policy_register {
    float: none;
}

.ur-frontend-form .ur-form-row .ur-form-grid legend.ur-label,
.ur-frontend-form .ur-form-row .ur-form-grid label.ur-label,
.ur-frontend-form .ur-form-row .ur-form-grid label {
    font-weight: 400 !important;
    margin-top: 0 !important;
    margin-bottom: 5px;
}

.ur-frontend-form .ur-form-row .ur-form-grid legend,
.ur-frontend-form .ur-form-row .ur-form-grid label {
    width: 100%;
}

#user-registration .ur-frontend-form .ur-form-row .ur-form-grid .user-registration-form__label-for-checkbox {
    zoom: .9;
    margin-top: 10px !important;
}

#user_login,
#username,
#password,
#user_pass,
#user_email,
#user_confirm_password,
#password_current,
#password_1,
#password_2 {
    width: 100%;
    padding: 12px 25px;
    margin-bottom: 10px;
    border: none;
    background-color: #eeeeef;
}

input[type="checkbox"] {
    float: left;
    margin-right: 5px;
}

.input-wrapper {
    width: 100%;
}

.lost_password a {
    font-size: 0.778rem;
    margin-top: 0px;
    padding-top: 10px;
    border-top: 1px solid #dbdbdb;
}

.ur-edit-profile {
    padding: 10px !important;
}

.user_registration_profile_picture_upload {
    margin: 20px auto !important;
}

.user-registration-profile-fields button {
    background: #4FAF5E;
    border: 1px solid #4faf5e;
    color: #fff;
    border-radius: 6px;
    padding: 12px 25px;
    line-height: 1;
    font-weight: 700;
    font-size: 0.667rem;
    display: flex;
    align-items: center;
}

.user-registration-profile-fields button[type="submit"]:hover,
.user-registration-profile-fields input[type="submit"]:hover {
    background: #fff;
    border: 1px solid #4faf5e;
    color: #4faf5e;
}

/* .login button {
    width: 100%;
    margin: 30px 0;
    padding: 10px;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.login button:hover {
    width: 97%;
    font-size: 22px;
    border-radius: 5px;

}

.login hr {
    width: 30%;
    display: inline-block
} */



/*Start Register Style*/
.register-wrapper {
    float: right;
    background-color: #1d3557;
    border: 1px solid #1d3557;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 40px;
}

.register-wrapper form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.register-wrapper h2 {
    margin: 30px 0;
    letter-spacing: 3px;
    color: #fff;
    text-align: center;
}

.register-wrapper p {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
    text-align: left;
    width: 100%;
}

.register-wrapper .btn-border {
    min-width: 162px;
    text-align: center;
    justify-content: center;
}

.myAccount-header {
    border-bottom: 1px solid #F4F4F4;
    padding-bottom: 16px;
    margin-bottom: 32px;
}

#members-form label,
#education_points label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #828282;
    font-weight: 400 !important;
    margin-top: 0 !important;
    margin-bottom: 5px;
}

#members-form abbr,
#education_points abbr {
    color: red;
    margin-left: 2px;
    text-decoration: none;
}

#members-form input[type=text],
#education_points input[type=text] {
    width: 100%;
    padding: 4px 8px;
    border-radius: 0;
    min-height: 36px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #515151;
    border-radius: 8px !important;
    border: 1px solid #cacaca;
    background-color: #ffffff;
    color: #515151;
    line-height: 1.3em;
    height: 50px;
    padding: 12px 25px;
}

#members-form .form-row {
    margin: 0 0 20px 0;
}

#members-form .select-styled {
    padding: 12px 20px;
    line-height: 1;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border-radius: 8px !important;
    border: 1px solid #cacaca;
    background-color: #ffffff;
    color: #515151;
    line-height: 1.3em;
    height: 50px;
    padding: 12px 25px;
    position: relative;
    font-size: 0.667rem;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

#members-form .select {
    height: auto;
    width: 100%;
    margin-bottom: 10px;
}

/* Style dla listy checkboxów */
#members-form .select-options {
    display: none;
    position: absolute;
    margin-top: 10px;
    border-radius: 6px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 100%;
    min-width: 220px;
    max-height: 270px;
    overflow-y: auto;
    right: 0;
    left: auto;
}

#members-form .select-options li {
    display: block;
    padding: 10px;
    margin: 0;
    font-size: 0.667rem;
    font-weight: 400;
    color: #515151;
    cursor: pointer;
    width: 100%;
    position: relative;
    text-transform: uppercase;
    text-align: left;
}

#members-form .select-options li.is-selected {
    background: #1D3557;
    color: #fff;
}

#members-form .select-styled:after {
    position: relative;
    content: "";
    background-image: url('../img/icons/arrow_down_navigate.svg');
    width: 10px;
    height: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.user-registration-MyAccount-content .form-row {
    margin-left: 0;
    margin-right: 0;
}

#user-registration .user-registration-MyAccount-content .user-registration-profile-fields__field-wrapper {
    margin: 0 !important;
}

#members-form .select-options li:hover {
    background: #1D3557;
    color: #fff;
}

.checkbox-wrap {
    margin-bottom: 30px;
    margin-top: 10px;
}

.checkbox-wrap>div {
    position: relative;
}

.styled-checkbox {
    position: absolute;
    opacity: 0;
    left: 0;
}

.styled-checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0;
    text-align: left;
    padding-left: 30px;
}

.styled-checkbox+label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid #898989;
    position: absolute;
    left: 0;
    margin-right: 20px;
}

.styled-checkbox:checked+label:before {
    background: #4FAF5E;
}

.styled-checkbox:disabled+label {
    color: #515151;
    cursor: auto;
}

.styled-checkbox:disabled+label:before {
    box-shadow: none;
    background: #ddd;
}

.styled-checkbox:checked+label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}

#members-form .select-styled:active:hover {
    background-image: url('../img/icons/arrow_down_navigate_white.svg');
}

#education_points .form-row {
    width: 100%;
    margin: 0 0 20px 0;
}

#education_points button {
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    line-height: 1.3em;
    border-radius: 5px;
    padding: 12px 25px;
    background-color: #fff;
    border: 1px solid #4faf5e;
    color: #4faf5e;
    transition: all .2s;
    line-height: 1;
    font-weight: 700;
    font-size: 0.667rem;
}

#education_points .file-upload {
    overflow: hidden;
    position: relative;
    width: 100%;
    float: left;
    text-align: left;
    margin-top: 0px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

#education_points .file-upload>input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
}

#education_points .file-upload>input[type=file]:hover~button {
    background-color: #fff;
    color: #4faf5e;
    outline: none;
}

#education_points .file-upload .file-info {
    display: block;
    clear: both;
    margin-left: 0.6em;
    color: #828282;
}

#education_points .table-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#education_points .table-header span {
    color: #0D428B;
    font-weight: 700;
    flex: 1;
    padding: 10px 0 20px;
}

#education_points .table-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#education_points .table-content {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

#education_points .table-content span {
    flex: 1;
}

#education_points h3 {
    font-size: 1.33rem;
    color: #0D428B;
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

#education_points_delete .delete-item {
    color: #0D428B;
    font-size: 20px;
    font-weight: 700;
    background: #fff;
    border: none;
}

/*Share*/
.social-share {
    display: none;
    position: absolute;
    background: #113257;
    border: 1px solid #113257;
    padding: 10px;
    border-radius: 6px;
    right: 15px;
    bottom: 100%;
}

.share-icon-facebook {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 17px;
    height: 17px;
    display: block;
    background-image: url(../img/icons/facebook.svg);
}

.share-icon-instagram {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 17px;
    height: 17px;
    display: block;
    background-image: url(../img/instagram.svg);
}

.share-icon-linkedin {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 17px;
    height: 17px;
    display: block;
    background-image: url(../img/icons/linkedin-logo.png);
}

.share-icon-x {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 17px;
    height: 17px;
    display: block;
    background-image: url(../img/x.svg);
}

.share {
    --button-width: 132px;
    --button-height: 43px;
    /* --button-radius: 20px; */
    width: var(--button-width);
    height: var(--button-height);
    /* background: var(--background-sub); */
    /* border-radius: var(--button-radius); */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform .3s ease-in;
    position: relative;
    overflow: hidden;
    float: right;
    border-radius: 6px;
}


.share__cover {
    position: absolute;
    z-index: 1;
    width: 132px;
    transition: .4s linear;
    /* zoom: .95; */
}

.share:hover .share__cover {
    transform: translateX(-100%);
}

.share a {
    flex: 1;
    text-align: center;
    color: var(--text-inverse);
    /* font-size: 1.6em; */
    height: var(--button-height);
    line-height: var(--button-height);
    transform: translateX(-100%);
    opacity: 0;
    transition: .3s linear;
    background: #113257;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share:first-child a {
    border-right: .5px solid rgba(255, 255, 255, .5);
}

.share:hover a {
    transform: translate(0);
    opacity: 1;
}

.share a:hover {
    color: var(--text);
    background: #4faf5e;
}

.share__icon--facebook:hover {
    background: var(--facebook);
}

.share__icon--twitter:hover {
    background: var(--twitter);
}

.share__icon--instagram:hover {
    background: var(--instagram);
}

.share__icon--linkedin:hover {
    background: var(--linkedin);
}

.border-none {
    border-radius: 0;
}

@media (max-width: 767px) {

    .alignright {
        float: none;
        margin: .5em auto .5em;
        text-align: center;
    }

    .alignleft {
        float: none;
        margin: .5em auto .5em;
        text-align: center;
    }

    /* .page:not(.page-child) #main-wrapper .container,
    .single #main-wrapper .container {
        padding: 0;
    }

    .page:not(.page-child) #main-wrapper .row,
    .single #main-wrapper .row {
        margin: 0;
    }

    .page:not(.page-child) #main-wrapper [class^="col"],
    .single #main-wrapper [class^="col"] {
        padding: 0;
    } */

    .footer-category-page {
        margin: 20px -15px 0 !important;
    }

    .category #main-box .post-item {
        height: 360px;
    }

    .contact-item:last-child {
        margin-bottom: 0;
    }



    .single-wydarzenia .page-content {
        padding: 0;
        border-radius: 0 0 40px 40px;
    }

    .single-wydarzenia .events-img {
        height: fit-content;
        min-height: 220px;
        border-radius: 40px 40px 0 0;
    }

    .page-event-header {
        background-color: #113257;
        padding: 25px 15px;
        color: #fff;
        ;
    }

    .page-event-header .post-category {
        margin-bottom: 20px;
    }

    .page-event-header h2 {
        color: #fff;
        font-size: 1.222rem;
    }

    .page-event-text {
        padding: 25px 15px;
    }

}


@media (min-width: 576px) {
    .container {
        max-width: 100%;
    }


}

@media (min-width: 678px) {
    .magazines-content {
        width: calc(100% - 226px);
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: baseline;
    }

    .magazines__background {
        max-width: 100%;
        width: 226px;
        max-height: 330px;
        margin-right: 40px;
        margin-bottom: 0;
        height: 100%;
    }

    .magazines-wrap {
        flex-direction: row;
        height: 340px;
        padding: 33px 28px;
    }

    .magazines-wrap .btn-border {
        position: absolute;
        bottom: 33px;
    }
}

@media (max-width: 991px) {
    .rules-members-content table tr {
        display: flex;
        flex-direction: column;
    }

    .rules-members-content table td {
        width: 100% !important;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .post-card .post-text {
        border-radius: 0px 0px 40px 40px;
    }

    .post-card .post-img {
        border-radius: 40px 40px 0px 0px;
    }

    .border-none {
        border-radius: 40px;
    }

    .post-content {
        border-radius: 40px;
    }

    .page-content {
        border: 1px solid #fff;
    }

    .survey-map-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer-category-page {
        margin: 40px -15px 0 !important
    }

    .events-today-and-upcoming-wrap {
        margin-top: 40px;
    }

    .icon-download {
        display: block;
    }

    /* .container {
        max-width: 100%;
    } */

    /* .home section {
        margin-bottom: 53px;
    } */
    .home section {
        margin-bottom: 35px;
    }

    .home section.events {
        margin-bottom: 40px;
    }

    .home section.partners {
        margin-bottom: 35px;
    }

    .page-header-wrap {
        margin-bottom: 30px;
    }

    .page-header-wrap .page-header-title {
        border-radius: 40px;
        height: 210px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 63px;
    }

    .page-header-wrap .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-header-title::after {
        background-position: center;
        right: 45px;

        height: 100%;
        width: 450px;
    }

    .page-header-title h1 {
        font-size: 2rem;
        line-height: normal;
        margin-bottom: 10px;
    }

    .page-content {
        background-color: #fff;
        padding: 50px 63px;
        border-radius: 40px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
    }

    .section-header {
        flex-direction: row;
        align-items: start;
        flex-wrap: wrap;
    }

    .section-title,
    .section-header h2,
    .sidebar-header h2 {
        font-size: 1.514em;
    }

    .menagment-page .page-content ul,
    .page-id-215 .page-content ul,
    .page-id-75 .page-content ul,
    .page-id-223 .page-content ul,
    .page-id-654 .page-content ul {
        column-count: 2;
        /* Liczba kolumn */
        column-gap: 50px;
        padding-bottom: 0;
    }



    .footer-top {
        display: flex;
        flex-direction: row;
        padding-top: 45px;
        padding-bottom: 0;
        column-gap: 4%;
    }

    .footer-link {
        align-items: center;
        justify-content: flex-start;
        text-align: inherit;
        flex-direction: row;
        padding: 1.4em 0 0;
    }

    .widget-center h2,
    .widget-right h2 {
        margin-bottom: 30px;
    }

    .widget-column:nth-of-type(1) {
        flex: 0 0 22%;
        /* 25% szerokości */
    }

    .widget-column:nth-of-type(2) {
        flex: 0 0 40%;
        /* 50% szerokości */
    }

    .widget-column:nth-of-type(3) {
        flex: 0 0 26%;
        /* 25% szerokości */
    }

    .footer-link li {
        padding: 4px 1em 4px 0;
    }

    #footer-main ul.menu li {
        margin-bottom: 5px;
    }

    .post-category {
        zoom: .85;
    }

    .post-desc h3 {
        font-size: 0.889rem;
        margin-bottom: 0;
    }

    .first-post .post-desc h3 {
        font-size: 1.333rem;
    }

    .first-post .post-thumbnail {
        width: 100%;
        border-radius: 40px 40px 0 0;
    }

    .post-item .post-desc {
        padding: 15px;
    }

    .first-post .post-desc {
        padding: 20px;
        border-radius: 0 0 40px 40px;
        width: 100%;
    }

    /* .post-item-column {
        height: 390px;
    } */

    /* Dwa elementy obok siebie */
    .second-post .post-item {
        /* Połowa wysokości pierwszego elementu */
        margin-bottom: 15px;
    }

    .icons-wrap {
        display: flex;
        flex-wrap: wrap;
        margin: 45px 60px 0;
        flex-direction: row;
        justify-content: space-around;
    }

    .icons-wrap .icon-item {
        width: 45%;
    }

    .icons-wrap .icon-item img {
        width: 39px;
        height: 39px;
        object-fit: contain;
        margin-bottom: 30px;
    }

    .icons-wrap .icon-item .icon-content {
        color: #113257;
        margin-bottom: 50px;
    }

    .btn-green {
        margin: 0 10px 0 0;
    }

    .accordion-link {
        padding: 30px 0;
    }

    .buttons-container {
        flex-direction: row;
        column-gap: 20px;
    }


    .content-members-add,
    .memmbers-login {
        min-height: 300px;
        padding: 40px;
    }

    .register-wrapper {
        padding: 40px;
    }

    .buttons-container {
        margin: 25px auto;
    }

    .login-register-container {
        column-gap: 20px;
        margin: 0 0 40px;

    }

    #main-content {
        padding-top: 40px;
    }

}

@media (min-width: 992px) {
    .icon-menu {
        min-width: 20px;
        height: 20px;
    }

    .icon-lock {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .btn-all {
        margin-top: 0px;
    }

    .grey-btn {
        padding: 12px 25px;
    }

    .page-content .btn-border-green {
        margin-bottom: 0;
    }

    /* .btn-back,
    .btn-more,
    .share__cover {
        zoom: 1;
    } */
    .share {
        --button-width: 152px;
    }

    .btn-more {
        float: right;
    }

    .share__cover {
        width: 152px;
    }

    .container {
        max-width: 960px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .events-today-and-upcoming-wrap {
        margin-top: 0px;
    }

    .login h3,
    .register-wrapper h3,
    .login-wrapper h3 {
        margin-bottom: 30px;
    }

    #user-registration {
        margin: 30px 0;
    }

    #user-registration p a {
        font-size: 1em;
    }


    .lost_password a {
        font-size: 0.778rem;
        zoom: .95;
    }

    .custom-logo {
        height: 54px;
    }

    #footer-logotype {
        height: 54px;
    }

    .login-wrapper,
    .register-wrapper {
        width: 50%;
        padding: 50px;
        align-items: baseline;
    }

    .login-register-container {
        flex-direction: row;
        margin: 0;
    }

    #login-message {
        margin: 0 auto;
    }

    .register-wrapper {
        padding: 40px;
    }

    .private-content-box {
        flex-direction: row;
    }

    .private-content-box p {
        flex-direction: row;
    }

    private-buttons a {
        margin: 10px;
    }

    #demo-agents .map-list-wrapper>div {
        flex-basis: 100%;
    }

    .tag-filters {
        width: 70%;
        flex-direction: row;
        -ms-flex-direction: row;
        align-items: baseline;
        justify-content: end;
        margin-top: 0;
    }

    .tag-filters ul li a {
        zoom: .9;
    }

    .tag-filters span {

        display: block;
    }

    .footer-category-page {
        margin: 40px -10px 0 !important;
    }

    #footer-main .contact-wrap {
        flex-direction: row;
    }

    #footer-main .contact-wrap ul,
    #footer-main .contact-wrap .contact-data {
        flex: 1;
    }

    #footer-logotype {
        margin: 0px 0 40px;
        display: block;
        height: 60px;
    }

    #footer-main .icon-menu-ul li,
    #footer-main .contact-item,
    .menu-menu-widget-container a,
    .menu-menu-widget-container p,
    #footer-main .menu-item,
    #footer-main p {
        line-height: 25px;
        margin-bottom: 0;
    }

    #footer-main ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-link li {
        padding: 16px 4em 16px 0;
    }

    .widget-column:nth-of-type(1) {
        flex: 0 0 24%;
        /* 25% szerokości */
    }

    .widget-column:nth-of-type(2) {
        flex: 0 0 48%;
        /* 50% szerokości */
    }

    .widget-column:nth-of-type(3) {
        flex: 0 0 20%;
        /* 25% szerokości */
    }

    .post-card {
        border-radius: 40px;
        height: 445px;
        flex-direction: row;
        justify-content: space-between;
    }

    .post-img {
        height: 445px;
        flex-basis: 50%;
        border-bottom: none;
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .post-card .post-img {
        border-radius: 0 40px 40px 0;
    }

    .img-one,
    .img-two,
    .img-three {
        background-size: cover;
        background-position: center;
        display: block;
    }

    .post-text {
        padding: 75px;
        display: flex;
        flex-basis: 50%;
        text-align: left;
        color: #fff;
        flex-direction: column;
        align-items: baseline;
        justify-content: center;
        border-radius: 40px 0 0px 40px;
    }

    .post-card .post-text {
        border-radius: 40px 0 0px 40px;
    }

    .post-content {
        padding: 40px 80px;
        border-radius: 40px;
    }

    .post-thumbnail {
        width: 45%;
        border-radius: 40px 0 0 40px;
    }

    .post-desc {
        width: 55%;
        border-radius: 0 40px 40px 0;
    }

    .post-item-column .post-thumbnail,
    .post-item-column .post-desc {
        width: 100%;
    }

    .post-item-column .post-thumbnail {
        border-radius: 40px 40px 0px 0px;
    }

    .post-item-column .post-desc {
        border-radius: 0 0px 40px 40px;
    }

    .events-today-and-upcoming-wrap {
        height: 520px;
    }

    .single .events {
        margin-top: 57px;
        margin-bottom: 0px;
    }

    .single-wydarzenia .events-today-and-upcoming-wrap {
        height: 500px;
    }

    .container .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }

    .post-item {
        flex-direction: row;
        height: 250px;
        margin-bottom: 15px;
    }

    .post-desc h3 {
        font-size: 0.889rem;
        margin-bottom: 0;
    }

    .first-post .post-desc h3 {
        font-size: 1.333rem;
    }

    /* Pierwszy element */
    .first-post .post-item {
        height: 515px;
        /* Dwukrotna wysokość */
        display: flex;
        flex-direction: column;
        justify-content: normal;
        overflow: hidden;
    }

    .first-post .post-item .post-thumbnail {
        height: 250px;
        max-height: 250px;
        width: 100%;
        flex-basis: 100%;
    }

    .first-post .post-item .post-desc {
        height: 250px;
    }

    .post-thumbnail {
        height: 100%;
    }

    /* 
    .post-item-column {
        height: 390px;
    } */

    .post-item-column .post-thumbnail {
        height: 100%;
        background-position: bottom center;
        max-height: 180px;
        flex-basis: 100%;
        width: 100%;
        object-fit: cover;
        aspect-ratio: 4 / 3;
    }

    .post-item-column .post-desc {
        height: 180px;
        min-height: 180px;
    }

    /* Dwa elementy obok siebie */
    .second-post .post-item {
        /* Połowa wysokości pierwszego elementu */
        margin-bottom: 15px;
    }

    .second-post .post-item {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        overflow: hidden;
    }

    /* Pozostałe elementy */
    .regular-post .post-item {
        height: 250px;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        overflow: hidden;
    }

    .materials {
        padding: 75px 0;
    }

    .content-members-add,
    .memmbers-login {
        min-height: auto;
        justify-content: space-between;
    }

    .members-links a {
        zoom: .9;
    }

    .events-img {
        min-height: 360px;
    }

    .events-img.events-upcoming-img {
        min-height: 500px;
    }

    .event-item {
        height: 390px;
    }

    .events-upcoming-wrap {
        height: 500px;
        margin-bottom: 0;
    }

    .calendar-events .event-item {
        height: 390px;
    }

    .content-members-add p,
    .memmbers-login p {
        max-width: 75%;
    }

    /* Tło i kolory zmieniają się NATYCHMIAST na hover i active-event */
    .events-upcoming-wrap .events-upcoming:hover,
    .events-upcoming-wrap .events-upcoming.active-event {
        background-color: #4faf5e;
        border-radius: 20px;
        border: none;
        transition: background-color 0.2s ease-in-out;
        /* Szybka zmiana */
    }

    .events-upcoming-wrap .events-upcoming:hover h4,
    .events-upcoming-wrap .events-upcoming.active-event h4 {
        color: #fff;
        transition: color 0.1s ease-in-out;
        /* Natychmiastowa zmiana koloru */
    }

    .events-upcoming-wrap .events-upcoming:hover .post-category,
    .events-upcoming-wrap .events-upcoming.active-event .post-category {
        border-color: #fff;
        color: #fff;
        transition: color 0.1s ease-in-out, border-color 0.1s ease-in-out;
    }

    .events-upcoming-wrap .events-upcoming:hover .icon-right,
    .events-upcoming-wrap .events-upcoming.active-event .icon-right {
        background: url('../img/icons/arrow_circle_right_white.svg');
    }

    #pagination-container {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    #user-registration.vertical .user-registration-MyAccount-navigation {
        max-width: 260px !important;
    }
}


@media (max-width: 1023px) {

    .custom-pagination a,
    .custom-pagination span {
        padding: 6px 8px;
        width: 30px;
        height: 30px;
    }

    .custom-pagination li {
        margin: 0 8px;
    }
}

@media (min-width: 1024px) {

    html,
    body {
        background-color: #f4f4f4;
    }

    body {
        font-size: 18px;
    }

    h1 {}

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.444rem;
    }

    .img-wrapper {
        width: 240px;
        display: inline-block;
        flex-direction: column;
        /* float: left; */
        vertical-align: top;
        margin: 0 12px 20px;
    }

    .img-wrapper img {
        border-radius: 100%;
        height: 182px;
        width: 182px;
        margin: 15px auto 30px;

    }

    .bg-zaslepka {
        height: 182px;
        width: 182px;
        margin: 15px auto 30px;
    }

    .img-wrapper .media-title {
        color: #113257;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 22px;
        text-align: center;
    }

    .img-wrapper .media-position {
        color: #4FAF5E;
        font-size: 0.889rem;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
    }

    .widget-center h2,
    .widget-right h2 {
        font-size: 1.222rem;
    }

    .events-today-and-upcoming-wrap .btn-border-black {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .events {
        padding-bottom: 30px;
    }
}

@media (min-width:1200px) {
    .post-desc .post-category {
        zoom: .95;
    }

    #breadcrumbs {
        margin-bottom: 20px;
    }

    .header-top {
        background-color: transparent;
    }

    .header-top.scrolled {
        background-color: #fff;
    }

    .container {
        max-width: 1280px;
    }

    .page #main-content,
    .blog #main-content,
    .archive #main-content,
    .single #main-content,
    .search #main-content {
        padding: 20px 0 !important;
    }

    /* .container {
        max-width: 1280px;
    } */

    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .members .menbers-img {
        max-height: 480px;
    }

    .content-members-add,
    .memmbers-login {
        padding: 70px 30px 40px 30px;
        height: 480px;
        justify-content: space-between;
    }

    .content-members-add {
        margin-bottom: 0;
    }

    .content-members-add a:first-child {
        margin-bottom: 0;
    }

    .magazines-wrap {
        height: 400px;
        margin-bottom: 0;
    }

    .members-links a {
        zoom: 1;
    }

    .post-item .post-desc {
        padding: 22px;
    }

    .first-post .post-desc {
        padding: 22px;
    }

    .post-thumbnail {
        height: 100%;
    }

    .post-thumbnail,
    .post-desc {
        width: 50%;
    }

    .post-item .post-thumbnail {
        width: 50%;
    }

    .post-item-column .post-thumbnail,
    .post-item-column .post-desc {
        width: 100%;
    }

    .first-post.post-item .post-thumbnail {
        width: 100%;
    }

    .events-img {
        min-height: 500px;

    }

    .footer-category-page {
        margin: 20px -10px 0 !important;
    }

}

@media (min-widtH: 1560px) {
    .img-wrapper {
        margin: 0 14px 20px;
    }

    /* .post-excerpt,
    .post-excerpt p {
         -webkit-line-clamp: 3;
        height: fit-content; 
        max-height: 57px;
    } */

    /* @supports (-webkit-line-clamp: 3) {

        .post-excerpt,
        .post-excerpt p {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    } */

    .content-members-add,
    .memmbers-login {
        padding: 90px 30px 40px 30px;
    }

}

@media (min-width:1920px) {
    /* .post-category {
        font-size: 1rem;
    }

    .post-desc .post-category {
        font-size: 1rem;
    } */

    .img-wrapper {
        margin: 0 30px 20px;
    }

    /* .events-today-and-upcoming .post-category {
        zoom: 1;
    } */
}

@media (min-width: 2560px) {
    .events-today-and-upcoming-wrap {
        height: 500px;
    }

    .footer-realization a img {
        width: 140px;
    }

    #footer-main p {
        font-size: 1rem;
        line-height: 30px;
    }

    .menu-menu-widget-container li {
        font-size: 1rem;
    }

    .menu-menu-widget-container a,
    .menu-menu-widget-container p,
    #footer-main .menu-item {
        font-size: 1rem;
        line-height: 30px;
        margin-bottom: 0px;
    }

    #footer-main .icon-menu-ul li,
    #footer-main .contact-item {
        font-size: 1rem;
        line-height: 30px;
    }

    .container {
        max-width: 1360px;
    }


}

@media (min-width: 3840px) {
    /* 	.post-description h3 a,
.sidebar-post h3 a {
    -webkit-line-clamp: 3;
    height: 47px;
}
	.post-description p {
		-webkit-line-clamp: 3;
		height:47px;
	} */
}