/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@media (max-width: 575px) {
    .col-xs-4 {
        flex: 0 0 auto;
        width: 25%;
    }
}

@media (max-width: 400px) {
    .col-xs-4 {
        flex-shrink: 0;
        width: 100%;
    }
}

:root {
    --green: #00834f;
    --red: #e13030;
}

.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -10px;
}
.hamburger-inner::after {
    bottom: -10px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
    -webkit-perspective: 80px;
    perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
    transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
        background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
        background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
    -webkit-perspective: 80px;
    perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
    transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
        background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
        background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before,
.hamburger--3dx-r .hamburger-inner::after {
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
    -webkit-perspective: 80px;
    perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
    transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
        background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
        background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before,
.hamburger--3dy .hamburger-inner::after {
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent;
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
    -webkit-perspective: 80px;
    perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
    transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
        background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
        background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before,
.hamburger--3dy-r .hamburger-inner::after {
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
    transition: top 0.1s 0.15s ease,
        -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: top 0.1s 0.15s ease,
        transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: top 0.1s 0.15s ease,
        transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1),
        -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
    transition: bottom 0.1s 0.15s ease,
        -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: bottom 0.1s 0.15s ease,
        transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: bottom 0.1s 0.15s ease,
        transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1),
        -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
    transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
    transition: top 0.1s ease,
        -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: top 0.1s ease,
        transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: top 0.1s ease,
        transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),
        -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
    transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
    transition: bottom 0.1s ease,
        -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: bottom 0.1s ease,
        transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: bottom 0.1s ease,
        transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),
        -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
    transition: top 0.1s 0.15s ease,
        -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: top 0.1s 0.15s ease,
        transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: top 0.1s 0.15s ease,
        transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1),
        -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
    transition: bottom 0.1s 0.15s ease,
        -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: bottom 0.1s 0.15s ease,
        transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: bottom 0.1s 0.15s ease,
        transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1),
        -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
    transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
    transition: top 0.1s ease,
        -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: top 0.1s ease,
        transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: top 0.1s ease,
        transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),
        -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
    transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
    transition: bottom 0.1s ease,
        -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: bottom 0.1s ease,
        transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: bottom 0.1s ease,
        transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),
        -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
    transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.15s;
    transition-delay: 0.15s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.32s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        opacity 0.1s 0.27s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.15s;
    transition-delay: 0.15s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, -10px, 0) rotate(45deg);
    transform: translate3d(0, -10px, 0) rotate(45deg);
    transition-delay: 0.32s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        opacity 0.1s 0.27s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
    top: 2px;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.15s 0.4s ease;
}
.hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
    transform: translate3d(0, 10px, 0) rotate(135deg);
    transition-delay: 0.1s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.1s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
    top: 2px;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.15s 0.4s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
    transform: translate3d(0, 10px, 0) rotate(-135deg);
    transition-delay: 0.1s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.1s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
    overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
    left: 0;
    transition: top 0.05s 0.2s linear, left 0.2s 0.25s ease-in,
        -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
        top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
        top 0.05s 0.2s linear, left 0.2s 0.25s ease-in,
        -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic .hamburger-inner::after {
    top: 10px;
    right: 0;
    transition: top 0.05s 0.2s linear, right 0.2s 0.25s ease-in,
        -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
        top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
        top 0.05s 0.2s linear, right 0.2s 0.25s ease-in,
        -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
    left: -80px;
    top: -80px;
    -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg);
    transform: translate3d(80px, 80px, 0) rotate(45deg);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear,
        -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear,
        transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear,
        transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1),
        -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
    right: -80px;
    top: -80px;
    -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg);
    transform: translate3d(-80px, 80px, 0) rotate(-45deg);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear,
        -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear,
        transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear,
        transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1),
        -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
    overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
    left: 0;
    transition: top 0.05s 0.2s linear, left 0.2s 0.25s ease-in,
        -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
        top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
        top 0.05s 0.2s linear, left 0.2s 0.25s ease-in,
        -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic-r .hamburger-inner::after {
    top: 10px;
    right: 0;
    transition: top 0.05s 0.2s linear, right 0.2s 0.25s ease-in,
        -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
        top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
        top 0.05s 0.2s linear, right 0.2s 0.25s ease-in,
        -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
    left: -80px;
    top: 80px;
    -webkit-transform: translate3d(80px, -80px, 0) rotate(-45deg);
    transform: translate3d(80px, -80px, 0) rotate(-45deg);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear,
        -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear,
        transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear,
        transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1),
        -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
    right: -80px;
    top: 80px;
    -webkit-transform: translate3d(-80px, -80px, 0) rotate(45deg);
    transform: translate3d(-80px, -80px, 0) rotate(45deg);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear,
        -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear,
        transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear,
        transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1),
        -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
    top: 2px;
}
.hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    transition-timing-function: ease;
    transition-duration: 0.2s;
}
.hamburger--slider .hamburger-inner::after {
    top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
    -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
    transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
    top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    transition-timing-function: ease;
    transition-duration: 0.2s;
}
.hamburger--slider-r .hamburger-inner::after {
    top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
    -webkit-transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(90deg);
    transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.15s linear;
}
.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.32s;
    background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        -webkit-transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        -webkit-transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.15s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.32s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        opacity 0s 0.32s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        -webkit-transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
    transition: background-color 0s 0.1s linear,
        -webkit-transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        background-color 0s 0.1s linear;
    transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        background-color 0s 0.1s linear,
        -webkit-transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in,
        -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.1s ease-in,
        transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.1s ease-in,
        transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in,
        -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.1s ease-in,
        transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.1s ease-in,
        transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background-color: transparent;
    transition: background-color 0s 0.22s linear,
        -webkit-transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
        background-color 0s 0.22s linear;
    transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
        background-color 0s 0.22s linear,
        -webkit-transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out,
        -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.12s ease-out,
        transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.12s ease-out,
        transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out,
        -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s 0.12s ease-out,
        transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s 0.12s ease-out,
        transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
    transition: background-color 0s 0.1s linear,
        -webkit-transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        background-color 0s 0.1s linear;
    transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        background-color 0s 0.1s linear,
        -webkit-transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in,
        -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.1s ease-in,
        transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.1s ease-in,
        transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in,
        -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.1s ease-in,
        transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.1s ease-in,
        transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    background-color: transparent;
    transition: background-color 0s 0.22s linear,
        -webkit-transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
        background-color 0s 0.22s linear;
    transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
        background-color 0s 0.22s linear,
        -webkit-transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out,
        -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.12s ease-out,
        transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.12s ease-out,
        transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out,
        -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s 0.12s ease-out,
        transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s 0.12s ease-out,
        transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in,
        -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in,
        transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in,
        transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out,
        -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out,
        transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out,
        transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in,
        -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in,
        transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in,
        transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out,
        -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out,
        transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out,
        transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease,
        -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease,
        transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease,
        transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease,
        -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease,
        transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease,
        transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
    transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex.is-active .hamburger-inner {
    -webkit-transform: rotate(765deg);
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
    transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
    -webkit-transform: rotate(-765deg);
    transform: rotate(-765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.login-box-container {
    padding: 120px 0;
    min-height: 100vh;
    height: auto;
}

.login-box-container .box-5 {
    max-width: 415px;
    margin: auto;
    padding: 8px;
    box-shadow: 0 16px 20px rgba(0, 0, 0, 0.15);
}

.login-box-logo {
    padding: 30px 70px;
    text-align: center;
}

.login-box-title {
    text-transform: uppercase;
    padding: 15px 15px;
}

.login-box-form-container {
    padding: 20px 48px;
}

.f-box .search-box .select {
    margin-bottom: 20px;
}

.login-box-form-container label,
.login-box-bottom-btn {
    color: #b2b2b2;
    font-size: 15px;
    font-weight: normal;
}

.login-box-form-container input {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    font-family: "BNPPSans";
    color: #000;
}

.g-recaptcha {
    margin-bottom: 20px;
}

.label-checkbox.warning {
    border-bottom: 2px solid red;
}

button[disabled] {
    background-color: #b1b1b1;
}

.login-box-bottom-btn {
    text-transform: uppercase;
    text-align: center;
    margin: 5px 0 20px;
    display: block;
}

.green-dark-btn {
    padding: 16px 16px 13px;
    width: 100%;
    /* background: #24935f; */
    background: #8ac34e;
    color: #fff;
    border: transparent;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    font-family: "BNPPSans";
    position: relative;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.addComment .green-dark-btn {
    background-color: transparent;
    padding: 0;
    width: auto;
}

.green-dark-btn > .green-dark-btn-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 15px;
    left: calc(50% + 50px);
    transition: 0.5s;
}

.green-dark-btn:hover {
    opacity: 0.9;
}

.green-dark-btn:hover > .green-dark-btn-arrow {
    left: calc(50% + 55px);
}

.popup-rodo .modal-dialog {
    max-width: 856px;
    margin: 40px auto;
}

.popup-rodo-box {
    position: relative;
}

.popup-rodo-header {
    padding: 40px 180px 32px 48px;
    position: relative;
    border-bottom: 1px solid #f2f2f2;
}

.popup-rodo-header:after {
    background: url(../img/hand-img.png) no-repeat;
    width: 78px;
    height: 82px;
    content: "";
    position: absolute;
    top: calc(50% - 41px);
    right: 65px;
}

.popup-rodo-close-btn,
.popup-profile-close-btn {
    color: #231f20;
    background: none;
    border: transparent;
    padding: 6px;
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 10;
}

.popup-rodo-close-btn > img,
.popup-profile-close-btn > img {
    width: 15px;
    height: 15px;
}

.popup-rodo-close-btn:hover,
.popup-profile-close-btn:hover {
    color: #231f20;
    background: none;
    border: transparent;
}

.popup-rodo-form-btn {
    width: auto;
    margin: auto;
    display: inline-block;
}

.green-dark-btn2 {
    padding-right: 30px;
}

.popup-rodo-text {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 300;
    font-family: "BNPPSans";
    color: #231f20;
    position: relative;
    margin: 0;
}

.popup-rodo-form-container {
    padding: 30px 40px 42px 48px;
}

.checkbox-container {
    position: relative;
    padding: 5px 0 0 0;
}

.checkbox-container input {
    position: absolute;
    top: 5px;
    left: 0px;
}

/* CUSTOM CHECKBOX */
/* Hide the browser's default checkbox */
.checkbox-container-content input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: auto;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
}

/* On mouse-over, add a grey background color */
.checkbox-container-content:hover input ~ .checkmark {
    background-color: #24935f;
    border: 2px solid #24935f;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container-content input:checked ~ .checkmark {
    background-color: #24935f;
    border: 2px solid #24935f;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container-content input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container-content .checkmark:after {
    left: 6px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-container-content {
    position: absolute;
    bottom: -60px;
    left: 235px;
    padding-left: 36px;
    color: #fff;
}

.checkbox-container .checkbox-container-content {
    position: relative;
    bottom: inherit;
    left: inherit;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    padding-right: 140px;
}

.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #f2f2f2;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.label-checkbox {
    font-family: "BNPPSans";
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #231f20;
}

.popup-rodo-form-btn-box {
    text-align: center;
    margin-top: 40px;
}

.popup-rodo-form-btn {
    padding: 16px 30px 13px;
}

.popup-rodo-download-btn {
    position: absolute;
    top: 5px;
    right: 30px;
}

.download-btn {
    font-family: "BNPPSans";
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    text-transform: uppercase;
    padding-right: 15px;
    text-decoration: none;
}

.download-btn:after {
    background: url(../img/left-arrow.svg) no-repeat;
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    top: 2px;
    right: 0px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    display: block;
    transition: 0.5s;
}

.download-btn:hover {
    color: #000000;
    text-decoration: none;
    opacity: 0.8;
}

.download-btn:hover:after {
    top: 5px;
}

.help-page-top {
    padding-top: 22px;
    padding-bottom: 45px;
}

.help-page-top .z-title {
    text-align: left;
}

.contact-page-form {
    padding: 30px 30px 0px;
    border-bottom: 1px solid #f2f2f2;
}

.search-box textarea {
    border-radius: 3px;
    background: transparent;
    border: 1px solid #e3e3e3;
    padding: 12px;
    width: 100%;
}

.search-box textarea::-webkit-input-placeholder {
    font-style: italic;
    color: #bfbfbf;
}

.search-box textarea:-ms-input-placeholder {
    font-style: italic;
    color: #bfbfbf;
}

.search-box textarea::-ms-input-placeholder {
    font-style: italic;
    color: #bfbfbf;
}

.search-box textarea::placeholder {
    font-style: italic;
    color: #bfbfbf;
}

.search-box input::-webkit-input-placeholder {
    font-style: italic;
    color: #bfbfbf;
    font-size: 14px;
}

.search-box input:-ms-input-placeholder {
    font-style: italic;
    color: #bfbfbf;
    font-size: 14px;
}

.search-box input::-ms-input-placeholder {
    font-style: italic;
    color: #bfbfbf;
    font-size: 14px;
}

.search-box input::placeholder {
    font-style: italic;
    color: #bfbfbf;
    font-size: 14px;
}

.contact-page-form .f-box {
    margin-bottom: 25px;
}

.input-type-file-btn {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    position: relative;
    padding-left: 30px;
    text-transform: uppercase;
    padding-top: 6px;
    cursor: pointer;
    word-wrap: break-word;
}

.input-type-file-btn:before {
    background: url(../img/chain.svg) no-repeat;
    width: 22px;
    height: 22px;
    content: "";
    position: absolute;
    top: 2px;
    left: 0px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    display: block;
    transition: 0.5s;
    background-size: contain;
}

.input-type-file-btn input {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: red;
    opacity: 0;
    cursor: pointer;
}

.contact-page-form-bottom {
    padding: 30px;
    margin-bottom: 30px;
}

.help-page-form .checkbox-container-content {
    padding-right: 0;
    margin-bottom: 15px;
}

.help-page-form .label-checkbox {
    font-size: 11px;
    font-family: "Arial";
    color: #999999;
}

.help-page-form .green-dark-btn2 {
    width: 130px;
    padding: 13px 30px 10px 16px;
}

.help-page-form .green-dark-btn > .green-dark-btn-arrow {
    left: calc(50% + 20px);
    top: 12px;
}

.help-page-form .green-dark-btn:hover > .green-dark-btn-arrow {
    left: calc(50% + 25px);
}

.help-page-form .login-form-btn-box {
    text-align: right;
}

.faq-box {
    position: relative;
    cursor: pointer;
}

.faq-box:after {
    content: "";
    position: absolute;
    right: 15px;
    top: 20px;
    width: 15px;
    height: 15px;
    background: url("../img/r-arrow-black.svg") no-repeat;
    background-position: center center;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.faq-box-title {
    font-family: "BNPPSans";
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #000000;
    padding: 20px 40px 20px 30px;
}

.faq-box-title:hover {
    color: #24935f;
}

.faq-box-content {
    display: none;
    padding: 20px 30px;
    border-top: 1px solid #f2f2f2;
    font-family: "BNPPSans";
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    color: #231f20;
}

.faq-box.active:after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.faq-box.active .faq-box-title {
    color: #24935f;
}

.faq-box.active .faq-box-content {
    display: block;
}

.help-page-bottom-section {
    background: #fff;
    padding: 50px 0 70px;
}

.info-d-image {
    width: 100%;
    height: 170px;
    background: #f2f5f4;
    position: relative;
}

.info-d-image:before {
    width: 54px;
    height: 68px;
    background: url("../img/doc-img.png") no-repeat;
    position: absolute;
    content: "";
    top: calc(50% - 34px);
    left: calc(50% - 27px);
}

.info-download-cell {
    margin-bottom: 20px;
}

.info-d-title .z-title {
    font-size: 24px;
    margin: 0;
    padding: 28px 0 20px;
    text-align: left;
}

.info-d-btn {
    text-align: left;
}

.info-d-btn .green-dark-btn {
    padding: 13px 16px 10px;
    width: auto;
    display: inline-block;
}

#myModal2 .modal-dialog {
    width: auto;
    max-width: 420px;
    margin: auto;
}

.popup-profile-header {
    padding: 150px 50px 50px;
    position: relative;
    text-align: center;
}

.popup-profile-header:before {
    width: 62px;
    height: 81px;
    background: url("../img/hand-img2.png") no-repeat;
    position: absolute;
    content: "";
    top: 36px;
    left: calc(50% - 27px);
}

@media (max-width: 675px) {
    .popup-rodo-header {
        padding: 15px 125px 15px 15px;
    }

    .popup-rodo-header .title-1 h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .popup-rodo-header .popup-rodo-text {
        font-size: 12px;
    }

    .popup-rodo-header::after {
        right: 36px;
    }

    .popup-rodo-form-container {
        padding: 15px;
    }

    .popup-rodo-download-btn {
        right: 0px;
    }

    .popup-rodo-form-container .checkbox-container .checkbox-container-content {
        padding-right: 65px;
    }

    .popup-rodo-form-container .label-checkbox {
        line-height: 1.2;
        color: #231f20;
    }

    .popup-rodo-checkboxes {
        height: 115px;
        overflow: scroll;
    }
}

@media (max-width: 767px) {
    .popup-rodo .modal-dialog {
        max-width: 100%;
        margin: 15px;
    }
}

@media (max-width: 455px) {
    #myModal2 .modal-dialog {
        max-width: 100%;
        margin: 15px;
    }
}

/* EDYCJA PROFILU */

.profile-edit-container {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 55px;
}

.profile-edit-container .u-box-1 {
    text-align: center;
}

.profile-content-box figure.profile-image {
    border: 12px solid #fff;
    position: relative;
    border-radius: 100%;
    margin-top: -103px;
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.2);
    vertical-align: top;
    width: 180px;
    height: 180px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: inline-block;
}

.profile-content-box figure.profile-image img {
    /* border-radius: 100%; */
    max-height: 100%;
    max-width: 100%;
}

.box-33 .image,
.quest-header .z-btn-1 .image,
nav.main-menu .z-btn-1 .image {
    width: 36px;
    height: 36px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
}

.quest-header .z-btn-1 .image img,
nav.main-menu .z-btn-1 .image img {
    display: inline-block;
}

.quest-header .z-btn-1 .txt,
nav.main-menu .z-btn-1 .txt {
    padding-left: 10px;
}

.ics-1 {
    width: 20px;
    height: 19px;
    margin: -3px 13px 0 0;
    display: inline-block;
    vertical-align: middle;
    background: url("../img/folder-icon.png") center no-repeat;
    background-size: 100% 100%;
}

.change-bg-btn {
    text-align: center;
    margin-top: 66px;
}

.change-bg-btn .p-buttons-2,
.change-profile-img .p-buttons-2 {
    float: none;
}

.change-profile-img .p-buttons-2 {
    position: absolute;
    left: calc(50% - 116px);
    top: -25px;
}

button.z-btn-4.z-btn-4-1 {
    border: transparent;
    font-family: "BNPPSans";
}

.z-btn-4 {
    cursor: pointer;
}

.change-bg-btn input {
    display: none;
}

.btn-prompt {
    text-align: center;
    padding: 15px;
    font-family: "BNPPSans";
    font-weight: 400;
    font-size: 13px;
    color: #fff;
}

.change-profile-img .btn-prompt {
    color: #b2b2b2;
}

.change-profile-img {
    position: relative;
    padding: 15px;
}

.profile-edit-bottom {
    padding: 45px 0 42px;
}

.profile-edit-bottom .u-box-3 .u-data .u-data-1 {
    border-radius: 5px;
    font-size: 13px;
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    background: #f0f0f0;
    padding: 12px 10px;
    min-width: 150px;
    text-align: center;
}

.profile-edit-bottom .u-box-3 .u-data .u-data-1 span {
    font-size: 14px;
    display: block;
    opacity: 0.35;
    font-family: "BNPPSansCond";
    font-weight: 600;
}

.profile-edit-bottom .txt-3 {
    margin-bottom: 20px;
}

.profile-edit-bottom .z-contact {
    margin: 36px 0;
}

.profile-ed-bot-contact,
.profile-ed-bot-info {
    text-align: center;
}
.profile-ed-bot-contact .u-box-3 .u-data .u-data-1 {
    color: #209460;
    font-weight: 400;
}

.change-profile-form .login-box-form-container {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    font-family: "BNPPSans";
    color: #000;
    padding: 0;
}

.change-profile-form .f-box {
    margin-bottom: 10px;
}

.change-profile-form .f-box .select {
    margin-bottom: 15px;
}

.change-profile-form .select .chosen-container-single .chosen-single {
    height: 60px;
    line-height: 60px;
}

.change-profile-form .select .glyphicon,
.change-profile-form .select .bi {
    position: absolute;
    top: 22px;
}

.change-profile-form .chosen-container-single .chosen-single span {
    padding-left: 30px;
}

.select-icon {
    position: absolute;
    left: 12px;
    top: calc(50% - 14px);
    width: 24px;
    height: 28px;
    background-position: center center;
}

.change-profile-form .login-form-btn-box {
    text-align: center;
}

.change-profile-form .login-form-btn-box {
    text-align: center;
}

.change-profile-form .green-dark-btn {
    width: auto;
}

.letters-counter {
    color: #b2b2b2;
    font-size: 12px;
    font-weight: normal;
    text-align: right;
}

/* LISTA AKTUALNOŚCI */

.list-news-container {
    padding-top: 52px;
}

.list-news-cell {
    overflow: hidden;
    margin-bottom: 30px !important;
    position: relative;
}

.list-news-cell a.news-cell-box-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.list-news-cell-content {
    padding: 30px;
}

.list-news-cell-image {
    height: 190px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.list-news-cell-status {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 30px;
    background: #fff;
    padding: 10px 12px 7px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    font-family: "BNPPSans";
}

.list-news-cell-info {
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 300;
    font-family: "BNPPSans";
    color: #9a9a9a;
}

.list-news-cell-title {
    font-family: "BNPPSansCond";
    font-size: 30px;
    color: #231f20;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 3px solid #24935f;
    margin-bottom: 15px;
    display: block;
}

.list-news-cell-desc {
    padding: 15px 0;
    font-size: 15px;
    font-weight: 300;
    font-family: "BNPPSans";
    color: #231f20;
}

.list-news-cell-bottom {
    margin-top: 10px;
}

.list-news-cell-bottom-btn {
    float: left;
}

.list-news-cell-bottom-btn .green-dark-btn {
    padding: 11px 20px 8px;
    width: auto;
}

.list-news-cell-bottom-like-btn {
    float: right;
    position: relative;
}

.like-btn-circle {
    /* width: 40px;
  height: 40px;
  border: 2px solid #e5e5e5;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  position: relative;
  cursor: pointer;
  float: left; */
    z-index: 100;
}

.like-btn-circle:before {
    /* background: url(../img/like.svg) no-repeat;
  width: 16px;
  height: 16px;
  content: "";
  position: absolute;
  top: 11px;
  left: 10px;
  display: block;
  content: ""; */
}

.like-btn-circle.active:before {
    /* background: url(../img/like_pink.svg) no-repeat; */
}

.like-btn-circle.active {
    /* border: 2px solid #fce8ee;
  background: #fce8ee; */
}

.like-btn-number {
    float: left;
    line-height: 20px;
    padding: 12px 10px 8px;
}

.list-news-cell2 .list-news-cell-status {
    display: block;
    color: #8ac34e;
}

.list-news-cell2 .list-news-cell-title {
    border-bottom: 3px solid #8ac34e;
}

.list-news-cell2 .green-dark-btn {
    background: #8ac34e;
}

.list-news-cell3 .list-news-cell-status {
    display: block;
    color: #7bc9c9;
}

.list-news-cell3 .list-news-cell-title {
    border-bottom: 3px solid #7bc9c9;
}

.list-news-cell3 .green-dark-btn {
    background: #7bc9c9;
}

.green-dark-btn-cell-2 {
    background: #8ac34e;
}

/* SZCZEGÓŁY AKTUALNOŚCI */

.banner-top {
    height: 500px;
    width: 100%;
    display: table;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0 15px;
    text-align: center;
    position: relative;
}

/* .banner-top:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  left: 0px;
  top: 0px;
  z-index: 1;
} */

.banner-content {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 2;
}

.banner-top h1 {
    font-family: "BNPPSansCond";
    font-size: 55px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}
@media (max-width: 450px) {
    .banner-top.banner-top-nz h1 {
        font-size: 30px;
    }
}

.banner-top h3 {
    font-family: "BNPPSansCond";
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.banner-news-info .list-news-cell-info {
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    display: inline-block;
    padding: 5px 16px 4px;
}

.top-text-section {
    padding-top: 60px;
}

/* program promotor - style */

.articles-list:has(.ppromotor-sec) {
    margin: 20px 0px;
}
.ppromotor-sec .newly_hired {
    height: 45px;
}
.ppromotor-sec .newly_hired_content {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}
.ppromotor-sec .month_hold {
    display: flex;
    align-items: center;
}
.ppromotor-sec .month_hold:not(:first-child) {
    border-top: 1px solid #cfcfcf;
    margin-top: 20px;
    padding-top: 7px;
}
.ppromotor-sec .quest_hold {
    margin-left: 50px;
}
.ppromotor-sec .payout-summary {
    border-top: 1px solid #cfcfcf;
    margin-top: 20px;
    padding-top: 20px;
    font-weight: 600;
    font-size: 18px;
}
.ppromotor-sec .quest_hold .item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 10px;
}
.ppromotor-sec .quest_hold .item:last-child {
    margin-bottom: 10px;
}
.ppromotor-sec .quest_hold .item .text {
    padding-top: 2px;
    width: 400px;
}
.ppromotor-sec .month_hold .month_name {
    font-size: 18px;
    padding-top: 5px;
    font-weight: bold;
    margin-left: 25px;
}

.ppromotor-sec .month_hold .icon {
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 25px;
    display: block;
}
.ppromotor-sec .icon_new {
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 25px;
    display: block;
}
.ppromotor-sec .correct-icon {
    background-image: url("../img/icons/img01.png");
}
.ppromotor-sec .wrong-icon {
    background-image: url("../img/icons/img03.png");
}
.ppromotor-sec .unknown-icon {
    background-image: url("../img/icons/img02.png");
}

.text-box,
.acf-wyswig p {
    font-size: 18px;
    font-weight: 300;
    font-family: "BNPPSans";
    color: #231f20;
    line-height: 1.4;
    margin-bottom: 18px;
}

.text-box strong {
    font-weight: 700;
}

.top-text-like-box {
    display: inline-block;
}

.top-text-section .top-text-like-container {
    text-align: center;
}

.top-text-like-box .circle-like-box {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    padding: 15px;
    margin: 0px auto 13px auto;
}

.top-text-like-box .like-btn-circle {
    float: none;
}

.top-text-like-box .like-btn-number {
    float: none;
    text-align: center;
    padding: 12px 0px 8px;
    cursor: pointer;
}

.top-text-like-box .like-btn-number:hover {
    text-decoration: underline;
}

.image-container {
    margin-bottom: 40px;
}

.image-container img {
    max-width: 100%;
    margin: 0px auto;
    display: block;
}

.text-box-list strong {
    margin-bottom: 10px;
}

.text-box-list ul,
.acf-wyswig ul {
    padding: 0px;
}

.text-box-list li,
.acf-wyswig li {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.text-box-list li:before,
.acf-wyswig li:before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    top: 7px;
    left: 5px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #24935f;
}

.image-gallery-container {
    margin-bottom: 20px;
}

.image-gallery-box {
    height: 220px;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.image-gallery-box img {
    height: 100%;
}

.bottom-btns-section {
    margin-top: 15px;
    padding: 35px 0;
    border-bottom: 1px solid #ebebeb;
}

.bottom-navigate-btn {
    width: calc(100% / 3);
    float: left;
    text-align: center;
    min-height: 1px;
}

.bottom-navigate-btn:first-of-type {
    text-align: left;
}

.bottom-navigate-btn:last-of-type {
    text-align: right;
}

.bottom-navigate-btn > div,
.bottom-navigate-btn .center-nav,
.bottom-navigate-btn .right-nav,
.bottom-navigate-btn .left-nav {
    background: transparent;
    border: transparent;
    font-family: "BNPPSans";
    font-size: 14px;
    font-weight: 400;
    color: #231f20;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.bottom-navigate-btn button:hover {
    color: #24935f;
}

.left-nav {
    padding: 8px 0 6px 30px;
}

.right-nav {
    padding: 8px 30px 6px 0px;
}
.center-nav {
    padding: 8px 0 6px 30px;
}

.left-nav:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 2px;
    background: url(../img/l-light-arrow.png) no-repeat;
    width: 20px;
    height: 20px;
}

.center-nav:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 2px;
    background: url(../img/square.png) no-repeat;
    width: 20px;
    height: 20px;
}

.right-nav:before {
    content: "";
    position: absolute;
    top: 8px;
    right: 2px;
    background: url(../img/r-light-arrow.png) no-repeat;
    width: 20px;
    height: 20px;
}

.list-coments-container {
    border-bottom: 2px solid #dfe2e1;
    /* padding-bottom: 60px; */
}

.comments-container-header {
    position: relative;
    padding: 70px 0 10px;
}

.comments-container-header .z-title {
    margin: 0 0 10px;
}

.comment-add-box {
    position: absolute;
    top: calc(50% - 15px);
    right: 0;
}

.boxes-5 .comment-box {
    padding: 30px 20px 30px 30px;
    margin-bottom: 10px !important;
    margin-bottom: 10px !important;
}

@media (max-width: 992px) {
    .boxes-5 .comment-box {
        padding: 5px 11px;
    }
}

.comment-add-btn {
    background: #fff;
    border: transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 12px 12px 10px 42px;
    font-family: "BNPPSans";
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    position: relative;
}

.comment-add-btn:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 12px;
    background: url(../img/add-btn.png) no-repeat;
    width: 20px;
    height: 20px;
}

.profile-avatar {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    overflow: hidden;
    float: left;
    margin-right: 10px;
    text-align: center;
}

.profile-info {
    float: left;
    padding: 15px 20px;
}

.profile-likes {
    float: right;
    padding-top: 10px;
}

.profile-name {
    font-family: "BNPPSans";
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.comment-date {
    font-family: "BNPPSans";
    font-size: 14px;
    font-weight: 300;
    color: #000;
}

.comment-box-content {
    padding: 15px 0;
    font-family: "BNPPSans";
    /* font-size: 14px;
  font-weight: 300;
  color: #4c4c4c; */
}

.comment-box-content button.green-dark-btn {
    /* padding: 5px 20px 3px 20px;
  width: auto;
  margin: 5px 0px 0px 0px;
  line-height: initial; */
}

.comment-like-btn {
    background: transparent;
    border: transparent;
    padding-left: 25px;
    font-family: "BNPPSans";
    font-size: 14px;
    font-weight: 400;
    color: #000;
    position: relative;
    cursor: initial;
}

.comment-like-btn:before {
    background: url(../img/like.svg) no-repeat;
    width: 16px;
    height: 16px;
    content: "";
    position: absolute;
    content: "";
    top: 1px;
    left: 0px;
    display: block;
}

.comment-like-btn:before {
    background: url(../img/like_pink.svg) no-repeat;
}

.list-news-container2 .z-title {
    margin: 30px 0 20px;
}

.comments-container-bottom-btn {
    padding-top: 20px;
    text-align: center;
}

.comments-container-bottom-btn .green-dark-btn {
    padding: 11px 20px 8px;
    width: inherit;
}

.follow-text {
    font-size: 14px;
    position: relative;
}

.follow-text:before {
    position: absolute;
    content: "";
    width: 44px;
    height: 1px;
    top: 0;
    left: calc(50% - 22px);
    background: #ebebeb;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container {
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .top-text-section {
        padding-top: 0;
    }

    .top-text-like-container {
        text-align: center;
        margin-top: -35px;
    }

    .top-text-like-box {
        display: inline-block;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .banner-top {
        height: 300px;
    }

    .col-50 {
        width: 50%;
        float: left;
    }
}

@media (max-width: 536px) {
    .col-50 {
        width: 100%;
    }

    .bottom-navigate-btn {
        width: 100%;
        text-align: center !important;
        margin: 5px 0;
    }

    .comments-container-header {
        padding: 50px 0 60px;
    }

    .comment-add-box {
        top: calc(50% + 10px);
        right: calc(50% - 84px);
    }
}

.a-box-1 .txt-1 span.count {
    font-size: 50px !important;
    font-weight: 600;
    font-family: "BNPPSansCond";
    color: #000 !important;
}

.box-2.box-2-hover.box-2-hover-active {
    opacity: 1;
}

.chart-css-1 {
    transition: 5s;
}

.box-2 .txt-1 {
    padding-top: 40px;
}

.z-btn-2 {
    padding: 16px 30px 14px;
    font-size: 16px;
    height: auto;
    line-height: 1;
}

.z-btn-2.z-btn-2-1:hover {
    opacity: 0.7;
}

.box-3 {
    position: relative;
}

.percentage-ring {
    margin: 0 auto;
    margin-bottom: 10px;
    width: 56px;
    height: 56px;
}

.box-3 .number {
    font-family: "BNPPSansCond";
    border: none;
    line-height: 1;
    position: absolute;
    width: 56px;
    height: 56px;
    top: 0;
    left: calc(50% - 28px);
    text-align: center;
    padding: 18px 0 14px;
}

/* zmiejsznanie czcionek */
.box-3 .number.text-social-small-5 {
    font-size: 24px;
    padding: 19px 0 14px;
}
.box-3 .number.text-social-small-6 {
    font-size: 20px;
    padding: 20px 0 14px;
}
.box-3 .number.text-social-small-7 {
    font-size: 17px;
    padding: 21px 0 14px;
}

.worker-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.boxes-5 .box-5 .txt-2 {
    float: left;
    width: 230px;
}

.boxes-5 .txt-3 {
    overflow: initial;
    position: absolute;
    top: calc(50% - 20px);
    right: 5px;
}
.text-box-quote {
    padding: 50px;
    background: #f4f7f6;
    position: relative;
    margin: 50px 0;
    line-height: 1.6;
    font-style: italic;
}

.text-box-quote:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 30px;
    background: url(../img/blockquote.png) no-repeat;
    width: 40px;
    height: 32px;
}

.text-box-quote:after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 30px;
    background: url(../img/blockquote.png) no-repeat;
    width: 40px;
    height: 32px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.text-box-quote-author {
    display: block;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    font-family: "BNPPSans";
    color: #231f20;
}

.ug-thumb-wrapper {
    background-color: #fff !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    min-width: 300px;
    min-height: 200px;
}

.ug-thumb-overlay {
    opacity: 0 !important;
}

@media (max-width: 700px) {
    .ug-thumb-wrapper {
        min-width: 200px;
        min-height: 140px;
    }
}

@media (max-width: 450px) {
    .ug-thumb-wrapper {
        min-width: 280px;
        height: 200px !important;
    }
}

.popup-rodo .modal-dialog {
    width: auto;
}

footer {
    height: auto;
    padding-bottom: 30px;
}

.banner-box .b-box .description {
    height: calc(50vh - 92px);
}

.box-1 {
    padding: 20px 30px;
    height: calc(50vh - 90px);
    display: table;
    width: 100%;
}

.box-1 .description {
    display: table-cell;
    vertical-align: middle;
}

.legend {
    margin-top: 45px;
    margin-right: 70px;
}

.banner-box .b-box {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

#cert-form {
    position: absolute;
    top: 50%;
    height: auto;
    margin: 0;
    right: 140px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 1670px) {
    .legend {
        margin-top: 25px;
        margin-right: 70px;
    }
}

@media (max-width: 1450px) {
    .box-1-1 .box-1-2 {
        bottom: 0;
        left: -55px;
    }
    .legend {
        margin-top: 0px;
        margin-right: 70px;
    }

    #cert-form {
        right: 0;
    }
}

@media (max-width: 1320px) {
    .legend {
        margin-top: 0;
        margin-right: 20px;
    }
    .box-1-1 .name {
        margin-bottom: 0px;
    }
}

#main-chart-mobile {
    display: none;
}

.a-box-1 .txt-1 {
    top: 53px;
}

@media (max-width: 1320px) {
    .box-1-1 .box-1-2 {
        width: 200px;
        bottom: calc(50% - 102px);
        left: -30px;
        height: 204px;
        background-size: 100%;
    }

    #main-chart-desktop {
        display: none;
    }

    #main-chart-mobile {
        display: block;
    }

    .a-box-1 .txt-1 {
        font-size: 18px !important;
        font-weight: 600;
        font-family: "BNPPSansCond";
        color: #000 !important;
        position: absolute;
        top: 23px;
        left: auto;
        width: 130px;
        line-height: 1;
        text-align: center;
        right: 3px;
    }

    .a-box-1 .txt-1 span.count {
        font-size: 32px !important;
        font-weight: 600;
        font-family: "BNPPSansCond";
        color: #000 !important;
    }

    .a-box-1 .txt-1 span {
        font-size: 12px;
        font-family: "BNPPSans";
        display: block;
        font-weight: normal;
    }

    .legend {
        margin-top: 40px;
        margin-right: 0;
        margin-left: 150px;
        float: left;
    }

    .legend span {
        font-size: 34px;
    }
}

@media (max-width: 1199px) {
    .a-box-1 {
        width: 188px;
        float: right;
        margin-top: 45px;
        height: 188px;
        border-radius: 50%;
    }

    .a-box-1 .txt-1 {
        width: 172px;
    }

    .legend {
        margin-top: 15px;
        margin-right: 0;
        margin-left: 120px;
        float: left;
    }
    .box-1-1 .box-1-2 {
        bottom: calc(50% - 130px);
    }
}

@media (max-width: 991px) {
    .box-1-1 .box-1-2 {
        bottom: calc(50% - 97px);
        height: 140px;
    }
    .legend .row-box {
        display: block;
        width: 80px;
    }
    .a-box-1 .txt-1 {
        font-size: 21px !important;
        font-weight: 600;
        font-family: "BNPPSansCond";
        color: #000 !important;
        position: absolute;
        top: 2px;
    }

    .legend {
        margin-top: 15px;
        margin-right: 0;
        margin-left: 105px;
        float: left;
    }
    .banner-box .b-box .description {
        height: calc(50vh - 73px);
    }
}

.boxes-5 .box-5:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.list-like-profiles {
    display: none;
    position: absolute;
    bottom: 100%;
    width: 230px;
    background: #fff;
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1), 0 -3px 5px rgba(0, 0, 0, 0.1);
    left: -97px;
    padding: 15px 0 0 0;
    margin-bottom: 12px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    text-align: left;
    z-index: 9999;
}

.list-like-profiles:after {
    content: "";
    position: absolute;
    left: calc(50% - 8px);
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #ffffff transparent transparent transparent;
}

.list-like-profiles > a {
    display: block;
    margin: 0 15px 10px;
    color: #000;
    text-decoration: none;
}

.list-like-profiles > a .txt {
    padding-left: 7px;
}

.list-like-profiles > a:hover {
    color: #24935f;
}

.circle-like-box .list-like-profiles {
    left: -83px;
}

.circle-like-box,
.profile-likes,
.top-text-like-box {
    position: relative;
}

.circle-like-box:hover .list-like-profiles,
.list-news-cell-bottom-like-btn:hover .list-like-profiles,
.profile-likes:hover .list-like-profiles {
    display: block;
}

.list-like-profiles > .list-like-profiles-btn {
    padding: 10px 5px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    margin: 0;
    color: #24935f;
}

.profile-likes .list-like-profiles {
    margin-bottom: 2px;
}

@media (max-width: 767px) {
    .list-like-profiles {
        left: -86px;
    }
    .list-like-profiles:after {
        left: calc(50% + 6px);
    }

    .circle-like-box .list-like-profiles {
        left: -56px;
    }

    .circle-like-box .list-like-profiles:after {
        left: calc(50% - 8px);
    }

    .list-like-profiles {
        left: -96px;
    }

    .list-like-profiles::after {
        left: calc(50% + 16px);
    }
}

.login-box-bottom-btn:hover {
    color: #24935f;
}

.dropdown {
    position: relative;
    /* display: inline-block; */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #04142b;
    width: 214px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 0;
    z-index: 1;
    /* background-image: url('../img/menu-ramka-2.png'); */
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 25px;
    margin-left: -20px;
}

.dropdown-content > ul {
    position: relative;
    /* background-image: url('../img/menu-ramka-3.png'); */
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-left: 26px;
    padding-right: 26px;
    padding-top: 17px;
    padding-bottom: 17px;
}

.dropdown-content > ul:before {
    content: "";
    position: absolute;
    width: 17px;
    height: calc(100% - 23px);
    /* background-image: url(../img/menu-ramka-1.png); */
    background-position: left center;
    background-repeat: repeat-y;
    top: 11px;
    left: 0;
}

.dropdown-content > ul:after {
    content: "";
    position: absolute;
    width: 17px;
    height: calc(100% - 23px);
    /* background-image: url(../img/menu-ramka-1.png); */
    background-position: right center;
    background-repeat: repeat-y;
    z-index: 35;
    top: 11px;
    right: 0;
}

.navbar .menu .dropdown-content li.spliter {
    display: none;
}

.navbar .menu .dropdown-content li.item {
    font-size: 12px;
    margin: 0 auto;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 18px;
    padding: 10px 0;
}

.navbar .menu .dropdown-content li.item a:hover {
    color: #d26e0b;
    text-decoration: none;
}

.sub-menu {
    display: block;
    padding-left: 0;
}

.sub-menu.no-active {
    display: none;
}

.sub-menu a {
    height: auto;
    padding: 10px 0;
    display: block;
    line-height: 18px;
}

a.menu-back {
    padding-left: 20px;
    /* background-image: url('../img/arrow_left.png'); */

    background-repeat: no-repeat;
    background-position: left center;
    border-bottom: 1px solid #1d2c41;
    margin-bottom: 15px;
}

.navbar .menu li a.menu-back {
    color: #696d75;
}

.item.dropdown .dropdown-content {
    display: none;
    position: absolute;
}

.main-menu ul li {
    margin-right: 0;
}

.main-menu ul li.item {
    margin-right: 30px;
}

.main-menu ul li a {
    text-transform: uppercase;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #04142b;
    width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 1;
    background: #fff;
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 0;
    margin-left: -15px;
}

.sub-menu.no-active {
    display: none;
}

.main-menu ul li a {
    height: auto;
    line-height: 1;
    padding: 9px 3px 6px;
}

.main-menu ul li.disabled a {
    opacity: 0.5;
}

footer .f-nav ul li a {
    text-transform: uppercase;
}

footer .dropdown-content {
    display: none;
    position: absolute;
    margin-top: 0;
    margin-left: -15px;
    bottom: calc(100% + 15px);
}

footer .dropdown-content a {
    color: #000 !important;
    padding: 6px 3px 6px;
    display: block;
}

footer .dropdown-content li,
header .dropdown-content li {
    margin: 0px !important;
    float: none !important;
    display: block !important;
}

footer ul.menu li {
    margin-left: 0px;
}

footer ul.menu li.item {
    margin-left: 25px;
}

.hamburger {
    display: none;
}

@media (max-width: 1200px) {
    .main-menu ul li.item {
        margin-right: 9px;
    }
    footer ul.menu li.item {
        margin-left: 15px;
    }
    .box-1 {
        background-size: cover !important;
        background-position: center top !important;
    }

    .profile-cnt .profile-image-container {
        padding-top: 500px;
    }
}

@media (max-width: 991px) {
    .hamburger {
        display: block;
        padding: 15px 20px 15px 10px;
    }

    .float-end .main-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    footer ul.menu li.item {
        margin-left: 0px;
    }

    footer .dropdown-content {
        margin-top: 0;
        margin-left: 0;
        left: calc(50% - 100px);
    }
}

@media (max-width: 340px) {
    header .logo {
        margin-left: 45px;
    }

    .hamburger {
        padding: 15px 0px;
    }
}

.z-menu-rsp .z-menu-1 a {
    padding: 5px 0 3px;
}

.z-menu-rsp .z-menu-1 > ul > ul {
    display: block;
}

.dropdown-content > ul {
    padding: 0 !important;
}

.z-menu-rsp a:hover {
    color: #24935f !important;
}

.box-1.box-1-a .z-btn-2-1 {
    color: #71b8ba;
}

.h-box {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.h-box:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.change-profile-form .green-dark-btn {
    padding: 11px 20px 8px;
}

.u-box-3-footer-bottom button {
    width: auto;
    padding: 11px 20px 8px;
}

.search-box textarea {
    font-size: 14px;
    resize: vertical;
}

.profile-banner .z-btn-4 {
    height: auto;
    display: block;
    line-height: 1;
    padding: 15px 15px 12px 15px;
    float: left;
    margin-left: 10px;
}

.profile-banner .z-btn-4:hover {
    color: #24935f;
}

.profile-banner .profile-edit-btn {
    position: relative;
    line-height: 1;
    text-transform: uppercase;
    padding-left: 45px;
}

.profile-edit-btn:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 19px;
    margin: -3px 13px 0 0;
    display: inline-block;
    background: url("../img/icons/edit.png") center no-repeat;
    background-size: 100% 100%;
    left: 15px;
    top: calc(50% - 7px);
}

.banner-box {
    width: 100%;
}

/* .list-news-container .row > .col-md-4:nth-child(3n + 4) {
  clear: left;
} */

.z-content-box-3 .u-box-4 .u-txt span {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    background: #b64987;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}
.profile-info-bottom {
    width: 100%;
}

.profile-info-bottom-left {
    width: 50%;
    float: left;
    padding: 80px 50px 0 60px;
}

.profile-info-bottom-right {
    width: 50%;
    float: left;
    padding: 80px 60px 0 50px;
}

.profile-info-cell-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    margin-left: 10px;
    margin-right: 10px;
    vertical-align: middle;
    background: #b64987;
    background-color: rgb(182, 73, 135);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-image: none;
    background-size: auto auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
    float: left;
}

.profile-info-cell-text {
    float: left;
    height: 78px;
    width: 180px;
    display: table;
}

.profile-info-cell-text > span {
    display: table-cell;
    vertical-align: middle;
}

.profile-info-cell-box {
    display: inline-block;
}

.profile-info-cell-right {
    text-align: right;
}

.profile-info-cell-left {
    text-align: left;
}

.profile-info-bottom-left .profile-info-cell-text {
    text-align: right;
}

.profile-info-bottom-right .profile-info-cell-text {
    text-align: left;
}

/* DG - 29/11/12 - Align single item with results. General UI Imrpovement */
.chzn-container-single .chzn-single {
    padding: 0 0 0 10px;
}

/* DG - 03/12/12 -chosenImage - position, size and indent text */
.chznImage-container li,
.chznImage-container span {
    background-position: 6px 45%;
    background-size: auto 12px;
    padding-left: 23px;
}

.chznImage-container span {
    background-position: 0px 45%;
    padding-left: 17px;
}

select.select-custom1 {
    display: none;
}

.select-styled {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 2px;
    background: transparent;
    border: 1px solid #e3e3e3;
    box-shadow: none;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    line-height: 60px;
    padding: 0 36px 0 36px;
    background-size: 20px 20px;
    background-position: 10px center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.select .select-options {
    display: none;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 4px 4px;
    background: #fff;
    padding: 7px 0 !important;
    position: absolute;
    z-index: 100;
    width: 100%;
    top: 100%;
}

.select-options li {
    list-style: none;
    padding: 7px 15px 7px 42px;
    cursor: pointer;
    background-size: 20px 20px;
    background-position: 10px center;
    background-repeat: no-repeat;
}

.select-options li:hover {
    background-color: #24935f;
    color: #fff;
}

.select-styled:after {
    background: url("../img/r-arrow-black.svg") no-repeat;
    width: 15px;
    height: 15px;
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    right: 12px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.select-styled.active:after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

a.z-btn-1 .image img {
    max-height: 32px;
}

.z-btn-1 span.image {
    display: inline-block;
    width: 36px;
    text-align: center;
}

.popup-profile-box-message {
    padding: 36px;
}

.popup-profile-box-message .search-box {
    margin-bottom: 36px;
}

#myModal2 .modal-dialog.modal-dialog-message {
    margin-top: 120px;
}

.profile-info-title {
    display: none;
}

@media (max-width: 1200px) {
    .profile-info-bottom-left {
        width: 50%;
        float: left;
        padding: 105px 20px 0 0;
    }

    .profile-info-bottom-right {
        padding: 105px 0 0 20px;
    }
}

@media (max-width: 992px) {
    .profile-info-title {
        display: block;
        margin-bottom: 25px;
        text-align: center;
    }

    .change-bg-btn {
        margin-top: 10px;
    }

    .banner-box-2 {
        height: 220px;
    }

    .z-content-box-3 {
        min-height: auto;
        /* background: #fff; */
    }

    .z-content-box-3 .u-box-3 .u-data .u-data-1 {
        background: #f2f2f2;
    }

    .profile-info-cell-left,
    .profile-info-cell-right {
        text-align: center;
    }

    .p-buttons-2 {
        clear: none;
    }

    .profile-banner .z-btn-4.z-btn-4-1,
    .profile-banner .z-btn-4 {
        padding: 15px;
        font-size: 0px;
    }

    .profile-banner .z-btn-4.profile-edit-btn {
        padding: 23px 22px;
    }

    .profile-banner .ic-3,
    .profile-banner .ic-5 {
        margin: 0;
    }

    .profile-edit-btn::before {
        left: 12px;
    }

    .profile-banner .p-buttons-1 {
        margin-top: 15px;
    }

    .profile-banner .p-buttons-2 {
        margin-top: 15px;
    }
}

@media (max-width: 640px) {
    .profile-info-bottom-left,
    .profile-info-bottom-right {
        width: 100%;
        padding: 40px 0 0 0;
    }

    .profile-info-cell-box {
        display: inline-block;
        position: relative;
        padding-top: 95px;
        width: 100%;
    }

    .profile-info-cell-icon {
        position: absolute;
        top: 0;
        left: calc(50% - 39px);
        float: none;
        margin: 0;
    }

    .profile-info-cell-text {
        float: none;
        height: auto;
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 25px;
    }

    .profile-info-cell-text > span {
        display: inline-block;
    }

    .profile-info-bottom-left .profile-info-cell-text {
        text-align: center;
    }
    .profile-info-bottom-right .profile-info-cell-text {
        text-align: center;
    }

    .login-box-form-container {
        padding: 20px 0px;
    }

    .profile-edit-bottom .zc-box {
        display: table;
    }

    .profile-edit-bottom .z-contact {
        display: table;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 360px) {
    .profile-edit-bottom .u-box-3 .u-data .u-data-1 {
        margin-bottom: 15px;
    }
}

.profile-content-box figure.profile-image img {
    /* margin: auto; */
    /* max-width: calc(100% - 24px);
  max-height: calc(100% - 24px); */
    /* position: absolute;
  top: 12px;
  bottom: 12px;
  left: 12px;
  right: 12px; */

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z-content-box-3 .u-box-1 figure img {
    border-radius: 0;
}

.profile-image-container {
    position: relative;
    padding-top: 15px;
}

.profile-image-container span {
    position: absolute;
    bottom: -30px;
    left: 50%;
    color: #fff;
    font-size: 14px;
    width: 69px;
    line-height: 93px;
    margin-left: -34.5px;
    height: 69px;
    border-radius: 50%;
    background: #24935f url("../img/icons/img04.svg") center 19px no-repeat;
    cursor: pointer;
}

.profile-image-container span.active {
    background: #24935f url("../img/icons/img04_active.svg") center 19px
        no-repeat;
}

.profile-image-container span:hover {
    background: #24935f url("../img/icons/img04_hover.svg") center 19px
        no-repeat;
}

.profile-image-container span::after {
    width: 57px;
    height: 57px;
    border: 2px solid #fff;
    border-radius: 50%;
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 10;
}

.profile-content-box figure.profile-image {
    border: none;
}

.profile-content-box figure.profile-image:after {
    content: "";
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    /* border: 13px solid #fff; */
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
}

.profile-avatar {
    position: relative;
}

.profile-avatar img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.profile-info-top-container {
    position: relative;
    /* padding-bottom: 266px; */
}

.profile-info-bottom {
    position: absolute;
    bottom: 0;
    min-height: 250px;
}

@media (max-width: 992px) {
    .profile-info-top-container {
        padding-bottom: 0px;
    }

    .profile-info-bottom {
        position: relative;
        bottom: auto;
        min-height: auto;
    }
}

/* popup-blocking-header */
.popup-blocking-header {
    padding: 40px 180px 32px 48px;
    position: relative;
    border-bottom: 1px solid #f2f2f2;
}
@media (max-width: 675px) {
    .popup-blocking-header {
        padding: 15px 125px 15px 15px;
    }

    .popup-blocking-header .title-1 h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .popup-blocking-header .popup-rodo-text {
        font-size: 12px;
    }
}
/* end popup-blocking-header */

/* invite-friends */
.invite-friends {
    padding: 50px;
    position: relative;
}
#inviteFriends .title {
    text-align: center;
}
#inviteFriends .f-box {
    margin-bottom: 10px;
}
#inviteFriends .green-dark-btn {
    padding: 11px 16px 8px;
}
.popup-text {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 300;
    font-family: "BNPPSans";
    color: #231f20;
    position: relative;
    margin: 0;
}
.invite-friends-result {
    display: none;
}
/*  end invite-friends */

.banner-box-1-button-box {
    display: table-cell;
    vertical-align: middle;
    padding-left: 30px;
}

.banner-box-1-button-box .green-dark-btn {
    padding: 10px 16px 7px;
}

@media (max-width: 991px) {
    .banner-box-1-button-box .green-dark-btn {
        padding: 6px 16px 3px;
    }
}

@media (max-width: 400px) {
    .banner-box-1-button-box {
        display: block;
        padding: 0px;
    }
}

.exp-cell-name {
    font-size: 24px;
    display: block;
    color: #3baf6e;
}

.exp-cell-position {
    display: block;
    color: #000;
}

.exp-cell-name:hover {
    text-decoration: none;
    color: #3baf6e;
    opacity: 0.8;
}

.exp-cell-position:hover {
    text-decoration: none;
    color: #000;
    opacity: 0.8;
}

.profile-avatar:hover {
    opacity: 0.8;
}

.expert-cell {
    display: none;
}

.expert-cell2 {
    display: block;
}

.boxes-5 .box-5 .txt-4 span {
    color: #989898;
}

.boxes-5 .box-bottom .txt-5 .c-phone,
.boxes-5 .box-bottom .txt-5 .c-mail,
.boxes-5 .box-bottom .txt-5 .c-skype {
    position: relative;
    padding-left: 20px;
}

.boxes-5 .box-bottom .txt-5 .c-phone:before,
.boxes-5 .box-bottom .txt-5 .c-mail:before,
.boxes-5 .box-bottom .txt-5 .c-skype:before {
    position: absolute;
    content: "";
    left: 0;
}

.boxes-5 .box-bottom .txt-5 .c-phone:before {
    background: url("../img/icons/img02.svg") no-repeat;
    width: 12px;
    height: 13px;
    top: calc(50% - 5px);
}

.boxes-5 .box-bottom .txt-5 .c-mail:before {
    background: url("../img/icons/img03.svg") no-repeat;
    width: 14px;
    height: 9px;
    top: calc(50% - 4px);
}

.boxes-5 .box-bottom .txt-5 .c-skype:before {
    background: url("../img/icons/img08.svg") no-repeat;
    width: 14px;
    height: 14px;
    top: calc(50% - 6px);
}

.profile-avatar-empty {
    background: url("../img/avatar2.png") no-repeat;
    background-size: 70px 70px;
    position: relative;
}

.sort-item {
    color: #231f20;
    padding: 6px 10px 3px 10px;
    cursor: pointer;
}

.sort-item:hover {
    background: #24935f;
    color: #fff;
}

#sort-btn-text,
#sort-btn-text2 {
    margin: 0;
    font-size: 13px;
}
.surveys-body .analysis-box .title-box,
.surveys-body .realization-box .title-box {
    margin-bottom: 20px;
}
.pagination-btn {
    height: 38px;
    width: 38px;
    display: block;
    color: #000;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 42px !important;
    margin: 0 4px !important;
}

.pagination-btn.active,
.pagination-btn:hover {
    background: #24935f;
    color: #fff;
}

.pagination-box .prev-btn,
.pagination-box .next-btn {
    position: relative;
    margin: 0 15px;
    cursor: pointer;
}

.prev-btn:before,
.next-btn:before {
    position: absolute;
    content: "\F285"; /* Bootstrap Icons chevron-right */
    font-family: "bootstrap-icons";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    top: calc(50% - 6px);
    left: calc(50% - 7px);
}

.prev-btn:before {
    content: "\e257";
}

.experts-list {
    min-height: calc(100vh - 541px);
    padding-bottom: 60px;
}
.p-mobile.pagination-dotted {
    background: none;
    box-shadow: none;
    font-size: 20px;
    font-weight: 400;
}

.p-mobile.pagination-dotted:hover {
    color: #000;
    cursor: initial;
}

.filtration-box-1 .r-txt-1 {
    display: inline-block;
}

.main-content {
    min-height: calc(100vh - 334px);
    /* background-color: #fff; */
}

@media (max-width: 520px) {
    .pagination-box .prev-btn,
    .pagination-box .next-btn {
        /*
    position: absolute;
    bottom: 10px; */
        font-size: 24px;
        width: 40px;
        height: 40px;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
        background: #fff;
        border-radius: 100%;
    }

    .prev-btn::before,
    .next-btn::before {
        top: calc(50% - 12px);
        left: calc(50% - 12px);
    }

    .pagination-box .pagination-btn {
        display: none;
    }

    .pagination-btn.p-mobile {
        display: inline-block;
    }
}

.img-link {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

#cert-input {
    display: none;
}

.box-1-1 .name {
    position: absolute;
    top: 20px;
    left: 30px;
}

.box-1-1 .box-1-2 {
    float: left;
    width: 222px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url("../img/bg.jpg");
    height: 239px;
    border-radius: 50%;
    background-size: 100%;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    margin-left: 75px;
    margin-top: 6vh;
}

.results-box {
    padding: 0;
}

.legend {
    margin-top: 12vh;
    margin-left: 46px;
    float: left;
    margin-right: 0;
}

.a-box-1 .txt-1 {
    top: 41px;
    padding-left: 35px;
}

.a-box-1 .txt-1 span.count {
    font-size: 44px !important;
}

@media (max-width: 1450px) {
    .box-1-1 .box-1-2 {
        margin-top: 25px;
        margin-left: 50px;
    }

    .legend {
        margin-top: 80px;
        margin-left: 27px;
        float: left;
        margin-right: 0;
    }
}

@media (max-width: 1320px) {
    .box-1-1 .box-1-2 {
        width: 178px;
        height: 191px;
        margin-top: 35px;
        margin-left: 55px;
    }

    .a-box-1 .txt-1 span.count {
        font-size: 40px !important;
    }

    .a-box-1 .txt-1 {
        top: 18px;
        padding-left: 75px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1140px) {
    .legend {
        margin-left: 5px;
        margin-top: 64px;
        width: auto;
    }

    .box-1-1 .name {
        position: absolute;
        top: 8px;
        left: 16px;
        font-size: 38px;
    }

    .box-1-1 .box-1-2 {
        width: 178px;
        height: 191px;
        margin-top: 20px;
        margin-left: -32px;
    }

    .a-box-1 {
        height: 140px;
    }
}

@media (max-width: 790px) {
    .col-790-100 {
        width: 100%;
    }

    .banner-box .b-box .description {
        height: 300px;
    }

    .box-1 {
        padding: 20px 30px;
        height: 250px;
        display: table;
        width: 100%;
    }

    .box-1-1 .box-1-2 {
        bottom: calc(50% - 97px);
        height: 180px;
        position: relative;
        float: left;
        width: 180px;
        left: auto;
        bottom: auto;
    }

    .box-1-1 .box-1-2 {
        margin-top: 37px;
        margin-bottom: 10px;
    }

    .legend {
        margin-top: 80px;
    }

    .box-1-1 .name {
        position: absolute;
        top: 18px;
        left: 22px;
        font-size: 44px;
    }
}

/* ================== PYTANIA =====================*/

.quest-header {
    width: 100%;
    background: #fff;
}

.quest-header-container {
    padding: 20px 0;
}

.back-to-panel-btn {
    float: left;
    font-size: 14px;
    padding: 0px 70px 0px 16px;
    color: #b2b2b2;
    position: relative;
}

.back-to-panel-btn:before {
    content: "\F284";
    position: absolute;
    font-family: "bootstrap-icons";
    font-style: normal;
    font-weight: 400;
    top: 12px;
    left: 0;
}

.back-to-panel-btn:hover:before {
    color: #24935f;
}

.back-to-panel-btn a {
    color: #b2b2b2;
    padding: 14px 0;
    display: block;
}

.back-to-panel-btn a:hover {
    color: #24935f;
}

.questions-role-name,
.additional-tasks-name {
    padding-top: 20px;
    padding-left: 17px;
    font-weight: 700;
}

.gquestions-list {
}

.gquestions-list-headers {
    font-size: 12px;
    color: #999999;
    padding: 0px 20px;
}

.gquestions-list-elements {
    padding: 10px 0px 60px;
}

.gquestions-list-element {
    background-color: white;
    padding: 20px 20px;
    color: #999999;
}

.gquestion-shortname {
    color: #209460;
}

.gquestions-prev-month-realization {
    color: red;
    /* padding: 35px 0px 0px; */
    z-index: 9;
}

.gquestion-done-passed {
    width: 19px;
    height: 19px;
    background: url(../img/icons/img01.png) no-repeat;
}

.gquestion-done-failed {
    width: 19px;
    height: 19px;
    background: url(../img/icons/img03.png) no-repeat;
}

.gquestion-undone {
    width: 19px;
    height: 19px;
    background: url(../img/icons/img02.png) no-repeat;
}

.gquestion-inactive {
    opacity: 0.8;
}

.gquestion-active {
    cursor: pointer;
}

.question-logo {
    float: left;
    height: 48px;
    padding: 7px 15px 7px;
    width: calc(100% - 394px);
    text-align: center;
}

.question-logo img {
    height: 100%;
}

.question-profile-box {
    float: right;
}

.quest-header .question-profile-box .z-btn-1 {
    margin-top: 0;
}

.question-main {
    background: #f2f5f4;
}

.question-main-container {
    max-width: 900px;
    margin: auto;
    padding: 80px 0;
    min-height: calc(100vh - 92px);
}

.question-cert .question-main-container {
    max-width: 100%;
    min-height: 100%;
    margin-bottom: 50px;
}

.exercise-nr {
    text-align: center;
    font-family: "BNPPSansCond";
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.exercise-nr span,
.question-nr-value span {
    margin: 0 3px;
}

.question-content-container {
    background: #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    padding: 25px;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.15), 0 -5px 15px rgba(0, 0, 0, 0.08);
}

.question-content-top {
    font-size: 14px;
}

.question-points {
    float: left;
    min-width: 166px;
    padding: 7px 0;
    margin-bottom: 42px;
}

.question-date {
    float: left;
    margin-right: 32px;
    padding: 7px 0;
}

.question-lifes .question-top-text {
    float: left;
    padding: 8px;
}

.question-lifes-container {
    float: left;
}

.question-lifes {
    float: right;
}

.question-top-text {
    color: #b2b2b2;
    font-weight: 400;
}

.question-points-value {
    color: #bc1d69;
}

.question-life-box {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 0 3px;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    background: #cbcbcb;
    position: relative;
}

.question-life-box:after {
    content: "";
    background: url(../img/empty-heart.svg) no-repeat;
    width: 16px;
    height: 16px;
    background-size: 100%;
    position: absolute;
    top: 8px;
    left: 7px;
    color: #fff;
}

.question-life-box.active {
    background: #ed797f;
}

.question-conten-center {
    background: #f2f5f4;
    padding: 60px;
    position: relative;
}

.question-cert .question-conten-center {
    padding: 40px;
}

.question-nr {
    width: 82px;
    height: 82px;
    position: absolute;
    top: -41px;
    left: calc(50% - 41px);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border: 4px solid #fff;
    background: #24935f;
    padding: 13px 10px;
    color: #fff;
    text-align: center;
    font-family: "BNPPSansCond";
    font-weight: 600;
}

.question-nr-text {
    font-size: 16px;
    text-transform: uppercase;
}

.question-nr-value {
    font-size: 24px;
}

.answer-container {
    width: 100%;
    margin: auto;
}

.q_new_survey .q-inner-box-survey {
    display: table-cell;
    width: 50%;
    vertical-align: top;
}
@media (min-width: 901px) {
    .q_new_survey .combobox-area {
        display: inline-block;
        width: calc(40% - 24px) !important;
        margin: 0 10px;
    }
    .q_new_survey .newworkers-calendar-box {
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        margin-left: 10px;
        padding: 8px 12px 6px 8px;
        width: calc(40% - 24px) !important;
        cursor: pointer;
        display: inline-block;
    }
}
@media (min-width: 701px) and (max-width: 900px) {
    .q_new_survey .combobox-area {
        width: calc(70% - 24px) !important;
    }
    .q_new_survey .newworkers-calendar-box {
        width: calc(70% - 24px) !important;
        margin-left: 10px !important;
    }
}
@media (max-width: 700px) {
    .q_new_survey .q-inner-box-survey {
        display: contents !important;
        width: 50%;
        /* vertical-align: none !important; */
    }
    .combobox-area {
        width: calc(50% - 24px) !important;
        margin-bottom: 10px;
    }
    .q_new_survey .newworkers-calendar-box {
        width: calc(50% - 24px) !important;
        margin-left: 15px;
    }
}
@media (max-width: 567px) {
    .q_new_survey .q-inner-box-survey {
        text-align: center !important;
    }
    .q_new_survey .newworkers-calendar-box {
        margin: auto !important;
    }
}
.q_new_survey .question-text {
    margin-bottom: 15px;
}
.q_new_survey .question-text span:first-child {
    display: inline-block;
    /* margin-top: 20px; */
    width: 250px;
    vertical-align: top;
    margin-top: 10px;
}
.q_new_survey .q-inner-box-survey {
    font-family: BNPPSansCond;
    font-size: 18px;
}
.q_new_survey .select-test_styles {
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    padding: 10px;
    max-height: 39px;
    height: 39px;
    border-radius: 2px;
    font-family: "BNPPSansCond";
}
.q_new_survey .newworkers-calendar .calendar-icon {
    /* position: relative !important;
  display: flex; */
    float: right;
    margin-left: 10px;
    margin-top: 1px;
}
.q_new_survey .error_info {
    text-align: center;
    margin-top: 25px;
    color: red;
    font-size: 20px;
}
.q_new_survey .comboboxs .select-transparent {
    box-shadow: none !important;
}
#back-to-main-page {
    color: #fff !important;
    text-decoration: none !important;
}

.modal-center-text {
    text-align: center;
    display: block;
}

.main-content.main-content-experts {
    min-height: calc(100vh - 451px);
}

#modalConfirmModal .f-box {
    text-align: left;
    margin-bottom: 10px;
}
#modalConfirmModal button[disabled],
#modalConfirmModal input[disabled] {
    background-color: #e3e3e3;
}
#modalConfirmModal button[type="submit"]:disabled,
#sendUserError button[type="submit"]:disabled {
    background: #dddddd;
}

#myModal .boxes-5.list-news-container > .col-md-4.col-sm-6:nth-child(3n + 4) {
    clear: left;
}

@media (max-width: 991px) {
    #myModal
        .boxes-5.list-news-container
        > .col-md-4.col-sm-6:nth-child(3n + 4) {
        clear: initial;
    }
    #myModal
        .boxes-5.list-news-container
        > .col-md-4.col-sm-6:nth-child(2n + 3) {
        clear: left;
    }
}

.edit-profile-bottom-message {
    margin-bottom: 50px;
}

.challenge-cell .ch-cell-main-title {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.challenge-cell .green-dark-btn {
    font-size: 14px;
}

.challenge-cell2 .green-dark-btn {
    background: #c0c0c0;
}

.ch-cell-status {
    padding: 11px 20px 8px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    font-family: "BNPPSans";
    color: #f20c0c;
    float: right;
}

.challenge-goal,
.challenge-end-date {
    padding: 20px 30px;
    border-top: 1px solid #f2f2f2;
}

.challenge-end-date {
    border-bottom: 1px solid #f2f2f2;
}

.ch-cell-title {
    font-family: "BNPPSansCond";
    font-size: 18px;
    color: #b2b1b1;
    font-weight: 700;
    text-transform: uppercase;
}

.ch-cell-desc {
    float: right;
    font-size: 15px;
    max-width: calc(100% - 25px);
}

.challenge-top-info-left,
.challenge-top-info-right {
    width: 50%;
    float: left;
    /* padding: 15px; */
    margin-top: 45px;
}

.challenge-top-info-goal,
.challenge-top-info-time {
    background: #8ac34e;
    padding: 22px 20px 16px 50px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    position: relative;
}

.challenge-top-info-time {
    background: #b64987;
}

.challenge-top-info-goal:before {
    content: "";
    position: absolute;
    top: calc(50% - 11px);
    left: 15px;
    width: 23px;
    height: 23px;
    background: url("../img/viewfinder.png") no-repeat;
}

.challenge-top-info-time:before {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    left: 15px;
    width: 19px;
    height: 19px;
    /* background: url("../img/ok-mini-icon.png") no-repeat; */
}

.challenge-site-top-info .ch-cell-desc {
    color: #fff;
}

.challenge-top-info-time .ch-cell-desc,
.challenge-top-info-goal .ch-cell-desc {
    position: absolute;
    top: calc(50% - 11px);
    right: 20px;
    float: none;
}

.challenge-site-top-info .ch-cell-title {
    color: #fff;
    opacity: 0.7;
    position: absolute;
    top: calc(50% - 11px);
    left: 50px;
}

.send-files-btn-container {
    display: table;
    margin: 20px auto 90px;
    position: relative;
}

.send-files-btn {
    padding: 11px 40px 8px 60px;
    position: relative;
    cursor: pointer;
}

.send-files-btn:before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    left: 40px;
    width: 12px;
    height: 12px;
    background: url("../img/plus.svg") no-repeat;
}

.comment-box-add {
    display: none;
}
.boxes-5 .comment-box {
    position: relative;
}
.comment-box-loader {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #f2f5f4;
    opacity: 0.4;
    font-size: 34px;
    text-transform: uppercase;
}
.comment-box-loader span {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
}

.sent-graphics {
    border-top: 1px solid #ebebeb;
    padding-top: 50px;
}

.under-title-text {
    padding: 15px 0;
    font-size: 18px;
    font-weight: 300;
    font-family: "BNPPSans";
    color: #231f20;
    line-height: 1.4;
    text-align: center;
}

.under-title--warning-message {
    text-align: center;
    padding: 13px 15px 10px 15px;
    color: #ff0040;
    background: #fff0f0;
    margin-bottom: 30px;
}

.sent-graphics-header {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 36px;
    padding-bottom: 10px;
    font-size: 14px;
}

.sent-graphics-amount {
    color: #b2b2b2;
    float: left;
}

.send-graphic-cell {
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #24935f;
}

.send-graphic-cell:after {
    content: "";
    display: block;
    padding-bottom: 75%;
}

.sent-graphic-container {
    margin-bottom: 36px;
}

.send-graphic-votes {
    padding: 12px 0;
    font-size: 18px;
    font-weight: 300;
    font-family: "BNPPSans";
    color: #231f20;
    line-height: 1.4;
    text-align: center;
}

.send-graphic-cell-hover {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    z-index: 10;
}

.send-graphic-cell-hover-btn {
    background: #fff;
    padding: 11px 36px 8px 36px;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 60px);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    cursor: pointer;
}

.send-graphic-cell:hover .send-graphic-cell-hover,
.send-graphic-cell:hover .send-graphic-cell-hover-btn {
    display: block;
}

.send-graphic-cell-voted {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(32, 148, 96, 1);
    background: linear-gradient(
        to bottom,
        rgba(
            top,
            rgba(32, 148, 96, 0.1) 0%,
            rgba(32, 148, 96, 0.3) 28%,
            rgba(32, 148, 96, 0.5) 51%,
            rgba(32, 148, 96, 0.6) 75%,
            rgba(32, 148, 96, 0.8) 100%
        )
    );
    display: none;
}

.send-graphic-cell-voted.liked {
    display: block;
}

.send-graphic-cell-voted-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.challenge-modal-img {
    margin: 25px 0;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #24935f;
}

.challenge-modal-img:after {
    content: "";
    display: block;
    padding-bottom: 60%;
}

#infobox {
    z-index: 100000;
}

.modal-body {
    padding: 42px;
}

.challenge-modal-desc {
    padding: 12px 0;
    font-size: 18px;
    font-weight: 300;
    font-family: "BNPPSans";
    color: #231f20;
    line-height: 1.4;
    text-align: center;
}

.challenge-btn {
    float: left;
    margin: 15px 15px 0 0;
    width: inherit;
    cursor: pointer;
    padding: 11px 20px 8px 20px;
}

.cancel-container {
    background: #24935f;
    color: #fff;
    border: transparent;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    font-family: "BNPPSans";
    position: relative;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -webkit-border-radius: 2px;
    float: left;
    margin: 15px 15px 0 0;
    width: inherit;
    cursor: pointer;
    padding: 11px 20px 8px 20px;
}

.z-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    font-family: "BNPPSansCond";
    margin-bottom: 15px;
}

.chitem-add-title,
.modal-body h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    font-family: "BNPPSansCond";
    margin-bottom: 25px;
}

.chitem-add-title {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.input-file-bg {
    background: #f2f5f4;
    padding: 70px 30px;
    text-align: center;
}

.chitem-file-input {
    background: #fff;
    padding: 11px 36px 8px 56px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    position: relative;
}
.chitem-file-input:before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    left: 36px;
    width: 15px;
    height: 11px;
    background: url("../img/directory.png") no-repeat;
}

#MissionsItemFile,
#ChitemFile,
.chitem-image-remove {
    display: none;
}

.chitem-left {
    width: inherit;
    float: left;
    margin: 0 15px 0 0;
    padding: 11px 20px 8px 20px;
}

.chitem-left.green-dark-btn {
    cursor: pointer;
}

.chitem-image-container {
    padding: 0;
    height: 41px;
    width: 60px;
}

.sent-file-content {
    margin: 10px 0 20px;
}

.ch-input-label {
    font-size: 13px;
    color: #b2b2b2;
}

#MissionsItemAddForm input,
#MissionsItemAddForm textarea,
#ChitemAddForm input,
#ChitemAddForm textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e3e6e5;
    margin-bottom: 25px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    resize: none;
}

.send-graphic-votes.liked {
    color: #209460;
    font-weight: 700;
}

.ch-bottom-btn-container {
    text-align: center;
    padding: 15px 0 35px;
}

.ch-bottom-btn {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    font-family: "BNPPSans";
    color: #000;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border: 1px solid #e3e6e5;
    cursor: pointer;
}

#show-prev-ch-user-btn,
#show-prev-ch-graphisc-btn {
    padding: 13px 20px 10px 40px;
}

#show-next-ch-user-btn,
#show-next-ch-graphisc-btn {
    padding: 13px 40px 10px 20px;
}

#show-next-ch-user-btn,
#show-prev-ch-user-btn {
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border: none;
}

.ch-bottom-btn:after {
    content: "";
    position: absolute;
    top: 14px;
    width: 15px;
    height: 15px;
    background: url("../img/r-arrow-black.svg") no-repeat;
    background-position: center center;
    transition: 0.5s;
}

#show-prev-ch-user-btn:after,
#show-prev-ch-graphisc-btn:after {
    left: 18px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#show-next-ch-user-btn:after,
#show-next-ch-graphisc-btn:after {
    right: 18px;
}

#show-prev-ch-user-btn:hover:after,
#show-prev-ch-graphisc-btn:hover:after {
    left: 12px;
}

#show-next-ch-user-btn:hover:after,
#show-next-ch-graphisc-btn:hover:after {
    right: 12px;
}

.challange-people-filtration .pull-right > span,
.sent-graphics-header .pull-right > span {
    color: #b2b2b2;
    font-size: 14px;
}

/* progress-points */

.z-content-box-4 {
    background-color: #f5f5f5;
    padding-bottom: 60px;
    padding-top: 40px;
}

.progress-points {
    position: relative;
    margin-bottom: 50px;
}
.progress-points ul {
    list-style-type: none;
    z-index: 2;
    position: relative;
    margin: 0px;
    padding: 0px;
}
.progress-points ul li {
    display: block;
    float: left;
    width: 120px;
    text-align: center;
    margin-left: calc((100% - (5 * 120px)) / 4);
}

.progress-points ul li.mobile {
    margin-left: calc((100% - (2 * 120px)) / 1);
}

.progress-points ul > li:first-child {
    margin-left: 0px;
}

.progress-point-icon {
    display: block;
    background-color: white;
    border-radius: 50%;
    width: 66px;
    height: 66px;
    margin: 0px auto;
}

.progress-points li.active .progress-point-icon {
    background-color: #89c24d;
}

.progress-line {
    position: absolute;
    top: 24px;
    width: calc(100% - 120px);
    height: 18px;
    background-color: white;
    z-index: -1;
    left: 60px;
    z-index: 1;
}

.progress-line-status {
    width: 0%;
    background-image: linear-gradient(to right, #459526, #83b94b);
    height: 100%;
    border-radius: 18px;
}

.progress-points ul li .progress-point-icon {
    background-position: center;
    background-repeat: no-repeat;
}

.progress-points ul li:nth-child(1) .progress-point-icon {
    background-image: url(../img/svg/progress/1.svg);
}

.progress-points ul li.active:nth-child(1) .progress-point-icon {
    background-image: url(../img/svg/progress/1_active.svg);
}

.progress-points ul li:nth-child(2) .progress-point-icon {
    background-image: url(../img/svg/progress/2.svg);
}

.progress-points ul li.active:nth-child(2) .progress-point-icon {
    background-image: url(../img/svg/progress/2_active.svg);
}

.progress-points ul li:nth-child(3) .progress-point-icon {
    background-image: url(../img/svg/progress/3.svg);
}

.progress-points ul li.active:nth-child(3) .progress-point-icon {
    background-image: url(../img/svg/progress/3_active.svg);
}

.progress-points ul li:nth-child(4) .progress-point-icon {
    background-image: url(../img/svg/progress/4.svg);
}

.progress-points ul li.active:nth-child(4) .progress-point-icon {
    background-image: url(../img/svg/progress/4_active.svg);
}

.progress-points ul li:nth-child(5) .progress-point-icon {
    background-image: url(../img/svg/progress/5.svg);
}

.progress-points ul li.active:nth-child(5) .progress-point-icon {
    background-image: url(../img/svg/progress/5_active.svg);
}

.progress-point-text {
    font-family: "BNPPSansCond";
    font-size: 15px;
    text-transform: uppercase;
    padding-top: 20px;
}
.progress-point-text .progress-point-title {
    font-weight: bold;
}
.progress-point-text .progress-point-subtitle {
    color: #a6a6a6;
}
.progress-points-my {
    text-align: center;
    margin-bottom: 30px;
}
.progress-points-my .progress-points-my-text {
    color: #a6a6a6;
}
.progress-points-my .progress-points-my-count {
    color: #bc1d69;
}

.challange-people-search #search-container {
    background: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.challange-people-search .search-box input {
    border-radius: 2px;
    background: transparent;
    border: none;
    padding: 5px 35px 5px 15px;
    width: 100%;
    height: 39px;
}

.challange-people-header {
    padding-bottom: 30px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 40px;
}

.challange-people-search label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 13px;
    color: #b2b2b2;
    font-weight: 500;
}

.challange-people-header .pull-right {
    margin-top: 35px;
}

.left-cell-60 {
    float: left;
    width: 60px;
}

.left-cell-80 {
    float: left;
    width: 80px;
}

.left-cell-full {
    float: left;
    width: calc(100% - 200px);
}

.challenge-people-list-header {
    color: #b2b2b2;
    font-size: 11px;
    font-weight: 700;
    padding: 0 10px;
    text-transform: uppercase;
}

.challenge-people-list {
    padding-top: 5px;
}

.ch-people-desc .profile-avatar {
    width: 50px;
    height: 50px;
}

.ch-people-desc .profile-avatar {
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
}

.ch-people-desc .profile-avatar {
    width: 50px;
    height: 50px;
}

.ch-people-desc .exp-cell-name,
.ch-people-desc .exp-cell-name:focus,
.ch-people-desc .exp-cell-name:active {
    font-size: 13px;
    font-weight: 700;
    color: #3baf6e;
}

.ch-people-desc .exp-cell-position {
    font-size: 13px;
    font-weight: 700;
    color: #999999;
}

.ch-people-desc .txt-1 {
    padding-top: 7px;
    padding-left: 60px;
}

.challenge-people-cell {
    background: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 20px;
}

.ch-people-status {
    position: relative;
}

.ch-people-status:before {
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    left: 20px;
    width: 15px;
    height: 15px;
}

.ch-people-status-plus:before {
    background: url("../img/icon_up.svg") no-repeat;
    /* transform: rotate(-90deg); */
}

.ch-people-status-minus:before {
    background: url("../img/icon_down.svg") no-repeat;
    /* transform: rotate(90deg); */
}

.ch-people-status-none:before {
    background: url("../img/icon_none.svg") no-repeat;
    top: calc(50% - 2px);
}

.ch-people-points,
.ch-people-position {
    display: table;
    font-family: "BNPPSansCond";
    font-weight: 600;
    font-size: 18px;
}

.ch-people-position {
    color: #999999;
}

.ch-people-points-val-box,
.ch-people-position-val-box {
    display: table-cell;
    vertical-align: middle;
}

#challenge-people-cell,
#challenge-people-cell2 {
    display: none;
}

.ch-people-desc .exp-cell-name2 {
    font-size: 16px;
}

/* loader pytań */
.loader2 {
    position: fixed;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    width: 200px;
    height: 200px;
    z-index: 2147483647;
    background-color: #fff;
    color: #000;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25), 0 -1px 5px rgba(0, 0, 0, 0.1);
}
.loader2 .loading-spinner {
    position: absolute;
    top: 50%;
    margin: auto;
    left: 0;
    right: 0;
    margin-top: -20px;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
    z-index: 2147483647;
    background-color: #fff;
    color: #000;
    /* box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05), 0 -1px 5px rgba(0, 0, 0, 0.03); */
}
.loader .loading-spinner {
    position: absolute;
    top: 50%;
    margin: auto;
    left: 0;
    right: 0;
    margin-top: -20px;
}

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

.loader2 .loading-spinner {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: rotate-forever;
    animation-name: rotate-forever;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    height: 30px;
    width: 30px;
    border: 8px solid #24935f;
    border-right-color: transparent;
    border-radius: 50%;
    display: inline-block;
}

.loader2 .bottom-text {
    display: table-cell;
    text-align: center;
    bottom: 24px;
    font-size: 13px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    width: auto;
    padding-left: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

#challenge-people-list {
    position: relative;
    min-height: 200px;
}

.simple-challenge .sent-graphics {
    display: none;
}

.simple-challenge .send-files-section {
    display: none;
}

.challenge-bet .sent-graphics {
    display: none;
}

.challenge-bet-btn-section {
    display: none;
}

.challenge-bet .challenge-bet-btn-section {
    display: block;
}

.join-challenge-section {
    display: none;
}

.challenge-bet .send-files-section {
    display: none;
}

/* end - progress-points */

.text-modal-success {
    color: #24935f;
}

@media (max-width: 768px) {
    .challenge-top-info-left,
    .challenge-top-info-right {
        width: 100%;
    }

    .challenge-top-info-left {
        margin-bottom: 0px;
    }

    .challenge-top-info-right {
        margin-top: 0px;
    }
}

.box-33 {
    cursor: pointer;
}

.box-33.active {
    background: #f6fffb;
}

.boxes-33.disable-box {
    display: none;
}

.chitem-btn-5 {
    float: left;
    width: inherit;
    margin: 15px 15px 0 0;
    padding: 11px 20px 8px 20px;
    cursor: pointer;
}

.coach-content .infobox-footer {
    text-align: center;
}

.coach-content .infobox-footer .cancel-container {
    display: inline-block;
    float: none;
    padding: 0;
}

.send-graphic-title {
    padding-top: 10px;
    text-align: center;
    font-size: 18px;
}

.green-dark-btn.no-active {
    background: #c0c0c0;
    cursor: auto;
}

.box-2-hover.disable:hover {
    opacity: 0;
}

.boxes-33.select-1,
.boxes-33.select-2,
.boxes-33.select-3,
.boxes-33.select-4 {
    display: none;
}

#results-type-1 .boxes-33.select-1 {
    display: block;
}

#results-type-2 .boxes-33.select-2 {
    display: block;
}

#results-type-3 .boxes-33.select-3 {
    display: block;
}

#results-type-4 .boxes-33.select-4 {
    display: block;
}

.cancel-container {
    display: inline-block;
    float: none;
}

.infobox-footer {
    text-align: center;
}

#activity-points-level {
    display: inline;
}

.boxes-3 .box-3 .txt {
    line-height: 1;
}

.boxes-33.active-box {
    display: block;
}

.box-33 {
    padding-left: 50px;
}

.box-33 .image {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: 15px;
}

.box-33 .txt-2 {
    position: absolute;
    top: calc(50% - 14px);
    right: 20px;
    font-family: "BNPPSansCond";
    font-weight: 600;
    color: #999999;
    font-size: 20px;
}
.hidden-user-questions-cell,
.hidden-user-points-cell {
    display: none;
}

.result-task-sidebar {
    overflow-y: auto;
    max-height: 75%;
}

.profile-avatar-empty2 {
    background: url("../img/avatar2.png") no-repeat;
    background-size: 40px 40px;
    position: relative;
}

.box-33 .txt-1 span.upc-name {
    color: #209460;
}

.box-4 span.user-question-date {
    color: #999999;
}

.results-title {
    float: left;
}

.results-select {
    float: right;
    margin-bottom: 20px;
}

.gquestions-select {
    float: left;
    margin-bottom: 30px;
    z-index: 9;
}

.content-box-2 .total-points-box2 {
    display: none;
}

.total-points-box-desc {
    font-size: 16px;
}

.a-box-2 .user-activity-points2 {
    top: 29px;
}

.a-box-2 .user-activity-points2.text-social-small-5 {
    top: 33px;
    font-size: 45px !important;
}
.a-box-2 .user-activity-points2.text-social-small-6 {
    top: 36px;
    font-size: 40px !important;
}
.a-box-2 .user-activity-points2.text-social-small-7 {
    top: 40px;
    font-size: 33px !important;
}

.disable-join-btn {
    background: #e5e5e5;
    cursor: auto;
}

.disable-join-btn-desc {
    position: absolute;
    top: 50px;
    text-align: center;
}

.month-select {
    position: relative;
    display: block;
    width: 100%;
    padding: 9px 24px 9px 12px;
    border: none;
    border-radius: 2px;
    background: transparent;
    border: 1px solid #e3e3e3;
    box-shadow: none;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    min-width: 140px;
}

.month-select-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    z-index: 20;
    background: #fff;
    color: #000;
}

.month-select.active .month-select-list {
    display: block;
}

.month-select-element {
    padding: 5px 4px 3px;
    cursor: pointer;
}

.month-select-element:hover {
    color: #fff;
    background: #24935f;
}

.green-center-message {
    text-align: center;
    margin: 10px 0 20px;
    color: #24935f;
}

.challenge-goal2 .ch-cell-title,
.challenge-end-date2 .ch-cell-title {
    position: absolute;
    top: calc(50% - 11px);
    left: 30px;
}

.challenge-goal2 .ch-cell-desc,
.challenge-end-date2 .ch-cell-desc {
    width: calc(100% - 72px);
    text-align: right;
}

.challenge-goal2,
.challenge-end-date2 {
    position: relative;
}

.chitem-btn-5 {
    float: none;
    display: inline-block;
}

@media (max-width: 500px) {
    .left-cell-60 {
        float: left;
        width: 40px;
    }
    .ch-people-desc .txt-1 {
        padding-top: 60px;
    }
    .ch-people-position-val-box,
    .ch-people-points {
        text-align: center;
    }

    .left-cell-80 {
        float: left;
        width: 50px;
    }

    .left-cell-full {
        float: left;
        width: calc(100% - 135px);
    }
}

.box-area {
    padding-left: 15px;
}

.box-area .txt-1 {
    overflow: hidden;
    padding-left: 0px;
    font-size: 16px;
    color: #209460;
    display: block;
    padding-top: 3px;
    padding-right: 50px;
}

.box-area:hover {
    background: #f6fffb;
}

.box-area-back {
    background-color: #209460;
}
.box-33.box-area-back .txt-1 span.upc-name {
    color: white;
}

.box-area-back:hover {
    background-color: #f6fffb;
}
.box-area-back:hover .txt-1 span.upc-name {
    color: #209460;
}

@media (max-width: 560px) {
    .reports-container {
        margin-top: 40px !important;
    }
    a.raport {
        font-size: 16px;
        display: block;
        /* margin-right: 15px; */
        /* width: 250px; */
        text-align: left;
        float: none !important;
        color: white;
        background-color: #8bc44f;
        border-radius: 50px;
        position: relative;
        width: 262px;
        margin-bottom: 20px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .raportMBO {
        float: none !important;
        background-color: #f6f6f6;
        border-radius: 25px;
        width: 262px;
        /* margin-right: 15px; */
        margin-bottom: 20px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .raportCert {
        float: none !important;
        background-color: #f6f6f6;
        border-radius: 25px;
        width: 262px;
        margin-bottom: 20px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.reports-container {
    float: left;
    width: 100%;
    background: white;
    margin-top: 20px;
    /* display: flex;*/
}

#results-main .title-1 h2 {
    position: relative;
}

#results-main .title-1 .all-questions-info {
    position: absolute;
    top: 40px;
    right: 18px;
    font-size: 18px;
}

/*--- początek sklep template nowy 25-02-2019 ---*/
.banner-title-parent {
    display: table;
    width: 100%;
    text-align: center;
}

.banner-main-parent {
    background-size: cover;
    background-position: center center;
}

.left-points {
    display: table-cell;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.points-container {
    width: 100%;
    height: 100%;
    display: table;
    padding: 30px 0;
}

.points-quantity {
    color: #bc1d69;
    font-size: 16px;
    line-height: 20px;
}

.right-points {
    float: right;
}

.points-label {
    color: #b2b2b2;
    font-size: 16px;
    line-height: 20px;
}

.shop-category-cell {
    border-radius: 5px;
    box-shadow: 0px 17px 40px -28px rgba(0, 0, 0, 0.75);
    padding: 60px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.shop-category-cell-container {
    max-width: 300px;
    height: 100%;
    display: table;
}

.shop-category-cell-content {
    max-width: 100%;
    max-height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.block-left-title {
    color: #ffffff;
    font-size: 45px;
    line-height: 45px;
    margin: 10px 0px;
}

.block-left-subtitle {
    font-size: 16px;
    line-height: 20px;
    margin: 10px 0px;
    color: #ffffff;
}

.block-right-title {
    color: #000000;
    font-size: 45px;
    line-height: 45px;
    margin: 10px 0px;
}

.block-box-left {
    background-color: #17784c;
}

.block-box-right {
    background-color: #d3d8dc;
}

#block-main-view {
    background-color: #f2f5f4;
    min-height: calc(100vh - 431px);
}

.main-points-view-btn button {
    padding: 11px 30px 8px;
    width: inherit;
}

.white-main-btn {
    padding: 12px 30px 9px;
    background: #fff;
    color: #000;
    border: transparent;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    font-family: "BNPPSans";
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -webkit-border-radius: 2px;
    margin: 20px 0px;
    display: inline-block;
}

.shop-level-container {
    padding-top: 50px;
}

.shop-level-title {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-family: "BNPPSansCond";
    font-weight: 700;
    font-size: 30px;
}

.shop-level-subtitle {
    color: #b2b2b2;
    font-size: 16px;
    text-align: center;
    display: none;
}

.shop-products-list {
    margin-top: 20px;
}

.product-image-box {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.product-image-box:after {
    content: "";
    display: block;
    padding-bottom: 75%;
}

.disable-product-level {
    display: none;
}

.h-boxes .h-box .h-top {
    padding: 15px 15px 0px;
}

.h-box {
    cursor: pointer;
    position: relative;
}

.disable-shop-level .shop-level-subtitle {
    display: block;
}

.disable-shop-level .disable-product-level,
.h-box.h-box-disable .disable-product-level {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
}

.disable-product-level-text {
    position: absolute;
    top: calc(50% + 20px);
    width: 100%;
    text-align: center;
}

.disable-product-cell {
}
/*--- koniec sklep template nowy 25-02-2019 ---*/

/***************   RANKINGI   *******************/

.month-select:after {
    background: url("../img/r-arrow-black.svg") no-repeat;
    width: 15px;
    height: 15px;
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    right: 12px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.month-select.active:after {
    background: url("../img/r-arrow-black.svg") no-repeat;
    width: 15px;
    height: 15px;
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    right: 12px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.rank-type-select {
    position: relative;
    display: block;
    width: 100%;
    padding: 9px 24px 9px 12px;
    border: none;
    border-radius: 2px;
    background: transparent;
    border: 1px solid #e3e3e3;
    box-shadow: none;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    min-width: 140px;
}

.rank-type-select-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    z-index: 20;
    background: #fff;
    color: #000;
}

.rank-system-content {
    max-width: 750px;
    margin: 0 auto;
}

.rank-type-select.active .rank-type-select-list {
    display: block;
}

.rank-type-select-element {
    padding: 5px 4px 3px;
    cursor: pointer;
}

.rank-type-select-element:hover {
    color: #fff;
    background: #24935f;
}

.rank-type-select:after {
    background: url("../img/r-arrow-black.svg") no-repeat;
    width: 15px;
    height: 15px;
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    right: 12px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rank-type-select.active:after {
    background: url("../img/r-arrow-black.svg") no-repeat;
    width: 15px;
    height: 15px;
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    right: 12px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.rtse1,
.rtse2,
.rtse3,
.rtse4 {
    display: none;
}

#rts-list1 .rtse1 {
    display: block;
}

#rts-list3 .rtse2,
#rts-list4 .rtse2 {
    display: block;
}

#rts-list3 .rtse3 {
    display: block;
}

#rts-list4 .rtse4 {
    display: block;
}

.rank-area-select {
    position: relative;
    display: block;
    width: 100%;
    padding: 9px 24px 9px 12px;
    border: none;
    border-radius: 2px;
    background: transparent;
    border: 1px solid #e3e3e3;
    box-shadow: none;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    min-width: 140px;
}

.rank-area-select-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    z-index: 20;
    background: #fff;
    color: #000;
}

.rank-area-select.active .rank-area-select-list {
    display: block;
}

.rank-area-select-element {
    padding: 5px 4px 3px;
    cursor: pointer;
}

.rank-area-select-element:hover {
    color: #fff;
    background: #24935f;
}

.rank-area-select:after {
    background: url("../img/r-arrow-black.svg") no-repeat;
    width: 15px;
    height: 15px;
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    right: 12px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rank-area-select.active:after {
    background: url("../img/r-arrow-black.svg") no-repeat;
    width: 15px;
    height: 15px;
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    right: 12px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.main-menu ul li.item {
    margin-right: 24px;
}

.rank-type-select::after {
    z-index: 10;
}

.rank-type-select:before {
    width: 36px;
    height: 36px;
    content: "";
    position: absolute;
    top: 1px;
    right: 0;
    background: rgba(255, 255, 255, 1);
    background: -webkit-gradient(
        left top,
        right top,
        color-stop(0%, rgba(255, 255, 255, 0.85)),
        color-stop(29%, rgba(255, 255, 255, 0.9)),
        color-stop(51%, rgba(255, 255, 255, 1)),
        color-stop(71%, rgba(255, 255, 255, 1)),
        color-stop(100%, rgba(255, 255, 255, 1))
    );
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.9) 29%,
        rgba(255, 255, 255, 1) 51%,
        rgba(255, 255, 255, 1) 71%,
        rgba(255, 255, 255, 1) 100%
    );
}

/* rankingi w konkursach */
.challenge-rank-header {
    padding-top: 40px;
}

.ranking-box-title {
    height: 44px;
    color: white;
    text-transform: uppercase;
    background-color: #209460;
    line-height: 44px;
    font-size: 17px;
    font-family: "BNPPSans";
    cursor: pointer;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 37%;
}

.ranking-box .ranking-box-title:before {
    content: "";
    background: url("../img/plus.png") no-repeat;
    padding-right: 25px;
}

.ranking-box.active .ranking-box-title:before {
    content: "";
    background: url("../img/minus.png") no-repeat;
    padding-right: 25px;
}

.ranking-box .challenge-people-list {
    display: none;
}

.ranking-box.active .challenge-people-list {
    display: block;
}

.rank-system-content .search-box {
    background-color: #fff;
}

.banner-top-nz {
    height: 450px;
    background-position: center top;
}

.banner-top-nz:after {
    background-color: transparent;
}

.banner-nz-week,
.banner-mentor {
    font-family: "BNPPSansCond";
    font-size: 35px;
    color: #cbcbcb;
    font-weight: 600;
    text-transform: uppercase;
}

.combobox-desc {
    display: none;
}

.comboboxs {
    margin: auto;
    text-align: center;
}

.combobox-area {
    display: inline-block;
    width: calc(20% - 24px);
    margin: 0 10px;
}

.combobox-area.combobox-area-long {
    width: 500px;
}

@media (max-width: 600px) {
    .combobox-area.combobox-area-long {
        width: auto;
    }
}

.comboboxs .select-transparent {
    padding: 8px 12px 6px 8px;
    box-shadow: 0 16px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    margin-bottom: 5px;
}

.nz-weeks-container {
    min-height: 200px;
}

.nz-weeks-content {
    min-height: 100px;
    padding-bottom: 30px;
}

.nz-week-cell-box {
    width: 87px;
    float: left;
    z-index: 5;
    position: relative;
    margin: 0 4px;
    height: 138px;
}

.nz-week-cell {
    background: #fff;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.5s;
    position: absolute;
    width: 100%;
    height: 138px;
    top: 0;
    left: 0;
}

.nz-week-cell-box:hover .nz-week-cell {
    top: -12px;
    box-shadow: 0px 2px 29px 0px rgba(0, 0, 0, 0.15);
}

.nz-week-cell-box:hover .nz-week-cell-disabled {
    top: 0px;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
    cursor: auto;
}

.nz-week-cell-week-nr {
    font-size: 50px;
    font-family: "BNPPSansCond";
    font-weight: 600;
    color: #000;
    line-height: 0.9;
    margin-top: 4px;
}

.nz-week-cell-desc {
    margin-bottom: 7px;
    padding: 0 0 7px;
    font-size: 11px;
    font-weight: 400;
    font-family: "BNPPSans";
    color: #a6a6a6;
    text-transform: uppercase;
    position: relative;
}

.nz-week-cell-desc:after {
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    content: "";
}

.nz-week-cell-disabled .nz-week-cell-desc::after {
    background: rgba(255, 255, 255, 0.2);
}

.nz-week-cell-percent {
    font-size: 26px;
    font-family: "BNPPSansCond";
    font-weight: 600;
}

.nz-week-cell-green .nz-week-cell-percent {
    color: #89c24d;
}

.nz-week-cell-orange .nz-week-cell-percent {
    color: #f0a618;
}

.nz-week-cell-red .nz-week-cell-percent {
    color: #e13030;
}

.nz-week-cell-current .nz-week-cell-percent,
.nz-week-cell-current .nz-week-cell-desc,
.nz-week-cell-current .nz-week-cell-week-nr {
    color: #fff;
}

.nz-week-cell-bottom-progres-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.nz-week-cell-green .nz-week-cell-bottom-progres-bar {
    background: #89c24d;
}

.nz-week-cell-orange .nz-week-cell-bottom-progres-bar {
    background: #f0a618;
}

.nz-week-cell-red .nz-week-cell-bottom-progres-bar {
    background: #e13030;
}

.nz-week-cell-current .nz-week-cell-bottom-progres-bar {
    background: #fff;
}

.nz-week-cell-bottom-icon {
    display: none;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 10px);
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    background: url("../img/correct.svg") no-repeat;
}
/*
.nz-week-cell-bottom-icon::after {
  height: 3px;
  width: 10px;
  content: "";
  position: absolute;
  top: 9px;
  left: 6px;
  transform: rotate(-51deg);
  background: #89c24d;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
}

.nz-week-cell-bottom-icon::before {
  height: 3px;
  width: 5px;
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  transform: rotate(36deg);
  background: #89c24d;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
}
*/
.nz-week-cell-finish .nz-week-cell-bottom-icon {
    display: block;
}

.nz-week-cell-finish {
    background: rgba(255, 255, 255, 1);
    background: -webkit-gradient(
        left top,
        left bottom,
        color-stop(0%, rgba(255, 255, 255, 1)),
        color-stop(27%, rgba(255, 255, 255, 1)),
        color-stop(51%, rgba(255, 255, 255, 1)),
        color-stop(85%, rgba(242, 248, 235, 1)),
        color-stop(100%, rgba(232, 243, 221, 1))
    );
    background: -ms-linear-gradient(
        top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 27%,
        rgba(255, 255, 255, 1) 51%,
        rgba(242, 248, 235, 1) 85%,
        rgba(232, 243, 221, 1) 100%
    );
}

.nz-week-cell-finish {
}

.nz-week-cell-current {
    background: #f0a618;
}

.nz-week-cell-disabled {
    background: #a3a3a3;
    color: #cfcfcf;
}

.nz-week-cell-bottom-text {
    display: none;
    margin-top: 15px;
    text-transform: uppercase;
    color: #cfcfcf;
    font-size: 20px;
    font-family: "BNPPSansCond";
    font-weight: 600;
}

.nz-week-cell-disabled .nz-week-cell-bottom-text {
    display: block;
}

.nz-week-cell-disabled .nz-week-cell-percent,
.nz-week-cell-disabled .nz-week-cell-bottom-progres-bar {
    display: none;
}

.nz-week-cell-disabled .nz-week-cell-desc,
.nz-week-cell-disabled .nz-week-cell-week-nr {
    color: #cfcfcf;
}

.nz-week-category-box {
    float: left;
    margin: 0 4px;
    text-align: center;
    border-top: 3px solid #f0f0f0;
    padding: 10px 0;
    text-transform: uppercase;
}

.nz-week-category-box.active {
    border-top: 3px solid #dbdbdb;
}

.nz-week-c2 {
    width: calc(((100% / 12) * 2) - 8px);
}

.nz-week-c3 {
    width: calc(((100% / 12) * 3) - 8px);
}

.nz-week-c4 {
    width: calc(((100% / 12) * 4) - 8px);
}

.nz-exercises-container {
    background: #f2f5f4;
    padding: 45px 0;
}

.nz-exercise-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    font-family: "BNPPSansCond";
    margin-bottom: 30px;
    text-transform: uppercase;
}

.nz-exercise-cell {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    background: #fff;
    position: relative;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.nz-exercise-cell2:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #ffffff transparent transparent transparent;
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - 10px);
}

.nz-exercise-cell2.nz-exercise-cell-finish:after,
.nz-exercise-cell2.nz-exercise-cell-need-approval:after {
    border-color: #89c24d transparent transparent transparent;
}

.nz-exercise-cell.active {
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.23);
}

.nz-exercise-cell.active:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    top: 0;
    background: #6dbc63;
    border-radius: 1px 1px 0 0;
    -webkit-border-radius: 1px 1px 0 0;
    -moz-border-radius: 1px 1px 0 0;
}

.nz-exercise-cell-finish {
    background: #89c24d;
}

.nz-exercise-cell-need-approval {
    background: #7cc8c8;
}

.nz-exercise-cell-disabled {
    background: #a6a6a6;
}

.nz-exercise-cell-icon {
    position: absolute;
    content: "";
    left: 22px;
    width: 40px;
    height: 40px;
    top: 25px;
}

.nz-exercise-cell-usual .nz-exercise-cell-icon {
    background: url("../img/3.svg") no-repeat;
}

.nz-exercise-cell-finish.nz-exercise-cell-usual .nz-exercise-cell-icon,
.nz-exercise-cell-need-approval.nz-exercise-cell-usual .nz-exercise-cell-icon {
    background: url("../img/3b.svg") no-repeat;
}

.nz-exercise-cell-disabled.nz-exercise-cell-usual .nz-exercise-cell-icon {
    background: url("../img/3s.svg") no-repeat;
}

.nz-exercise-cell-link-type .nz-exercise-cell-icon {
    background: url("../img/6.svg") no-repeat;
}

.nz-exercise-cell-finish.nz-exercise-cell-link-type .nz-exercise-cell-icon,
.nz-exercise-cell-need-approval.nz-exercise-cell-link-type
    .nz-exercise-cell-icon {
    background: url("../img/6b.svg") no-repeat;
}

.nz-exercise-cell-disabled.nz-exercise-cell-link-type .nz-exercise-cell-icon {
    background: url("../img/6s.svg") no-repeat;
}

.nz-exercise-cell-media .nz-exercise-cell-icon {
    background: url("../img/5.svg") no-repeat;
}

.nz-exercise-cell-finish.nz-exercise-cell-media .nz-exercise-cell-icon,
.nz-exercise-cell-need-approval.nz-exercise-cell-media .nz-exercise-cell-icon {
    background: url("../img/5b.svg") no-repeat;
}

.nz-exercise-cell-disabled.nz-exercise-cell-media .nz-exercise-cell-icon {
    background: url("../img/5s.svg") no-repeat;
}

.nz-exercise-cell-exam .nz-exercise-cell-icon {
    background: url("../img/7.svg") no-repeat;
}

.nz-exercise-cell-finish.nz-exercise-cell-exam .nz-exercise-cell-icon,
.nz-exercise-cell-need-approval.nz-exercise-cell-exam .nz-exercise-cell-icon {
    background: url("../img/7b.svg") no-repeat;
}

.nz-exercise-cell-disabled.nz-exercise-cell-exam .nz-exercise-cell-icon {
    background: url("../img/7s.svg") no-repeat;
}

.nz-exercise-cell-training .nz-exercise-cell-icon {
    background: url("../img/4.svg") no-repeat;
}

.nz-exercise-cell-finish.nz-exercise-cell-training .nz-exercise-cell-icon,
.nz-exercise-cell-need-approval.nz-exercise-cell-training
    .nz-exercise-cell-icon {
    background: url("../img/4b.svg") no-repeat;
}

.nz-exercise-cell-disabled.nz-exercise-cell-training .nz-exercise-cell-icon {
    background: url("../img/4s.svg") no-repeat;
}

.nz-exercise-cell-title {
    padding: 25px 42px 20px 87px;
    position: relative;
    cursor: pointer;
}

.nz-exercise-cell-title:after {
    background: url("../img/r-arrow-black.svg") no-repeat;
    width: 15px;
    height: 15px;
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    right: 22px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0.3;
}

.nz-exercise-cell-disabled .nz-exercise-cell-title:after,
.nz-exercise-cell-finish .nz-exercise-cell-title:after,
.nz-exercise-cell-need-approval .nz-exercise-cell-title:after {
    opacity: 0.5;
}

.nz-exercise-cell.active .nz-exercise-cell-title:after {
    background: url("../img/r-arrow-black.svg") no-repeat;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.nz-exercise-cell-finish .nz-exercise-cell-title,
.nz-exercise-cell-disabled .nz-exercise-cell-title,
.nz-exercise-cell-need-approval .nz-exercise-cell-title {
    color: #fff;
}

.nz-exercise-cell-finish .nz-exercise-cell-bottom,
.nz-exercise-cell-disabled .nz-exercise-cell-bottom,
.nz-exercise-cell-need-approval .nz-exercise-cell-bottom {
    color: #fff;
}

.nz-exercise-cell-bottom .nz-exercise-cell-text {
    float: right;
    padding: 10px 0 7px;
}

.nz-exercise-cell-desc {
    display: none;
    margin: 0 22px 0;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 30px 0;
}

.nz-exercise-cell.active .nz-exercise-cell-desc {
    display: block;
}

.nz-exercise-cell-long-text {
    font-weight: 300;
}

.nz-exercise-cell-date-input {
    margin-top: 20px;
}

.newworkers-calendar {
    position: relative;
}

textarea.newworkers-calendar-box {
    cursor: text;
    color: #000;
}

.newworkers-calendar-box.disabled {
    cursor: auto;
}

.newworkers-calendar-btn {
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    background: #fff;
    text-transform: uppercase;
    float: right;
    font-size: 12px;
    padding: 6px 12px 2px;
    font-family: "BNPPSansCond";
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    color: #000;
}

.newworkers-calendar-btn:hover {
    color: #fff;
    background: #24935f;
}

.newworkers-calendar-btn.disabled {
    background-color: #b1b1b1;
    display: none;
}

.newworkers-calendar-btn.disabled:hover {
    cursor: auto;
    color: #000;
}

.nz-exercise-cell-date-input label {
    font-weight: 500;
    margin-bottom: 0;
}

.newworkers-calendar-date {
    float: left;
    padding: 0px 0 0px 4px;
    min-height: 27px;
    line-height: 21px;
}

.nz-exercise-cell-bottom {
    display: none;
    padding: 22px;
}

.nz-exercise-cell.active .nz-exercise-cell-bottom {
    display: block;
}

.nz-exercise-cell-link {
    float: left;
    color: #000;
    text-transform: uppercase;
    padding: 10px 0 7px;
    display: none;
    cursor: pointer;
}

.nz-exercise-cell-link:active,
.nz-exercise-cell-link:focus,
.nz-exercise-cell-link:hover {
    color: #24935f;
}

.nz-exercise-cell-btn,
.nz-exercise-cell-btn-accept {
    float: right;
    text-transform: uppercase;
    padding: 10px 30px 7px;
    color: #fff;
    background: #6dbc63;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    cursor: pointer;
}

.nz-exercise-cell-btn:hover,
.nz-exercise-cell-btn-accept:hover {
    background: #24935f;
}

.nz-exercise-cell-btn.disabled,
.nz-exercise-cell-btn-accept.disabled {
    background: #b1b1b1;
    display: none;
}

.nz-exercise-cell-btn.disabled:hover,
.nz-exercise-cell-btn-accept.disabled:hover {
    cursor: auto;
    background: #b1b1b1;
}

.datepicker {
    max-width: 200px;
    padding-left: 5px;
    z-index: 2000;
}

.day {
    padding: 5px;
    text-align: center;
}

.day:hover,
.day.active {
    cursor: pointer;
    color: #fff;
    background: #24935f;
}

input.datepicker-nz,
input.datepicker-nz2 {
    opacity: 0;
    width: 1px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
}

.nz-exercise-cell-ok-icon {
    display: none;
}

.nz-exercise-cell-ok-icon {
    display: none;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 32px;
    left: -14px;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    background: url("../img/correct-big.svg") no-repeat;
}
/*
.nz-exercise-cell-ok-icon:after {
  height: 4px;
  width: 14px;
  content: "";
  position: absolute;
  top: 13px;
  left: 9px;
  transform: rotate(-51deg);
  background: #89c24d;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
}

.nz-exercise-cell-ok-icon:before {
  height: 4px;
  width: 9px;
  content: "";
  position: absolute;
  top: 15px;
  left: 6px;
  transform: rotate(36deg);
  background: #89c24d;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
}
*/
.nz-exercise-cell-finish .nz-exercise-cell-ok-icon {
    display: block;
}

.nz-exercise-cell-need-approval .nz-exercise-cell-ok-icon {
    display: block;
    background: url("../img/wait-big.svg") no-repeat;
    width: 32px;
    height: 32px;
}

.nz-exercises-list {
    position: relative;
    /* min-height: 100px; */
}

/* Pierwsze logowanie nowozatrudnionych */
.nz-login-logo {
    width: 100%;
}

.nz-login-container {
    background-color: #f2f5f4;
    min-height: calc(100vh - 88px);
    background-image: url(../img/nz-login-bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
}

.nz-login-container-content {
    max-width: 900px;
    margin: 0 auto;
}

.nz-login-part-container {
    text-align: center;
    padding: 40px 0;
}

.nz-login-part-box {
    padding: 18px 58px 15px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05), 0 -1px 5px rgba(0, 0, 0, 0.03);
    border: 2px solid #fff;
    margin: 0 5px;
    display: inline-block;
    position: relative;
}

.nz-login-part-nr {
    width: 30px;
    height: 30px;
    content: "";
    position: absolute;
    top: calc(50% - 15px);
    left: 20px;
    background: #f2f2f2;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    line-height: 32px;
}

.nz-login-part-box-finish {
    background: #e8f9f2;
    border: 2px solid #04965e;
}

.nz-login-part-box-finish .nz-login-part-nr {
    color: #fff;
    background: #04965e;
}

.nz-login-part-box-prev {
    background-color: #04965e;
    color: white;
    border-color: #04965e;
}

.nz-login-part-box-prev .nz-login-part-nr {
    background-color: white;
    color: #04965e;
}

.nz-login-content {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background: #fff;
    background: #f5f5f5;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15), 0 -1px 5px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    padding-bottom: 50px;
}

.nz-login-content-top-text {
    padding: 48px 20px 45px;
    text-align: center;
    font-weight: 300;
    font-size: 21px;
    border-bottom: 1px solid #ebebeb;
}

.nz-login-content-top-text p {
    max-width: 620px;
    margin: auto;
}

.macroregion-map-box {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 90%;
}

.macroregion-map1 {
    background-image: url(../img/m-map1.png);
}

.macroregion-map2 {
    background-image: url(../img/m-map2.png);
}

.macroregion-map3 {
    background-image: url(../img/m-map3.png);
}

.macroregion-map4 {
    background-image: url(../img/m-map4.png);
}

.macroregion-map5 {
    background-image: url(../img/m-map5.png);
}

.macroregion-map6 {
    background-image: url(../img/m-map6.png);
}

.macroregion-map7 {
    background-image: url(../img/m-map7.png);
}

.macroregion-map8 {
    background-image: url(../img/m-map8.png);
}

.macroregion-map9 {
    background-image: url(../img/m-map9.png);
}

.macroregion-map10 {
    background-image: url(../img/m-map10.png);
}

.macroregion-map11 {
    background-image: url(../img/m-map11.png);
}

.macroregion-map12 {
    background-image: url(../img/m-map12.png);
}

.macroregion-map13 {
    background-image: url(../img/m-map13.png);
}

.macroregion-map14 {
    background-image: url(../img/m-map14.png);
}

.macroregion-map15 {
    background-image: url(../img/m-map15.png);
}

.macroregion-map16 {
    background-image: url(../img/m-map16.png);
}

.macroregion-map17 {
    background-image: url(../img/m-map17.png);
}

.macroregion-map-box:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.nz-exercise-cell-title-text,
.nz-exercise-cell-title-text2,
.nz-exercise-cell-bottom-text {
    display: block;
}

.nz-exercise-cell-title-text2,
.nz-exercise-cell-bottom-text {
    display: none;
    min-height: 44px;
}

.nz-exercise-cell.active .nz-exercise-cell-title-text2 {
    display: block;
}

.nz-exercise-cell.active .nz-exercise-cell-title-text {
    display: none;
}

.nz-exercise-cell.active .nz-exercise-cell-title {
    padding-bottom: 28px;
}

.nz-exercise-cell-disabled.active:before,
.nz-exercise-cell-finish.active:before,
.nz-exercise-cell-need-approval.active:before {
    height: 0;
}

.nz-exercise-cell-finish.active .newworkers-calendar-box {
    background: #77a64b;
}

.nz-exercise-cell-need-approval.active .newworkers-calendar-box {
    background: #5da9a9;
}

.nz-exercise-cell-finish.active .nz-exercise-cell-desc,
.nz-exercise-cell-need-approval.active .nz-exercise-cell-desc {
    border-top: 1px solid #77a64b;
    border-bottom: 1px solid #77a64b;
}

.nz-exercise-cell-need-approval.active .nz-exercise-cell-desc {
    border-top: 1px solid #5da9a9;
    border-bottom: 1px solid #5da9a9;
}

.nz-exercise-cell-disabled.active .nz-exercise-cell-link,
.nz-exercise-cell-disabled.active .nz-exercise-cell-long-text,
.nz-exercise-cell-disabled.active .nz-exercise-cell-date-input,
.nz-exercise-cell-finish.active .nz-exercise-cell-link,
.nz-exercise-cell-finish.active .nz-exercise-cell-long-text,
.nz-exercise-cell-finish.active .nz-exercise-cell-date-input,
.nz-exercise-cell-need-approval.active .nz-exercise-cell-link,
.nz-exercise-cell-need-approval.active .nz-exercise-cell-long-text,
.nz-exercise-cell-need-approval.active .nz-exercise-cell-date-input {
    color: #fff;
}

#empty-nz-week-cell-box,
#empty-nz-exercise-cell,
#empty-nz-week-category-box {
    display: none;
}

.nz-weeks-main-container {
    overflow-x: auto;
    width: 100%;
    margin-top: -62px;
    overflow-y: visible;
    padding-top: 12px;
}

.nz-weeks-categories {
    padding-bottom: 15px;
}

.acmedia-box-video,
.mentor-box-video {
    position: relative;
    width: 100%;
}

.acmedia-box-video:after,
.mentor-box-video:after {
    content: "";
    display: block;
    padding-bottom: calc((1080 / 1920) * 100%);
}

.acmedia-box-video .ac-media-image,
.acmedia-box-video video.ac-media-video,
.mentor-box-video video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.acmedia-box-video .ac-media-image {
    background-repeat: no-repeat;
    background-size: contain;
    /* background-size: cover; */
    background-position: center center;
    /* background-color: #000; */
}

.mentor-box-title {
    margin-bottom: 20px;
}

.ac-media-image,
.ac-media-video {
    display: none;
}

.newworkers-body2 header {
    z-index: 120;
}

/*
.nz-exercise-cell-finish .nz-exercise-cell-bottom,
.nz-exercise-cell-finish.active .nz-exercise-cell-bottom {
  display: none;
}

.nz-exercise-cell-finish .nz-exercise-cell-desc,
.nz-exercise-cell-finish.active .nz-exercise-cell-desc {
  border-bottom: none;
}
*/

.exam-results {
    display: none;
    padding-top: 15px;
}

.nz-exercise-cell-finish .exam-results {
    color: #fff;
}

#mentor-save-process-btn,
#mentor-save-done-process-btn {
    float: left;
    margin: 20px 15px 20px 0;
    cursor: pointer;
    width: inherit;
    display: none;
}

.change-mentor-box .f-box,
#save-new-mentor-btn {
    float: left;
    margin: 20px 15px 20px 0;
    cursor: pointer;
    width: inherit;
    display: none;
}

#save-new-mentor-btn {
    margin: 48px 15px 20px 0;
    padding: 10px 16px 6px;
}

header .main-menu ul li.item {
    margin-right: 8px;
}

.nz-realization-container {
    padding: 45px 0;
    text-align: center;
    background: #fff;
}

.choose-box label {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    padding-bottom: 15px;
    padding-top: 10px;
}

.choose-box {
    background-color: #209561;
    padding: 25px;
    border-radius: 3px;
}

.choose-box .select {
    background-color: #fff;
    border-radius: 3px;
}

.light-choose-box {
    float: left;
    margin-right: 50px;
}

.floated {
    float: left;
}

.choose-line {
    background-color: #666666;
    height: 64px;
    border-radius: 3px;
    font-size: 18px;
}

.choose-line-title {
    padding-left: 10px;
    float: left;
    width: calc(100% / 6);
    color: #b4b4b4;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.choose-line-element {
    color: #fff;
    width: calc(100% / 6);
    padding-left: 20px;
    border-left: 1px solid #757575;
    text-transform: uppercase;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.choose-column {
    background-color: #666666;
    border-radius: 3px;
    font-size: 18px;
    float: left;
}

.choose-column-title {
    padding-left: 10px;
    float: left;
    color: #b4b4b4;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.choose-column-element {
    color: #fff;
    padding-left: 20px;
    border-left: 1px solid #757575;
    text-transform: uppercase;
}
.first-choose-element {
    border: none;
}

.choose-box {
    background-color: #209561;
    padding: 25px;
    border-radius: 3px;
    width: calc(50% - 40px);
    float: left;
    margin: 0 20px;
}

.nz-exercise-cell-disabled .nz-exercise-cell-title {
    cursor: auto;
}

#acmediabox .modal-dialog {
    /* width: inherit; */
    /*width: 100%;*/
    max-width: 1240px!important;
    margin: auto auto;
}

.nz-realization-container .f-box {
    text-align: left;
}

.realizations-list {
    background: #f2f5f4;
    padding: 45px 0;
    min-height: calc(100vh - 581px);
}

.realizations-list-header {
    margin-top: 30px;
    padding: 0;
}

.left-cell-60p {
    float: left;
    width: calc((6 / 12) * 100%);
}

.left-cell-50p {
    float: left;
    width: calc((5 / 12) * 100%);
}

.left-cell-40p {
    float: left;
    width: calc((4 / 12) * 100%);
}

.left-cell-30p {
    float: left;
    width: calc((3 / 12) * 100%);
}

.left-cell-20p {
    float: left;
    width: calc((2 / 12) * 100%);
}

.left-cell-10p {
    float: left;
    width: calc((1 / 12) * 100%);
}

.left-cell-15p {
    float: left;
    width: calc((1.8 / 12) * 100%);
}

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

.realization-sub-box {
    display: table;
}

.realization-sub-box-content {
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px;
    font-size: 13px;
}

.realization-cell {
    padding: 20px 0;
}

.realizations-list-header-box {
    padding: 0 20px;
}

.realization-sub-box-content .exp-cell-name {
    font-size: 15px;
}

.realization-sub-box-content .ch-people-desc .txt-1 {
    padding-top: 3px;
}

.realization-sub-box-content .ch-people-desc .exp-cell-position {
    color: #000;
}

.choose-box-container {
    max-width: 800px;
    margin: auto;
}

.wide-choose-box-container {
    max-width: 100%;
    margin: auto;
}

.choose-box .rank-area-select {
    background: #fff;
}

.rank-area-select.disabled {
    opacity: 0.9;
    cursor: auto;
}

.float-end.challange-people-sort > span {
    font-size: 14px;
    color: #b2b2b2;
}

.realizations-list .float-right.challange-people-sort {
    margin-top: 25px;
}

.nz-circle {
    font-size: 50px;
    margin: 0 auto;
    float: none;
}

.c100 > span {
    font-size: 13px;
    color: #000;
    top: 0;
    left: 0;
    line-height: 52px;
    width: 100%;
}

#nz-realization-cell {
    display: none;
}

.realization-sub-box-content .exp-cell-position {
    color: #000;
    font-weight: 500;
}

.c100:hover > span {
    width: 100%;
    line-height: 52px;
    font-size: 13px;
    color: #000;
}

.dark-green .fill,
.dark-green .bar {
    border-color: #209460;
}

.rc-green .fill,
.rc-green .bar {
    border-color: #89c24d !important;
}

.rc-orange .fill,
.rc-orange .bar {
    border-color: #f0a618 !important;
}

.rc-red .fill,
.rc-red .bar {
    border-color: #e13030 !important;
}
.realization-sub-box-content-info {
    display: none;
    position: absolute;
    top: 0;
    left: 12px;
    color: #b2b2b2;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.tekst {
    width: 85%;
    border: 1px solid #333;
    border-radius: 20px;
    min-height: 34px;
    position: relative;
    padding: 5px 10px;
    cursor: text;
}

.wall .tekst {
    width: 75%;
}

.nz-group-realization-box {
    background: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    display: table;
    position: relative;
    width: 100%;
    height: 100%;
}

.nz-group-realization-circle {
    /*position: absolute;*/
    /*right: 20px;*/
    /*top: calc(50% - 25px);*/
}

.nz-group-realization-title {
    padding: 20px 0;
}

.datepicker .disabled.day {
    background: rgba(0, 0, 0, 0.5) !important;
    cursor: auto !important;
    color: #000;
}

.box-33.on-vacation {
    position: relative;
    padding-right: 40px;
}

.on-vacation > .txt-2 > .absenceTime::after {
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    background-image: url("../img/urlop-ic-green.svg");
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    background-size: contain;
    left: -16px;
}

.on-vacation.futureAbsence > .txt-2 > .absenceTime::after {
    background-image: url("../img/urlop-ic-gray.svg");
}

/* .on-vacation .txt-2 > span {
  display: none;
} */

.nz-group-realization-nz-count {
    color: #b2b2b2;
    font-size: 14px;
}

.nz-group-realization-nz-count .nz-group-realization-nz-coun-nr {
    color: #000;
}

.realization-sub-box-content {
    position: relative;
}

.exp-cell-profile-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

body .list-like-profiles-btn {
    display: none !important;
}

.new-nav ul.menu {
    list-style: none;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    /* justify-content: space-between; */
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

.main-menu ul.menu > li {
    margin: 0;
}
.main-menu.new-nav ul.menu > li {
    margin: 0;
    margin: 10px 0;
}

nav.main-menu .dropdown button {
    background-color: #1a8f5d;
    border: none;
    height: 25px;
    position: relative;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-family: "BNPPSans";
}

nav.main-menu .dropdown button .image {
    border: 4px solid #fff;
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
}

.main-menu.new-nav .menu li.item {
    height: 90px;
    width: 90px;
    background-color: #8bc44f;
    /* display: flex;
  justify-content: center;
  align-items: flex-end; */
    padding: 0;
    min-width: 90px;
    background-repeat: no-repeat;
    background-position: center;
}

.main-menu.new-nav .menu li.item > a {
    font-size: 13px;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px #000000;
    padding: 10px;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    padding-bottom: 10px;
}

.list-news-container2 {
    background-color: #fff;
}

.main-menu.new-nav {
    padding-top: 20px;
    z-index: 9;
    margin-bottom: 50px;
    float: left;
    min-height: 400px;
}

.list-news-container2 > .container {
    /* width: auto; */
}

.list-news-container2 > .container > .row {
    /* display: flex; */
    /* flex-direction: column; */
}

.list-news-cell-title {
    /* height: auto; */
    font-size: 18px;
    border: none;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.list-news-cell-image {
    height: 100px;
    position: relative;
    height: 125px;
}

.list-news-cell-image::after {
    position: absolute;
    content: "";
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.main-menu .z-title {
    background-color: #8bc44f;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 35px;
    color: #fff;
}

.list-news-cell-content {
    padding: 10px;
}

.list-news-cell2 .list-news-cell-title {
    border-bottom: none;
}

.list-news-container2 .container {
    padding: 0;
}

.list-news-cell {
    background-color: transparent !important;
    box-shadow: none !important;
}

.newsfeed > article {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
}

.newsfeed h2 {
    color: #8bc44f;
    display: inline-block;
}

@media (min-width: 650px) and (max-width: 1200px) {
    .newsfeed h2 {
        text-align: center;
    }
}

.newsfeed .title,
.comments .comment,
.comments .addComment,
.comments .discussTitle,
.comments2 .addComment {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.comments .addComment,
.comments2 .addComment {
    -ms-flex-pack: justify;
    justify-content: space-between;
}

article .title img,
.comments .comment img {
    border-radius: 50%;
}

.comments .comment img.commentAvatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.arrow,
.dropdown .triangle,
.list-news-container2 .list-news-cell-image::after {
    border: 10px solid #8bc44f;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.dropdown .triangle {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-top-color: #fff;
    border-width: 5px;
}

.arrow,
.dropdown .triangle {
    border-bottom-width: 0;
}

.comments .discussTitle span {
    margin-right: 10px;
}

body,
header {
    background-color: #f2f5f4;
}

.addComment input {
    border: 1px solid #333;
    border-radius: 20px;
    padding: 5px 10px;
    width: 60%;
}

.addComment .iconCamera {
    width: 30px;
    height: 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.imgBox {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.likeBox {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.likesCount {
    position: absolute;
    top: 15px;
    left: 20px;
}

.article-list .likesCount2 {
    width: auto;
}

.likesCount2 {
    width: 30px;
}

.likesCount2 img {
    cursor: pointer;
}

.comments .comment {
    margin: 20px 0;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.comments .comment img {
    margin-right: 30px;
}

.contentContainer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 20px;
}

.newsfeed .title {
    margin-bottom: 20px;
}

.newsfeed .title img {
    margin-right: 20px;
}

.banner-box .owl-dots {
    margin-left: 0;
    background: #0009;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.banner-box .owl-stage .owl-item,
.banner-box .owl-stage .owl-item .b-box {
    height: 350px;
}

.list-news-cell-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8bc44fe3;
    background-image: url("../img/zobaczSzczegoly.png");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
}

.list-news-cell a:hover + .list-news-cell-image::before {
    opacity: 1;
}

.banner-box-1 .container h1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.article-list-image {
    height: 150px;
}

.list-news-cell-content {
    text-align: center;
}

.list-news-cell-bottom-btn {
    width: 100%;
}

.list-news-cell-bottom-btn .green-dark-btn {
    padding: 5px 30px;
}

.pagination-box ul li span,
.pagination-box ul a {
    border-radius: 0;
    background-color: #ccc;
    height: 25px;
    width: 25px;
}

.pagination-box ul a:hover,
.pagination-box ul li span,
.pagination-box ul li.active a {
    background-color: #8ac34e;
    color: #fff;
}

.pagination-box ul li,
.pagination-box ul li.next a {
    line-height: 30px;
}

.green-bg {
    background-color: #8bc44f;
    color: #fff;
    padding-top: 8px;
}

.article-list-image::after {
    display: none;
}

.article-list .list-news-cell-date {
    color: #000;
}

.article-list .list-news-cell-title,
.challenge-cell .list-news-cell-title,
.top-text-section h1 {
    color: #8bc44f;
}

.articles-list {
    background-color: #fff;
    padding-top: 20px;
}

.menu > * {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.main-menu.new-nav ul li.item {
    margin-right: 0;
}

.top-text-section {
    padding: 0;
    padding-bottom: 25px;
}

.top-text-section h1 {
    padding: 30px 0;
}

.top-text-section .banner-top {
    margin-bottom: 30px;
}

.comment p {
    width: 100%;
    margin-right: 20px;
}

.dateTimeComment,
.odp .discussTitle {
    color: #8bc44f;
    display: block;
}

.comments form,
.addComment form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: 85%;
}

.template {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
}

.template div:first-child {
    width: 15%;
}

.boxes-2 {
    overflow: visible;
}

.box-2.box-2-1 {
    box-shadow: -15px 15px 16px #ccc9;
    overflow: visible;
    border: 3px solid #fff;
}

.row0 > *:nth-child(1) .box-2.box-2-1,
.row0 > *:nth-child(4) .box-2.box-2-1,
.row0 > *:nth-child(1) .box-2-hover,
.row0 > *:nth-child(4) .box-2-hover {
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

.row0 > *:nth-child(2) .box-2.box-2-1,
.row0 > *:nth-child(3) .box-2.box-2-1,
.row0 > *:nth-child(2) .box-2-hover,
.row0 > *:nth-child(3) .box-2-hover {
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
}

.row0 {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 560px;
}
@media (min-width: 561px) and (max-width: 768px) {
    .row0 {
        height: auto !important;
    }
    .row0 .margin_bot {
        margin-bottom: 25px;
    }
}

.content-box-2 {
    width: inherit;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 50px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* border: 2px solid #04965e; */
    border-radius: 20px;
    text-align: center;

    background-image: url("../img/icons/point.png");
    background-repeat: no-repeat;
    height: 70px;
    background-position: center;
}

.content-box-2 .total-points-box1 {
    position: absolute;
    bottom: -3px;
    left: 6px;
    color: #8bc44f;
}

.content-box-2 span#total-points {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 35px;
    color: #000;
}

.row0 > div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}

.a-box-2 {
    width: 250px;
    height: 250px;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
}

.box-2 .txt-1 {
    font-size: 32px;
}

.box-2 .txt-1 span {
    font-size: 17px;
}

.a-box-2 .ch-txt-1 {
    height: 48px;
}

.a-box-2 .ch-txt-1,
.a-box-2 .ch-txt-1 {
    position: static;
}

.box-2.box-2-hover {
    margin-left: 13px;
}

.box-2 .name {
    margin-top: 21px;
    font-size: 22px;
}

.box-2 .name span {
    font-size: 16px;
}

.box-2 .boxes-3 {
    height: 177px;
}

.box-2 .boxes-3 .row {
    width: 100%;
    height: 100%;
    margin-right: 0;
    margin-left: 0;
}

.box-2 .boxes-3 .box-3 {
    margin-top: 0;
}

.box-2 .boxes-3 .box-3 .percentage-ring {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    width: 40px;
    height: 40px;
}

.percentage-ring .number {
    width: 28px;
    height: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0;
}

.percentage-ring ~ .txt {
    padding-top: 50px;
}

.boxes-33 .box-33:first-child {
    margin-top: 0;
}

.box-33.user {
    padding-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}

.box-33 .image {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    top: 6px;
}

.box-33 .txt-2 {
    top: 45px;
    left: 19px;
}

.main .title-1 {
    height: 70px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.boxes-green {
    height: 60px;
    background-color: #1a8f5d;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 20px;
    color: #fff;
    font-size: 20px;
    position: relative;
}

.branch {
    background-color: #1a8f5d;
    margin-left: -15px;
    width: 90px;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
    height: 40px;
    position: relative;
    z-index: 1;
}

.branch::after {
    content: "";
    position: absolute;
    top: 7px;
    right: -13px;
    height: 27px;
    width: 27px;
    background-color: #1a8f5d;
    border: 3px solid #1a8f5d;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: -1;
}

.f-box {
    margin: 0;
}

#results-main .container {
    padding-top: 15px;
}

@media (min-width: 769px) {
    #results-main .row_expand {
        width: 100%;
    }
}
.row0 > *:nth-child(1) .ch-txt-1 {
    color: #8dcfcf;
}

.row0 > *:nth-child(2) .ch-txt-1 {
    color: #bf6297;
}

.row0 > *:nth-child(3) .ch-txt-1 {
    color: #43a175;
}

.row0 > *:nth-child(4) .ch-txt-1 {
    color: #99ca66;
}

.row0 > *:nth-child(1) .txt-1 span {
    color: #8dcfcf;
}

.row0 > *:nth-child(2) .txt-1 span {
    color: #bf6297;
}

.row0 > *:nth-child(3) .txt-1 span {
    color: #43a175;
}

.row0 > *:nth-child(4) .txt-1 span {
    color: #99ca66;
}

.odp {
    margin-left: 80px;
    width: calc(100% - 80px);
}

.profile-cnt .profile-info-top-container {
    background-color: #fff;
    margin-top: 20px;
}

.profile-cnt .list-news-container2 {
    padding-top: 20px;
    background-color: transparent;
}

.profile-cnt .list-news-container2 .container {
    background-color: #fff;
}

.z-content-box-3 {
    background: 0;
}

.profile-cnt .list-news-container2 .z-title {
    margin: 0;
    margin-bottom: 20px;
}

.profile-cnt .u-box-2 {
    width: 75%;
    height: 70px;
    background-image: linear-gradient(90deg, #1a8f5d 50%, #8bc44f 50%);
    opacity: 1;
    margin: -150px auto 0 auto;
    border-bottom-right-radius: 35px;
    border-top-left-radius: 35px;
    position: relative;
}

.profile-cnt .u-box-2 .pull-left {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(20px, -50%);
    transform: translate(20px, -50%);
    color: #fff;
    text-align: center;
    width: 160px;
}

.profile-cnt .u-box-2 .pull-right {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
}

.profile-cnt .u-box-1 {
    position: relative;
    z-index: 2;
}

.profile-cnt .profile-info-top-container .profile-image,
.profile-cnt figure.profile-image {
    width: 225px;
    height: 225px;
    border-radius: 0;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    border: 5px solid #fff;
    background-color: #fff;
    box-shadow: -16px 16px 16px #0003;
}

.pull-left::first-line,
.pull-right::first-line {
    font-size: 18px;
    font-weight: 600;
}

.z-content-box-3 .z-wrapper-1 {
    width: 100%;
}

.z-content-box-3 .u-box-3 .txt-1,
.z-content-box-3 .u-box-3 .txt-2,
.z-content-box-3 .u-box-3 .txt-3 {
    margin: 0;
    border: 0;
    text-transform: uppercase;
    color: #1a8f5d;
}

.z-content-box-3 .u-box-3 .txt-3 {
    margin-bottom: 20px;
}

.z-content-box-3 .u-box-3 .txt-1 {
    padding-bottom: 17px;
    margin-bottom: 17px;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

.u-box-3 .progress-points-my {
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 30px;
    box-shadow: 0 0 30px #8889;
    position: relative;
    z-index: 2;
}

.u-box-3 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}

.u-box-3 .progress-points-my .u-data {
    position: absolute;
}

.z-content-box-3 .u-box-3 .u-data .u-data-1:first-child {
    position: absolute;
    left: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}
.z-content-box-3 .u-box-3 .u-data .u-data-1:nth-child(2) {
    position: absolute;
    right: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.u-data {
    width: 100%;
    border-bottom: 1px solid #ddd;
    height: 65px;
    position: relative;
    margin-top: -141px;
    margin-bottom: 121px;
}

.achievement {
    border-radius: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 15px;
}

.z-content-box-1 {
    background-color: transparent;
}

.progress-points-my .progress-points-my-text {
    color: #000;
}

.z-content-box-3 .u-box-3 .u-data .u-data-1 {
    color: #555;
    font-size: 16px;
    background-color: transparent;
    font-family: "BNPPSansCond";
    margin: 0;
    padding-right: 0;
}

.z-content-box-3 .u-box-3 .u-data .u-data-1 span,
.progress-points-my .progress-points-my-count {
    color: #1a8f5d;
}

.z-content-box-3 .u-box-3 .u-data .u-data-1 span {
    font-size: 16px;
    opacity: 1;
    display: inline;
}

.help-question {
    margin-top: 15px;
}

.help-form {
    margin-top: 30px;
}

.comments .comment .commentImg {
    border-radius: 0;
    height: 250px;
    display: block;
    object-fit: contain;
}

.calendar-icon {
    background-image: url(../img/icons/calendar.png);
    width: 13px;
    height: 13px;
    display: inline-block;
    margin-left: 5px;
}

.delete-icon {
    background-image: url(../img/icons/img03.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 13px;
    height: 13px;
    display: inline-block;
    margin-left: 5px;
}
.box-33 .txt-2 {
    left: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.box-33 .image {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.box-33 .upc-name span {
    color: #000;
}

.box-33 {
    box-shadow: none;
}

.boxes-33 {
    background-color: #fff;
}

.btn-director {
    width: calc(100% - 40px);
    text-align: center;
    background-color: #84c589;
    margin: 0 20px;
    padding: 10px;
    border-radius: 30px;
    color: #fff;
}

.btn-director:last-child {
    background-color: #8bc44f;
    margin: 20px;
}

.results-filtration-boxes {
    background-color: #fff;
    /* height: 100%; */
}

.wait-process-results {
    display: inline-block;
    /* margin-left: 5px; */
}

.new-nav #wait-process-icon_holder {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-45%);
}

.process_box_results {
    visibility: visible;
    height: 92px;
}

.nz-group-process_box_results {
    display: flex;
    justify-content: center;
}
.nz-group-process-circle {
    display: inline-table;
    text-align: center;
    margin-top: 20px !important;
    width: 33%;
}
.w100 {
    width: 100%;
}
.p-l_r12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
}
.nz-group-process-circle > span {
    color: #1a8f5d;
    font-size: 12px;
    display: block;
    height: 39px;
    font-weight: bold;
}
.nz-group-process-circle > .nz-circle {
    margin-top: 25px;
    display: table;
}
.box-process span:last-child {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-transform: uppercase;
}
/* .on-vacation:after {
  background-image: url('../img/urlop-ic-green.svg');
} */

a.raport {
    font-size: 16px;
    display: block;
    /* margin-right: 15px; */
    width: 250px;
    text-align: left;
    float: left;
    color: white;
    background-color: #8bc44f;
    border-radius: 50px;
    position: relative;
    width: 262px;
    margin: 10px 4px;
}

a.raport.right {
    margin-right: 15px;
}

a.raport:hover {
    color: #24935f;
}

a.raport::after {
    content: "";
    width: 18px;
    height: 21px;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
}

a.raport:nth-child(1)::after {
    background-image: url("../img/icons/downloadIcon.png");
}

a.raport:nth-child(2)::after {
    background-image: url("../img/icons/downloadIcon.png");
}

a.raport:nth-child(3)::after {
    background-image: url("../img/icons/downloadIcon.png");
}

.raportCert a.raport::after {
    background-image: url("../img/icons/downloadIcon2.png");
    width: 17px;
    height: 23px;
}

.raportMBO a.raport::after {
    background-image: url("../img/icons/downloadIcon2.png");
    width: 17px;
    height: 23px;
}

.btn-director.prev {
    cursor: pointer;
}

.glyphicon-menu-right::before {
    position: absolute;
    top: -6px;
    left: 6px;
}

.challenge-top-info-left,
.challenge-top-info-right {
    margin-top: 0;
    /* padding: 20px; */
    margin-bottom: 40px;
}

.profile-cnt figure.profile-image {
    margin-bottom: 25px;
}

.u-box-3-footer-bottom .u-data {
    margin: 0;
    padding: 30px;
    height: auto;
}

.list-news-container2 {
    height: 100%;
}

.comment-box-content {
    display: block;
}

.likesCount .like-btn-number,
.likesCount2 .like-btn-number {
    float: none;
    line-height: normal;
    padding: 0;
}

.wall .comment img,
article.wall > .title > img {
    width: 50px;
    height: 50px;
}

.challenge-cell .challenge-goal {
    height: 62px;
}

.challenge-cell .green-dark-btn {
    background-color: #8ac34e;
}

.challenge-cell .challenge-end-date {
    height: 63px;
}

.user-question-percent {
    font-size: 13px;
    color: #1a8f5d !important;
    font-weight: 600;
    float: right;
    margin-right: -10px;
}

.branch-name {
    margin-left: 40px;
    color: #1a8f5d;
    position: absolute;
    top: 50%;
    left: 75px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 300px;
}

.challenge-top-info-left {
    padding-right: 20px;
}

.challenge-top-info-right {
    padding-left: 20px;
}

.comments-container {
    padding-bottom: 60px;
}

.changeProfileImg {
    cursor: pointer;
    display: inline-block;
}

.change-profile-img .p-buttons-2 {
    position: relative;
    top: auto;
    left: auto;
}

.sidebarNews .list-news-cell-content {
    padding: 8px;
}
.sidebarNews .list-news-cell-content > h4 {
    font-size: 18px;
}

.box-my-result .txt-2 {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.reply-cmt {
    margin-left: 75px;
}

.watek {
    margin-bottom: 40px;
}

.discussTitle {
    position: relative;
    padding-left: 24px;
}

.discussTitle > .arrow {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.box-33.user .txt-1 {
    font-size: 14px;
}

.change-profile-img {
    text-align: center;
}

.modal-content {
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    /*width: 150%;*/
}
/*@media (max-width: 1200px) {*/
/*    .modal-content {*/
/*        width: 50% !important;*/
/*    }*/
/*}*/

.confirmation-modal .modal-content {
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    width: 100%;
}

.confirmation-modal .modal-body {
    padding: 38px;
}

.gquestions-prev-month {
    z-index: 8;
    /* margin-bottom: 30px; */
    float: left;
    height: 90px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.profile-banner {
    position: relative;
}

.articles-list .list-news-cell-info {
    margin-bottom: 0;
}

.articles-list .box-5 {
    border-radius: 0;
}

.articles-list .green-dark-btn {
    background: #8ac34e;
}

.box-4b.download {
    background: url("../img/icons/downloadIcon3.png") 3px center no-repeat;
}

.wall video {
    width: 100%;
}

.addComment .green-dark-btn {
    background-color: transparent;
}

.com-reply {
    margin-left: 80px;
    width: calc(100% - 80px);
}

@media (max-width: 1200px) {
    .realization-sub-box-content {
        padding: 0px 12px;
    }

    .realization-cell {
        padding: 12px 0;
    }

    .realizations-list-header-box {
        padding: 0 12px;
    }
}

@media (max-width: 992px) {
    .realizations-list-header {
        display: none;
    }

    .realization-sub-box-content {
        position: relative;
        padding-top: 30px;
    }

    /* .realization-sub-box-content-info {
    display: block;
  } */

    .realizations-list .challange-people-search {
        margin-bottom: 30px;
    }

    .left-cell-mobile-40p {
        width: calc((4 / 12) * 100%);
        padding-bottom: 5px;
    }

    .left-cell-mobile-80p {
        width: calc((8 / 12) * 100%);
        padding-bottom: 5px;
    }

    .left-cell-mobile-90p {
        width: calc((9 / 12) * 100%);
        padding-bottom: 5px;
    }

    .left-cell-mobile-100p {
        width: calc((10 / 12) * 100%);
        padding-bottom: 5px;
    }

    .left-cell-mobile-120p {
        width: calc((12 / 12) * 100%);
        padding-bottom: 5px;
    }

    /* .nz-circle {
    float: left;
  } */

    .ch-people-desc .txt-1 {
        padding-top: 3px;
    }

    .mainBoxResults {
        width: 100%;
        /* height: 100%; */
    }

    .sidebarResults {
        padding: 0;
        width: 100%;
    }

    .banner-box-1 {
        margin-top: 75px;
    }

    .profile-cnt .profile-image-container {
        padding-top: 600px;
    }

    .profile-cnt .u-box-2 .pull-left {
        padding: 14px 0px;
        width: 100%;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        border-top-left-radius: 35px;
        background-color: #1a8f5d;
        position: relative;
        top: auto;
    }

    .profile-cnt .u-box-2 {
        background-image: none;
        margin: 0 auto;
    }

    .profile-cnt .u-box-2 .pull-right {
        padding: 14px 0px;
        width: 100%;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        border-bottom-right-radius: 35px;
        background-color: #8bc44f;
        right: 0;
        position: relative;
        top: auto;
    }
}

@media (max-width: 770px) {
    .challenge-top-info-left,
    .challenge-top-info-right {
        padding: 0;
    }

    .p-buttons-1 {
        right: 40px;
    }

    .resultsOval {
        top: 50px;
    }
    .resultsBox:first-child {
        margin-top: 120px;
    }
    .resultsBox .box-2 {
        width: 250px;
    }
}

@media (max-width: 767px) {
    .profile-cnt .profile-image-container {
        padding-top: 700px;
    }
}

@media (max-width: 560px) {
    .choose-box {
        width: 100%;
        float: left;
        margin: 0 0 15px;
    }

    .addComment .tekst {
        width: 65%;
    }

    .template div:first-child {
        width: auto;
    }

    .template.com-reply,
    .comment.com-reply,
    .odp {
        margin-left: 15px;
        width: calc(100% - 15px);
    }

    .comment .likesCount2 img {
        margin-right: 0;
    }

    .gquestions-list-element {
        height: 100px;
    }

    .gquestion-shortname {
        width: 200px;
    }

    .dateFromGquestion {
        position: absolute;
        bottom: 20px;
        left: 42px;
    }

    .dateFromGquestion::after {
        content: "-";
        position: absolute;
        right: -1px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .dateToGquestion {
        position: absolute;
        bottom: 20px;
        left: 120px;
    }

    .resultGquestion {
        position: absolute;
        right: 10px;
        width: 65px;
    }

    .gquestions-list-headers {
        display: none;
    }

    .resultsBox {
        margin-top: 50px;
    }

    .resultsBox:first-child {
        margin-top: 120px;
    }

    .row0 {
        height: auto;
    }

    .resultsBox .box-2 {
        width: 250px;
    }

    .comments form,
    .addComment form {
        width: 80%;
    }
}

.rank-system-content {
    margin-top: 50px;
}

.challenge-people-cell {
    background-color: #fff;
    border-radius: 100px;
    padding: 5px 10px;
}

.challenge-people-list-header {
    padding: 0 25px;
    color: #1a8f5d;
}

.left-cell-60,
.left-cell-80 {
    text-align: center;
}

.pull-left::first-line,
.pull-right::first-line {
    font-weight: 400;
    font-size: 13px;
}

.sidebarSearch > * {
    margin-bottom: 20px;
}

.rank-type-select-list,
.month-select-list,
.rank-area-select-list {
    overflow: hidden;
    left: -1px;
    width: 101%;
    border: 1px solid #e3e3e3;
}

.left-cell-full {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.left-cell-full > * {
    padding-left: 0;
    float: none;
    display: inline-block;
}

.ch-people-desc .txt-1 {
    padding-left: 0;
    width: calc(100% - 60px);
}
/*
.sidebar {
  height: 100%;
} */

@media (max-width: 1200px) {
    .contentContainer > .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .contentContainer .ranking-list-container {
        -ms-flex-order: 3;
        order: 3;
        background-color: #fff;
    }

    .contentContainer .sidebarSearch {
        -ms-flex-order: 2;
        order: 2;
        height: auto;
    }

    .main-menu.new-nav {
        background-color: #fff;
        margin: 0;
    }

    .list-news-container2 {
        height: auto;
    }
}

@media (max-width: 480px) {
    .combobox-area {
        width: 100%;
    }

    .left-cell-60 {
        width: 40px;
    }

    .left-cell-80 {
        width: 50px;
    }

    .ch-people-status:before {
        left: 12px;
    }

    .ch-people-desc .profile-avatar {
        width: 30px;
        height: 30px;
        background-size: 30px;
    }

    .ch-people-desc .txt-1 {
        width: calc(100% - 40px);
    }
}

@media (max-width: 400px) {
    .challenge-people-list-header {
        display: none;
    }

    .left-cell-60 {
        width: 20px;
    }

    .left-cell-80 {
        width: 50px;
    }

    .ch-people-status::before {
        left: 0;
    }

    .left-cell-full {
        width: calc(100% - 90px);
    }
}

.dispNone {
    display: none;
}

.raportCert {
    float: left;
    background-color: #fff;
    border-radius: 25px;
    width: 262px;
    margin-bottom: 20px;
}

.raportCert > div {
    padding: 5px 15px;
    display: none;
}

.raportCert > div:first-of-type {
    padding-top: 15px;
}

.raportCert a.raport {
    margin-bottom: 0;
}

.raportCert > a:hover + div,
.raportCert:hover > div {
    display: block;
}

.raportCert > div > a {
    color: #a1a1a1;
}

.raportMBO {
    float: left;
    background-color: #fff;
    border-radius: 25px;
    width: 262px;
    margin-right: 15px;
    margin-bottom: 20px;
}

.raportMBO > div {
    padding: 5px 15px;
    display: none;
}

.raportMBO > div:first-of-type {
    padding-top: 15px;
}

.raportMBO a.raport {
    margin-bottom: 0;
}

.raportMBO > a:hover + div,
.raportMBO:hover > div {
    display: block;
}

.raportMBO > div > a {
    color: #a1a1a1;
}

.pink {
    background-color: #bf6297 !important;
}

.pink:hover {
    color: #ad5687 !important;
    background-color: #f6fffb !important;
}

.raportAcademy {
    float: left;
    background-color: #fff;
    width: 190px;
}

.raportAcademy > div {
    padding: 5px 15px;
    display: none;
}

.raportAcademy > div:first-of-type {
    padding-top: 20px;
}

.raportAcademy a.raport {
    margin-bottom: 0;
}

.raportAcademy > a:hover + div,
.raportAcademy:hover > div {
    display: block;
}

.raportAcademy > div > a {
    color: #a1a1a1;
    font-size: 15px;
}

.raportAcademy > div > a:hover {
    color: #337ab7;
}

.realization-sub-box-content.mw-box .txt-1 {
    padding-left: 60px;
    width: auto;
}

.iconCamera img {
    height: 20px;
}

.day.inactiveDay {
    pointer-events: none;
    background-color: #aaa;
    color: #ccc;
}

.cancel-container {
    background-color: transparent;
}

.infobox-btn {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    background: #209460;
    padding: 14px 50px 12px 40px;
    position: relative;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    font-family: "BNPPSans";
    border: transparent;
    cursor: pointer;
}

.infobox-btn.save {
    margin-right: 15px;
}

.infobox-btn.delete {
    background-color: #d9534f;
}

.infobox-btn.cancel {
    background-color: #f8f9fa;
    color: #000;
}

.modal {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
    /* display: flex; */
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    /* padding-right: 14px; */
    z-index: 99999;
}

.modal.in {
    display: flex !important;
    display: -ms-flexbox !important;
    -ms-flex-pack: justify;
}

.absenceTime {
    position: absolute;
    top: 90%;
    font-size: 14px;
    right: 0;
    min-width: 45px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.datepicker-switch {
    pointer-events: none;
}

.cpointer {
    cursor: pointer;
}

.quarters {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 15px;
}

.quarters::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-bottom: 1px solid #88c34d;
    z-index: -1;
}

.quarters::before {
    content: "WYBIERZ KWARTAŁ";
    position: absolute;
    top: -20px;
    font-size: 14px;
    left: 50%;
    color: #88c34d;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.quarters > div {
    width: 35px;
    height: 35px;
    border: 1px solid #88c34d;
    background-color: #f2f5f4;
    color: #88c34d;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.quarters > div:not(.active) {
    box-shadow: inset 0 0 5px 0 #0005;
}

.quarters > div.active {
    background-color: #88c34d;
    color: #fff;
}

.quarters > div.disabled {
    background-color: #ccc;
    color: #999;
    pointer-events: none;
}

.quarters > div.active {
    background-color: #88c34d;
    color: #fff;
}

.quarters .q-prev,
.quarters .q-next {
    width: 25px;
    height: 25px;
}

.months {
    margin-top: 50px;
}

.poster {
    width: 200px;
    height: 200px;
    background-size: contain;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 140%;
}

.month-name {
    position: relative;
    z-index: 1;
    font-family: "BNPPSansCond";
    font-weight: bold;
}

.month-name span {
    background-color: #f2f5f4;
    padding-right: 10px;
    color: #7ccaca;
    font-size: 50px;
}

.month-name::after {
    content: "";
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #7ccaca;
    z-index: -1;
}

.posters {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.month {
    margin: 50px 0;
}

.poster > .download {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

.poster > .zoom {
    font-family: "Open Sans";
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 0 8px black;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.defaultPoster {
    -ms-flex-item-align: start;
    align-self: flex-start;
    font-size: 23px;
    font-family: "BNPPSansCond";
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
    max-width: 106px;
}

.defaultPosterName {
    font-size: 40px;
    line-height: 0.8;
}

.backToCertBtn {
    background-color: #8bc44f;
    color: #fff;
    border: none;
    padding: 5px 30px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -ms-flex-item-align: center;
    align-self: center;
}

@media (max-width: 1200px) {
    .quarters {
        margin-top: 50px;
    }
}

@media (max-width: 992px) {
    .quarters {
        box-sizing: border-box;
        width: calc(100% - 40px);
        margin: 525px 20px 0px 20px;
    }

    .poster {
        width: 180px;
        height: 180px;
    }
}
@media (max-width: 767px) {
    .quarters {
        margin: 625px 20px 0px 20px;
    }
}

@media (max-width: 740px) {
    .poster {
        width: 150px;
        height: 150px;
    }

    .months {
        margin: 0 20px;
    }
}

@media (max-width: 655px) {
    .posters {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .poster {
        width: 250px;
        height: 250px;
        margin-bottom: 20px;
    }
}

@media (max-width: 555px) {
    .poster {
        width: 100%;
        max-width: 500px;
        height: 500px;
        background-size: cover;
        background-position: center;
    }

    .poster > .zoom {
        font-size: 80px;
    }

    .poster > .download {
        width: 71px;
        height: 86px;
    }

    .poster > .download > img {
        width: 100%;
    }
}

@media (max-width: 361px) {
    .poster {
        width: 100%;
        max-width: 360px;
        height: 320px;
    }
}
/* .c100.big {
  width: 4em;
  height: 4em;
}

.c100.big::after {
  width: 3em;
  height: 3em;
}

.c100.big:hover::after {
  width: 3.5em;
  height: 3.5em;
} */

.c100.big > span {
    font-size: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.nz-exercise-cell-comment {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
    cursor: auto;
}

.nz-exercise-cell-finish .nz-exercise-cell-comment,
.nz-exercise-cell-finish textarea.newworkers-calendar-box {
    color: #fff;
}

.nz-exercise-cell-comment label {
    font-weight: 400;
}

.nz-exercise-cell-comment input {
    cursor: auto;
    width: 100%;
    margin-right: 20px;
}

.answers-text textarea {
    border-radius: 3px;

    width: 100%;
    height: 100px;
    border: 1px solid #ddd;
    resize: none;
    padding: 5px 10px;
}

.rank-area-select-current {
    width: 150px;
    display: block;
    overflow: hidden;
}

.nz-exercise-cell-puzzle .nz-exercise-cell-icon {
    background: url("../img/8.svg");
}
.nz-exercise-cell-finish.nz-exercise-cell-puzzle .nz-exercise-cell-icon {
    background: url("../img/8b.svg") no-repeat;
}

.nz-exercise-cell-saleschallenges .nz-exercise-cell-icon {
    background: url("../img/9.svg");
}
.nz-exercise-cell-finish.nz-exercise-cell-saleschallenges
    .nz-exercise-cell-icon {
    background: url("../img/9b.svg") no-repeat;
}

.nz-exercise-cell-posttrainig .nz-exercise-cell-icon {
    background: url("../img/10.svg");
}
.nz-exercise-cell-finish.nz-exercise-cell-posttrainig .nz-exercise-cell-icon {
    background: url("../img/10b.svg") no-repeat;
}

.nz-exercise-cell-disabled.nz-exercise-cell-posttrainig .nz-exercise-cell-icon {
    background: url("../img/10s.svg") no-repeat;
}

.banner-mentor span {
    color: #fff;
}

.title-history-comm {
    text-align: center;
    margin-top: 20px;
}

.history-comm-box {
    margin: 50px 0;
}

.history-comm-box > div > span {
    font-weight: bold;
}

.content-history-comm {
    max-height: 300px;
    width: 800px;
    overflow: auto;
    background-color: #fff;
    padding: 20px;
}

.block-row {
    background-color: #ddd;
}

.meetings-buttons-section {
    padding: 10px 0px;
    border-top: 1px solid #dadddc;
}

.meetings-button {
    background-color: #209460;
    border: none;
    color: white;
    padding: 10px 27px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 2px 2px;
    cursor: pointer;
}

.meetings-button.inactive {
    background-color: #979797;
    color: white;
}

.meetings-confirmation-text {
    padding: 1px 0px 5px;
}

/* DASHBOARD */

.clickable {
    cursor: pointer;
}

.db-box-green {
    background-color: var(--green);
    border-radius: 5px;
    box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.25);
}

.db-box-white {
    background-color: white;
    border-radius: 5px;
    box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.25);
}

.db-gap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 1rem;
}

@media (max-width: 992px) {
    .db-gap {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    /* Fix for side-by-side layout at 1920px */
    .db-gap.row {
        display: flex;
        flex-wrap: nowrap;
    }
}

@media (max-width: 992px) {
    .db-box-mobile {
        display: flex;
        gap: 2rem;
        flex-direction: row;
        justify-content: space-evenly;
    }
}

@media (max-width: 992px) {
    .db-boxgoogle-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.star-icon {
    background: url(../img/certifications/2024/dashboard/star-google.svg);
}

.message-icon {
    background: url(../img/certifications/2024/dashboard/message.svg);
}

.star-icon,
.message-icon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 80px;
    height: 80px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(43deg)
        brightness(102%) contrast(101%);
}

.arrow-up {
    transform: rotate(180deg);
}

.block-margin,
.container-fluid > * {
    margin-bottom: 16px;
}
.container-fluid {
    padding-left: 10px;
    margin-right: auto;
}

.db-welcome {
    color: var(--green);
    font-size: 2rem;
    font-weight: 500;
    margin-left: 7px;
}

.db-branch,
.db-vacation,
.db-team {
    display: flex;
}

.db-width-box {
    flex-grow: 1;
    flex-basis: 0;
    /*width: 23%;*/
    /*@media (max-width: 1200px) {*/
    /*    width: 22.5%;*/
    /*}*/
    /*@media (max-width: 992px) {*/
    /*    width: 100%;*/
    /*}*/
}

.db-vacation,
.db-team {
    align-items: center;
    justify-content: center;
}

.db-team {
    color: var(--green);
}

.db-alert-text,
.db-google-desc {
    font-size: 11px;
    color: var(--red);
}

.db-google-desc {
    bottom: 8px;
}

.db-alert-icon {
    background-image: url("../../t1/img/certifications/2024/dashboard/db-alert.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    width: 40px;
    height: 40px;
}

.db-alert-text-hide,
.db-alert-icon-hide {
    visibility: hidden;
    display: none;
}

.box-result {
    display: flex;
    justify-content: space-between;
}
.box-google {
    justify-content: space-evenly;
    flex-direction: column;
}

.dinamic {
    height: 30px;
    align-items: center;
    justify-content: start;
    gap: 8px;
    margin-bottom: 16px;
    flex-direction: row;
}

.db-branch {
    flex-direction: column;
    margin-left: 7px;
}

.vertical-line {
    border-right: 3px solid var(--green);
    padding-right: 8px;
    height: 40px;
}

.radio input:checked + label {
    font-weight: 800;
}

.radio input:checked + label::before {
    border-color: var(--green);
}

.radio input:checked + label::after {
    background-color: var(--green);
}

.box-name {
    color: black;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    margin-top: 16px;
}

.dashboard-tooltip {
    display: none;
    max-height: 607px;
    overflow: auto;
    width: 18rem;
}

.box-name:hover:after,
#newworkers-alert-icon:hover .dashboard-tooltip {
    display: block;
    position: absolute;
    background-color: var(--green);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-weight: 300;
    text-align: center;
    z-index: 1;
    width: 18rem;
    left: 50%;
}

#task-box:hover:after {
    content: "Wynik ze wszystkich dostępnych zadań w zakładce: Zadania";
}

#cert-box:hover:after {
    content: "Wynik z dostępnych testów\aJakość+Wiedza";
}

#position-bnp-box:hover:after {
    content: "Pozycja w BNP w ramach wyniku jakościowego ze wszystkich dostępnych zadań";
    background-color: #ffffff;
    color: var(--green);
    border: var(--green) 1px solid;
}

#ranking-position-text:hover:after {
    content: "Pozycja w ramach wyniku jakościowego ze wszystkich dostępnych zadań ";
    background-color: #ffffff;
    color: var(--green);
    border: var(--green) 1px solid;
}

#realization-questions-box:hover:after {
    content: "Realizacja narastająco dostępnych pytań od I.2025";
    position: absolute;
    left: 58%;
}

#logins-box:hover:after {
    content: "Liczba logowań narastająco od I.2025";
    position: absolute;
    left: 69%;
}

@media (max-width: 992px) {
    #logins-box:hover:after {
        left: -180px;
    }
}

#google-stars-text:hover:after,
#google-opinions-text:hover:after {
    content: "Szczegółowy raport dostępny w zakładce: Wyniki";
    background-color: #ffffff;
    color: var(--green);
    border: var(--green) 1px solid;
}

.hr-margin {
    margin: 8px 0;
    border-top: 1px solid black;
    width: 60%;
}

.color-white {
    color: white;
    border-top-color: white;
}

.margin-knowledge-text {
    padding-top: 8px;
}

.star-1,
.star-2,
.star-3 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 36px;
    position: relative;
    top: -10px;
}

.star-1 {
    background-image: url("../../t1/img/certifications/2024/dashboard/star-1.png");
}

.star-2 {
    background-image: url("../../t1/img/certifications/2024/dashboard/star-2.png");
}

.star-3 {
    background-image: url("../../t1/img/certifications/2024/dashboard/star-3.png");
}

.big-number {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.db-box-circle {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}
.db-box-circle > * {
    width: 25%;
}

.box-circle {
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-info {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.circle-name {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

.dasbhoard-chart-container {
    padding-top: 20px;
}

.db-box-rb {
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.db-google-opinion {
    padding: 5px 18px;
    margin-right: -14px;
    margin-left: -6px;
    height: 202px;
}

.db-google-star {
    padding: 6px 18px;
    margin-right: -4px;
    margin-left: -14px;
    height: 202px;

    @media (max-width: 992px) {
        margin-bottom: 12px;
    }
}

.tasks-box,
.task,
.task-content {
    display: flex;
}

.task {
    justify-content: space-between;
}

.task.task-new {
    color: var(--red);
}

.box-google-middle {
    display: flex;
    justify-content: space-evenly;
    max-height: 95px;
    @media (max-width: 992px) {
        gap: 42px;
    }
}

.tasks-box {
    flex-direction: column;
    margin-bottom: 8px;
}

.task,
.task-content {
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.task-new .task-content {
    color: var(--red);
    font-weight: bold;
}

.task-name {
    font-size: 14px;
}

.task-date {
    font-weight: 700;
    max-width: 75px;
}

.task-new .task-date {
    margin-top: 10px;
}

.task-new .task-date:before {
    content: "NOWY WPIS \a";
    font-size: 10px;
    letter-spacing: 2.6px;
    position: absolute;
    margin-top: -10px;
}

.task-button {
    background-color: var(--green);
}

.task.task-new .task-button{
    background-color: var(--red);
}

/* CSS */
.task-button {
    appearance: none;
    background-color: var(--green);
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, 0.1) 0 1px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;

    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 6px 0px;;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
}

.task-button a{
    padding: 8px 16px;
}

.task-button:hover {
    background-color: #2c974b;
}

.task-button:focus {
    box-shadow: rgba(46, 164, 79, 0.4) 0 0 0 3px;
    outline: none;
}

.task-button a {
    color: white;
}

.task-button.new {
    background-color: var(--red);
    color: black;
}

input[type="radio"][id*="radio-green"] {
    accent-color: var(--green);
    transform: scale(1.2);
}

.radio label {
    font-weight: 300;
    padding-left: 4px;
}

.radio input:checked + label {
    font-weight: 700;
}

.survey-icons-container {
    display: inline-flex;
    justify-content: space-between;
    margin-top: -7px;
    width: 100%;
    padding-left: 53px;
    padding-right: 21px;

    @media (max-width: 1400px) {
        padding-left: 49px;
        padding-right: 16px;
    }

    @media (max-width: 1200px) {
        padding-left: 45px;
        padding-right: 12px;
    }

    @media (max-width: 992px) {
        padding-left: 58px;
        padding-right: 24px;
    }

    @media (max-width: 770px) {
        width: 97%;
        padding-left: 9%;
        padding-right: 0px;
    }
}

.survey-icons-container > * {
    filter: invert(30%) sepia(97%) saturate(560%) hue-rotate(111deg)
        brightness(104%) contrast(101%);
}

.survey-area-icon {
    width: 24px;
    height: 24px;
}

.survey-area-icon-1 {
    background-image: url("../../t1/img/surveys/areas/1.svg");
}

.survey-area-icon-2 {
    background-image: url("../../t1/img/surveys/areas/2.svg");
}

.survey-area-icon-3 {
    background-image: url("../../t1/img/surveys/areas/3.svg");
}

.survey-area-icon-4 {
    background-image: url("../../t1/img/surveys/areas/4.svg");
}

.survey-area-icon-5 {
    background-image: url("../../t1/img/surveys/areas/5.svg");
}

.survey-area-icon-6 {
    background-image: url("../../t1/img/surveys/areas/6.svg");
}

.survey-area-icon-7 {
    background-image: url("../../t1/img/surveys/areas/7.svg");
}

.survey-area-icon-8 {
    background-image: url("../../t1/img/surveys/areas/8.svg");
}

.survey-area-icon-9 {
    background-image: url("../../t1/img/surveys/areas/9.svg");
}
