#elementor-popup-modal-2893 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-2893{justify-content:center;align-items:center;pointer-events:all;background-color:rgba(0,0,0,.8);}#elementor-popup-modal-2893 .dialog-close-button{display:flex;}#elementor-popup-modal-2893 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for html, class: .elementor-element-d86589e */@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --background-color: #f6f6f6;
  --vigo-color: #950F8E;
  --blue : #1307fd;
  --input-number-color: #EBEBEB;
}
#myBtn:active {
            background-color: #fbbff8;
            transform: translateY(4px);
        }
.formBMI {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  margin-left: 0.2em;
  margin-right: 0.2em;
  margin-bottom: 0.9em;
}

.formBMI {
  height: 100%; width: 100%;
  margin: 0; padding: 0;
  background-colorw: var(--background-color);
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Roboto', sans-serif;
}
.fieldName{
  margin-top: 1.8em;
}
.outputName{
  margin-top: 1em;
  font-size: 1.2em;
}
.bmiCalculator {
  border: 5px solid white;
  border-radius: 10px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  padding: 3em;
  /* margin: 2em; */
  height: 520px;
  background-color: white;
  overflow: scroll;
}

.heading-1{
 margin-bottom: 1em;
}

.bmiCalculatorWeight, .bmiCalculatorHeight {
  margin-bottom: 2.2em;
  width: 100%;
}


input[type=range] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

input[type=range]:focus {
  outline: none;
}
input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 3.5px solid var(--vigo-color);
  height: 20px;
  width: 20px;
  border-radius: 40px;
  background: white;
  cursor: pointer;
  margin-top: 0px;
}

input[type=range]::-moz-range-thumb {
  border: 2.5px solid var(--vigo-color);
  height: 20px;
  width: 20px;
  border-radius: 40px;
  background: white;
  cursor: pointer;
}

input[type=range]::-ms-thumb {
  border: 2.5px solid var(--vigo-color);
  height: 20px;
  width: 20px;
  border-radius: 40px;
  background: white;
  cursor: pointer;
}

input[type=number] {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: var(--input-number-color);
  border-style: none;
  height: 30px;
  width: 80px;
  margin-left: 20px;
  margin-right: 10px;
  text-align: center;
  font-family: sora;
  font-size: 1.5em;
}

input[type=number]:focus {
  outline: none;
}

.gumb {
  text-align: center;
  font-size: 1em;
  color: white;
  width: 100%;
  margin-top: 0.5em;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 11px 32px;
  transition: .2s;
  border: none;
  background-color: var(--vigo-color);
  text-transform: uppercase;
  cursor: pointer;
}
.gumb:hover{
  opacity: .8;
}
#yourbmi{
  font-size: 1.2em;
  margin-left: 8px;
}

@media only screen and (max-width: 325px) {
  .bmiCalculator {
    height: 560px;
  }

  h1 {
    font-size: 1.5em;
  }
}

/* /////////////////////////Dropdown////////////////////////////////////// */
.select {
  --gray: #dc77d7;
  --darkgray: #950F8E;
}

select {
  /* Reset Select */
  appearance: none;
  outline: 10px red;
  border: 0;
  box-shadow: none;
  /* Personalize */
  flex: 1;
  padding: 0 1em;
  color: #fff;
  background-color: var(--darkgray);
  background-image: none;
  cursor: pointer;
}
/* Remove IE arrow */
select::-ms-expand {
  display: none;
}
/* Custom Select wrapper */
.select {
  position: relative;
  display:flex;
  width: 9em;
  height: 3em;
  border-radius: .25em;
  overflow: hidden;
}
/* Arrow */
.select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  background-color: #950F8E;
  transition: .25s all ease;
  pointer-events: none;
}
/* Transition */
.select:hover::after {
  color: #950F8E;
}
.weightError, .heightError, .errorMessage {
  color: red;
  font-style: italic;
}/* End custom CSS */