/* Calculator */

.calculate-fields {
    display: flex;
    flex-direction: column;
    gap : 10px;
    align-items: flex-start;
}

.inputFields {
    width: 450px; 
    /* background-color: #eee; */
    /* background-color: rgba(200, 200, 200, 0.17); */
    overflow: hidden;
    /* height: 50px; */
    /* height: 40px; */
    transition: 0.2s;
    /* padding: 8px 15px; */

}

.inputFields .wlFields {
background-color: rgba(200, 200, 200, 0.17);
}
.inputFields > div.calculatorBtn{
    display: flex;
    align-items: center;
    gap: 5px;
    /* margin-bottom: 8px; */
    width: calc(100%-20px);
    cursor: pointer;
    height: 40px;
    /* font-weight: 600; */
    font-weight: 500;
    /* New */
    padding: 20px;
    background-color: #00006C;
    color: white;

}

.inputFields > div.calculatorBtn .calcIcon{
    
    color: #AADB1F;
}
.inputFields > div.calculatorBtn .arrowCalc{
    margin-left: auto;
    display: none;
    /* New */
    fill : white;
    /* transform : rotate(180deg); */
    transition: transform 0.3s ease;
    /* flex-grow: 1; */
}

.inputFields > div.calculatorBtn .arrowCalc.active{
    display: block;
}

.inputFields .fieldsWithLabels {
    padding: 20px;
    display: flex;
    gap: 20px;
}
.inputFields .fieldsWithLabels .arrowsDraw {
    display: flex;
    gap: 4px;
    flex-direction: column;

}
.inputFields .fieldsWithLabels .arrowsDraw svg:nth-child(2) {
    margin-left: 10px;
}

.inputFields .calcResuldDiv {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px 20px;
    /* border-top : 1px solid rgba(0, 0, 0, 0.26) */

}
.inputFields .calcResuldDiv p {
    width: fit-content;
}

.inputFields .calcResuldDiv button {
    width: 150px;
}


.inputFields .fieldWithLabel {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    gap: 5px;
    /* align-items: center; */
	margin-bottom : 5px;
}

.inputFields .fieldWithLabel label{
/* width: 60px;
font-size: 15px; */
/* New */
color: #000;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
/* New */
margin-bottom: 0!important;

}


.inputFields .calcResuldDiv {
    display: none;
}

.projectFields {
    width: 450px; 
    min-width: fit-content;
    /* background-color: #eee; */
    background-color: rgba(200, 200, 200, 0.17);

    /* padding: 8px 15px; */
/*     border-radius: 7px; */
    margin-bottom: 10px;

}
.projectFields label {
    /* font-weight: 600; */
	/* font-size : 15px; */
    /* New */
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0!important;
}
.projectFields p {
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;

}

.calculate-fields input[type="number"] {
	border: 1px solid #c9c9c9!important;
}

.calculate-fields input[type="number"]:focus {
	border: 1px solid #AADB1F!important;
}

.calculate-fields input[type="number"] {
    /* width: 200px;  */
    /* width: 170px;  */
    padding: 8px ;
    box-sizing: border-box;
	margin-bottom : 0;
    width: 130px;

}
.calculate-fields .fieldWithLabel input[type="number"] {
	width : 150px;
}



.calculate-fields #calculateButton,
.calculate-fields #useQuantityButton {
    background-color: #AADB1F;
    color: #00006c;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-align: center;
    display: block;
    /* width: 100%;  */
    /* margin-bottom: 10px; */
}

.calculate-fields #calculationResult,
.calculate-fields #projectSizeResult {
    font-weight: bold;
    display: block;
    /* margin-bottom: 10px; */
}


.inputFields p {
    margin: 0;
    
}


.inputFields > span {
    align-self: center;
    white-space: nowrap;
    width: 80px;
    cursor: pointer;
}

.fa-solid.fa-calculator {
    color: black;
    width: 25px;
    height: 25px;
    align-items: center;
}

.additional_info {
	font-size : 13px;
	margin-left : 3px;
	display : block;
	margin-top : 20px;
}

.bracketsPrice {
	font-size: 13px;
    margin-left: 10px;
}

/* Check box for adding 10% */
.checkBox10p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}
.checkBox10p *{
   cursor: pointer;
}
.checkBox10p input{
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 0;
    cursor: pointer;
}
.checkBox10p label{
    margin: 0;
}

.woocommerce-cart-form__cart-item.cart_item .product-quantity {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

@media (max-width: 700px) {
	.calculate-fields{
		width:100%;
	}
	.calculate-fields .projectFields{
		width:100%;
	}
	.inputFields {
		width : 100%;	
	}
	.calculatorBtn p{
		font-size : 12px;
	}
	.inputFields .fieldWithLabel label {
		font-size:16px;
		 
	}
	.calculate-fields .fieldWithLabel input[type="number"]{
		width : 111px;
	}
	.inputFields .fieldsWithLabels {
		padding : 7px;
	}
	.projectFields p{
		padding : 9px;
	}
	.projectFields input[type="number"] {
		width : 100px;
		
	}
	.projectFields label{
		font-size : 15px;
	}
	.projectFields {
		width : 275px;	
	}
	
}