.calc-form-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.frame_calculator-title {
    color: #151515;
    font-family: 'Open Sans - Extrabold', sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
    margin: 0 15px 22px 0;
}
.frame_calculator-form {
    display:flex;
    margin-bottom: 22px;
}
.frame_calculator-form input {
    border-color: #151515;
    border-right-width: 0
}
#frame_calc {
    flex-basis: 44px;
    flex-shrink: 0;
    height: 40px;
    background-color: #151515;
    color:#fff;
    line-height:40px;
    text-align:center;
    transition: all .5s 
}    
#frame_calc:hover, #frame_calc :focus {
    background-color: #ff0000
} 
.frame_multiplier_kategory  {
    height: 140px;
    box-shadow: 0 2px 8px 1px rgba(181, 181, 181, 0.26);
    border: 2px solid #dedede;
    background-color: #ffffff;
    display:flex;
    margin: 0 15px 30px;
    align-items: center
}
.frame_multiplier_kategory > * {
    padding: 20px;
    line-height:1;
}
.frame_multiplier_kat_title {
    color: #151515;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom:20px
}
.frame_multiplier_kat_result {
    color: #757575;
    font-weight:400;
    font-size: 16px;
}
.frame_multiplier_kat_result span {
    font-weight:600
}
.calc-descr {
    margin-top: 5px;
}   
.col-12.order-0  .calc-descr {
	margin-bottom: 24px;
}
/* home calc section */
.home .section.section-calculator {
    padding: 55px 0 33px;
    background-color: #ddd;
}
.home .section.section-calculator .container.narrow {
	max-width: 900px
}
.home .section.section-calculator h2 {
    margin-bottom: 55px;
    text-align: center
}
@media (min-width:992px) {
    .col-lg-3  .calc-descr {
        margin-top: 65px;
    }    
}
@media (min-width:768px) {
    .frame_multiplier_kategory > img {
        border-right:1px solid #dedede;
    }
}

@media (min-width:768px) and (max-width:1199px) {
    .frame_multiplier_kategory > * {
        padding: 20px 10px;
    }
}
@media (max-width:767px) {
    .frame_multiplier_kategory {
        flex-direction: column;
        justify-content: center;
        height: auto;
    }
    .frame_multiplier_kategory > div {
        width:100%;
        border-top:1px solid #dedede;
        text-align: center;
    }
}
@media (max-width:479px) {
    .calc-form-wrapper {
        flex-wrap: wrap
    }
    .calc-form-wrapper > * {
        flex-basis: 100%
    }
    .frame_calculator-title {
        margin-right:0
    }
}    