#template-container, .templates{
    /*display: none !important;*/
}

body{
    margin: 0;
}

.header{
    background-color: #333333;
    color: white;
    padding: 10px;
}

.header-content{
    width: 75%;
    max-width: 1000px;
    margin: auto;
}

.main-div{
    width: 75%;
    max-width: 1000px;
    margin: auto;
    /*border: 1px solid orange;*/
    /*background-color: #ffffff;*/
}


#configurator-div{
    border: 1px solid black;
}

.step{
    /*display: none;*/
    /*border: 1px solid orange;*/
    margin: 10px;
    padding: 10px;
}

.hidden{
    display: none !important;
}

.disabled{
    background-color: grey;
}

.step.active{
    display: block;
    border: 2px solid red;
}

.radio-options-box{
    display: flex;
    justify-content: center;
}

.radio-container{
    display: block;
    margin: 10px;
}

.radio-container span{
    display: block;
    text-align: center;
}

.radio-container input{
    display: none;
}

.radio-container label{
    display: block;
    padding: 10px;
    border: 1px solid rgb(214, 211, 211);
}

.radio-container label:hover{
    cursor: pointer;
}

.radio-container.selected{
    background-color: #fe6a50;
    color: #ffffff;
}

.icon-box img{
    width: 150px;
    /*background-color: #ff6900;*/
    display: block;
    margin: auto;   
}



textarea{
    max-width: 100%;
}

.slider-container{
    display: flex;
    justify-content: center;
}

.slider {
    -webkit-appearance: none;
    width: 80%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #fe6a50;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #fe6a50;
    cursor: pointer;
}

.battery-display-container{}

.battery-display-header{
    padding: 10px;
    text-align: center;
}

.battery-display-values{
    display: flex;
    justify-content: space-evenly;
    margin:10px;
    
}
.battery-display-values span{
    display: block;
    padding: 10px;
    margin: 0;
    text-align: center; 
}

.battery-display-value-box{
    border: 1px solid rgb(214, 211, 211);
}

.battery-display-values span, .battery-display-value{
    width: 100px;
}

.battery-display-value{
    padding:10px;
    text-align: center;
    font-weight: bold;
}

.step-btn-box{
    display: flex;
    justify-content: space-evenly;
    margin: 20px 0 10px 0;
}

.step-btn{
    display: block;
    border: 1px solid rgb(214, 211, 211);
    padding: 5px;
    width: 100px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}

.back-step-btn{

}

.next-step-btn {
    background-color: #48af02;
    color: #ffffff;
}
.next-step-btn:hover {
    background-color: #307700;
}

.phases-box{
    display: flex;
}

.phases-box .radio-container{
    
    width: 50%;
}

.recap-heading{
    font-weight: bold;
}

#available-packages-box {
    display: flex;
    flex-direction: column;
    /*flex-wrap: wrap;*/
    justify-content: space-evenly;    
}

.package-box{
    padding: 10px;
    /*border: 1px solid rgb(214, 211, 211);*/
    display: flex;
}

.pkg-content-box{
    width: 100%;
}

.pkg-picker-box{
    border: 1px solid rgb(214, 211, 211);
}
.pkg-picker-box label{
    display: flex;
    align-items: center;
    height: 100%;
}
.pkg-picker-box input{
    display: block;

}

.pkg-header-strip{
    border: 1px solid #fe6a50;
    background-color: #fe6a50;
    cursor: pointer;
}

.pkg-header{
    display: flex;
}

.pkg-name-main{
    border: 1px solid black;
    width: 90%;
    box-sizing: border-box;
    padding: 5px;
}

.pkg-roll-btn{
    border: 1px solid black;
    width: 10%;
    text-align: center;
}
.pkg-roll-btn.open{
    transform: rotate(180deg);
}

.pkg-sum{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pkg-sum div{
    width: 50%;
    box-sizing: border-box;
    padding: 5px;
}

.pkg-body{
    display: none;
    background-color: rgb(214, 211, 211);
}

.pkg-body.open{
    display: block;
}

.pkg-body-items{
    display: flex;
    flex-wrap: wrap;
}

.pkg-body-item{
    width: 50%;
    box-sizing: border-box;
    padding: 5px;
}


@media only screen and (max-width: 600px){
    .pkg-body-item, .pkg-sum div{
        width: 100%;
    }
}

.pkg-headings{
    font-weight: bold;
}

.component-box{
    display: flex;
}
.component-box div{
    margin: 5px 0;
    padding: 5px;
}



.pkg-components{
    border: 1px solid rgb(214, 211, 211);
}

.component-box{
    border: 1px solid rgb(214, 211, 211);
}

.customer-type-picker{
    display: flex;
    justify-content: left;
}

.result-form{}

.result-wrapable{
    display: flex;
    flex-wrap: wrap;
}

.result-wrapable .result-input{
    width: 50%;
}

.result-input{
    margin: 5px 0 5px 0;
}

.result-input input{
    height: 25px;
}

.result-input textarea{
    width: 95%;
    height: 150px;
}

.result-input label, .result-input input{
    display: block;
    width: 90%;
}

.result-form-submit-button{
    padding: 10px;
    border: 1px solid rgb(214, 211, 211);
    background-color: #48af02;
    color: white;
    cursor: pointer;
}