.compare_box {
    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; */
    margin-bottom: 1em;
}

.compare_box_row {
    display: flex;
    flex-direction: row;
    gap: 2px;
    padding-top: 2px;
}

.compare_box_item {
    display: flex;
    align-items: center;
    width: 30%;
    border: 1px solid rgb(224, 224, 224);
    padding: 0 0 0 15px;
}

.compare_box_item a {
    text-decoration: none;
    text-transform: none;
    color: var(--color-font);
}

.scalable_item {
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.scalable_item:hover {
    transform: scale(1.2) translateX(10px);
    
}

.scalable_button {
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.scalable_button:hover {
    transform: scale(1.2);
    
}

.compare_box_item i::before {
    font-size: 3em;
    vertical-align: middle;
    margin-right: 10px;
    transition: transform 0.2s;
}

.compare_box_item:hover > i {
    transform: scale(1.2);
} 


.compare_box_subitem {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(224, 224, 224);
    position: relative;
    width: 33.333333%;
    padding: 10px;
    
    /* height: 100%; */
}

.logo_erp {
    transition: transform 0.2s;
}

.logo_erp:hover {
    transform: scale(0.9);
}


.compare_box_group {
    display: flex;
    flex-direction: row;
    width: 70%;
    gap: 2px;
    align-items: stretch;
    text-align: center;
    /* font-size: 1.4rem; */
    /* font-weight: bold; */
}

.yes_no_but {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 5px 20px;
    text-align: center;
    color: white;
    border-radius: 10px;
    line-height: 1em;
    font-weight: bold;
}

.yes {
    background-color: rgb(25, 153, 25);
}

.no {
    background-color: red;
}

.but {
    font-size: 1rem;
    font-weight: normal;
}

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

.tak {
    color: green;
}

.nie {
    color: red;
}

.show_hide {
    display: block;
    border: none;
}

.compare_folder {
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--color-streamsoft);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    height: 50px;
    margin: 15px 0;
    padding: 0 15px;
    border-radius: 5px;
}

.compare_folder:hover {
    cursor: pointer;
    background: var(--color-streamsoft-light);
}

.arrow {
    margin-right: 10px;
    transform: rotate(90deg);
}



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

    .show_hide {
        display: none;
    }

    .compare_box_group {
        width: 100%;
    }

    .compare_box_row {
        flex-direction: column;
    }

    .compare_box_item {
        width: 100%;
    }
}

