:root {
    --color-red: hsl(358, 85%, 52%);
    --color-font: hsl(0, 0%, 41%);
    --color-font-footer: rgb(195, 197, 198);
    --color-light-grey: rgb(240, 240, 240);
    --color-super-light-grey: rgb(247, 247, 247);
    --color-dark-grey: hsl(0, 0%, 66%);
    --color-darker-grey: hsl(0, 0%, 57%);
    --color-streamsoft: rgb(59, 92, 211);
    --color-streamsoft-light: rgb(110, 135, 228);
    --color-border: rgb(247, 247, 247, 1);
    --color-dark-background: rgb(112, 112, 112);
    --color-mobile-menu: rgb(206, 206, 206, 1);
    --color-b-white_tr: rgb(255, 255, 255, 0.95);
    --color-b-grey_tr: rgb(247, 247, 247, 0.95);
    --color-verto: rgb(228, 167, 60);
}


a {
  text-decoration: none !important;
  color:rgb(195, 197, 198) !important;
}



/*************** kolory START ************/

.b_light {
    background-color: var(--color-super-light-grey);
}

.b_dark {
    background-color: var(--color-dark-background);
}

.b_white {
    background-color: white;
}

.b_grey_tr {
    background-color: var(--color-b-grey_tr);
}

.b_white_tr {
    background-color: var(--color-b-white_tr);
}

.c_verto {
    color: var(--color-verto);
}

.c_streamsoft {
    color: var(--color-streamsoft);
}


/*************** kolory END ************/

* {
    box-sizing: border-box;
}

html,
body {
    box-sizing: border-box;
    margin: 0;
    color: rgb(105, 105, 105) !important;
    font-family: "Raleway", sans-serif !important;
}

body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-family: 'Raleway', sans-serif;
    color: var(--color-font);
    /* overflow: hidden; */
}


p {
    margin: 0;
    padding: 0;
}

ul,
ol,
li,
li a {
    color: var(--color-font);
    text-decoration: none;
}



img,
picture,
svg {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

a {
    text-decoration: none;
}



/*******  Sterowanie zachowaniem START *******/

.hold_line {
    white-space: nowrap;
}

.flexi {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

.no-wrap {
    white-space: nowrap;
}

.grow {
    flex-grow: 1;
}

.content_center {
    justify-content: center;
}

.jc_center {
    justify-content: center;
}

.ft_left {
    float: left;
    margin-right: 40px;
    bottom: 0;
}

.ft_right {
    float: right;
    top: 0;
    left: 0;
    margin-left: 30px;
    margin-bottom: 20px;
}

.fx_dir_col {
    flex-direction: column;
}

.fx_dir_row {
    flex-direction: row;
}

.w100 {
    max-width: 100%;
}

.algn_self_s {
    align-self: stretch;
}

.first_section_main {
    margin-top: 90px;
}

.first_section {
    margin-top: 126px;
}

.fixed {
    position: fixed;
    top: 100;
}

.stick_to_top {
    position: sticky;
    /* background: white; */
    top: 80px;
    z-index: 99;
} 


/*******  Sterowanie zachowaniem END *******/


/*********** Nagłówek, Nawigacja START ***********/
header {
    width: 100%;
    position: fixed;
    top: 0;
    text-align: center;
    z-index: 999;
}

.header_bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    width: 100%;
    height: 80px;
    background-color: var(--color-light-grey);
}


.logo {
    margin: 0 0 0 20px;
    padding: 0;
}

.logo img {
    max-width: 200px;
}

.menu {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    line-height: 1;
    /* height: 100%; */
    /* float: right; */
}

.menu ul {
    margin: 0;
    height: inherit;
    padding: 0;
    display: flex;
    flex-direction: row;
    list-style: none;
}

.menu li {
    padding: 0;
    margin: 0 0 0 1em;
}

.menu ul a {
    height: inherit;
    color: #222;
    color: var(--color-font);
    text-decoration: none;
    display: flex;
}

.menu ul a:hover {
    color: #fff;
}

#MenuToggle {
    display: none;
}

.menu-toggle {
    display: none;
}

.menu-toggle i {
    font-size: 1.3em;
    margin-left: 1em;
}

.contact_ico {
    display: flex;
    font-family: quicksand;
}

.contact_ico .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact_ico .tooltip {
    position: absolute;
    width: max-content;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: black;
    padding: 5px 8px;
    border-radius: 5px;
    /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 3px 15px -2px #222;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9;
}

.contact_ico .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    top: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact_ico .icon:hover .tooltip {
    top: 55px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact_ico .icon:hover span,
.contact_ico .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.contact_ico .icon i::before {
    color: var(--color-red);
    margin: 0;
    padding: 0;
    font-size: 1em;
}

@media screen and (max-width: 600px) {

 
    .header_bar {
        justify-content: center;
    }

    .contact_ico {
        margin-left: 20px;
    }

    .menu {
        position: absolute;
        display: flex;
        top: 60px;
        width: 100%;
        height: auto;
    }

    .logo img {
        max-width: 160px;
    }

    .menu ul {
        display: flex;
        flex-direction: column;
        min-width: 200px;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: max-height 0.3s;
        -moz-transition: max-height 0.3s;
        -ms-transition: max-height 0.3s;
        -o-transition: max-height 0.3s;
        transition: max-height 0.3s;
        background-color: var(--color-mobile-menu);
        z-index: 100;
    }

    .menu ul li {
        width: 100%;
        padding: 15px;
        margin: 0 1em;
        /* color: var(--color-light-grey); */
        border-bottom: 1px solid var(--color-light-grey);
    }

    /* ul li:last-child {
        border-bottom: none;
    } */

    .menu ul a {
        text-align: left;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        left: 0;
    }

    #MenuToggle:checked~.menu ul {
        max-height: 350px;
    }

}

/*********** Nagłówek, Nawigacja END ***********/

.container {
    margin: auto 5%;
    padding: 1em 0;
}

.page_depth_box {
    margin: 0 5%;
    padding: 0;
}

.page_depth {
    font-size: 0.9em;
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 1em 0;
    /* margin-bottom: 1em; */
    /* line-height: 2; */
}

.page_depth i::before {
    font-size: 1.2em;
}

.page_depth .current,
.page_depth .current i::before {
    color: var(--color-red);
}

ul.page_depth li:before {
    content: "/";
    /* font-family: flaticon; */
    color: var(--color-font);
    font-size: 14px;
    margin-left: 8px;
    margin-right: 8px;
}

ul.page_depth li:first-child:before {
    display: none;
}

.page_depth a:hover {
    /* font-size: 1.2em; */
    /* line-height: 1.5; */
    color: var(--color-red);
}

/*************** grid div's START ************/

.grid_container {
    display: grid;
}

.col_3_even {
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 20px;
}

@media (max-width: 600px) {
    .col_3_even {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 800px) {
    .col_3_even {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1500px) {
    .col_3_even {
        grid-template-columns: repeat(3, 1fr);
    }
}



/*************** grid div's END ************/


/*************** flex div's START ************/

.flex_container {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
}

/*******  Kafelki flexi START *******/

.flex_container_tiles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 10px;
}

.tile {
    position: relative;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19);
}

.tile_4_filter {
    position: relative;
    /* margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19); */
    display: none;
}


.tile img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.tile_4_filter img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.stamp {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 9;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.stamp i::before {
    font-size: 2em;
    color: var(--color-red);
}

@media (max-width: 600px) {
    .tile {
        flex-basis: calc(100% - 20px);
    }

    .tile_4_filter {
        flex-basis: calc(100% - 20px);
    }
}

@media (min-width: 820px) {
    .tile {
        flex-basis: calc(50% - 20px);
    }

    .tile_4_filter {
        flex-basis: calc(50% - 20px);
    }
}

@media (min-width: 1200px) {
    .tile {
        flex-basis: calc(33.333% - 20px);
    }

    .tile_4_filter {
        flex-basis: calc(33.333% - 20px);
    }
}

@media (min-width: 1600px) {
    .tile {
        flex-basis: calc(25% - 20px);
    }

    .tile_4_filter {
        flex-basis: calc(25% - 20px);
    }

}

@media (min-width: 2000px) {
    .tile {
        flex-basis: calc(20% - 20px);
    }

    .tile_4_filter {
        flex-basis: calc(20% - 20px);
    }
}

@media (min-width: 2400px) {
    .tile {
        flex-basis: calc(16.666666% - 20px);
    }

    .tile_4_filter {
        flex-basis: calc(16.666666% - 20px);
    }
}

/*******  Kafelki flexi END *******/


.flex_container>* {
    width: auto;
}

@media (max-width:720px) {

    .flex_container {
        flex-direction: column;
    }

    .item img {
        min-width: 120px;
    }

}

.item {
    border: 1px solid var(--color-light-grey);
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19);
    padding: 2em 2em;
    position: relative;
}

.item img {
    max-width: 100%;
}

.framed {
    border: 1px solid var(--color-border);
    border-radius: 5px;
}

.item:hover>a .overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.item_obszar {
    display: flex;
    justify-content: center;
    border: 1px solid var(--color-light-grey);
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19);
    padding: 2em 2em;
    position: relative;
    overflow: hidden;
    /* min-width: 300px; */
    height: 16em;
}

.item_obszar:hover > a .overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.item_pure {
    position: relative;
    min-height: 50px;
    align-self: stretch;
}

.item_pure img {
    /* max-width: 500px; */
    flex-basis: fill;
}

.item ul {
    margin: 0.5em 0;
}

.img_box {
    display: flex;
    padding: 0.7em; 
    position: relative;
}

.img_box_program {
    position: relative;

}

.img_program {
    object-fit: contain;
    max-width: 100%;
}

.img_box img {
    max-width: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.program {
    padding: 30px;
}

.img_box:hover > a .overlay {
    border: 1px solid lightgray;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.program:hover > a .overlay {
    border: 1px solid lightgray;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.fb_25 {
    flex-basis: 25%;
}

.fb_30 {
    flex-basis: 30%;
}

.fb_40 {
    flex-basis: 40%;
}

.fb_50 {
    flex-basis: 50%;
}

.fb_60 {
    flex-basis: 60%;
}

.fb_70 {
    flex-basis: 70%;
}

.fb_100 {
    flex-basis: 100%;
}






.item_media {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-light-grey);
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19);
    padding: 0.7em;
    flex-grow: 0;
    flex-shrink: 1;
    overflow: hidden;
    position: relative;
    /* flex-basis: 30%; */
    max-height: 100%;
}

.item_media img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.item_media:hover>a .overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.inner_left {
    width: 40%;
    float: left;
    padding-right: 20px;
    margin-bottom: 5px;
}

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

.icon_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon_box i::before {
    color: var(--color-red);
    font-size: 8em;
}

.icon_box img {
    display: block;
    width: 300px;
    object-fit: cover;
}

.icon_box_obszar {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-width: 250px;
}

.icon_box_obszar i::before {
    color: var(--color-red);
    font-size: 8em;
}

.icon_subtext {
    text-align: center;
    white-space: nowrap;
}

.media_subtext {
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    padding: 1em 1em 0;
    color: var(--color-streamsoft);
}

.media_type {
    text-align: center;
    padding: 1em;
    margin: 0 2em;
    color: var(--color-streamsoft);
    white-space: nowrap;
    border-bottom: 1px solid var(--color-light-grey);
}

.media_2details {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
}

.media_detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 1em;
}

.media_detail i::before {
    font-size: 1.3em;
    color: var(--color-red);
}

.media_prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 1em;
    padding: 1em;
    font-size: 1.2em;
    background-color: var(--color-light-grey);
    border-radius: 10px;
}

.media_price_left {
    color: var(--color-red);
}

.media_price_right {
    text-decoration: line-through;
}

.overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    margin: 10px;
    padding: 1em;
    color: var(--color-font);
    border-radius: 5px;

    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.more {
    padding-top: 1em;
    /* font-size: 0.8em; */
}

.min_w_250 {
    min-width: 10%;
}

.item_styled {
    border: 1px solid var(--color-light-grey);
    border-radius: 15px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19);
    padding: 2em 2em;
}

.item_module img {
    width: 100% !important;
}

.flexi_center_all {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.grey {
    background-color: var(--color-super-light-grey);
}

.white {
    background-color: white;
}

/*************** footer START ************/

footer {
    background-color: var(--color-dark-background);
    color: var(--color-font-footer);
}

.item_footer {
    /* border: 1px solid darkgrey; */
    /* color: var(--color-font-footer); */
    flex-basis: 33.333333%;
}

.item_footer_content {
    display: flex;
    flex-direction: column;
}

.item_footer_content_row {
    display: grid;
    grid-template-columns: 25px 1fr;
}

.icon_sidetext {
    font-family: quicksand;
    white-space: nowrap;
}

.footer_border_bottom {
    padding-top: 20px;
    border-bottom: 1px solid var(--color-dark-grey);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.quicksand {
    font-family: quicksand;
}

.txt_nowrap {
    white-space: nowrap;
}

.txt_highlight {
    color: orange;
}

.txt_highlight_red {
    font-weight: 600;
    color: var(--color-streamsoft);
}

/*************** footer END ************/

/*********   Tabela (porównanie)  START   *********/

.check {
    color: #e20074;
    font-size: 30px;
}



.relative {
    position: relative;
}

.form-popup {
    display: none;
    position: absolute;
    top: 25%;
    left: 50%;
    z-index: 9;
}

.form-popup-text {
    margin: 30px 10px 15px;
    font-size: 0.9em;
}

.form-container {
    position: relative;
    max-width: 300px;
    padding: 10px;
    background-color: white;
    border: 1px solid var(--);
    border-radius: 5px;
    background-color: var(--color-b-grey_tr);
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%), 0 0 8px 0 rgb(0 0 0 / 19%);
    color: var(--color-font);
    font-weight: normal;
}

.form-container .btn {
    background-color: #04AA6D;
    color: white;
    padding: 5px 5px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    border-radius: 5px;
}

.form-container .cancel {
    position: absolute;
    top: 0;
    right: 0;
    height: 33px;
    width: 33px;
    margin: 5px;
    background-color: var(--color-red);
    border: none;

}

.form-container .cancel i {
    font-size: 1em;
    text-align: center;
    margin: 0;
    padding: 0;
}

.form-container .btn:hover,
.open-button:hover {
    opacity: 1;
}

.open-button {
    border: none;
    border-radius: 5%;
    cursor: pointer;

}

.popup_more {
    width: fit-content;
    margin: 0 auto;
    padding: 0.7em;
    line-height: 1;
    font-size: 0.7em;
    vertical-align: middle;
    background-color: white;
    border: 1px solid var(--color-light-grey);
    border-radius: 5px;
}

.more a {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .check {
        color: #e20074;
        font-size: 20px;
    }

    /* .even {
        background-color: white !important;
    } */

    tr {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-around;
    }

    td,
    th {
        display: block;
        width: 33.333333333333%;
    }

    /* #test {
        width: 100%;
    } */

    th:first-child,
    td:first-child {
        background: #efefef;
        width: 100%;
    }

    th:first-child {
        display: none;
    }
}

.p {
    text-align: center;
    font-size: 13px;
    padding-top: 130px;
}


/*********   Tabela (porównanie)  KONIEC   *********/


/* .compare-box th img {
    width: 70%;
    margin: 0 auto;
} */



/* .compare-box-header {
    display: grid;
    grid-template-columns: 1fr 15% 15%;
    padding: 1em;
    align-items: center;
} */

/* .compare-box-title {
    font-size: 1.5em;
} */

/* .compare-box-body {
    display: grid;
    grid-template-columns: 40px 4fr 1fr 1fr;
    padding: 1em;
    align-items: center;
} */

/* .compare-box-icon img {
    max-height: 2.5em;
    margin-left: auto;
    margin-right: auto;
} */

/* .compare-box-name {
    margin-left: 0.5em;
    font-size: 1em;
}

.compare-box-bolean {
    display: flex;
    flex-direction: row;
}

.compare-box-bolean img {
    max-height: 2em;
    margin-left: auto;
    margin-right: auto;
} */

/* .foot-notes {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 10px;
    font-size: 0.8em;
}

.foot-notes-number {
    padding-right: 5px;
} */











.modal-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 5;
}

.modal-strefa {
    opacity: 0;
    display: flex;
    position: absolute;
    /* width: 300px; */
    top: 10%;
    left: -40px;
    right: 30px;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 3px 15px -2px #222;
    border-radius: 5px;
    pointer-events: none;
     z-index: 10;
}

.modal-content {
    font-size: 0.9rem;
    color: var(--color-font);
    font-weight: normal;
    border: 0px solid white !important;
}

.modal-content p{
    margin-bottom: 0 !important;
}

.modal-open {
    font-family: inherit;
    cursor: pointer;
    z-index: 11;
}

.modal-close {
    position: absolute;
    top: -2.4rem;
    right: -2.4rem;
    border: none;
    width: 3rem;
    height: 3rem;
    background-color: white;
    box-shadow: 0 3px 15px -2px #222;
    border-radius: 50%;
    color: var(--color-red);
    cursor: pointer;
    font-weight: bold;
    font-size: 2.5rem;
}



/* Styles to hide/show modal & overlay via Javascript */
.show {
    opacity: 1;
    pointer-events: auto;
    z-index: 12;
}

.overlay-on {
    display: block;
}




.bg-btn-color-strefa{
    background: #e9e9e9 !important;
    outline: none !important;
    box-shadow: none !important;
}
.bg-btn-color-strefa:hover, .bg-btn-color-strefa.active{
    background: #666 !important;
    color: white !important;
}
.meta_info_text_right ul li a{
    color: rgb(59, 92, 211) !important;
}
.meta_info_text_right ul li a:hover{
    color: rgb(237, 29, 35) !important;
}





.btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 1em;
}

.btn:hover {
    background-color: #666;
    color: white;
}

.active {
    background-color: #666;
    color: white;
}

.show {
    display: block;
}

.filter-btn-box {
    display: flex;
    gap: 10px;
    margin: 1em 0;
}


.mb_2 {
    margin-bottom: 2em;
}



.module {
    /* flex: 1 1 auto; */
    color: var(--color-streamsoft);
    padding-top: 10px;
    font-size: 1.5vw;
    font-weight: bold;
}


/************  Opisy na kafelkach modułów i rozszerzeń  *************/

.popup_fk::before {
    content: "Rachunkowość podatkowa i zarządcza, Automatyczna dekretacja, Różnice kursowe, Rozliczenia międzyokresowe, Budżetowanie, Obsługa kosztów eksploatacji samochodów służbowych...";
}

.popup_hm::before {
    content: "Sprzedaż, Zakupy, Oferty, Zamówienia, Gospodarka magazynowa, Planowanie zakupów, Umowy handlowe, Cenniki, Promocje, Inwentaryzacja...";
}

.popup_zp3::before {
    content: "Techniczne przygotowanie produckcji, Planowanie i harmonogramowanie, Rozliczanie produkcji, Zlecenia produkcyjne, Kontrola jakości, Kooperacja,         Planowanie zaopatrzenia w surowce...";
}

.popup_kp::before {
    content: "Ewidencja kadrowa, Rozliczanie płac, Zarządzanie czasem pracy, Rekrutacja, Deklaracje...";
}

.popup_rr::before {
    content: "Kontrola należności i zobowiązań, Płatności, Rozliczenia, Windykacja, Kompensaty, Banki, Kasy, Terminale płatnicze...";
}

.popup_st::before {
    content: "Ewidencja majątku firmy, amortyzacja (odpisy, plany, prognozy), inwentaryzacja...";
}

.popup_wp::before {
    content: "Ewidencja majątku nie podlegającego amortyzacji, inwentaryzacja, miejsca użytkowania, osoby odpowiedzialne...";
}

.popup_crm::before {
    content: "Kontrola zdarzeń w ramach obsługi Klienta, Organizacja pracy, Plany sprzedaży, Reklamacje, Osoby kontaktowe, Wsparcie dla zarządzania projektami,         Reklamacje...";
}

.popup_dms:before {
    content: "Zarządzanie obiegiem dokumentów od rejestracji do akceptacji, Elastyczne ścieżki akceptacji, Repozytorium dokumentów...";
}

.popup_lg::before {
    content: "Dyspozycje wydań i przyjęć, Podział magazynu na strefy, Planowanie ruchu i zadań magazyniera, Kontrola jakości...";
}

.popup_sr::before {
    content: "Zlecenia serwisowe, Rozliczanie zleceń, Kalkulacja usług, Umowy serwisowe, Planowanie...";
}

.popup_kpir::before {
    content: "Księgowość uproszczona w formie KPiR lub Księgi Ryczałtowej, Rozliczanie kosztów samochodów służbowych";
}

.popup_rif::before {
    content: "Tworzenie niestandardowych formularzy dokumentów i zestawień";
}

.popup_bi:before {
    content: "Zawansowane wielowymiarowe analizy biznesowe w oparciu o dane z całego systemu, subskrypcje, konsolidacja danych z wielu baz...";
}

.popup_adm::before {
    content: "Administracja baz danych, Kontrola dostępu i uprawnień...";
}

.popup_mm::before {
    content: "Aplikacja na urządzenia typu hand-held (np. kolektory danych), Wsparcie obsługi logistyki magazynowej, kody kreskowe, automatyzacja operacji logistycznych.";
}

.popup_em::before {
    content: "Dostępność wybranych funkcjonalności systemu na urządzeniach mobilnych...";
}

.popup_pm::before {
    content: "Bieżące informacje o stanie realizacji zleceń produkcyjnych, zaangażowaniu zasobów, zużyciu materiałów, rzeczywistym czasie realizacji operacji i czynności, przestojach... ";
}

.popup_b2b::before {
    content: "Portal internetowy do obsługi sieci sprzedaży w modelu B2B. Składanie i kontrola zamówień, Obsługa zapytań...";
}

.popup_kr::before {
    content: "Integracja z systemami firm kurierskich, generowanie przesyłek, aktualizacja statusu przesyłek w systemie ERP...";
}

.popup_wn::before {
    content: "Kontroli należności, Automatyzacja wysyłki alertów do dłużników wg ustalonych algorytmów bądź na żądanie";
}

.popup_pv::before {
    content: "Efektywne zaawansowane analizy danych zawartych w dowolnym oknie z listą danych dzięki możliwości przekształcenia listy w tabelę przestawną z własnymi polami, formułami itd.";
}

.popup_pp::before {
    content: "Wygodny dostęp pracownika do wszystkich danych kadrowych, Składanie wniosków,  Odbieranie dokumentów z Kadr, Przyspieszenie procesów akceptacyjnych.";
}

.popup_api::before {
    content: "Rozszerzenie typu API, umożliwiające tworzenie niestandardowych funkcjonalności jako tzw. wtyczek (pluginów)";
}








.media_container {
    margin: auto 20%;
    padding: 1em 0;
}

.flex_box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.media_box {
    width: auto;
    border: 1px solid var(--color-light-grey);
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19);
    padding: 1em 1em;
    background-color: white;
    /* flex-basis: 70%; */
}

.media_box_header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px 0;
    gap: 1em;
}

.media_box_details {
    /* width: 70%; */
    border: 1px solid var(--color-light-grey);
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19);
    padding: 1em 2em;
    background: var(--color-super-light-grey);
    /* flex-basis: 30%; */
}

.icon_plus_text {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.icon_plus_text i::before {
    font-size: 2.5em;
    margin-right: 8px;

}

.small_text {
    font-size: 0.8em;
    color: var(--color-dark-grey);
}

.media_box_pict {
    position: relative;
    display: flex;
}



.meta_info_unit {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 0;
    border-top: 1px solid white;
}

.meta_info_unit a {
    color: var(--color-streamsoft);
    font-weight: 500;
}

.meta_info_unit a:hover {
    color: var(--color-red);
}

.meta_info_unit li {
    white-space: nowrap;
}

.meta_info_icon {
    padding-right: 8px;
}

.meta_info_text_left {
    min-width: 25%;
    margin-right: 20px;
    font-size: 0.8em;
    white-space: nowrap;
}

.meta_info_text_right {
    font-size: 0.9em;
}

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

.item h3 {
    padding: 0;
    margin: 0;
}

.opis_prezentacji {
    margin-top: 10px;
}

@media only screen and (max-width: 960px) {
    .flex_box {
        flex-wrap: wrap;
    }

    .media_box_details {
        flex-basis: 100%;
    }

    .media_box {
        flex-basis: 100%;
    }

    .stick_to_top {
        /* margin-top: 200px; */
    }


}

.icon_box_obszar{
    padding-bottom: 20px !important;
}
.home-header{
    font-family: 'Raleway', sans-serif;
    line-height: 36px;
    font-weight: 600;
    font-size: 24px;
    padding-top: 18px;
}