@charset "UTF-8";


#simulation {
    padding: 0 0 75px;
    text-align: center;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.14em; 
}
#simulation .main-wrapper {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.tab-menu-simulation {
    list-style: none;
    padding: 0;
    display: flex;
    margin:40px 0 -2px;
}

.tab-menu-simulation .tab {
    padding: 10px 20px;
    cursor: pointer;
    border: 2px solid #c8b587;
    margin-right: -1px;
    color: #FFFFFF;
    background: linear-gradient(to bottom, #034534, #062c21);
}

.tab-menu-simulation .tab.active {
    background: #fff;
    border-bottom: none;
    color: #034534;
}

.tab-content {
    border: 2px solid #c8b587;
    padding: 20px;
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-content h2 {
	text-align: left;
    border-left: 5px solid #034534;
    margin: 30px 0 10px;
    padding: 5px 5px 5px 15px;
    color:  #034534;
    clear: both;
}
.tab-content label {
	display: block;
	text-align: left;
}

input[type=number]{
	font-size: 1.5rem;
	padding: 5px;
	border-radius: 5px;
	float: left;
	clear: both;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.accordion-content.open {
    max-height: 300px;
}

button {
	margin: 20px 0 0;
	padding: 10px 50px;
    font-size: 20px;
    line-height: 30px;
}
button:hover {
	cursor: pointer;
}


#result-house,
#result-cook,
#result-silver,
#result-child {
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}
