/* style.css */
@media (min-width: 768px) {
  .custom-container {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media only screen and (max-width: 639px) {
    nav img {
        height: 90px;
    }
}

body{
  background-color: #ffffff;
}

body, h2, h3, label, input, select, button {
    font-family: 'Inter', sans-serif !important;
}
a.rheem-red{
  color: #e4002b;
}
nav img {
    height: 100px;
}
.form-select {
    line-height: 2.3;
}

input[type=email] {
     border-radius: 0; 
}


.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wrap .conta {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  margin-right: 20px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.wrap .conta input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.wrap .checkmark {
  position: absolute;
  border: 2px solid red !important;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border-radius: 50%;
  border-color: #e4002b !important;
}

/* On mouse-over, add a grey background color */
.wrap .conta:hover input ~ .checkmark {
  background-color: #f8f8f8;
}

/* When the radio button is checked, add a blue background */
.wrap .conta input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.wrap .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.wrap .conta input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.wrap .conta .checkmark:after {
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e4002b;
}