/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-30: 30px;
    --space-25: 25px;

    --font-80: 80px;
    --font-65: 65px;
    --font-60: 60px;
    --font-48: 48px;
    --font-45: 45px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-28: 28px;
    --font-26: 26px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;
    --container-padding: 40px;
    --row-gap: 10px;

    /** SPECIFIC **/
    --color-primary: #159A3B;
    --color-secondary: #037433;
    --color-tertiary: #D9E021;
    --color-default: #000000;

    --second-family: "League Spartan", sans-serif;
}

body {
    color: #000;
    font-family: "Outfit", sans-serif;
}

/**
 * BASIC
 */

a, input, select, textarea, option, button {
    outline: none !important;
}

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

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

a:hover, a:focus {
    color: var(--color-primary);
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.grayscale {
    filter: grayscale(1);
}

.grayscale-fade {
    transition: filter 0.2s;
}

.grayscale-fade:hover,
.grayscale-fade:focus {
    filter: grayscale(0);
}

/**
 * PAGE
 */

#page,
#content {
    /* overflow: hidden; */
}

.container {
    clear: both;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
}

.container-small {
    max-width: 1440px;
}

.container--noClear {
    clear: none;
}

.container--noClear::before,
.container--noClear::after {
    display: none;
}

/**
 * ICONS
 */

/*.icon-mask.icon-mask {    -webkit-mask-size: cover;    -mask-size: cover;    -webkit-mask-position: center;    mask-position: center;    -webkit-mask-repeat: no-repeat;    mask-repeat: no-repeat;    background-color: currentColor;}*/
/*.icon-user {    -webkit-mask-image: url('../images/icons/user.svg');    mask-image: url('../images/icons/user.svg');}*/
/*.icon-register {    -webkit-mask-image: url('../images/icons/register.svg');    mask-image: url('../images/icons/register.svg');}*/
/*.icon-logout {    -webkit-mask-image: url('../images/icons/logout.svg');    mask-image: url('../images/icons/logout.svg');}*/


/**
 * BUTTONS
 */

.btn, a, button {
    border-radius: 0;
    transition: all 0.2s;
}

.btn-big {
    border: 1px solid transparent;
    padding: 0 34px;
    height: 56px;
    line-height: 54px;
    box-shadow: 0 0 0 transparent !important;
    border-radius: 10px;
    width: 230px;
    font-weight: 500;
    font-size: 18px;
}

.btn-big .btn-arrow {
    width: 54px;
    height: 54px;
}

.btn-big .btn-arrow svg {
    width: 16px;
}

.btn-lg {
    border: 1px solid transparent;
    padding: 0 34px;
    height: 46px;
    line-height: 44px;
    box-shadow: 0 0 0 transparent !important;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    min-width: 189px;
}

.btn-sm {
    border: 1px solid;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 30px;
    height: 40px;
    line-height: 36px;
}


.btn.has-icon {
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.btn.has-icon .btn-icon {
    width: 44px;
    height: 44px;
    padding: 6px;
    margin-right: 7px;
}

.user-nav .btn.has-icon .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.has-arrow {
    padding-right: 50px;
    position: relative;
    padding-left: 19px;
}

.btn-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
}


/**
 * THEMES
 */

.btn.btn-primary,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary:focus:active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn.btn-primary[disabled],
.btn.btn-primary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-primary svg {
    fill: currentColor;
}

.btn.btn-primary .btn-caption {
    position: relative;
    z-index: 2;
}

.btn {
    overflow: hidden;
    position: relative;
}

.btn.btn-arrow {
    position: relative;
    z-index: 2;
}

.btn.btn-lg .btn-caption {
    position: relative;
    z-index: 2;
}

.btn.btn-lg .caption {
    position: relative;
    z-index: 2;
}

.btn.btn-primary:before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    top: 0;
    right: 0;
    background-color: #fff;
    height: 100%;
    transition: .3s all ease-in-out;
}

@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):hover, .btn-tertiary:not([disabled]).active:hover {
        color: var(--color-primary);
    }

    .btn-primary:not([disabled]):hover:before,
    .btn-primary:not([disabled]).active:hover:before {
        width: 100%;
    }
}

.btn.btn-secondary,
.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary:focus:active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.btn.btn-secondary[disabled],
.btn.btn-secondary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-secondary .btn-caption {
    position: relative;
    z-index: 2;
}

.btn.btn-secondary svg {
    fill: currentColor;
}

.btn.btn-secondary:before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    top: 0;
    right: 0;
    background-color: #fff;
    height: 100%;
    transition: .3s all ease-in-out;
}

@media screen and (min-width: 1140px) {
    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        color: var(--color-secondary);
    }

    .btn-secondary:not([disabled]):hover:before,
    .btn-secondary:not([disabled]).active:hover:before {
        width: 100%;
    }
}

.btn.btn-tertiary,
.btn.btn-tertiary:focus,
.btn.btn-tertiary:active,
.btn.btn-tertiary:focus:active {
    background-color: var(--color-tertiary);
    border-color: var(--color-tertiary);
    color: #000;
    overflow: hidden;
}

.btn.btn-tertiary .btn-caption {
    position: relative;
    z-index: 2;
}

.btn.btn-tertiary:before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    top: 0;
    right: 0;
    background-color: #fff;
    height: 100%;
    transition: .3s all ease-in-out;
}

@media screen and (min-width: 1140px) {
    .btn-tertiary:not([disabled]):hover, .btn-tertiary:not([disabled]).active:hover {
        color: #000;
    }

    .btn-tertiary:not([disabled]):hover:before,
    .btn-tertiary:not([disabled]).active:hover:before {
        width: 100%;
    }
}

.btn.btn-tertiary[disabled],
.btn.btn-tertiary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}


.btn.btn-tertiary svg {
    fill: currentColor;
}

.btn.btn-default,
.btn.btn-default:focus,
.btn.btn-default:active,
.btn.btn-default:focus:active {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.2);
    color: #000;
}

.btn.btn-default:before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    top: 0;
    right: 0;
    background-color: #D9E021;
    height: 100%;
    transition: .3s all ease-in-out;
}

.btn.btn-default[disabled],
.btn.btn-default[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-default .btn-arrow svg {
    fill: currentColor;
}

.btn.btn-white,
.btn.btn-white:focus,
.btn.btn-white:active,
.btn.btn-white:focus:active {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--color-default);
}

.btn-white .btn-caption,
.btn-white .btn-icon {
    position: relative;
    z-index: 2;
}

.btn.btn-white:before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    top: 0;
    right: 0;
    background-color: var(--color-tertiary);
    height: 100%;
    transition: .3s all ease-in-out;
}

@media screen and (min-width: 1140px) {
    .btn-white:not([disabled]):hover:before,
    .btn-white:not([disabled]).active:hover:before {
        width: 100%;
    }
}

.btn.btn-primary .btn-icon svg,
.btn.btn-primary .btn-icon svg * {
    fill: #fff;
}

.btn.btn-secondary .btn-icon svg,
.btn.btn-secondary .btn-icon svg * {
    fill: var(--color-primary);
}

.btn.btn-white .btn-icon svg,
.btn.btn-white .btn-icon svg * {
    fill: #000;
}


@media screen and (min-width: 1140px) {
    .btn-primary:hover .btn-icon svg,
    .btn-primary:hover .btn-icon svg * {
        fill: var(--color-primary);
    }

    .btn-secondary:hover .btn-icon svg,
    .btn-secondary:hover .btn-icon svg * {
        fill: var(--color-secondary);
    }

    .btn-tertiary:hover .btn-icon svg,
    .btn-tertiary:hover .btn-icon svg * {
        fill: var(--color-tertiary);
    }

    .btn-default:not([disabled]):hover,
    .btn-default:not([disabled]).active:hover {
        color: #000;
        border-color: #D9E021;
    }

    .btn-default:not([disabled]):hover:before,
    .btn-default:not([disabled]).active:hover:before {
        width: 100%;
    }

    .btn-default:hover .btn-icon svg,
    .btn-default:hover .btn-icon svg * {
        fill: var(--color-default);
    }

    .btn-white:not([disabled]):hover,
    .btn-white:not([disabled]).active:hover {
        color: #000;
        border-color: var(--color-tertiary);
    }

    .btn-white:hover .btn-icon svg,
    .btn-white:hover .btn-icon svg * {
        fill: var(--color-default);
    }
}


/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 0;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: rgba(0, 0, 0, .2);
    border-radius: 10px;
    overflow: hidden;
}

.row {
    margin-left: calc(-1 * var(--row-gap));
    margin-right: calc(-1 * var(--row-gap));
    display: flex;
    flex-wrap: wrap;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
.col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3,
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12,
.col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: var(--row-gap);
    padding-right: var(--row-gap);
}

.modal-footer[style="display: block;"] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.modal-footer:after, .modal-footer:before {
    content: none;
}

/**
 * TITLES
 */


.text.txt h1 {
    font-size: var(--font-48);
    margin-bottom: var(--space-30);
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    line-height: 122%;
    color: #000;
}

.text.txt h2 {
    font-size: var(--font-45);
    margin-bottom: var(--space-30);
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    line-height: 122%;
    color: #000;
}

.text.txt h3 {
    font-size: var(--font-40);
    margin-bottom: var(--space-30);
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    line-height: 122%;
    color: #000;
}

.text.txt h4 {
    font-size: var(--font-36);
    margin-bottom: var(--space-30);
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    line-height: 122%;
    color: #000;
}

.text.txt h5 {
    font-size: var(--font-30);
    margin-bottom: var(--space-30);
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    line-height: 122%;
}


.text.txt h6 {
    font-size: var(--font-24);
    margin-bottom: var(--space-30);
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    line-height: 122%;
}


/**
 * Modal
 */

.modal-header {
    background: var(--color-primary);
}

.modal-title {
    margin: 0;
    font-weight: 400;
    font-size: var(--font-30);
    line-height: 1.27778;
    color: #fff;
}

.modal-header button.close {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -23px;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    opacity: 1;
    border-radius: 50%;
}

.modal-header button.close {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -23px;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    opacity: 1;
    border-radius: 50%;
    color: #fff;
    text-shadow: 0 0 transparent;
    font-size: 30px;
}

.modal-header button.close:hover {
    background: #fff;
    color: var(--color-primary);
}


.modal-body button.btn.btn-lg.btn-primary {
    display: block;
    margin: 0 auto;
}

.modal-body .controls.captcha-container {
    width: 100%;
}


/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    line-height: 1.875em;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

.text ul > li::before {
    content: "";
    display: inline-block;
    left: -16px;
    margin-left: -8px;
    font-family: sans-serif;
    position: relative;
    top: -1px;
    width: 5px;
    height: 5px;
    background-color: var(--color-default);
    border-radius: 50%;
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}

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

.text h2 {
    font-size: var(--font-40);
    line-height: normal;
    margin-bottom: 15px;
}

.text h3 {
    font-size: var(--font-36);
    line-height: normal;
    margin-bottom: 15px;
}

.text h4 {
    font-size: var(--font-30);
    line-height: normal;
    margin-bottom: 15px;
}

.text h5 {
    font-size: var(--font-28);
    line-height: normal;
    margin-bottom: 15px;
}

.text h5 {
    font-size: var(--font-26);
    line-height: normal;
    margin-bottom: 15px;
}

.vcenter {
    display: block;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}

.photo-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.photo-bg img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7.849vw 0;
}

.mask {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    pointer-events: none;
}

.grayscale, .gray {
    filter: grayscale(100%);
}

.buttons-center {
    text-align: center;
    margin-bottom: var(--space-60);
}

/*.slick-track {*/
/*    display: flex !important;*/
/*    height: auto !important;*/
/*}*/

/*.slick-slide {*/
/*    height: inherit !important;*/
/*}*/

div#container-page {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    /* background: url(../images/page.jpg) no-repeat center 0; */
}


/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
}

/*.header-top {
    background-color: #337ab7;
}

.header-top-inner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    min-height: 54px;
}

.header-top-right {
    display: flex;
    align-items: stretch;
}
*/

.top {
    padding-top: 10px;
}

.top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    position: relative;
}

.top-inner:after {
    width: 200%;
    height: 1px;
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    background: rgba(0, 0, 0, 0.2);
}

.top-left {
    display: flex;
    justify-content: space-between;
    width: 33.5%;
    align-items: center;
}

.top-left .social-caption {
    max-width: 196px;
}

.top .social-box {
    display: flex;
    align-items: center;
}

.top-right {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}

.logo {
    margin-right: 10px;
    height: 72px;
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    max-width: 100%;
}


.social-caption {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #000;
    margin-right: 15px;
}

.top-buttons {
    display: flex;
}


.top .has-arrow {
    margin-left: 15px;
    width: 189px;
    text-align: left;
}


#main-menu {
    transition: all 300ms ease-out;
}

#main-menu ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#main-menu li {
    position: relative;
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

#main-menu li a {
    position: relative;
    padding: 27px 4px;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #000;
    display: block;
}

#main-menu li a:hover {
    color: var(--color-primary);
}

#main-menu li.active a {
    color: var(--color-secondary);
    font-weight: 600;
}

#main-menu li > ul {
    display: none;
}

#main-menu li:hover > ul {
    display: block;
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

.main-menu-button {
    float: right;
    width: 40px;
    margin: 10px 0 10px 0;
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: var(--color-primary);
}


.contact-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -40px;
}

.contact-link {
    align-items: flex-start;
    font-size: var(--font-18);
    line-height: 200%;
    font-weight: 400;
    display: flex;
    padding: 40px;
}

.contact-link .link-icon {
    margin-right: 39px;
    position: relative;
    border-radius: 50%;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 1px solid #e5e5e5;
    padding: 14px;
    text-align: center;
}

.contact-links .contact-link svg, .contact-links .contact-link svg * {
    stroke: currentColor;
}

.contact-link .caption strong {
    display: block;

}

@media screen and (min-width: 1140px) {
    .contact-link:hover {
        text-decoration: underline;
        color: #fff;
    }

    .contact-link:hover .link-icon {
        background: #fff;
    }
}

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    float: left;
    position: relative;
    width: 350px;
    max-width: 100%;
}

.mainsearch-search {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 10px;
}

.mainsearch .form-element-container {
    flex-grow: 1;
}

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    border-right: none;
    box-shadow: none;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mainsearch .alert-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.mainsearch .form-control-feedback {
    display: none;
}


/*
* USER NAV
*/

/*.header-top .user-nav {    display: flex;    align-items: stretch;}*/
/*.header-top .user-nav-item {    display: flex;    align-items: stretch;    position: relative;}*/
/*.header-top .user-nav-item-inner {    display: flex;    align-items: center;    color: #fff;}*/
/*.header-top .user-nav-item + .user-nav-item {    padding-left: 20px;    margin-left: 20px;}*/
/*.header-top .user-nav-item + .user-nav-item::before {    content: '';    display: block;    position: absolute;    top: 50%;    left: 0;   -ms-transform: translate3d(0, -50%, 0);     transform: translate3d(0, -50%, 0);    width: 1px;    height: 12px;    background-color: rgba(255, 255, 255, 0.6);}*/
/*.header-top .user-nav-item .icon {    width: 26px;    height: 26px;}*/


/**
 * FOOTER
 */

footer {
    position: relative;
}

.footer-boxes {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}


.footer-box-container {
    position: relative;
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-40) + 5px);;
    background: #F7F9D3;
}

.footer-box {
    padding-right: 30px;
    position: relative;
    width: 26%;
}

.footer-left {
    width: 50%;
    display: flex;
}

.footer-right {
    width: 50%;
}


.footer-col-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-22);
    line-height: 130%;
    color: #000;
    margin-bottom: calc(var(--space-30) + 5px);;
}


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

.footer-box ul li {
    margin-bottom: 13px;
}

.footer-box ul li a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000;
    padding-top: 5px;
    padding-bottom: 5px;
}

@media screen and (min-width: 1140px) {
    .footer-box ul li a:hover {
        text-decoration: none;
        color: var(--color-primary);
    }
}

.footer-box .text a {
    color: #fff;
}


img.logo-min {
    display: block;
    margin-bottom: calc(var(--space-30) + var(--space-40) );;
    max-width: 100%;
}

.footer-box .text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 188%;
    color: #000;
    margin-top: 0;
}


.contact-links-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -40px;
}

.contact-link-bottom {
    align-items: flex-start;
    font-size: var(--font-18);
    line-height: 200%;
    font-weight: 400;
    display: flex;
    padding: 40px;
}

.contact-link-bottom .btn-icon {
    margin-right: 39px;
    position: relative;
    border-radius: 50%;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 1px solid #e5e5e5;
    padding: 14px;
    text-align: center;
}


.contact-link-bottom .caption strong {
    display: block;

}

.contact-link-bottom svg, .contact-link-bottom svg * {
    stroke: currentColor;
}

@media screen and (min-width: 1140px) {
    .contact-link-bottom:hover {
        text-decoration: underline;
        color: #fff;
    }

    .contact-link-bottom:hover .btn-icon {
        background: #fff;
    }
}

.footer-col-title.footer-col-title-rwd {
    opacity: 0;
}

.footer-box:last-child {
    width: 21%;
}

.footer-box:first-child {
    width: 23%;
}

.footer-box:nth-child(2) {
    width: 33%;
}

.footer-box:nth-child(3) {
    width: 23%;
}

footer .social-box h3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #000;
}

footer .social-box {
    display: flex;
    align-items: center;
}

.footer-box .social-list > ul > li {
    margin-bottom: 0;
}

.footer-box .social-list {
    margin-left: 12px;
}

.footer-box .social-list .social-icon {
    background: #fff;
    color: #000;
    border-color: #fff;
}


/*.footer-box .social-list a:hover .social-icon {*/
/*    background: #000;*/
/*    color: #fff;*/
/*    border-color: #000;*/
/*}*/


/* FOOTER BAR */
.footer-bar {
    line-height: 30px;
    font-weight: 400;
    font-size: 12px;
    color: #000;
    background: #F7F9D3;
}

.footer-bar-left {
    display: flex;
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
}

.footer-bar-right {
    display: flex;
    align-items: center;
}

.footer-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding: 12px 0;
}

.footer-bar-links a {
}

.footer-bar-links {
    margin-left: -5px;
    font-weight: 400;
    font-size: 12px;
}

.footer-bar-links:has(li) + .copyright:before {
    content: "|";
    color: currentColor;
    margin-right: 10px;
    display: inline-block;
}

.footer-bar-links > li + li:before {
    content: "|";
    color: currentColor;
    margin-right: 16px;
    display: inline-block;
}

.footer-bar-links > li {
    color: #000;
    display: inline-block;
    vertical-align: middle;
    padding: 3px 8px;
    line-height: 2;
    font-weight: 400;
    font-size: 12px;
}

.footer-bar-links a:hover {
    text-decoration: underline;
}

.footer-bar-links a {
    color: inherit;
}


.copyright-undicom {
    font-family: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: #000;
    font-size: 12px;
    font-weight: 400;
}

.copyright-undicom svg {
    max-width: 15px;
    fill: currentColor;
}

/**
 * FORM
 */

.form-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-45);
    line-height: 130%;
    text-align: center;
    color: #000;
    margin-bottom: var(--space-50);
}

form.form {
    padding: 9px 0 0;
}

.form-group {
    margin-bottom: 19px;
}

.form .form-element-name {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    color: #16244e;
    margin-bottom: 15px;
}


/* INPUTY */
.form-control,
.form .form-control {
    height: 46px;
    box-shadow: 0 0 0 transparent;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0;
    font-family: poppins, sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    height: 138px;
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 169%;
    color: #000;
}

.form .before-consent-row {
    padding-top: 14px;
}


.form .consent-row .error {

}

/* CAPTCHA */
.form .captcha-image-wrapper, .form .form-group-sm .captcha-image-wrapper, .form .form-group-lg .captcha-image-wrapper {
    box-shadow: none;
    background: #fff;
    border-radius: 10px;
}

/* KOLOR GWIAZDKI WYMAGANEGO POLA */
.form .form-required-mark {
    /* color: #a94442; */
}

.form-element-select .form-control-feedback,
.form-element-country .glyphicon {
    display: none;
}

.form button.captcha-refresh {
    right: var(--row-gap);
    color: var(--color-default);
    border-radius: 0 10px 10px 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #e5e5e5;
}

.form button.captcha-refresh .fa.fa-spin {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    animation-play-state: paused;
}

@media screen and (min-width: 1140px) {
    .form button.captcha-refresh:hover {
        color: #000;
        border-color: #e5e5e5;
        border-radius: 0 5px 5px 0;
    }

    .form button.captcha-refresh:hover .fa.fa-spin {
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        animation-play-state: running
    }
}

.form-control-feedback {
    top: 50%;
    right: 0;
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}


.controls.captcha-container {
    width: 66.66%;
}

.row-flex-center {
    padding-top: 14px;
    justify-content: center;
    display: flex;
}

.form .consent-all-row {
    color: var(--color-default);
    margin-bottom: calc(var(--space-40) + 5px);
}

.form-service-container .form .consent-all-row {
    color: #fff;
}

/*---- SELECT 2 -----*/

.select2-dropdown {
    z-index: 100;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 46px;
    border-color: #ccc;
    border-radius: 6px;
    text-align: left;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
    font-size: 14px;
    padding-right: 44px;
    color: #555;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 44px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    line-height: 24px;
    display: inline-block;
    float: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
}

.has-feedback .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 68px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 16px;
    color: #000;
    text-align: center;
    font-size: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '\f107';
    font-family: 'FontAwesome', sans-serif;
    font-size: 16px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -ms-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow > b {
    display: none;
}

.select2-results__option[aria-selected] {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 300;
    padding: 6px 22px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
        -webkit-background-size: 200px 20px !important;
        background-size: 200px 20px !important;
    }
}

.form-box-wrapper button.btn.btn-lg {
    border-radius: 5px;
    margin: 0 auto;
    display: block;
}


@media screen and (min-width: 1140px) {
    .form-box-wrapper button.btn.btn-lg:hover {
    }

}

.form .consent-all-row strong {
    padding-top: 20px;
    display: block;
}

@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
        -webkit-background-size: 200px 20px !important;
        background-size: 200px 20px !important;
    }
}


/**
 * MAP POINTS
 */

.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.webp') no-repeat scroll center center;
    cursor: pointer;
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}


.map-box-container iframe {
    width: 100%;
    display: block;
    height: 590px;
}


/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

.breadcrumb > li > a {
    font-size: 12px;
}

.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}

.breadcrumb > li > a.last {
    color: var(--color-primary);
}

/**
 * ANIMATABLE ICON
 */
.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}

.animIcon::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-default);
    transition: all .4s ease;
}

/* Close */
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    transform-origin: center;
}

.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
}

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

.animIcon.animIcon--hamburger span:nth-child(1) {
    margin-top: 20%;
}

.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 50%;
}

.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 80%;
}

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 15%;
    margin-left: 15%;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    margin-top: 70%;
}

.animIcon.animIcon--hamburger.active span:nth-child(3) {
    margin-top: 85%;
    margin-left: 15%;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes-box-container {
    padding-bottom: calc(var(--space-30) + var(--space-40) );;
}

.logotypes-box-title {
    font-weight: 400;
    font-size: var(--font-45);
    line-height: 167%;
    text-align: center;
    color: #000;
    font-family: var(--second-family), sans-serif;
    /*border-top: 1px solid rgba(0, 0, 0, 0.2);*/
    padding-top: var(--space-50);
    margin-bottom: calc(var(--space-40) + 5px);;
}

.logotype-slider {
    margin: -8px;
}

.slick-initialized .logotype {
    position: relative;
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
    height: 158px;
}

.logotype-slider img {
    max-height: 150px;
    max-width: 100%;
    margin: 0 auto;
    top: 50%;
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    position: relative;
}

.logotype-slider button.slick-arrow {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -28px;
    font-size: 0;
    z-index: 1;
}


.logotype-slider button.slick-prev.slick-arrow {
    left: -94px;
    background: url(../images/icons/arrow_big_left.svg) no-repeat center center;
}

.logotype-slider button.slick-next.slick-arrow {
    right: -94px;
    background: url(../images/icons/arrow_big_right.svg) no-repeat center center;
}

@media screen and (min-width: 1140px) {
    .logotype-slider button.slick-prev.slick-arrow:hover {
        background: #fff url(../images/icons/arrow_big_left_green.svg) no-repeat center center;
        border-color: var(--color-primary);
    }

    .logotype-slider button.slick-next.slick-arrow:hover {
        background: #fff url(../images/icons/arrow_big_right_green.svg) no-repeat center center;
        border-color: var(--color-primary);
    }
}


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 46px;
    height: 46px;
    color: #000;
    transition: .2s all;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

.social-icon .fa {
    font-size: 20px;
}

.social:hover .social-icon {
    color: var(--color-primary);
    border-color: var(--color-primary)
}


/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
    margin: 0 0 0 15px;
}

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    transition: all 0.3s;
}

.langs-menu li {
    padding-top: 5px;
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lang.lang-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    display: flex;
    align-items: center;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    text-transform: uppercase;
}


.lang span.langs-menu-short {
    font-weight: 400;
    font-size: 15px;
    text-align: center;

}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    cursor: pointer;
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lang span.langs-menu-icon {
    display: none
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: 18px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;

}

.lang-button .arrow {
    display: none;
}

.langs-menu-icon img {
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    .lang.lang-item:hover,
    .lang.lang-item:focus {
        color: #fff;
        background-color: var(--color-primary);
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}

.langs-menu--list .lang {
    background: none;
}

.langs-menu--list .langs-menu-icon {
    margin: 0;
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
    margin-bottom: 26px;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 56px;
    margin-bottom: 20px;
    margin-top: 4px;
}

.article-image img {
    max-width: 100%;
    display: block;
    border-radius: 11px;
}

.article-subtitle {
    padding-bottom: var(--space-30);
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: var(--space-30);
}

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

.gallery-list {
    margin: -7px;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
}

.gallery-list-item {
    display: flex;
    flex-wrap: wrap;
    width: 33.33%;
    padding: 7px;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 11px;
    overflow: hidden;
}

.gallery-picture > img {
    display: block;
    max-width: 100%;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s;
    border-radius: 11px;
}

.gallery-picture-hover > * {
    background: url(../images/zoom.webp) no-repeat center center;
    text-indent: -20000px;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 46px;
    height: 46px;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 0;
    margin: 0 auto;
    display: block;
    top: 50%;
}

@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/minimal.webp);
}

/* HiDPI support */
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .icheckbox_minimal-custom,
    .iradio_minimal-custom {
        background-image: url(../images/minimal@2x.webp);
    }
}

/**
* PAGINATION
*/

.pagination-wrapper {
    clear: both;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
}

.pagination-wrapper ul li {
    padding: 0 15px;
}

.pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
    padding: 0 25px;
    vertical-align: middle;
    float: none;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    line-height: 50px;
    padding: 0 11px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}


.pagination-wrapper ul li.prev a, .pagination-wrapper ul li.next a {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 transparent;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.pagination-wrapper ul li.active a {
    color: var(--color-primary);
}

.pagination-wrapper ul li.next a > * {
    text-indent: -20000px;
    width: 100%;
    height: 100%;
    background: url(../images/icons/arrow_right.svg) no-repeat center center;
}

.pagination-wrapper ul li.prev a > * {
    text-indent: -20000px;
    width: 100%;
    height: 100%;
    background: url(../images/icons/arrow_right.svg) no-repeat center center;
    transform: rotate(180deg);
    margin-top: 1px;
    margin-left: 1px;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li.next a:hover {
        background: var(--color-primary)
    }

    /*.pagination-wrapper ul li.next a:hover > * {*/
    /*    background: url(../images/icons/arrow_right.svg) no-repeat center center / 50%;*/
    /*}*/

    .pagination-wrapper ul li.prev a:hover {
        background: var(--color-primary)
    }

    /*.pagination-wrapper ul li.prev a:hover > * {*/
    /*    background: url(../images/icons/arrow_left.svg) no-repeat center center / 50%;*/
    /*}*/

    .pagination-wrapper ul li a:hover {
        color: var(--color-primary);
    }
}


.main-slider, .slider .slide, .slider .slider-photo, .main-slider .slick-list, .main-slider .slick-track {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.slider {
    position: relative;
    height: 936px;
    margin-bottom: 0;
    border-radius: 0 0 7.849vw 0;
    background: #f7f9d3;
}

.slider .container {
    position: relative;
}

.slider-photo img {
    display: block;
    max-width: 100%;
    border-radius: 30px;
}


.slide-box {
    display: flex;
    height: 100%;
    justify-content: flex-end;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1640px;
    width: 100%;
}

.slide-text {
    width: 38%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: calc(var(--space-50) + var(--space-50) );;
}

.title1 {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: 4.167vw;
    line-height: 106%;
    margin-bottom: var(--space-40);
    color: #000;
}
@media screen and (min-width: 1921px) {
    .title1 {
        font-size: 80px;
    }
}
.description {
    font-weight: 400;
    font-size: 16px;
    line-height: 188%;
    color: #000;
    max-width: 85%;
    margin-bottom: var(--space-40);
}

.slider-buttons {
    display: flex;
}

.slider-buttons a {
    width: 230px;
    height: 56px;
    font-weight: 500;
    font-size: var(--font-18);
    line-height: 54px;
    margin-right: 20px;
    min-width: 230px;
    text-align: left;
}

.slider-buttons a .btn-arrow {
    width: 54px;
    height: 54px;
}

.slider ul.slick-dots {
    position: absolute;
    margin: 0 auto;
    bottom: 242px;
    text-align: left;
    width: 40.5%;
    right: 0;
}

ul.slick-dots li {
    display: inline-block;
    margin: 0 15px;
    transition: all 0.2s;
}

ul.slick-dots li span {
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    width: 14px;
    height: 14px;
    background: transparent;
    border: 1px solid #000;
    cursor: pointer;
}

ul.slick-dots li:hover span {
    background: #037433;
    border-color: #037433;
}

ul.slick-dots li.slick-active span {
    background: #037433;
    border-color: #037433;
}

.slider-navigation-wrapper {
    position: absolute;
    width: 68%;
    left: -18.5%;
    top: 40px;
    overflow: hidden;
}

.slider-navigation-wrapper .slider-navigation {
    display: flex;
}

.slider-navigation-wrapper .slider-navigation .slick-list {
    width: 100%;
}

.slider-navigation-wrapper .slider-navigation .slick-track {
    width: 100%;
    display: flex;
}

.small-photo img {
    display: block;
    max-width: 100%;
    border-radius: 50%;
    max-height: 648px;
}

.slider-navigation .title1 {
    font-weight: 800;
    font-size: var(--font-26);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 18px;
    padding: 0 9px;
    margin-bottom: var(--space-30);
}

.slider-navigation .slide img {
    transition: all 0.3s ease;
}

.slider-navigation .slide {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.small-photo {
    display: block;
    position: relative;
    border-radius: 50%;
    max-height: 650px;
    overflow: hidden;
}

@media screen and (min-width: 1140px) {
    .slider-navigation .slide.slick-current .small-photo,
    .slider-navigation .slide:not(.slick-active) .small-photo {
        width: 86.9%;
    }
}

.slider-navigation .small-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    transition: .4s all .2s;
}

span.mask.nav-slider-mask {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%) border-box;
    border-radius: 20px;
}

.slide.slick-slide.slick-current.slick-active span.mask.nav-slider-mask {
    background: transparent;
}

#content {
    padding-top: 167px;
}

.link-boxex-container {
    margin-top: -150px;
    position: relative;
    z-index: 1;
    padding-bottom: calc(var(--space-40) + var(--space-40) );;
}

.link-boxes {
    display: flex;
    margin: -12px;
}

.link-box {
    border: 2px solid #159a3b;
    border-radius: 20px;
    box-shadow: 4px 3px 13px 0 rgba(0, 0, 0, 0.15);
    margin: 12px;
    width: calc(33.33% - 24px);
    padding: 30px 41px;
    background: #fff;
}


.link-box-social {
    border: 2px solid #d9e021;
    border-radius: 20px;
    margin: 12px;
    width: calc(33.33% - 24px);
    background: #fff;
}

.link-box-title {
    display: flex;
    align-items: center;
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-26);
    color: #000;
    margin-bottom: 23px;
    line-height: 130%;
}

.link-box-icon {
    height: 42px;
    margin-right: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 48px;
}

.link-box-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.link-box-content ul li {
    display: block;
}

.link-box-content ul li a {
    display: block;
    padding-top: 11px;
    padding-bottom: 11px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    position: relative;
    padding-right: 27px;
}

.link-box-content ul li a:after {
    position: absolute;
    right: 0;
    top: 50%;
    background: url(../images/icons/arrow_right.svg) no-repeat right center;
    content: '';
    width: 13px;
    height: 11px;
    margin-top: -5px;
    transition: .3s all;
}

@media screen and (min-width: 1140px) {
    .link-box-content ul li a:hover:after {
        transform: translateX(5px) rotateX(180deg);
    }
}

.link-box-content ul li a:hover {
    color: var(--color-primary);
}

.link-box-content ul li a:hover:after {
    background: url(../images/icons/arrow_right_green.svg) no-repeat right center;
    content: '';
}

.link-box-social-inner {
    display: flex;
}

.social-left-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-26);
    line-height: 138%;
    color: #000;
    position: relative;
}

.social-left {
    padding: 33px 32px 32px 30px;
    width: 50%;
    position: relative;
    z-index: 1;
}

.social-left-title {
    margin-bottom: var(--space-30);
}

.link-box-social .has-arrow {
    width: 191px;
}

.social-right {
    width: 64%;
    margin-left: -17%;
    margin-top: 40px;
    margin-right: 3%;
    position: relative;
    z-index: 0;
}

.social-right img {
    display: block;
    max-width: 100%;
}

.about-left-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-60);
    line-height: 117%;
    color: #fff;
    margin-bottom: 18px;
    max-width: 500px;
}

.about-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-60);
    line-height: 125%;
    text-align: center;
    color: #fff;
    margin-bottom: calc(var(--space-50) + var(--space-50)  + var(--space-40) );;
}

.text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 188%;
    color: #000;
}

.about-box {
    display: flex;
}

.about-left {
    width: 34%;
}

.about-box-container {
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-50) + var(--space-50)  + var(--space-60) );;
    border-radius: 7.849vw 0;
    position: relative;
}

.about-box-container .photo-bg {
    border-radius: 7.849vw 0;
    overflow: hidden;
}

.about-box .text.txt {
    margin-bottom: var(--space-40);
    color: #fff;
    font-weight: 300;
}

.news-box-container {
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-30) + var(--space-40) );;
}

.news-link {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding-bottom: 10px;
    height: 100%;
    position: relative;
}

.news-photo {
    margin-bottom: 5px;
    width: 100%;
}

.news-photo img {
    display: block;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    width: 100%;
}

.news-content-bottom {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-content-bottom > .btn {
    margin-top: auto;
    text-align: left;
}

.news-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-22);
    line-height: 136%;
    color: #000;
    margin-bottom: 20px;
}

.news-content .text.txt {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 16px;
    line-height: 188%;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item {
}

.box-header {
    position: relative;
    margin-bottom: calc(var(--space-50) + 5px);;
}

.news-box-title {
    font-weight: 400;
    font-size: var(--font-60);
    line-height: 125%;
    text-align: center;
    color: #000;
    font-family: var(--second-family), sans-serif;
}

.box-header .btn {
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.news-box {
    display: flex;
    margin: -22px;
}

.news-item {
    width: 33.33%;
    padding: 22px;
}

.news-date {
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: #000;
    margin-bottom: 13px;
    display: block;
    font-family: var(--second-family), sans-serif;
}

.box-header {
}

.news-box-title {
    font-weight: 400;
    font-size: var(--font-60);
    line-height: 125%;
    text-align: center;
    color: #000;
    font-family: var(--second-family), sans-serif;
}

.box-header .btn {
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.news-box {
    display: flex;
    margin: -22px;
}

.news-item {
}

article .news-date {
    margin-bottom: 22px;
}

.news-link:hover {
    border-color: #d9e021;
}

@media screen and (min-width: 1140px) {
    .news-link:hover .btn-white {
        border-color: var(--color-tertiary);
        color: #000;
    }
    .news-link:hover .btn-white:before {
        width: 100%;
    }
}

.news-link:hover .btn-white .btn-icon svg,
.news-link:hover .btn-white .btn-icon svg * {
    fill: var(--color-default);
}

.news-link:after {
    position: absolute;
    border: 1px solid var(--color-tertiary);
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 20px;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 300ms ease-out;
}

.news-link:hover:after {
    opacity: 1
}


.news-slider button.slick-arrow {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -28px;
    font-size: 0;
    z-index: 1;
}


.news-slider button.slick-prev.slick-arrow {
    left: -77px;
    background: url(../images/icons/arrow_big_left.svg) no-repeat center center;
}

.news-slider button.slick-next.slick-arrow {
    right: -80px;
    background: url(../images/icons/arrow_big_right.svg) no-repeat center center;
}

@media screen and (min-width: 1140px) {
    .news-slider button.slick-prev.slick-arrow:hover {
        background: #fff url(../images/icons/arrow_big_left_green.svg) no-repeat center center;
        border-color: var(--color-primary);
    }

    .news-slider button.slick-next.slick-arrow:hover {
        background: #fff url(../images/icons/arrow_big_right_green.svg) no-repeat center center;
        border-color: var(--color-primary);
    }
}

.news-slider {
    margin: -22px;
}

.news-slider .slick-track {
    display: flex !important;
    height: auto !important;
}

.news-slider .slick-slide {
    height: inherit !important;
}

.contact-main-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-main-box-container .contact-item:nth-child(2) {
    width: 30%;
}

.mainpage .contact-item-content {
    display: flex;
    align-items: center;
}

.mainpage .contact-item .text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 194%;
    color: #000;
    padding-bottom: 5px;
}

.contact-icon {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item-content a {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 130%;
    color: #000;
}

.contact-item .text.txt h3 {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 140%;
    color: #000;
    text-transform: none;
    margin-bottom: 0;
}

.contact-main-box-container {
    padding-top: 28px;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.25);
    padding-bottom: 28px;
    position: relative;
    z-index: 1;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.contact-main-box-container .contact-item:first-child {
    width: 21%;
}

.contact-main-box-container .contact-item {
    width: 21%;
}

.contact-main-box-container .contact-item-content {
    display: flex
}

.mask.about-mask {
    background: linear-gradient(-180deg, rgba(0, 0, 0, 20%) 0%, rgba(0, 0, 0, 0%) 100%), linear-gradient(79.162deg, rgba(0, 0, 0, 0%) 0%, rgba(0, 0, 0, 20%) 100%);
    border-radius: 7.849vw 0;

}

.about-box-container .container {
    position: relative;
}

.page-heading-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-45);
    line-height: 167%;
    text-align: center;
    color: #000;
    margin-bottom: calc(var(--space-40) + 5px);;
}

.projects-box-container {
    padding-top: calc(var(--space-40) + 5px);;
    padding-bottom: calc(var(--space-30) + var(--space-40) );;
}

.projects-box {
    display: flex;
    flex-wrap: wrap;
    margin: -7px;
}

.project-item {
    width: 25%;
    padding: 7px;
}

.project-link img {
    border-radius: 11px;
    display: block;
    max-width: 100%;
}

.project-bottom {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    justify-content: space-between;
    align-items: center;
}

.project-name {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-22);
    line-height: 138%;
    color: #fff;
    padding-right: 20px;
}

span.mask.project-mask {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0%) 0%, rgba(0, 0, 0, 50%) 100%);
    border-radius: 11px;
}

.project-link {
    position: relative;
    display: block;
}

.project-bottom .arrow-more {
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    opacity: 0;
    transition: all 0.4s;
    flex-shrink: 0;
    transform: translateX(75px);
}

.project-bottom .arrow-more .icon {
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 1140px) {
    .project-link:hover .project-bottom .arrow-more {
        opacity: 1;
        transform: translateX(0);
    }
}

.projects-details-container {
    padding-top: calc(var(--space-60) + 5px);;
    padding-bottom: var(--space-60);
}

.project-details-photo {
    width: 49.4%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    margin-right: var(--space-60);
    margin-bottom: 20px;
    min-height: 672px;
}

.project-details-text {
    padding-top: calc(2 * var(--space-50) + 15px);
}

.project-details-text .page-heading-title {
    line-height: 111%;
    text-align: left;
    margin-bottom: var(--space-30);
}

.project-details {
    padding-bottom: var(--space-60);
    align-items: flex-start;
}

.project-details-photo img {
    display: block;
    max-width: 100%;
}

.gallery-box {
    margin-bottom: var(--space-60);
}

.btn.btn-lg.btn-default.has-arrow.btn-back {
    padding-left: 50px;
    padding-right: 19px;
}

.btn.btn-back .btn-arrow {
    right: auto;
    left: 4px;
}

.beneficiaries-box-container {
    padding-top: calc(var(--space-40) + 5px);;
    padding-bottom: 10px;
}

.beneficiaries-search {
    display: flex;
    padding: 32px 40px;
    align-items: center;
    margin-bottom: var(--space-50);
    border-radius: 20px;
    background: #f7f9d3;
}

.search-box {
    display: flex;
    width: 690px;
    justify-content: space-between;
    align-items: center;
}

.search-label {
    font-weight: 500;
    font-size: 15px;
    color: #000;
    white-space: nowrap;
}

.beneficiaries-search .text.txt {
    flex-grow: 1;
    padding-right: 76px;
}

.beneficiaries-search form {
    padding: 0;
    width: 294px;
}

.mainsearch input.form-control {
    border: 0 none;
    background: transparent;
}

.mainsearch-submit {
    background: transparent;
    border-color: transparent;
}

.beneficiaries-box {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
    padding-bottom: 11px;
}

.beneficiary-item {
    width: 25%;
    padding: 8px;
}

.beneficiary-link {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 11px 11px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .2s all;
}

.beneficiary-link:before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-tertiary);
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: .2s all;
}

@media screen and (min-width: 1140px) {
    .beneficiary-link:hover {
        border-color: var(--color-tertiary);
    }
    .beneficiary-link:hover:before {
        opacity: 1;
    }
}

.beneficiaries-box {
}

.beneficiary-photo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.beneficiary-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 304 / 240;
    margin: 0 auto;
    width: 100%;
    max-width: 304px;
    margin-bottom: var(--space-30);
}

.beneficiary-photo-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficiary-name {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: max(var(--font-22), 20px);
    line-height: 138%;
    color: #000;
    margin-bottom: 15px;
}

.beneficiary-content .text.txt {
    font-size: 14px;
    line-height: 186%;
}

.beneficiary-content .text.txt strong {
    font-weight: 500;
}

.beneficiary-content {
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.ailments-box .text.txt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ailments-box {
    margin-bottom: 16px;
}

.beneficiary-content-top {
    margin-bottom: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.beneficiary-content-top .goal-box {
    padding: 0;
}

.page-top-container {
    position: relative;
    padding-top: calc(var(--space-40) + 5px);;
    height: 784px;
    padding-bottom: calc(var(--space-60) + var(--space-60) );;
}

.page-top-container .photo-bg img {
    border-radius: 0 0 7.849vw 0;
}

.mask.about-mask {
    border-radius: 0 0 7.849vw 0;
}

.page-top-container .container {
    height: 100%;
    position: relative;
}

.page-top-container .page-heading-title {
    color: #fff;
    width: 100%;
}

.page-top-box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.page-top-text {
    width: 39%;
}

.page-top-text .text.txt {
    color: #fff;
}

.page-top-text .text.txt {
    font-weight: 300;
}

.page-top-box .text.txt h2 {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-45);
    line-height: 133%;
    color: #fff;
    text-transform: none;
    margin-bottom: 20px;
}

.ambassador-box-container {
    padding-top: var(--space-60);
    padding-bottom: 10px;
}

.ambassadors-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-50);
}

.ambassadors-info-text {
    width: 40%;
}

.ambassadors-photo {
    width: 42.206%;
    margin-right: 2.5%;
}

.ambassadors-photo img {
    display: block;
    max-width: 100%;
    border-radius: 50%;
}

.ambassador-list-container {
    padding-bottom: 0;
}

.ambassador-name {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-45);
    line-height: 167%;
    text-align: center;
    color: #000;
}

.ambassador-function {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-24);
    text-align: center;
    color: #000;
    margin-bottom: calc(var(--space-60) + 5px);;
}

.ambassador-images {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-50);
}

.ambassador-image img {
    display: block;
    max-width: 100%;
    border-radius: 50%;
}

.ambassador-image {
    width: 29.93%;
}

.ambassador-item {
    padding-bottom: var(--space-60);
    padding-top: calc(var(--space-40) + 5px);;
}

.ambassador-item:nth-child(odd) {
    border-radius: 0 0 7.849vw 0;
    background: #f7f9d3;
}

.donors-box-title {
    margin-bottom: var(--space-40);
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-45);
    line-height: 167%;
    text-align: center;
    color: #000;
}

.donors-box-container {
    padding-top: calc(var(--space-40) + 5px);;
    padding-bottom: calc(var(--space-50) + 5px);;
    border-radius: 0 0 7.849vw 0;
    background: #f7f9d3;
}

.logotype-list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.logotype-item .logotype {
    width: 100%;
    padding-bottom: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    transition: .2s all;
    border: 1px solid #fff;
}

@media screen and (min-width: 1140px) {
    .logotype-item .logotype:hover {
        border-color: var(--color-primary);
    }
}

.logotype-item {
    width: 16.66%;
    padding: 15px;
    position: relative;
}

.logotype-item .logotype img {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 90%;
}


.donate-box-container {
    padding-top: var(--space-60);
}

.donate-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donate-text {
    width: 29%;
    margin-bottom: var(--space-60);
}

.donate-photo {
    flex-grow: 1;
}

.donate-photo img {
    display: block;
    max-width: 100%;
}

.donate-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-60);
    line-height: 117%;
    color: #000;
    margin-right: 22px;
    flex-shrink: 0;
    margin-bottom: var(--space-60);
}

.donate-box-left {
    display: flex;
    width: 64%;
    align-items: center;
}

.donate-text .text.txt {
    margin-bottom: var(--space-40);
}

.subpage .news-box-container {
    padding-top: calc(var(--space-40) + 5px);;
    padding-bottom: 14px;
}

.subpage .news-slider {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 7px;
}

.text-box-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-60);
}

article .page-heading-title {
    line-height: 111%;
    text-align: left;
    margin-bottom: var(--space-30);
}

.text-box-container .gallery {
    margin-bottom: var(--space-60);
}

.other-box-container .news-box-title {
    font-size: var(--font-45);
    text-align: left;
}

.other-box-container .box-header {
    margin-bottom: var(--space-40);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.other-box-container {
    padding-top: var(--space-50);
    padding-bottom: calc(var(--space-50) + 5px);;
    border-radius: 7.849vw 0 0 0;

    background: #f7f9d3;
}

.other-box-container .news-content {
    padding: 28px 28px 21px 21px;
}

.other-box-container .news-date {
    font-family: var(--second-family), sans-serif;
    font-size: 12px;
    margin-bottom: 10px;
}

.other-box-container .news-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 136%;
    color: #000;
    margin-bottom: 17px;
}

.other-box-container .news-content .text.txt {

    font-weight: 300;
    font-size: 13px;
    line-height: 187%;
    color: #000;
    height: 98px;
    margin-bottom: 26px;
}

.other-box-container .news-item {
    padding: 18px;
}

.subpage .other-box-container .news-slider {
    margin: -18px;
}


.other-box-container .news-link .btn {
    font-size: 12px;
    height: 38px;
    line-height: 36px;
    width: 160px;
    min-width: 160px;
    padding-left: 1px;
}

.other-box-container .news-link .btn .btn-arrow {
    height: 36px;
    width: 41px;
}

.other-box-container .news-link .btn .btn-arrow svg {
    width: 11px;
}

.custom-pagination {
    margin-right: -17px;
}

.other-box-container .news-link {
    background: #fff;
}

.contact-box-container {
    padding-top: calc(var(--space-40) + 5px);;
    padding-bottom: calc(var(--space-50) + var(--space-40) );;
    position: relative;
    border-radius: 7.849vw 0 0 0;
    background: #f7f9d3;
}

.contact-box-container .contact-box {
    display: flex;
    width: 86%;
    justify-content: space-between;
    padding-top: 13px;
}

.contact-box-container .contact-item {
    width: 26%;
}

.contact-item-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-30);
    line-height: 183%;
    color: #000;
    margin-bottom: var(--space-30);
}

.contact-img {
    position: absolute;
    right: 5%;
    bottom: -14px;
    max-width: 23.7%;
}

.form-box-container {
    padding-top: calc(var(--space-40) + 5px);;
    padding-bottom: calc(var(--space-30) + var(--space-40) );;
}

.form-box-wrapper form.form {
    border: 2px solid #d9e021;
    border-radius: 22px;
    width: 1090px;
    margin: 0 auto;
    padding: var(--space-50);
}

.subpage .about-box-container {
    padding-top: calc(var(--space-40) + 5px);;
    padding-bottom: 10px;
}

.person-item {
    display: flex;
    flex-direction: column;
    width: 25%;
    padding: 25px 50px;
    margin-bottom: 10px;
}

.grid-text {
    width: 43%;
}

.grid-text .grid-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.grid-photo {
    width: 42.206%;
    margin-right: 2.5%;
}

.grid-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-50);
    align-items: center;
}

.grid-photo img {
    display: block;
    max-width: 100%;
    border-radius: 50%;
}

.grid-item:nth-child(even) {
    flex-direction: row-reverse;
}

.grid-text .text.txt {
    margin-bottom: var(--space-40);
}

.grid-text .text.txt:last-child {
    margin-bottom: 0;
}

.help-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-45);
    line-height: 167%;
    text-align: center;
    color: #000;
    margin-bottom: var(--space-40);
}

.help-box-container {
    padding-top: calc(var(--space-30) + 5px);;
    padding-bottom: calc(var(--space-60) + 5px);;
    border-radius: 0 0 7.849vw 0;

    background: #f7f9d3;
}

.help-box {
    display: flex;
    justify-content: space-between;
}

.help-left {
    width: 52.5%;
    padding-top: calc(var(--space-25) - 3px);
}

.help-right {
    width: 47.5%;
    padding-left: calc(var(--space-50) + var(--space-25) - 3px);
    display: flex;
    justify-content: flex-end;
    padding-top: 0;
}

.help-slogan {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-65);
    line-height: 108%;
    color: #000;
}

.help-text {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-22);
    line-height: 1.36363em;
    color: #000;
    height: 90px;
    display: flex;
    align-items: center;
}

.help-info-content {
    font-family: var(--second-family), sans-serif;
    font-weight: 500;
    font-size: var(--font-26);
    line-height: 1.30769em;
    text-align: center;
    color: #fff;
    display: block;
    padding: var(--space-25);
}

.help {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: calc(var(--space-50) + 5px);;
}

.help-item {
    margin-bottom: 20px;
    display: flex;
    width: 48.4%;
    align-items: center;
    padding: 15px 22px;
    padding-left: calc(var(--space-25) - 2px);
    background: #fff;
    border-radius: 10px;
    gap: calc(var(--space-40) - 7px);
}

.help-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.help-icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.circle-map {
    width: 100%;
    position: relative;
    background: #D9E021;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.help-info {
    width: 49.305%;
    aspect-ratio: 1;
    position: absolute;
    border-radius: 50%;
    background: #159A3B;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: -84px;
}

.circle-map-box {
    position: relative;
    width: 87.205%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.circle-map img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.circle-map-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 100%;
    flex-shrink: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-50);
}

.person-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-45);
    line-height: 167%;
    text-align: center;
    color: #000;
    margin-bottom: calc(var(--space-50) + 5px);;
}

.person-box-container {
    padding-top: calc(var(--space-40) + 5px);;
    padding-bottom: 0;
}

.person-box {
    display: flex;
    flex-wrap: wrap;
    margin: -25px -50px;
}

.person-photo {
    width: 100%;
    max-width: 262px;
    border-radius: 50%;
    border: 1px solid rgba(3, 116, 51, 0.2);
    overflow: hidden;
    aspect-ratio: 1;
    margin: 0 auto;
    margin-bottom: 20px;
    position: relative;
}

.person-photo-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-photo img {
    display: block;
    max-width: 100%;
}

.person-name {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-24);
    text-align: center;
    color: #037433;
    margin-bottom: 10px;
}

.position {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #000;
}

.gallery-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-45);
    line-height: 167%;
    text-align: center;
    color: #000;
    margin-bottom: var(--space-50);
}

.gallery-box-container {
    padding-top: calc(var(--space-40) + 5px);;
}


.files-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.files-list ul li {
    width: 50%;
    padding: 9px 10px;
    display: flex;
}

.files-list ul li a {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
    z-index: 1;
    border: 1px solid #fff;
    padding-top: 11px;
    padding-bottom: 11px;
    padding-right: 10px;
    border-radius: 10px;
    background: #fff;
}


.icon-file {
    width: 14%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.file-name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000;
    flex-grow: 1;
}

.file-name-content {
    width: 73%;
}

.icon-download {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 17%;
}

.file-download-box {
    height: 40px;
    font-weight: 500;
    font-size: 13px;
    color: #000;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 9px;
    width: 165px;
    padding: 0 18px 0 15px;
}

.file-download-box svg {
    fill: currentColor;
}


@media screen and (min-width: 1140px) {
    .files-list ul li a:hover .file-download-box {
        background: var(--color-tertiary);
        border-color: var(--color-tertiary);
        color: #fff;
    }
}

.files-box-container {
    padding-top: calc(var(--space-40) + 5px);;
    padding-bottom: var(--space-60);
    border-radius: 7.849vw 0 0 0;
    background: #f7f9d3;
    margin-bottom: var(--space-60);
}

.files-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-45);
    line-height: 167%;
    text-align: center;
    color: #000;
    margin-bottom: var(--space-40);
}

.file-download-box {
    height: 40px;
    font-weight: 500;
    font-size: 13px;
    color: #000;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 9px;
    width: 165px;
    padding: 0 18px 0 15px;
}

.file-download-box svg {
    fill: currentColor;
}

.buttons-center:last-child {
    margin-bottom: 0;
}

.beneficiary-details-container {
    padding-top: calc(var(--space-50) + 5px);;
    padding-bottom: calc(var(--space-50) + 5px);;
}

.beneficiary-details {
    display: flex;
    justify-content: space-between;
    padding-bottom: var(--space-50);
}

.beneficiary-details-photo {
    width: 49.5%;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficiary-details-right {
    width: 47%;
}

.beneficiary-details-photo img {
    display: block;
    max-width: 100%;
    border-radius: 11px;
}

.beneficiary-details-container .page-heading-title {
    text-align: left;
    line-height: 134%;
    margin-bottom: 18px;
}

.shor-text {
    margin-bottom: var(--space-30);
}

.goal-box-wrapper {
    border: 2px solid #d9e021;
    border-radius: 15px;
    margin-bottom: 23px;
    overflow: hidden;
}

.goal-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-28);
    line-height: 179%;
    color: #000;
    padding: 4px 29px;
    background-color: #D9E021;
}

.goal-box-wrapper form.donate-form {
    padding: 18px calc(var(--space-25) + 1px) calc(var(--space-25) - 1px);
}

.goal-full-top {

}

.goal-box-wrapper .goal-box {
    padding: 19px 23px 17px 23px;
}

.goal-box {
    padding: 19px 26px 17px 22px;
    display: flex;
    justify-content: space-between;
}

.goal-label {
    font-weight: 400;
    font-size: 15px;
    color: #000;
    line-height: 130%;
    margin-bottom: 10px;
}

.goal {
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    color: #000;
    border-radius: 8px;
    height: 40px;
    background: #f7f9d3;
    line-height: 40px;
    padding: 0 32px;
}

.goal-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.goal-right {
    width: 39%;
}

.goal-payment {
    border: 1px solid #d9e021;
    border-radius: 8px;
    width: 101px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.goal-payment-box {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.amount-inner-box {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
}

.amount-item {
    border-radius: 8px;
    width: 52px;
    height: 40px;
    background: #f7f9d3;
    border: 1px solid #f7f9d3;
}

.amount {
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    color: #000;
}

.amount.amount-input {
    font-weight: 400;
    font-size: 12px;
    line-height: 117%;
    text-align: center;
    color: #000;
    display: block;
}

.amount-inner .amount-item:last-child {
    width: 80px;
}

.amount-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.amount-box {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
}

.goal-bottom {
    width: 100%;
    max-width: 165px;
    flex-shrink: 0;
}

.goal-bottom .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px calc(var(--space-25) - 5px) 5px 15px;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
    width: unset;
    height: unset;
    min-height: 40px;
    line-height: normal;
}

.goal-bottom .btn .btn-arrow {
    width: 12px;
    height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.amount-box button.btn.btn-lg.btn-primary.has-arrow {
    width: 165px;
    height: 40px;
    font-weight: 600;
    font-size: 13px;
    min-width: 165px;
    line-height: 38px;
}

.amount-box button.btn.btn-lg.btn-primary.has-arrow svg {
    width: 12px;
}

.amount-box .goal-label {
    margin-bottom: 7px;
}

.amount-item:hover {
    border-color: #d9e021;
}

.donations-account-box {
    border: 2px solid #d9e021;
    border-radius: 15px;
    font-weight: 400;
    font-size: 13px;
    line-height: 185%;
    color: #000;
    display: flex;
    justify-content: space-between;
    padding: 21px 25px 18px;
    gap: 11px 15px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.donations-account-left {
    width: 55%;
    font-weight: 400;
    font-size: 13px;
    line-height: 185%;
    color: #000;
}

.donations-account-right {
    width: 39%;
    font-weight: 400;
    font-size: 13px;
    line-height: 185%;
    color: #000;
}

.donation-account-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: #000;
    width: 100%;
}

.donation-details-container {
    padding-top: calc(var(--space-40) + 5px);;
    padding-bottom: var(--space-60);
}

.donation-details-container .goal-box-wrapper {
    max-width: 1090px;
    margin: 33px auto;
    padding: 48px 52px 52px;
}

.goal-full .goal-label {
    font-weight: 400;
    font-size: 15px;
    color: #000;
    margin-bottom: 9px;
}

.goal-full {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
}

.goal-full .goal {
    font-weight: 400;
    font-size: 19px;
    color: #000;
    padding: 8px 32px;
    height: auto;
    background: #f7f9d3;
    width: 67%;
    text-align: left;
}

.goal-full .row {
    justify-content: space-between;
}

.goal-full .row .form-group {
    width: 33.33%;
    float: none;
}

.goal-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.goal-row .form-group {
    width: 33.33%;
    float: none;
}

.goal-row .form-group input {
    border-radius: 8px;
    min-height: 40px;
    background: #f7f9d3;
    border-color: #f7f9d3;
    font-weight: 400;
    font-size: 13px;
    color: #000;
    height: unset;
}

.goal-full-top .goal-row .form-group input {
    text-align: center;
}

.goal-row .form-group label.form-element-name {
    font-weight: 400;
    font-size: 15px;
    color: #000;
    margin-bottom: 9px;
}

.donation-details-container .amount-box .goal-label {
    font-weight: 400;
    font-size: var(--font-22);
    color: #000;
    margin-bottom: 23px;
}

.donation-details-container .amount-box {
    padding: 0;
}

/*.goal-full + .amount-box {*/
/*    margin-top: -18px;*/
/*    margin-bottom: calc(var(--space-40) + 5px);;*/
/*}*/

.goal-full + .amount-box button.amount-item {
    border-radius: 8px;
    width: 53px;
    height: 40px;
    font-size: 13px;
}

.goal-full + .amount-box span.amount {
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    color: #000;
}

.amount-inner .input-wrapper {
    width: 120px;
    height: 40px;
}

.amount-inner .input-wrapper .form-control {
    width: 120px;
    height: 40px;
    background: #f7f9d3;
    border: 1px solid #f7f9d3;
    color: #000;
    font-size: 12px;
    padding: 5px;
}

.amount-inner .input-wrapper .form-control::placeholder {
    color: #000;
}

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

.goal-bottom .goal-label {
    font-weight: 400;
    font-size: var(--font-22);
    color: #000;
    margin-bottom: 23px;
    width: 100%;
}

.goal-bottom .goal-payment {
    border: 1px solid #d9e021;
    border-radius: 10px;
    width: 206px;
    height: 56px;
}

.donation-details-container .donations-account-box {
    max-width: 1090px;
    margin: 0 auto;
    gap: 0;
    padding: 30px 40px;
}

.donation-details-container .donation-account-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 600;
    font-size: var(--font-20);
    line-height: 130%;
    color: #000;
    margin-bottom: 11px;
}

.donation-details-container .donations-account-left {
    font-size: 16px;
    line-height: 188%;
    width: 39%;
}

.donation-details-container .donations-account-right {
    font-size: 16px;
    line-height: 188%;
    width: 43%;
}

.cooperation-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-45);
    line-height: 140%;
    text-align: center;
    color: #000;
    margin-bottom: var(--space-40);
}

.cooperation-box-bg {
    padding-top: var(--space-50);
    padding-bottom: 150px;
    border-radius: 0 0 7.849vw 0;
    background: #f7f9d3;
}

.cooperation-box-title + .text.txt {
    max-width: 1060px;
    text-align: center;
    margin: 0 auto 50px;
}

.cooperation-box-wrapper {
    margin-top: -150px;
}

.cooperation-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cooperation-item {
    width: 49%;
    display: flex;
    align-items: flex-start;
    padding: 25px 41px 36px;
    margin-bottom: var(--space-30);
    border-radius: 10px;
    box-shadow: 4px 3px 13px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
}

.cooperation-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: calc(var(--space-40) + 5px);;
    flex-shrink: 0;
}

.cooperation-icon img {
    display: block;
    max-width: 100%;
}

.cooperation-text .text.txt h3 {
    font-family: var(--second-family), sans-serif;
    font-weight: 600;
    font-size: var(--font-24);
    line-height: 140%;
    color: #000;
    padding-top: 18px;
    margin-bottom: 19px;
}

.cooperation-text {
    flex-grow: 1;
}

.cooperation-box-container {
    padding-bottom: var(--space-30);
}

/*
----------------------------
SHOP USER
----------------------------
 */
.container.container--userpanel {
    max-width: 1300px;
}

.scrollbar.disable {
    display: none;
}

.login-box .panel-heading h1, .login-box .panel-heading h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    width: 100%;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

.login-box .panel-heading {
    margin: 0;
    background: inherit;
    font-weight: 400;
    padding: 12px 15px;
    background-color: #f5f5f5;
}

.login-box .panel-body {
    position: relative;
}

.login-box .login-submitRow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-forgotPassword {
    width: 100%;
    margin-bottom: 15px;
}

.text.login-forgotPassword{
    color: #000000;
}
.text.login-forgotPassword a{
    text-decoration: underline;
    transition: all 0.4s;
}
.text.login-forgotPassword a:hover,
.text.login-forgotPassword a:focus{
    color: var(--shop-primary);
}

.login-info-content {
    padding: 0 8.33333333%;
}

.login-info-content .text-base {
    padding-bottom: 61px;
}

.login-info-content .btn-base {
    position: absolute;
    right: calc(8.33333333% + 15px);
    bottom: 15px;
}

.password-reset-info .panel-heading {
    border-bottom: none;
}

.userpanel-container h1 {
    padding-bottom: 19px;
    font-weight: 400;
    font-size: var(--font-45);
}

/** sidebar **/
.user-page-aside h3 {
    color: #000;
}

.sidebar-side-right .container-small {
    max-width: 1350px;
}

.sidebar-side-right .crud-wrapper {
    min-height: 200px;
}

.sidebar-sides {
    display: flex;
}

.sidebar-side-left h3 {
    padding: var(--space-25) var(--container-padding);
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
}

.sidebar-side-left {
    background: #F7F9D3;
    width: 350px;
}

.sidebar-side-right {
    width: 100%;
}

.sidebar-side-left + .sidebar-side-right {
    width: calc(100% - 350px);
}

.submenu ul li {
    position: relative;
}

.submenu > ul > li > a {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    padding: 12px 50px 11px var(--container-padding);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    min-height: 50px;
}
.submenu > ul {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.sidebar-side-left .submenu > ul > li > a {
    color: var(--shop-primaryText);
}

.submenu > ul > li.active > a,
.submenu > ul > li.active > a:hover {
    background: #fff;
    color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .sidebar-side-right .submenu > ul {
        display: block !important;
    }

    .submenu > ul > li > a:hover {
        background: #fff;
        color: var(--color-primary);
        text-decoration: none;
    }

    .sidebar-side-left {
        min-height: 540px;
    }
}

.modal .alert-container {
    border: 0;
}

.filter-grid .btn {
    margin-top: 0;
}

.filter-grid {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    border-radius: var(--shop-radius-default);
}

.filter-grid.filter-grid form {
    padding: 15px;
}

/** login page **/

.login-page .panel-body .form-offset-inner {
    height: 100%;
    padding-bottom: 15px;
}

.login-page .panel-body .form-offset-inner,
.login-page .panel-body .form-offset > .login-form-container {
    width: 100%;
}

.login-page .panel-body .form-offset {
    align-items: flex-end;
}

.login-page .panel-body .form-offset,
.login-page .panel-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: stretch;
}

.login-page .panel-body {
    padding-bottom: 20px;
}

.login-page .panel-body .login-form-container {
    display: flex;
    width: 100%;
    flex-grow: 1;
}

.login-page .panel-body .login-form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    padding-top: 0;
}

.row-flex-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.login-page .match-inner,
.login-page .panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
}

.login-page .userpanel-container > .row {
    display: flex;
    justify-content: center;
}

.filter-sort-grid .form-elements {
    margin: 0;
}

.filter-sort-grid {
    margin-bottom: 20px;
}

.crud-wrapper th {
    text-align: center;
}

.collection-row-wrapper .form-elements {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

@media screen and (min-width: 1140px) {
    .form-offset-indent {
        padding-left: 60px;
        padding-right: 60px;
    }
    .form-offset-indent-small {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.order-history-container .table.table-crud thead th {
    vertical-align: middle;
    white-space: nowrap;
    padding: 12px 15px;
}

.order-history-container .table.table-crud > tbody > tr > td .table-value.table-value-right,
.order-history-container .table>thead>tr>.th-3.th-right,
.order-history-container .table>thead>tr>th,
.order-history-container .table.table-crud > tbody > tr > td {
    text-align: left;
}

.order-history-container .table.table-crud > tbody > tr > td {
    vertical-align: middle;
}

.order-history-container .table.table-crud > tbody > tr > td:first-child .table-value.table-value-right {
    text-align: center;
}

.order-history-view .panel.panel-default.panel-noBorderTop {
    border-top: none;
}

.order-history-container .grid-counter .table-perpage .form-inline .form-control {
    height: 26px;
}

.order-history-container .grid-counter .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.order-history-container .grid-counter .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 24px;
}

.order-history-view table tbody tr td:first-child:nth-last-child(2) {
    width: 40%;
}
.order-history-view table tbody tr td:last-child:nth-child(2) {
    width: 60%;
}

.userpanel-container table > *:first-child > tr > *:first-child {
    border-top-left-radius: 6px;
}
.userpanel-container table > *:first-child > tr > *:last-child {
    border-top-right-radius: 6px;
}

.form-element-nip.has-feedback .input-group + .form-control-feedback {
    right: 136px;
}

.form-element-nip .btn.btn-default{
    line-height: 42px;
    padding:0 5px;
}

.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th, .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td {
    border-top: 0;
}

.userpanel-container .form-element-collection\\AddressInvoiceCollection-container .form-element-label-wrapper .form-element-name,
.userpanel-container .form-element-collection\\AddressDeliveryCollection-container .form-element-label-wrapper .form-element-name {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
}

.userpanel-container .form-element-collection\\AddressInvoiceCollection .collection-body .panel,
.userpanel-container .form-element-collection\\AddressDeliveryCollection .collection-body .panel {
    border-radius: 0 0 var(--shop-radius-default) var(--shop-radius-default);
}

.userpanel-container .form-element-collection\\AddressInvoiceCollection-container .form-element-label-wrapper,
.userpanel-container .form-element-collection\\AddressDeliveryCollection-container .form-element-label-wrapper {
    padding: 12px 15px;
    margin: 0;
    color: #fff;
    background: var(--shop-default);
    font-weight: 700;
    border-radius: var(--shop-radius-default) var(--shop-radius-default) 0 0;
}


/*
----------------------------
SHOP TOP
----------------------------
 */
/** Search dropdown **/

.search-form .search-product-label {
    width: calc(100% - 42px);
    display: block;
    font-size: 12px;
    line-height: 16px;
}
.search-form .search-product-label:not(:first-child) {
    padding-left: 10px;
}

.search-form .search-product-img-contener {
    width: 42px;
    height: 42px;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.search-form .ui-state-active,
.search-form .ui-widget-content .ui-state-active,
.search-form .ui-menu-item-wrapper {
    width: 100%;
    white-space: normal;
    display: flex;
    align-items: center;
    padding: 2px 5px;
    background: #fff;
    color: #000;
}

.search-form .ui-state-active,
.search-form .ui-widget-content .ui-state-active,
.search-form .ui-widget-header .ui-state-active,
.search-form a.ui-button:active,
.search-form .ui-button:active,
.search-form .ui-button.ui-state-active:hover {
    border: 0;
    padding: 2px 5px;
    margin: 0;
}

.search-form .dropdown-menu {
    z-index: 10000;
    width: 270px;
    padding-bottom: 0;
}
.search-form .all-search-results a {
    margin-top: 5px;
    background: var(--shop-primary);
    color: var(--shop-primaryText);
    font-size: 12px;
    padding: 5px 15px;
}


.mainsearch .ui-widget {
    font-family: inherit;
}

.mainsearch .dropdown-menu {
    top: calc(100% + 10px);
    left: 0 !important;
    right: 0 !important;
    width: auto;
    padding: 10px;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 0;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-height: calc(100vh - 150px);
    background: #ececec;
}

.mainsearch .dropdown-menu .dropdown-search-li.category,
.mainsearch .ui-menu .ui-menu-item-wrapper {
    padding: 8px 12px;
}

.mainsearch .dropdown-menu .dropdown-search-li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mainsearch .dropdown-menu > li {
    background: #fff;
}

.mainsearch .ui-menu .ui-menu-item-wrapper {
    display: block;
    font-weight: inherit;
    color: inherit;
}

.mainsearch .ui-menu > li > * {
    margin: 0;
    transition: all 0s;
}
.mainsearch .dropdown-menu .dropdown-search-li.group{
    pointer-events: none;
}

.mainsearch .dropdown-menu .dropdown-search-li.group span,
.mainsearch .dropdown-menu .dropdown-search-li.category {
    min-height: 42px;
    display: flex;
    align-items: center;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
    color: #fff;
    background-color: var(--shop-primaryHover);
}

.mainsearch .dropdown-menu .dropdown-search-li.category:hover {
    background-color: var(--shop-primary);
}

.mainsearch .dropdown-menu .dropdown-search-li.all-search-results,
.mainsearch .dropdown-menu .dropdown-search-li.category:not(:first-child) {
    margin-top: 10px;
}

.mainsearch .dropdown-menu .dropdown-search-li.all-search-results a {
    padding: 11px 15px;
    color: #fff;
    background-color: #000;
    border: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.mainsearch .dropdown-menu .dropdown-search-li.all-search-results a .fa {
    margin-top: -3px;
    font-size: 15px;
    margin-left: 10px;
}

.mainsearch .dropdown-menu .ui-menu-item-wrapper > * {
    display: inline-block;
    vertical-align: middle;
}

.mainsearch .dropdown-menu .search-product-img-contener {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 0;
    text-align: center;
}

.mainsearch .dropdown-menu .search-product-img-contener > svg {
    fill: #000;
    stroke: #000;
}

.mainsearch .dropdown-menu .ui-menu-item-wrapper:hover .search-product-img-contener svg {
    fill: #fff;
    stroke: #fff;
}

.mainsearch .dropdown-menu .search-product-img-contener img {
    max-width: 50px;
    max-height: 50px;
    vertical-align: middle;
}

.mainsearch .dropdown-menu .search-product-img-contener ~ .search-product-label {
    width: calc(100% - 50px);
    padding-left: 15px;
}

.mainsearch .dropdown-menu .search-product-label {
    white-space: normal;
}

.search-product-main-cat {
    display: block;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.mainsearch .dropdown-menu .ui-state-active {
    color: #fff;
    border: none !important;
    background-color: var(--shop-primary);
}

.mainsearch .dropdown-menu .all-search-results.ui-state-active,
.mainsearch .dropdown-menu .all-search-results .ui-state-active {
    background-color: var(--shop-primary) !important;
    border-color: var(--shop-primary) !important;
}

.mainsearch .dropdown-menu .ui-menu-item-wrapper > a {
    display: block;
}

.mainsearch .dropdown-menu .ui-menu-item-wrapper > a > * {
    display: inline-block;
    vertical-align: middle;
}

.mainsearch .dropdown-menu > li.no-results {
    padding: 10px;
    background: #ececec;
    cursor: unset;
    pointer-events: none;
}

.top-box-heading {
    font-size: var(--font-24);
    color: #000;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
}

.top-box-container {
    position: relative;
}

.top-box {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    z-index: 10;
    background: #fff;
    top: calc(100% + 22px);
    right: -1px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 340px;
    font-size: medium;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.16);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

@media screen and (min-width: 1140px) {
    .top-box-container.hovered .top-box {
        opacity: 1;
        pointer-events: all;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .forgot-password a:hover {
        color: var(--shop-primary);
    }
}

.top-box-submenu.top-box {
    padding: 0;
    width: 250px;
}

.top-box-logout {
    padding: 15px;
}
.panel-page {
    padding-bottom: 30px;
    padding-top: 30px;
}
.sidebar-sides .panel-page {
    padding-top: 0;
}
.top-box-submenu-list li {
    border-bottom: 1px solid var(--shop-secondary);
    border-left: 0;
}

.top-box-submenu-list li {
    display: block;
    width: 100%;
}

.top-box-submenu .user-nav-item-logout,
.top-box-submenu-list a {
    display: block;
    padding: 10px 15px;
    width: 100%;
    color: var(--shop-primary);
    background: var(--shop-primaryText);
    min-height: 46px;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.user-nav-item-logout {
    width: 100%;
    border-radius: 0;
}

.forgot-password a {
    padding: 0;
    display: inline-block;
    color: inherit;
    font-size: inherit;
    text-decoration: underline;
}

.top-box-buttons .btn + .btn {
    margin-top: 10px;
}

.top-box-buttons .btn {
    width: 100%;
    font-size: 16px;
    padding: 5px 20px;
}

/** top basket **/

.top-box-basket-container {
    float: right;
}

.basket-box-btn {
    display: flex;
    align-items: center;
    margin: 15px 0;
    background: var(--shop-secondary);
    border-radius: 0;
    transition: all 0.4s;
    font-size: 16px;
    color: var(--shop-secondaryText);
}

.basket-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: var(--shop-primaryText);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background: var(--shop-primary);
    transition: all 0.4s;
}

.basket-box-btn .caption-count {
    position: absolute;
    padding: 1px 3px;
    min-width: 20px;
    height: 20px;
    line-height: 16px;
    font-size: 12px;
    top: -5px;
    right: -5px;
    border: 1px solid var(--shop-primary);
    background: var(--shop-primaryText);
    color: var(--shop-primary);
    font-weight: normal;
}

.basket-box-btn .caption {
    display: block;
    padding: 0 13px;
    min-width: 100px;
    text-align: right;
    /*display: none;*/
}

.caption-basket {
    display: none;
}

/** main menu **/
.main-menu {
    overflow: hidden;
    text-align: center;
}

.header-bot {
    background: var(--shop-secondary);
}

.rwd-small-only {
    display: none;
}

.sticky-header .header-bot {
    opacity: 1;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 0;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.sticky .header-bot {
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.sticky.rollup .header-bot {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    opacity: 1;
}

.header-bot-list ul {
    display: flex;
    align-content: stretch;
}

.header-bot-list li {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
}

.header-bot-list li + li:before {
    content: '';
    display: block;
    width: 1px;
    position: absolute;
    top: 15px;
    bottom: 15px;
    background: var(--shop-secondaryText);
}

.header-bot-list a {
    color: var(--shop-secondaryText);
    padding: 13px;
    display: block;
}

.header-bot-list a span {
    display: block;
    width: 100%;
    text-align: center;
}

.rwdMenu .rwd-basket.rwd-basket {
    color: #fff;
    background-color: #f0f;
}
.rwdMenu .top-box {
    display: none;
}
.rwdMenu .shop-itemsTotalPrice-gross {
    white-space: nowrap;
}

/*
Nowe style
 */
.top-box-submenu-list > ul > li {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.top-box-submenu-list li.active a {
    background-color: var(--color-primary);
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .top-box-submenu .user-nav-item-logout:hover,
    .top-box-submenu-list a:hover {
        background-color: var(--color-primary);
        color: #fff;
    }
    .forgot-password a:hover {
        color: var(--color-primary);
    }
}

.top-box-buttons .btn.btn-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.top-box-buttons {
    margin-top: 15px;
}

.top-login-box > form {
    padding-top: 0;
}

.panel-page.login-page {
    padding-top: var(--space-60);
    padding-bottom: var(--space-60);
}

.panel-default>.panel-heading {
    border-color: rgba(0, 0, 0, .2);
}

.order-history-view .panel-heading h3, .filter-grid h2,
.form *[class*="form-element-collection"] > .form-element-name,
.form *[class*="form-element-collection"] > .form-element-label-wrapper > .form-element-name,
.sidebar-sides .userpanel-container .login-box .panel-heading,
.sidebar-sides .userpanel-container .login-box .panel-heading .title-base {
    font-size: 16px;
    background: #f5f5f5;
    font-weight: 400;
}

.input-group-addon:last-child {
    border-radius: 0 10px 10px 0;
}

/*
----------------------------
SHOP RWD
----------------------------
 */

rwdMenu .top-box {
    display: none!important;
}

@media screen and (max-width: 1600px) {
    .shop-delivery-data,
    .shop-invoice-data {
        width: 100% !important;
    }
}

@media screen and (max-width: 1440px) {
    .sidebar-side-left {
        width: 280px;
    }

    .sidebar-side-left + .sidebar-side-right {
        width: calc(100% - 280px);
    }
}

@media screen and (max-width: 1280px) {
    .shop-quantity-box input.input-qty {
        height: 40px;
    }

    .shop-quantity-box .qty-down,
    .shop-quantity-box .qty-up {
        height: 40px;
        width: 40px;
        line-height: 38px;
    }

    .basket-heading-title {
        padding-right: 0;
        margin-bottom: 15px;
    }
    .basket-heading-inner {
        flex-direction: column;
    }
}

@media screen and (max-width: 1280px) and (min-width: 1140px) {
    .basket-table td:last-child .btn {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 1139px) {
    .basket-view .basket-coupon-box .btn {
        padding: 9px 10px;
    }

    .rwd-menu .user-nav-a .fa {
        width: 30px;
        text-align: center;
    }

    .rwd-menu .user-nav-a {
        color: #000;
        padding: 10px;
        text-transform: none;
    }

    .rwd-menu .container,
    .rwd-menu .user-nav {
        padding: 0;
    }

    .rwd-menu .social-icon {
        padding: 0;
        text-align: center;
        line-height: 38px;
    }

    .rwd-menu .social-list {
        text-align: center;
    }

    .rwd-menu .social-list li {
        display: inline-block;
        float: none;
        width: auto;
    }

    .rwd-menu .user-nav a .caption {
        display: inline-block;
    }

    .header-bot-list li + li:before,
    .header-bot {
        display: none;
        height: 0 !important;
    }

    .header-bot-list ul {
        display: block;
        background: var(--shop-secondary);
    }

    .user-nav .user-name {
        display: none;
    }

    .sidebar-side-left.active h3:after {
        content: '\f2c0\00a0\f104';
    }

    .sidebar-side-left h3:after {
        content: '\f2c0\00a0\f105';
        font-family: FontAwesome;

    }

    .sidebar-side-left:before {
        content: '';
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, .7);
        z-index: -23;
        left: 300px;
        top: 83px;
        opacity: 0;
        transition: .3s all;
    }

    .sidebar-side-left.active:before {
        opacity: 1;
    }

    .sidebar-side-left h3:before {
        content: '';
        opacity: 0.6;
        background-color: var(--shop-primary);
    }

    .sidebar-side-left h3:after,
    .sidebar-side-left h3:before {
        left: calc(100% - 1px);
        top: 0;
        bottom: 1px;
        padding: 13px 10px;
        width: 60px;
        height: 66px;
        font-size: 20px;
        line-height: 26px;
        text-align: center;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        position: absolute;
        background: #F7F9D3;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

    .submenu > ul > li > a {
        padding: 9px 40px 9px 16px;
    }

    .sidebar-side-left h3 {
        position: relative;
        overflow: visible;
        padding: 10px 15px;
        padding-top: 30px;
        min-height: 66px;
    }

    .sidebar-side-left.active {
        left: 300px;
    }

    .sidebar-side-left .submenu ul {
        max-height: 100%;
        overflow: auto;
    }

    .sidebar-side-left .submenu {
        height: 100%;
        display: flex;
        position: relative;
        z-index: 1;
        flex-direction: column;
    }

    .sidebar-side-left {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        left: 0;
        position: fixed;
        top: 135px;
        bottom: 0;
        z-index: 200;
        width: 300px;
        margin-left: -300px;
        z-index: 10;
    }

    .sidebar-side-left + .sidebar-side-right {
        width: 100%;
    }

    table.basket-table .basket-table-bundle-row {
        margin-top: 10px;
    }

    .basket-table-bundle-row .shop-basket-list-product-set-parts li {
        padding-left: 30px;
    }

    .shop-basket-list-product-set-parts-name.product-name.name {
        width: 100%;
    }

    .basket-table .hide-mobile {
        display: none !important;
    }

    .basket-table {
        /*margin-bottom: 25px;*/
        min-width: 100%;
        width: auto;
        border-spacing: 0;
    }

    .basket-summary .summary-row.summary-value .price {
        font-size: 24px;
    }

    .basket-summary .summary-row .caption {
        /*font-size: 14px;*/
    }

    .basket-table thead {
        display: none;
    }

    .basket-table tr {
        display: block;
        float: left;
        padding: 15px;
        width: 100%;
        /*border-bottom: 1px solid #333f48;*/
    }

    .basket-table thead tr > *, .basket-table tbody tr > * {
        border: 0;
    }

    .basket-table td {
        position: relative;
        display: block;
        float: left;
        padding: 8px 0;
        width: 100%;
        height: auto;
        text-align: left;
    }

    .basket-table-bundle-row td.basket-table-bundle-content {
        padding: 15px;
    }

    .basket-table td.lp::after,
    .basket-table td.remove-column::after {
        display: none;
    }

    .basket-table td::after {
        display: none;
    }

    .basket-table td:last-child::after {
        display: none;
    }

    .basket-table .remove-column,
    .basket-table td.product-info-box {
        width: 100%;
    }

    .basket-table td.lp {
        display: none;
    }

    .basket-table .lp {
        float: left;
        margin-right: 15px;
    }

    .basket-table .image {
        margin-right: 20px;
    }

    .basket-table-bundle-row .product-image {
        margin-left: 0;
    }

    .basket-table .caption.only-mobile {
        position: absolute;
        top: 50%;
        left: 0;
        float: left;
        max-width: 170px;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 12px;
        color: #172237;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .basket-table .caption + * {
        display: block;
        float: right;
        text-align: right;
    }

    .basket-table .name {
        padding-right: 0;
        max-width: 75%;
        width: 100%;
        font-size: 12px;
        float: none;
    }

    .basket-table .name.has-variant .title {
        vertical-align: top;
    }

    .basket-table span.name.has-variant {
        min-height: 48px;
        height: auto;
    }

    .basket-table td:last-child .btn,
    .basket-table td:last-child .btn:hover {
        background: transparent;
        color: #000;
        border-color: rgba(0, 0, 0, 0.1);
    }

    .basket-view .price-box.has-discount .price-old {
        display: inline-block;
    }

    .basket-view .price-box.has-discount .price-new {
        display: inline-block;
        padding-left: 10px;
    }

    .basket-table .input-counter {
        padding: 5px;
        width: 150px;
    }

    .basket-table .input-counter input {
        height: 30px;
        line-height: 24px;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .basket-view .shop-quantity-box .qty-down {
        left: 5px;
    }

    .basket-view .shop-quantity-box .qty-up {
        right: 5px;
    }

    .basket-view .shop-quantity-box .qty-down,
    .basket-view .shop-quantity-box .qty-up {
        top: 5px;
        width: 30px;
        height: 30px;
        line-height: 28px;
    }

    .basket-table tfoot th {
        border-top: 0;
    }

    .step-list .step .nb {
        width: 40px;
        height: 40px;
        line-height: 38px;
        margin-right: 8px;
    }

    .basket-icon {
        width: 40px;
        height: 40px;
        padding: 10px 11px;
    }
}

@media screen and (max-width: 991px) {

    .shop-order-login .row,
    .login-page .userpanel-container > .row {
        display: block;
    }

    .step-list .step .step-inner a {
        padding: 0;
    }

    .form-with-fixed .right-column {
        display: none;
    }
    .form-with-fixed .form-wrapper {
        width: 100%;
    }
    .form-with-fixed .form-wrapper .fixed-offset {
        width: 100%;
    }

    .login-box + .login-box {
        margin-top: 30px;
    }
}

@media screen and (max-width: 900px) {
    .step-inner:not(.active) .caption {
        display: none;
    }

    .step-list .step {
        min-width: 0;
    }

    .user-nav a .fa {
        padding: 0;
    }

    .heading.heading-hasright,
    .heading.heading-hasright .heading-content,
    .heading.heading-hasright .heading-right {
        display: block;
    }

    .heading-right {
        padding-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .basket-view .btn-wrapper + .btn-wrapper,
    .basket-view .btn + .btn {
        margin-top: 10px;
    }

    .sidebar-side-left {
        top: 63px;
    }



    .search-toggle {
        display: inline-block;
    }

    .header-top .header-left,
    .header-top .header-right {
        display: none;
    }

    .basket-table tr {
        padding: 5px 15px;
    }

    .basket-table tr.has-bundle {
        clear: both;
        border-bottom: 0;
    }

    /*.basket-table {*/
    /*margin-bottom: 25px;*/
    /*}*/

    .basket-table-summary {
        margin: 0 0 10px;
        padding: 5px 15px;
        background-color: #C5C5C5;
    }

    .basket-table-summary .summary-row .caption {
        left: 15px;
    }

    .basket-table-summary .summary-row {
        padding: 0 15px;
    }

    .basket-view .btn {
        width: 100%;
    }

    .basket-view .basket-coupon-box .btn {
        width: auto;
        margin-bottom: 0;
    }

    .sidebar-side-right .crud-wrapper {
        min-height: 120px;
    }

    .order-history-container .table.table-crud > tbody > tr > td:first-child .table-value.table-value-right {
        text-align: left;
    }
}

@media screen and (max-width: 639px) {
    .basket-table td.product-info-box {
        padding-right: 0;
    }

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

    .basket-title .step-list {
        display: inline-block;
        width: auto;
        padding-bottom: 0;
    }

    .step-list .step .step-inner a {
        text-align: left;
    }

    .step-list .step .nb {
        width: 32px;
        height: 32px;
        line-height: 30px;
        margin-right: 6px;
        font-size: 11px;
    }
}

@media screen and (max-width: 555px) {

    .basket-table .name {
        height: auto;
        max-width: inherit;
        width: 100%;
    }
}

@media screen and (max-width: 520px) {
    .sidebar-side-left:before {
        left: 260px;
    }

    .basket-box-btn .caption {
        display: none;
    }

    .sidebar-side-left h3:after,
    .sidebar-side-left h3:before {
        padding: 14px 5px;
        width: 40px;
        height: 55px;
        line-height: 18px;
        font-size: 16px;
        text-align: center;
    }

    .sidebar-side-left h3 {
        font-size: 22px;
        padding-top: 25px;
        min-height: 55px;
    }

    .sidebar-side-left.active {
        left: 260px;
    }

    .sidebar-side-left {
        width: 260px;
        margin-left: -260px;
    }

    .sidebar-side-left + .sidebar-side-right {
        width: 100%;
    }

    .basket-view .basket-coupon-container > label {
        padding: 0 0 7px;
    }

    .basket-view .basket-coupon-box {
        width: 100%;
    }

    .basket-coupon {
        padding-bottom: 20px;
    }

    .basket-view .basket-coupon-code {
        padding: 0 0 10px;
    }

    .basket-view .basket-coupon-box .btn {
        width: 100%;
        padding: 9px 10px;
    }

    .basket-view .basket-coupon-box .input-group {
        display: block;
        width: 100%;
    }
    .basket-coupon-box .form-inline .input-group .input-group-btn,
    .basket-view .basket-coupon-box .input-group > *{
        float: none;
        display: block;
        width: 100%;
    }
    .basket-coupon-box .form-inline .input-group .input-group-btn button{
        margin: 0;
    }

    .basket-coupon-box .element-row .form-element {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .basket-table-bundle-row .product-name {
        max-width: 158px;
    }

    .basket-table .discount,
    .basket-table .price-new {
        font-size: 18px;
    }

    .panel-title,
    *[class*="form-element-collection"] > .form-element-name,
    .basket-view .summary-box .form-element-name,
    .basket-view .summary-box h3,
    .filter-grid h2 {
        padding: 10px 15px;
    }

    .panel .panel-body,
    .basket-summary .form-element.form-element-radio,
    .basket-summary .price-and-discount-container,
    .filter-grid form {
        padding: 12px 15px;
    }

    .row-flex-center .btn {
        width: 100%;
    }
}

@media screen and (max-width: 460px) {
    .basket-table .caption.only-mobile,
    .order-section .basket-summary .summary-row .caption {
        width: 125px;
        word-break: break-all;
    }
}

@media screen and (max-width: 420px) {
    .basket-view .basket-summary tfoot td {
        font-size: 20px;
        line-height: 30px;
    }
}

/***************************************************************************************************************
 * STYLE NADPISUJĄCE - CUSTOMOWY DESIGN STRONY
 ***************************************************************************************************************/

@media screen and (max-width: 1440px) {

    .basket-table th {
        padding: 16px 0;
    }
}

@media screen and (max-width: 1280px) {
    .step-list {
        text-align: center;
    }

    .basket-table .shop-quantity-box {
        width: 150px;
    }

    .basket-table .input-counter input {
        padding-left: 38px;
        padding-right: 38px;
    }
}

@media screen and (max-width: 1139px) {
    .basket-title .step-list {
        white-space: normal;
        margin: -5px -8px;
    }

    .step-list .step .nb {
        width: 36px;
        height: 36px;
        line-height: 34px;
    }

    .basket-heading-inner {
        padding: 15px 0;
        margin-bottom: 20px;
    }

    .basket-table {
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        /*border-top: 1px solid rgba(0, 0, 0, 0.1);*/
        /*border-left: 1px solid rgba(0, 0, 0, 0.1);*/
        /*border-right: 1px solid rgba(0, 0, 0, 0.1);*/
    }

    .basket-table > * {
        display: block;
    }

    .basket-table:after {
        content: "";
        display: block;
        clear: both;
    }

    .basket-table tfoot th {
        display: block;
        text-align: center;
    }

    .basket-table .orderItemsValue {
        float: none;
    }

    .basket-table .shop-quantity-box {
        padding: 0;
    }

    .basket-view .shop-quantity-box .qty-down,
    .basket-view .shop-quantity-box .qty-up {
        top: 0;
    }

    .basket-view .shop-quantity-box .qty-up {
        right: 0;
    }

    .basket-view .shop-quantity-box .qty-down {
        left: 0;
    }

    .basket-table .shop-quantity-box {
        width: 120px;
    }

    .basket-coupon-col {
        padding: 20px;
    }

    .basket-coupon .text {
        font-size: 14px;
        line-height: 24px;
    }

    .basket-coupon .form .form-control {
        height: 40px;
    }

    .basket-coupon-box .form-inline .input-group .input-group-btn .btn {
        height: 40px;
    }
}

@media screen and (max-width: 900px) {
    .basket-coupon-col {
        float: none;
        width: auto;
    }

    .basket-coupon-col:nth-last-child(2) {
        border-right: none;
    }

    .basket-coupon-col:nth-child(2) {
        margin-left: 0;
        border-left: none;
        border-top: 1px solid #e0e0e0;
    }
}

@media screen and (min-width: 768px) {
    .order-history-container .table.table-crud > thead > tr > th:first-child,
    .order-history-container .table.table-crud > tbody > tr > td:first-child {
        width: 1%;
    }
}

@media screen and (max-width: 767px) {
    .step-list .step .step-inner a {
        font-size: 12px;
    }

    .step-list .step .nb {
        width: 34px;
        height: 34px;
        margin-right: 6px;
        line-height: 32px;
        font-size: 12px;
    }

    .order-history-container .rwd-table tbody tr {
        border: none;
    }
    .order-history-container .rwd-table tbody tr + tr {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    .order-history-container .panel-border {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    }
}

@media screen and (max-width: 639px) {
    .basket-title .step-list {
        margin: -5px;
        font-size: 0;
    }

    .step-list .step {
        padding: 5px;
    }

    .basket-table .image {
        display: block;
        float: none;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .basket-set .basket-set-icon {
        width: 30px;
    }

    .basket-set .basket-set-image {
        width: 70px;
    }

    .basket-set .basket-set-name {
        width: calc(100% - 100px);
    }
}

@media screen and (max-width: 1139px) and (min-width: 640px) {
    .basket-table .product-info-box-inner {
        display: table;
        width: 100%;
    }

    .basket-table .product-info-box-inner > * {
        display: table-cell;
        vertical-align: middle;
        float: none;
    }

    .basket-table .name {
        width: auto;
        padding-left: 15px;
    }

    .basket-table tbody .lp {
        width: 1%;
        padding-right: 5px;
    }

    .basket-view .thumbnail {
        margin-bottom: 0;
        width: 90px;
    }

    .basket-set .basket-set-icon {
        width: 30px;
    }

    .basket-set .basket-set-image {
        max-width: 70px;
    }
}

@media screen and (max-width: 1139px) and (min-width: 561px) {
    .basket-table tbody tr:nth-child(4n+3),
    .basket-table tbody tr:nth-child(4n+2) {
        background-color: #f9f9f9;
    }

    .basket-table tbody tr:nth-child(odd):last-child {
        width: 100%;
    }

    .basket-table tbody tr:nth-child(4n),
    .basket-table tbody tr:nth-child(4n+1) {
        background-color: #fff;
    }

    .basket-table {
        border: none;
    }

    .basket-table thead {
        display: none;
    }

    .basket-table tbody {
        font-size: 0;
        /*border-top: 1px solid var(--shop-secondary);*/
        /*border-left: 1px solid var(--shop-secondary);*/
        overflow: hidden;
    }

    .basket-table tbody tr {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 50%;
        padding: 15px 15px 60px 15px;
        font-size: medium;
        /*border: 1px solid var(--shop-secondary);*/
        border-bottom: 0;
        border-top: 0;
        border-left: 0;
        border-top: 1px solid #333f48;
    }

    .basket-table tbody tr:nth-child(1),
    .basket-table tbody tr:nth-child(2) {
        border-top: none;
    }

    .basket-table tbody tr:first-child:last-child {
        width: 100%;
    }

    .basket-table .remove-column {
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 5px;
        width: auto;
    }

}

@media screen and (max-width: 560px) {
    .btn.btn-pay > * {
        display: block;
        text-align: center;
    }
    .btn.btn-pay {
        padding: 8px 15px;
        font-size: 16px;
    }
    .btn.btn-pay img {
        height: 1.6em;
        margin: 5px auto;
    }

    .basket-table {
        margin-bottom: 10px;
    }
    .basket-table tr:not(:first-child) {
        border-top: 1px solid #333f48;
    }
}

@media screen and (max-width: 520px) {
    .basket-coupon {
        padding-bottom: 0;
    }

    .basket-coupon .form .form-control {
        margin-bottom: 10px;
    }
    .basket-coupon-box .form-inline .input-group .input-group-btn .btn {
        border-radius: 6px;
    }
}

@media screen and (max-width: 480px) {
    .basket-coupon-col {
        padding: 15px;
    }

    .search-group-heading {
        flex-direction: column;
    }
    .search-group-heading-title {
        padding-right: 0;
        margin-bottom: 5px;
    }
    .search-box {
        width: 100%;
    }
    .search-box .btn {
        width: 100%;
    }
}

@media screen and (max-width: 420px) {
    .basket-view .basket-summary.basket-summary-total {
        margin-bottom: 30px;
    }

    .basket-view legend {
        padding: 10px 15px;
    }
}


/* --------------- LOGIN --------------- */
@media screen and (max-width: 991px) {

}

@media screen and (max-width: 767px) {
    .login-info-content {
        padding: 0;
    }

    .login-info-content .btn-base {
        right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .login-box .btn.btn-base {
        position: static;
        width: 100%;
    }

    .login-box .login-submitRow {
        flex-direction: column;
    }

    .login-box .login-submitRow .login-forgotPassword {
        font-size: 14px;
    }

    .login-box .login-submitRow .delete-backToUser {
        margin-top: 15px;
    }

    .login-info-content .text-base {
        margin-bottom: 15px;
        padding-bottom: 0;
    }
}

.header-top.rwd-only{
    display: none;
}

#main-menu li.active a{
    text-decoration: underline;
}

.footer-col-content ul li.active a {
    text-decoration: underline;
    color: var(--color-primary);
}

.user-balance-date{
    font-size: 14px;
    margin-bottom: 10px;
}

.user-balance-caption{
    font-size: var(--font-24);
}

.projects-box-section {
    margin-top: var(--space-60);
}

.btn-arrow-new {
    width: 60px;
}

.arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-arrow-new {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
    color: #000;
    transition: .2s all;
}

.btn-arrow-new .icon *[fill]:not([fill="none"]) {
    fill: currentColor;
}

.btn-arrow-new .icon *[stroke]:not([stroke="none"]) {
    fill: currentColor;
}

@media screen and (min-width: 1140px) {
    .btn-arrow-new:hover {
        background-color: #fff;
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

    .btn-arrow-new:hover .icon {
        filter: brightness(0) saturate(100%) invert(47%) sepia(78%) saturate(524%) hue-rotate(85deg) brightness(85%) contrast(89%);
    }
}

.return-btn-wrapper {
    margin-top: calc(var(--space-60) - 20px);
}

.beneficiaries-view-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-50);
    gap: 20px var(--space-50);
    flex-wrap: wrap;
    justify-content: space-between;
}

.beneficiaries-search-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.beneficiaries-search-wrapper .text {
    flex-grow: 1;
}

.beneficiaries-search-wrapper .beneficiaries-search-box {
    width: 100%;
    max-width: 500px;
    flex-shrink: 0;
}

.beneficiaries-search-wrapper .beneficiaries-search-box .search-box {
    width: 100%;
}

.beneficiaries-search-wrapper .beneficiaries-search-box .search-box .form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.beneficiaries-search-wrapper .beneficiaries-search-box .search-box .form .btn-wrapper {
    position: absolute;
    top: 50%;
    right: 0;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
}

.beneficiaries-search-wrapper .beneficiaries-search-box .search-box .form .btn-wrapper > .btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 10px 0;
    padding: 0;
    background-color: #fff;
    border-color: transparent;
    padding: 14px;
}

.beneficiaries-search-wrapper .beneficiaries-search-box .search-box .form .btn-wrapper > .btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficiaries-search-wrapper .beneficiaries-search-box .search-box .form .btn-wrapper > .btn .icon svg path {
    stroke: #000;
    transition: .2s all;
}


@media screen and (min-width: 1140px) {
    .beneficiaries-search-wrapper .beneficiaries-search-box .search-box .form .btn-wrapper > .btn:hover .icon svg path {
        stroke: var(--color-primary);
    }
}



.beneficiaries-search-wrapper .beneficiaries-search-box .search-box .form .row {
    width: 100%;
    flex-shrink: 0;
}

.beneficiaries-search-wrapper .beneficiaries-search-box .search-box .form .row > * {
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 0;
}

.beneficiaries-search-wrapper .beneficiaries-search-box .search-box .form .row > * .form-element-container {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) + 5px);
}

.beneficiaries-search-wrapper .beneficiaries-search-box .search-box .form .row > * .form-element-container > div:first-child {
    flex-shrink: 0;
}

.beneficiaries-search-wrapper .beneficiaries-search-box .search-box .form .row > * .form-element-container > div.form-element {
    flex-grow: 1;
}

.beneficiaries-search-wrapper .beneficiaries-search-box .form-control {
    background-color: #fff;
    color: #000;
    border-color: transparent;
}

.beneficiaries-search-wrapper .beneficiaries-search-box .form-element-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: #000;
}

.beneficiaries-button-wrapper {
    margin-bottom: var(--space-60) !important;
}

.goal-full-top .main-goal .form-group {
    width: 100%;
    max-width: 224px;
}

.goal-box-wrapper form.donate-form .form-control-feedback {
    display: none;
}

.goal-box-wrapper form.donate-form .form-group {
    margin-bottom: 0;
}

.donation-details-container .goal-box-wrapper form.donate-form {
    padding: 0;
}

.donation-details-container .goal-box-wrapper {
    padding: var(--space-50);
}

.donation-details-container .goal-full .goal-label {
    font-size: var(--font-22);
    margin-bottom: calc(var(--space-25) - 1px);
}

.donation-details-container .goal-full {
    margin-bottom: calc(var(--space-40) + 4px);
}

.donation-details-container .goal-row .form-group input {
    min-height: 56px;
    font-size: 16px;
}

.donation-details-container .goal-row .form-group label.form-element-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 7px;
}

.donation-details-container .amount-inner {
    gap: 15px;
}

.donation-details-container .goal-full + .amount-box button.amount-item {
    width: 85px;
    height: 56px;
    font-size: 19px;
}

.donation-details-container .goal-full + .amount-box span.amount {
    font-size: 19px;
}

.donation-details-container .amount-inner .input-wrapper {
    width: 230px;
    height: 56px;
}

.donation-details-container .amount-inner .input-wrapper .form-control {
    width: 230px;
    min-height: 56px;
    font-size: 16px;
}

.donation-details-container .goal-bottom {
    max-width: 232px;
}

.donation-details-container .goal-bottom .btn {
    min-height: 56px;
    font-size: 18px;
    width: 100%;
}

.donation-details-container .goal-bottom .btn .btn-arrow {
    width: 14px;
}

.donation-details-container .goal-full-top .main-goal .form-group {
    max-width: 66.66%;
}

.donation-details-container .goal-row {
    gap: 15px;
}

.donation-details-container .goal-full-top .goal-row .form-group input {
    text-align: left;
    font-size: 19px;
}

.slider-butttons {
    display: flex;
    align-self: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-buttons-wrapper {
    border: 2px solid #d9e021;
    padding: var(--space-40);
    border-radius: 15px;
    margin-bottom: calc(var(--space-40) + 5px);
}

.page-buttons-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: -8px calc(-1 * var(--space-25));
}

.page-button-wrapper {
    width: fit-content;
    padding: 8px var(--space-25);
    flex-shrink: 0;
    display: flex;
}

.page-button-wrapper > .btn {
    width: 100%;
}

.page-buttons-list .btn.has-arrow {
    text-align: left;
    max-width: unset;
    margin: 0 auto;
    width: 100%;
}

.page-heading-title.title-center {
    text-align: center;
}

@media screen and (min-width: 1140px) {
    .icon-animation svg {
        stroke-dashoffset: 1000;
        stroke-dasharray: 1000;
    }
    .draw-svg svg {
        animation: ease-in-out 3s draw-svg forwards;
    }
    @keyframes draw-svg {
        0% {
            stroke-dashoffset: 1000;
        }
        100% {
            stroke-dashoffset: 0;
        }
    }
}

.slick-cloned.opacityZero {
    opacity: 1 !important;
    pointer-events: initial !important;
}

.reports-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
}

.reports-item {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 10px;
    padding: 15px var(--space-25);
}

.reports-item-content {
    display: none;
    padding-top: 15px;
}

.top-left .social-list {
    flex-shrink: 0;
}

.reports-item-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
}

.reports-item-title {
    font-size: var(--font-24);
    font-weight: 500;
}

.reports-item-heading .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .2);
    transition: .2s all;
    flex-shrink: 0;
}

.reports-item-heading .icon svg {
    transform: rotate(90deg);
    transition: .2s all;
}

.reports-item-heading .icon svg path {
    fill: currentColor;
}

.reports-item.active .reports-item-heading .icon svg {
    transform: rotate(90deg) scaleX(-1);
}

.reports-item.active .reports-item-heading .icon {
    border-color: var(--color-tertiary);
    color: #000;
    background-color: var(--color-tertiary);
}

@media screen and (min-width: 1140px) {
    .reports-item-heading:hover .icon {
        border-color: var(--color-tertiary);
        color: #000;
        background-color: var(--color-tertiary);
    }
}

.reports-item-link-wrapper + .reports-item-link-wrapper {
    margin-top: 10px;
}

.reports-item-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (min-width: 1140px) {
    .reports-item-link:hover {
        text-decoration: underline;
    }
}

.copy-btn{
    padding-left: 3px;
    cursor: pointer;
}