/*.calculator .stage {
    display: none !important;
}

.stage.active {
    display: block !important;
}*/

.calculator {
    display: flex;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 10px;
    border: 1px solid #00000038;
    overflow: hidden;
    min-height: 600px;
}
#controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px 10px;
}
#stages {
    width: 30%;
    padding: 0 0 20px;
    border-right: 1px solid #00000038;
}
#stages select, #stages option {
    margin: 0;
    outline: none;
}
#results {
    width: 64%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    /*overflow-y: scroll;
    max-height: 600px;*/
}
.result {
    width: 14%;
    padding: 15px;
    border: 1px solid #018e3045;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-height: 300px;
}
.result .result-title {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}
.result .result-title h3 {
    font-size: 14px;
    display: inline-block;
}
.result a {
    padding: 5px;
    background: #0b8538;
    color: white!important;
    border-radius: 5px;
    display: inline-block;
    height: 20px;
    text-decoration: none;
    margin-top: auto;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}
#resetButton {
    padding: 10px;
    background: #0b8538;
    color: white!important;
    border-radius: 5px;
    display: inline-block;
    height: 30px;
    text-decoration: none;
    margin-top: auto;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.stage-container {
    display: flex;
    justify-content: space-between;
    width: 800px;
    margin-bottom: 20px;
}

.stage {
    padding: 10px 10px 20px;
    background-color: #f2f2f2;
}
.stage h3 {
    margin-bottom: 10px;
}
.stage.active {
    background-color: #f4f3f3;
}

.filters-container {
    display: flex;
    justify-content: space-between;
    width: 800px;
    margin-bottom: 20px;
}

.filter-select {
    width: 200px;
}

.result-container {
    width: 800px;
}

.result-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.result-item img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}

.calculator img {
    max-width: 100%;
    width: 103px;
    height: 103px;
    object-fit: cover;
}
.calculator select option[value=""] {
    display: none;
}
.content_raschet {
    box-shadow: none;
}



.stage h3 {
    margin-bottom: 10px;
    color: #0b8538;
}

#stages select, #stages option {
    margin: 0;
    outline: none;
    height: 55px;
    border: 1px solid #018e3045;
}




@media(max-width: 768px) {
	
	#stages {
    width: 100%;
    padding: 0 0 20px;
    border-right: 1px solid #00000038;
}

#results {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
}


.result {
    width: 16%;

}
	
}