@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@400;700&display=swap");

.PRZYSTANKI {
    border-left: 20px solid #85adf6;
}

.WSiP {
    border-left: 20px solid #699564;
}

.WSPARCIE_NA_STARCIE {
    border-left: 20px solid #ff8936;
}

.mpp_zima {
    border-left: 20px solid #3b3d53;
}

.mpp_lato {
    border-left: 20px solid #589c0a;
}

:root {
    /*--primary: #ffe628;
    --primary-dark: #f5d800;
    --primary-darker: #c2ab00;*/
   /* --primary: hsl(43deg 99% 59%); 
      --primary-dark: #fab201;
      --primary-darker: hsl(43deg 99% 39%);
    */
    
    --primary: #90a6b6;
    --primary-dark: #8295a4; 
    --primary-darker: #7c8e9c; 
    --primary-bright: #ffe62869;
    --primary-much-darker: #826100cc;
}

#sidebar {
    background: var(--primary-dark);
    width: 260px;
    position: fixed;
    top: 0;
    left: -260px;
    height: 100vh;
    z-index: 999;
    color: #fff;
    overflow-y: scroll;
}
#sidebar.active {
    left: 0;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
#sidebar.sidebar-right {
    left: auto;
    right: -260px;
}
#sidebar.sidebar-right.active {
    right: 0;
}
.dropzone.dz-clickable,
.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message *,
.open-sidebar {
    cursor: pointer;
}
#sidebar,
#sidebar * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
#sidebar #close-sidebar {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2); /*float:right;*/
    cursor: pointer;
    margin: 0 0 0 7px;
}
#sidebar.sidebar-right #close-sidebar {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
#sidebar #close-sidebar:hover,
#sidebar ul ul ul a:hover {
    background: rgba(255, 255, 255, 0.4);
}
#sidebar #close-sidebar i {
    margin-right: 2px;
}
.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}
#sidebar .sidebar-header {
    padding: 15px;
    /*background: rgba(0, 0, 0, 0.4);*/
    background: var(--primary-darker);
    min-height: 65px;
    text-align: left;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
.sidebar-header h1,
.sidebar-header h2,
.sidebar-header h3,
.sidebar-header h4,
.sidebar-header h5 {
    margin: 0;
}
#sidebar > :not(.sidebar-header):not(ul):not(.full-width) {
    max-width: 230px;
    margin-left: 15px;
}
#sidebar > ul {
    list-style: none;
    padding: 0;
}
#sidebar ul li a {
    padding: 10px 15px;
    color: #ffffffe8;
    display: block;
    text-decoration: none;
    /*background: rgba(0, 0, 0, 0.1);*/
    background: var(--primary);
    margin-bottom: 1px;
    border-bottom: none;
}
#sidebar a[aria-expanded="true"],
#sidebar ul li a:hover,
#sidebar ul li.active > a {
    background: rgba(0, 0, 0, 0.025);
}
#sidebar a[data-toggle="collapse"] {
    position: relative;
}
#sidebar a[aria-expanded="false"]::before,
a[aria-expanded="true"]::before {
    content: "\f0d7";
    display: block;
    position: absolute;
    right: 20px;
    top: calc(50% - 6px);
    font-family: FontAwesome;
    font-size: 0.6em;
    transition: transform 0.25s ease-in-out;
}
#sidebar a[aria-expanded="true"]::before {
    transform: rotate(180deg);
}
#sidebar ul ul a {
    padding-left: 30px;
    /*background: rgba(255, 255, 255, 0.1);*/
    background: rgba(255, 255, 255, 0.5);
}
#sidebar ul ul a:hover {
    /*background: rgba(255, 255, 255, 0.2);*/
    background: rgba(255, 255, 255, 0.75);
}
#sidebar ul ul ul a {
    padding-left: 60px;
    background: rgba(255, 255, 255, 0.3);
}
#sidebar .btn.btn-default {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
}
#sidebar .btn.btn-default:hover {
    background: rgba(0, 0, 0, 0.5);
}
#sidebar hr {
    border-color: rgba(255, 255, 255, 0.3);
}
.dropzone {
    position: relative;
    min-height: 150px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    background: #fff;
    padding: 20px;
}
.dropzone .dz-preview .dz-progress {
    display: block;
    border: 1px solid #aaa;
}
.dropzone .dz-preview .dz-image img,
.dropzone .dz-preview.dz-error .dz-error-mark,
.dropzone .dz-preview.dz-error .dz-error-message,
.dropzone .dz-preview.dz-success .dz-success-mark {
    display: block;
}
.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark {
    width: 54px;
    height: 58px;
}
@keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30%,
    70% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}
@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes pulse {
    0%,
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
}
.dropzone,
.dropzone * {
    box-sizing: border-box;
}
.dropzone.dz-clickable * {
    cursor: default;
}
.dropzone.dz-started .dz-message,
.row.thin-row .card-body.row > .col > hr,
select > span[aria-hidden="true"] {
    display: none;
}
.dropzone.dz-drag-hover {
    border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
    opacity: 0.5;
}
.dropzone .dz-message {
    text-align: center;
    margin: 2em 0;
}
.dropzone .dz-message .dz-button {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
.dropzone .dz-preview {
    width: 120px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px;
}
.dropzone .dz-preview:hover {
    z-index: 1000;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
    border-radius: 20px;
    background: #999;
    background: linear-gradient(to bottom, #eee, #ddd);
}
.btn.twist:hover i,
.dropzone .dz-preview.dz-file-preview .dz-details,
.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
    background: #fff;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none;
}
.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline;
}
.dropzone .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename,
th {
    white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200, 200, 200, 0.8);
    background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 0 0.4em;
    border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(8px);
    filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
    -webkit-animation: 3s cubic-bezier(0.77, 0, 0.175, 1) passing-through;
    -moz-animation: 3s cubic-bezier(0.77, 0, 0.175, 1) passing-through;
    -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: 3s cubic-bezier(0.77, 0, 0.175, 1) passing-through;
    animation: 3s cubic-bezier(0.77, 0, 0.175, 1) passing-through;
}
.dropzone .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    -webkit-animation: 3s cubic-bezier(0.77, 0, 0.175, 1) slide-in;
    -moz-animation: 3s cubic-bezier(0.77, 0, 0.175, 1) slide-in;
    -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: 3s cubic-bezier(0.77, 0, 0.175, 1) slide-in;
    animation: 3s cubic-bezier(0.77, 0, 0.175, 1) slide-in;
}
.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px;
}
.dropzone .dz-preview .dz-error-mark svg,
.dropzone .dz-preview .dz-success-mark svg {
    display: block;
    width: 54px;
    height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    -ms-transition: opacity 0.4s ease-in;
    -o-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: 6s infinite pulse;
    -moz-animation: 6s infinite pulse;
    -ms-animation: pulse 6s ease infinite;
    -o-animation: 6s infinite pulse;
    animation: 6s infinite pulse;
}
.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    width: 80px;
    margin-left: -40px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transform: scale(1);
    transform: scale(1);
    border-radius: 8px;
    overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
    display: block;
    height: 100%;
    background: #333;
    background: linear-gradient(to bottom, #666, #444);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out;
    -ms-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    border-radius: 8px;
    font-size: 13px;
    top: 130px;
    left: -10px;
    width: 140px;
    background: #be2626;
    background: linear-gradient(to bottom, #be2626, #a92222);
    padding: 0.5em 1.2em;
    color: #fff;
}
.dropzone .dz-preview .dz-error-message:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626;
}

.about1 {
    background: white;
    background: linear-gradient(
        to bottom,
        var(--primary-dark) 0,
        var(--primary) 100%
    );
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.login-clean {
    background: linear-gradient(to bottom right, hsl(214deg 55% 68%) 0%, hsl(214deg 100% 84.82%) 100%);
    /*
    background: var(--primary-dark);
    background: linear-gradient(
        to bottom,
        var(--primary-dark) 0,
        var(--primary) 100%
    );
    */
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-clean form {
    max-width: 320px;
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
    color: #505e6c;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
.login-clean .illustration {
    text-align: center;
    padding: 0 !important;
    font-size: 100px;
    color: #f4476b;
}
.login-clean form .form-control {
    background: #f7f9fc;
    border: none;
    border-bottom: 1px solid #dfe7f1;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    color: inherit;
    text-indent: 8px;
    height: 42px;
}
.login-clean form .btn-primary:active {
    transform: translateY(1px);
}
.login-clean form .forgot {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #6f7a85;
    opacity: 0.9;
    text-decoration: none;
}
.login-clean form .forgot:active,
.login-clean form .forgot:hover {
    opacity: 1;
    text-decoration: none;
}
.navigation-clean {
    background: #fff;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #333;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 0;
}
.navigation-clean .navbar-brand {
    font-weight: 700;
    color: inherit;
}
.navigation-clean .navbar-brand:hover {
    color: #222;
}
.navigation-clean.navbar-dark .navbar-brand:hover {
    color: #f0f0f0;
}
.navigation-clean .navbar-brand img {
    height: 100%;
    display: inline-block;
    margin-right: 10px;
    width: auto;
}
.navigation-clean .navbar-toggler {
    border-color: #ddd;
    color: #888;
}
.navigation-clean .navbar-toggler:focus,
.navigation-clean .navbar-toggler:hover {
    background: 0 0;
}
.navigation-clean.navbar-dark .navbar-toggler {
    border-color: #555;
    color: #eee;
}
.navigation-clean .form-inline,
.navigation-clean .navbar-collapse {
    border-top-color: #ddd;
}
.navigation-clean.navbar-dark .form-inline,
.navigation-clean.navbar-dark .navbar-collapse {
    border-top-color: #333;
}
.navigation-clean .navbar-nav > .active > a,
.navigation-clean .navbar-nav > .show > a {
    background: 0 0;
    box-shadow: none;
}
.navigation-clean.navbar-dark .navbar-nav a.active,
.navigation-clean.navbar-dark .navbar-nav a.active:focus,
.navigation-clean.navbar-dark .navbar-nav a.active:hover,
.navigation-clean.navbar-light .navbar-nav .nav-link.active,
.navigation-clean.navbar-light .navbar-nav .nav-link.active:focus,
.navigation-clean.navbar-light .navbar-nav .nav-link.active:hover {
    color: #8f8f8f;
    box-shadow: none;
    background: 0 0;
    pointer-events: none;
}
.navigation-clean.navbar .navbar-nav .nav-link {
    padding-left: 18px;
    padding-right: 18px;
}
.navigation-clean.navbar-light .navbar-nav .nav-link {
    color: #465765;
}
.navigation-clean.navbar-light .navbar-nav .nav-link:focus,
.navigation-clean.navbar-light .navbar-nav .nav-link:hover {
    color: #37434d !important;
    background-color: transparent;
}
.navigation-clean .navbar-nav > li > .dropdown-menu {
    margin-top: -5px;
    box-shadow: none;
    background-color: #fff;
    border-radius: 2px;
}
.navigation-clean .dropdown-menu .dropdown-item,
.navigation-clean .dropdown-menu .dropdown-item:focus {
    line-height: 2;
    color: #37434d;
}
.navigation-clean .dropdown-menu .dropdown-item:focus,
.navigation-clean .dropdown-menu .dropdown-item:hover {
    background: #eee;
    color: inherit;
}
.navigation-clean.navbar-dark {
    background-color: #1f2021;
    color: #fff;
}
.navigation-clean.navbar-dark .navbar-nav .nav-link {
    color: #dfe8ee;
}
.navigation-clean.navbar-dark .navbar-nav .nav-link:focus,
.navigation-clean.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
    background-color: transparent;
}
.navigation-clean.navbar-dark .navbar-nav > li > .dropdown-menu {
    background-color: #1f2021;
}
.navigation-clean.navbar-dark .dropdown-menu .dropdown-item,
.navigation-clean.navbar-dark .dropdown-menu .dropdown-item:focus {
    color: #f2f5f8;
}
.navigation-clean.navbar-dark .dropdown-menu .dropdown-item:focus,
.navigation-clean.navbar-dark .dropdown-menu .dropdown-item:hover {
    background: #363739;
}
.btn.twist i {
    position: absolute;
    font-size: 3em;
    transform: rotate(30deg);
    color: rgba(255, 255, 255, 0.3);
    top: -6px;
    left: -3px;
    text-shadow: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.btn.twist:hover {
    /*text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);*/
    text-shadow: 0 0 1px rgb(0 0 0 / 50%);
}
.btn.twist {
    position: relative;
    overflow: hidden;
    font-weight: 400;
}
@media (max-width: 400px) {
    .button-row button {
        width: 100%;
        margin-bottom: 5px;
    }
}
.button-row {
    margin-top: 1em;
    display: flex;
    justify-content: space-between;
}
#sortable .card > div:nth-child(1) {
    background-color: rgba(0, 0, 0, 0.03);
    justify-content: space-between;
    align-items: center;
    display: flex;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.sort-handle {
    cursor: grab;
}
.sort-handle:active {
    cursor: grabbing;
}
[data-campaign-slide-iterator] {
    flex-direction: column;
    justify-content: start;
    display: flex;
    align-items: flex-start;
}
[data-campaign-slide-iterator] p {
    line-height: 1.25em;
    font-family: monospace;
    font-size: 2em;
    opacity: 0.3;
}
.button-footer {
    justify-content: flex-end;
    display: flex;
    margin-top: 0.5em;
    padding-top: 0.5em;
    padding-right: 0.5em;
    padding-left: 0.5em;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}
[data-campaign-slide-iterator] span:before {
    display: inherit;
    content: "slajd";
    width: 100%;
    font-size: 0.6em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    opacity: 0.3;
}
.text-muted {
    color: rgba(0, 0, 0, 1) !important;
    font-size: 0.9em;
    letter-spacing: 0.06em;
    word-spacing: 0.06em;
}
#sortable .card > div:nth-child(2) {
    box-shadow: inset 0 0 0 5px #fff, inset 0 0 10px #000;
    min-width: 150px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
[data-campaign-slide-type="text"] .card > div:nth-child(2) {
    background-image: url(../../assets/img/lorem.jpg);
    background-size: cover !important;
}
#sortable .card > div:nth-child(1) i:before {
    content: "\f0dc";
    font-weight: 600;
    font-style: normal;
}
#sortable .card > div:nth-child(1) i {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: 0.5s ease-in-out;
    color: #9da5ad;
    padding: 1.5rem;
    font-family: "Font Awesome 5 Free";
}
#sortable .card > div:nth-child(1) i:hover {
    background-color: var(--primary);
    color: #fff;
}
#sortable .card {
    margin-top: 1em;
    overflow: hidden;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.1);
}
#sortable .card textarea {
    resize: vertical;
}
#sortable li[data-campaign-slide] hr {
    margin: 0.25rem 0 !important;
}
::placeholder {
    color: #d3d3d3;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #d3d3d3;
}
::-ms-input-placeholder {
    color: #d3d3d3;
}
#sortable input.h4 {
    border-color: transparent;
    padding: 0.5rem 0.25rem;
    margin-left: -0.5rem;
    width: 100%;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: calc(100% - 100px);
        margin: 1.75rem auto;
    }
}
.modal[data-campaign-modal-type="image"] figure img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}
.modal[data-campaign-modal-type="image"] figure {
    box-sizing: border-box;
    width: 20%;
    max-width: 200px;
    min-width: 150px;
    padding: 10px;
    vertical-align: top;
    transition: 0.5s ease-in-out;
    display: inline-flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
}
.modal[data-campaign-modal-type="image"] figure:hover {
    background-color: var(--primary);
    color: #fff;
    cursor: pointer;
}
.modal[data-campaign-modal-type="image"] figure div {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
}
.modal[data-campaign-modal-type="image"] figure figcaption {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.modal {
    padding-left: unset !important;
}
.modal .getfiles-holder {
    display: flex;
    flex-wrap: wrap;
}
.list-unstyled li {
    overflow: hidden;
}
.btn.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffffaa;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    box-shadow: 0 0 0 0.2rem var(--primary-bright) !important;
    border-color: var(--primary);
    background-color: var(--primary-dark);
    color: #000000aa;
}
.btn-primary.focus,
.btn-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 0.2rem #b39e0033;
}
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-primary:hover,
.show > .btn-outline-primary.dropdown-toggle {
    color: #000000aa;
    background-color: var(--primary-dark);
    border-color: var(--primary-darker);
    text-shadow: 0 0 1px rgb(0 0 0 / 30%);
}
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary-dark);
}
.btn-outline-primary.active,
.btn-outline-primary.focus,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem #c20d2033;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #c20d2033 !important;
}
.ui-loader {
    display: none !important;
    position: absolute;
    opacity: 0.85;
    z-index: 100;
    left: 50%;
    width: 200px;
    margin-left: -130px;
    margin-top: -35px;
    padding: 10px 30px;
}
#logged-as .fa,
p.card-text.address i.fa {
    color: var(--primary);
}
.card-side-buttons a.button,
.card-side-buttons button {
    display: block;
    width: 100% !important;
    margin-bottom: 0.2em;
}
@media (max-width: 767px) {
    .navigation-clean .navbar-nav .show .dropdown-menu .dropdown-item {
        color: #37434d;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
        line-height: 1;
    }
    .navigation-clean.navbar-dark
        .navbar-nav
        .show
        .dropdown-menu
        .dropdown-item {
        color: #fff;
    }
    .card-side-buttons a.button,
    .card-side-buttons button {
        display: inline-block;
        margin-bottom: 0.2em;
    }
}
.mb-4.pb-2.heading {
    border-bottom: 2px solid var(--primary);
}
.btn.btn-primary.disabled,
.btn.btn-primary:disabled {
    background-color: #999;
    border-color: #777;
    cursor: not-allowed;
}
.distanced-row {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 0 0 0 -12px;
    gap: 12px;
    width: calc(100% + 12px);
}
@media (min-width: 768px) {
    .navigation-clean {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .navigation-clean .navbar-nav .show .dropdown-menu {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .distanced-row > * {
        max-width: calc(50% - 12px);
    }
}
.distanced-row > * {
    margin: 0 0 6px 12px;
    width: 100%;
}
:focus {
    outline: 0 !important;
}
@media (min-width: 768px) and (max-width: 992px) {
    .card-side-buttons > :not(:last-child) {
        margin-bottom: 5px;
    }
}
.row.thin-row .card-body.row > .col > * {
    display: inline-block !important;
    margin-right: 1em;
}
.landed {
    min-height: calc(100vh - (2 * 3rem) - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 575px) {
    .landed > div > img:first-child {
        max-width: 100% !important;
    }
}
@media (max-width: 576px) {
    .landed > div {
        width: calc(100vw - 20px);
    }
}
.landed > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2em;
    background-color: #fff;
    border-radius: 0.5em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.landed > div > img:first-child {
    max-width: 50%;
}
.landed > div > hr {
    border: 1px solid var(--primary);
    max-width: 75%;
    width: 100%;
}
.card.information > .card-body > div:first-child > i.fa {
    font-size: 3em;
    text-shadow: 0 0 10px #fff, 0 3px 5px rgba(0, 0, 0, 0.2);
}
.card.information > .card-body > div:first-child > i.fa.fa-times {
    color: var(--danger);
}
.card.information > .card-body > div:first-child > i.fa.fa-exclamation-circle {
    color: var(--warning);
}
.card.information > .card-body > div:first-child > i.fa.fa-check-circle {
    color: var(--success);
}
.card.information > .card-body > div:first-child > i.fa.fa-info-circle {
    color: var(--blue);
}
.table.compare td,
.table.compare th:not(.hrs) {
    text-align: center;
}
#sidebar i {
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
    text-align: center;
}
.btn.btn-primary.disabled:hover,
.btn.btn-primary:disabled:hover {
    background-color: #777;
}
video {
    outline: rgba(0, 0, 0, 0.1) solid 2px;
    width: inherit;
    object-fit: scale-down;
}
.sidebar-header > h2 {
    text-align: center;
    color: transparent;
}
a:not(.btn):hover {
    color: #37915b;
    text-decoration: none;
    border-bottom: 1px solid;
}

a:not(.btn) {
    color: #37915b;
    text-decoration: none;
    background-color: transparent;
}

#content {
    overflow-x: hidden;
}

.btn:not(.just-icon) .fa:before,
.btn:not(.just-icon) .fas:before,
.btn:not(.just-icon) .far:before,
button:not(.just-icon) .fa:before,
button:not(.just-icon) .fas:before,
button:not(.just-icon) .far:before {
    padding-right: 0.5em;
}

@media (min-width: 992px) {
    .person-info
        > div.row.justify-content-lg-around
        > div.col
        > div:nth-child(1) {
        width: unset;
        min-width: unset;
        max-width: 110px;
    }

    .no-br br {
        display: inline !important;
    }
}

.person-address-history > div > div {
    display: block;
    width: 100%;
}

.person-address-history > div > div:nth-child(1) {
    color: #00000099;
    font-size: 0.8em;
    line-height: 1em;
    white-space: normal;
}

.person-address-history > div > div:nth-child(2) {
    padding-top: 0.5em;
    padding-bottom: 1em;
}

.no-br br {
    display: none;
}

.person-info > div.row.long > div > div:nth-child(1),
div.long:not(.row) > div:nth-child(1) {
    margin-top: 0.45em;
}

.person-info > div.row.long > div,
div.long:not(.row) {
    align-items: flex-start !important;
}

.person-info > div > div:nth-child(2):not(.col),
.person-info > div.row > div.col > div:nth-child(2) {
    font-weight: 500;
}

.person-info > div.row > div.col {
    display: flex;
    align-items: center;
}

.person-info > div > div:nth-child(1):not(.col),
.person-info > div.row > div.col > div:nth-child(1),
.input-group-text {
    width: 110px;
    min-width: 110px;
    margin-right: 15px;
    color: #00000099;
    font-size: 0.8em;
    display: flex;
    justify-content: flex-end;
    line-height: 1em;
    white-space: normal;
    align-items: center;
    text-align: right;
    /*height: 100%;*/
}

.input-group-text {
    margin-right: 0;
    border: none;
    background-color: unset;
}

.person-info > div {
    display: flex;
    /*width: 100%;*/
    flex-direction: row;
    margin-bottom: 0.5em;
}

.person-photo {
    min-height: 300px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.person-photo-history-img {
    text-align: center;
    width: 100%;
    height: 280px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.person-photo > a,
.person-photo-history-img > a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.3);
    text-shadow: 0 0 10px rgb(0, 0, 0);
    opacity: 0;
    font-size: 2em;
    transition: opacity 0.5s ease-in-out;
}

.person-photo > a:hover,
.person-photo-history-img > a:hover {
    opacity: 1;
}

.person-photo-history .person-info > div > div:nth-child(1):not(.col) {
    width: 95px !important;
    min-width: auto;
}

@media (max-width: 380px) {
    .person-info > div > div:nth-child(1),
    .input-group-text {
        width: 80px;
    }
}

@media (min-width: 768px) {
    .person-photo {
        height: auto;
        min-height: auto;
    }
}

@media (min-width: 768px) {
    .border-right-md-1 {
        border-color: #00000011;
        border-width: 1px;
        border-right-style: solid;
        border-bottom-style: none;
    }
}

.border-right-md-1 {
    border-bottom-style: solid;
    border-color: #00000011;
    border-width: 1px;
}

.person-ice-list > .row > div[class*="col"],
.typical-holder > .row > div[class*="col"] {
    display: inline-flex;
    align-items: center;
    /*padding-top: 5px;*/
    padding-bottom: 5px;
}

.person-ice-list > .row:not(:last-child),
.typical-holder > .row:not(:last-child) {
    border-bottom: 1px solid #00000022;
}

.tei-bt {
    border-top: 1px solid #00000022;
}

.person-ice-list > .row,
.typical-holder > .row {
    padding-bottom: 5px;
    padding-top: 5px;
}

/*@media (min-width: 768px) {
  .person-ice-list > .row > div[class*='col']:nth-child(4) {
    justify-content: flex-end !important;
  }
}

.person-ice-list > .row > div[class*='col']:nth-child(4) {
  justify-content: space-between;
}*/

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

::placeholder {
    color: #00000055 !important;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem var(--primary-bright);
}

body {
    /* background-image: url("/img/wsip_bg.png"); */
    background: #90a6b6 !important;
    background-position: center top;
    background-size: 300px;
}

a.span-break > span {
    display: inline-block;
}

.modal-body .remove-data {
    padding: 1em;
    border: 1px solid rgba(0, 0, 0, 0.1);
    vertical-align: top;
}

.modal.show .modal-dialog,
.modal-dialog {
    width: fit-content;
}

.icon1-5x {
    font-size: 1.5em;
}

@media (min-width: 576px) {
    .conditional-border-right {
        border-right: 1px solid var(--primary-bright);
    }
}

.group-row {
    border-left-width: 15px;
    border-left-style: solid;
    border-left-color: #e8e8e8;
}

.group-row:not(:nth-child(1)) {
    margin-top: -1px;
}

/* KOLORY DLA GRUP W NOTATKACH - START */
/* składnia dla nazwy klasy końcowo to .group-x gdzie 'x' to przypisana nazwa/numer */
/* i raczej staraj się nadawać z małych jeśli nazwa będzie alfanumeryczna, źle się patrzy na camelcasing w css */
.group-red,
.group-RED {
    border-left-color: #ee6363;
}
.group-blue,
.group-BLUE {
    border-left-color: #638fee;
}

.group-green_light,
.group-GREEN_LIGHT {
    border-left-color: #72b2a3;
}

.group-orange,
.group-ORANGE {
    border-left-color: #ff8936;
}
.group-violet,
.group-VIOLET {
    border-left-color: #a163ee;
}

.group-green,
.group-GREEN {
    border-left-color: #1e7b34;
}

.group-silver,
.group-SILVER {
    border-left-color: #fec32f;
}

.group-aquamarine,
.group-AQUAMARINE {
    border-left-color: #19889f;
}

.group-purple,
.group-PURPLE {
    border-left-color: #9c1fb2;
}

.group-blue_light,
.group-BLUE_LIGHT {
    border-left-color: #85adf6;
}

/* alternatywnie możesz po prostu wrzucać style='border-left-color: #xxxxxx;' do div.row.group-row, ale inline css jest fee */
/* KOLORY DLA GRUP W NOTATKACH - END */

.inset-shadow {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.query-not-found {
    background-color: rgb(225, 225, 225);
}

.modal-full-image img {
    max-width: 100%;
    /*max-width: calc(100vw - 3rem);*/
    /*max-height: calc(100vh - 3rem);*/
}

nav ul.pagination > li > a,
nav ul.pagination > li > span {
    padding: 1em;
    background-color: #fff;
}

nav ul.pagination > li > a:hover {
    background-color: var(--primary);
    color: #fff;
}

nav ul.pagination > li > span:hover {
    cursor: none;
}

.standalone-error-header > span {
    display: block;
    margin: auto;
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: "Oxanium";
}

.standalone-error-header > span:nth-child(1) {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 25px;
    margin-right: -25px;
    color: var(--primary);
}

.standalone-error-header > span:nth-child(2) {
    font-size: 100px;
    line-height: 100px;
    letter-spacing: 10px;
    margin-right: -10px;
    padding-bottom: 1rem;
}

.standalone-error-header > span:nth-child(3) {
    letter-spacing: 5px;
    margin-right: -5px;
}

.standalone-error-header > span:nth-child(2) > span {
    border-bottom: 2px solid var(--primary);
}

.standalone-error-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.standalone-error-body {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: auto;
    padding: 2em;
    background-color: #fff;
    border-radius: 0.5em;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.unset-width {
    width: auto;
    min-width: auto;
}

.warning-message > .standalone-error-page {
    min-height: calc(100vh - 70px - 5rem);
}

.warning-message > .standalone-error-page > .standalone-error-header {
    border-bottom: var(--primary) 2px solid;
    padding-bottom: 1em;
}

.input-group-append label[data-toggle="tooltip"],
.input-group-prepend label[data-toggle="tooltip"] {
    font-size: 1.3em;
}

.login-clean .subsidy,
.dashboard.subsidy {
    width: 560px;
    max-width: 90%;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1em;
    border-radius: 4px;
    box-shadow: 1px 1px 5px rgb(0 0 0 / 10%);
    font-size: 0.8rem;
    color: #463200;
    text-align: justify;
    display: flex;
    flex-direction: column;
}

.login-clean .subsidy > img,
.dashboard.subsidy img {
    height: 150px;
    width: 150px;
    order: 2;
    padding-left: 1em;
}

@media (max-height: 830px) {
    .login-clean .subsidy {
        margin-top: 1em;
    }
}

@media (max-width: 566px) {
    .login-clean .subsidy,
    .dashboard.subsidy {
        flex-direction: column;
        align-items: center;
    }

    .login-clean .subsidy > img,
    .dashboard.subsidy > img {
        padding-left: 0;
        padding-top: 5px;
    }
}

.dashboard.subsidy {
    width: 500px;
    max-width: 90%;
    margin-top: 1em;
    background-color: var(--primary);
}

[data-confirm-to="unlock"]:hover i:nth-child(1) {
    display: none;
}

[data-confirm-to="unlock"]:hover i:nth-child(2) {
    display: block;
}

[data-confirm-to="unlock"] i:nth-child(1) {
    display: block;
}
[data-confirm-to="unlock"] i:nth-child(2) {
    display: none;
}
