* {
  font-family: 'Roboto', sans-serif;
 }

#addInputButton{
  text-align: center;
  margin-top: 30px;
}


#addInputButton button{
  padding: 15px 20px;
  background: #2e2b2b;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 100px;
  cursor: pointer;
}

#addInputButton i{
  font-size: 17px;
  margin-right: 10px;
}

#addMesurementInput:hover i{
  color: green; 
}

#removeAllMesurementInput:hover i{
  color: red; 
}

#colorInput{
    padding: 10px;
  display: flex;
    align-items: center;
  justify-content: space-between;
}

#colorInput p{
  display: flex;
  align-items: center;
  color:#c1c1c1;
}

#removeInputBtn{
  padding: 8.5px;
  background: #2e2b2b;
  color: red;
  border: solid 1px #2e2b2b;
  border-radius: 0px 5px 5px 0px;
  cursor: pointer;
}

#removeInputBtn i{
 font-weight: bold;
 font-size: 17px;
}


input, select{
  flex-grow: 1;
  margin-left: 10px;
  border: solid 1px black;
  padding: 10px;
}

#colorInputWrap{
  flex-grow: 1;
  margin-left: 10px;
  border: solid 1px black;
  position: relative;
  cursor: pointer;
}

#colorInputDropdown{
    margin-top: 10px;
  position: absolute;
  background: white;
  width: 100%;
  box-shadow: 1px 5px 10px #c1c1c1;
}



#colorInputDropdown .colorItem{
  padding: 7px;
  z-index: 1;
  display:flex;
  align-items: center;
}

#colorInputDropdown div:hover{
  background: #c1c1c1;
  cursor: pointer;
}

.color-dot{
  width: 15px;
  height: 15px;
  border: solid 1px darkgrey;
  border-radius: 100px;
  margin-right: 5px;
}

label{
  width: 100px;
}

.inputsWrap{
  display: flex;
  align-items: center;
  margin-top: 15px;
}

#mesurementWrap{
  width: 400px;
  padding: 20px 40px 20px 0px;
}

#attributesWrap{
  width: 400px;
  height: fit-content;
  border: solid 2px #c1c1c1;
  padding: 40px;
}

#calculatorWrap{
  display: flex;
}

#contentWrap{
  margin: auto;
  width: fit-content;
  padding: 60px 0px;
}

h2, p {
    margin-block-start: 0;
    margin-block-end: 0;
}

#resultsDiv{
  margin-top: 120px;
  height: 400px;
  text-align: center;
}

#resultsDiv p{
  font-size: 25px;
  display: inline;
}

#imageWrap img{
  width:300px;
}

#imageWrap{
  text-align: center;
  padding-bottom: 80px;
}