/* Variables */

:root {
  /*----------  Colors  ----------*/
  --clr-primary: #f38235;
  --clr-primary-light: #f5abc9;
  --clr-text-primary: #202d49;
  --clr-text-secondary: #ccc;
  --clr-bg-light: #fafafa;

  /*----------  Typography  ----------*/
  --font-family: "Poppins", sans-serif;
  --fs-lg: 1.5rem; /* 24px */
  --fs-md: 1rem;
  --fs-sm: 0.875rem;
  --fw-bold: 900;
  --fw-md: 400;
}

/*----------  Overrides  ----------*/

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input:focus,
select:focus,
button:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

body {
  font-family: var(--font-family);
  font-size: var(--fs-md);
  font-weight: var(--fw-md);
  color: var(--clr-text-primary);
  background-color: var(--clr-bg-light);
}

h1 {
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a.button--filled,
a.button--outlined {
  text-decoration: none;
  color: #fff;
}

/*----------  End of Overrides  ----------*/
.active_form {
  display: block !important;
}

.container-fluid {
  padding: 0 !important;
}

.container-bg {
  padding: 0;
  position: absolute;
  height: 100vh;
  width: 60%;
  background: linear-gradient(45deg, #e56c19, #f6a56d);
  border-radius: 0 0 100% 0;
}

.container {
  display: grid;
  grid-template-columns: 1fr;
  height: 100vh;
  padding: 1rem 1.5rem;
  position: relative;
}

.image__wrapper {
  margin-top: 2rem;
  justify-self: center;
  max-width: 450px;
}

.form__wrapper {
  justify-self: center;
  margin-top: -15rem;
  padding: 3rem;
  border-radius: 10px;
  background-color: white;
  height: max-content;
  box-shadow: 0 20px 50px -40px #000;
}

.form {
  display: none;
}

.form__title {
  text-align: center;
  margin-bottom: 2rem;
}

.form__subtitle {
  margin-bottom: 2rem;
  font-size: 18px;
  font-weight: 600;
}

.form__input {
  margin-bottom: 1rem;
}

.form__input > input {
  width: 100%;
  outline: none;
  border-color: var(--clr-text-secondary);
  border-style: solid;
  /* border-radius: 10px; */
  padding: 0.8rem;
  font-size: var(--fs-md);
  font-family: var(--font-family);
  transition: border-color 0.1s ease-in-out;
  text-transform: uppercase;
}

.form__input > input:focus {
  outline: none;
  border-color: #f6a56d;
  border-style: solid;
  transition: border-color 0.1s ease-in-out;
}

.form__input > select {
  text-transform: uppercase;
  outline: none;
  border-radius: 10px;
  padding: 0.8rem;
  min-width: 300px;
}

.button {
  display: block;
  width: 100%;
  border: none;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 50px;
  background-color: transparent;
  text-align: center;
  font-size: var(--fs-md);
  font-weight: var(--fw-md);
  font-family: var(--font-family);
  text-transform: uppercase;
  transition: box-shadow 0.3s ease, trasnform 0.2s ease-in;
}

button:hover {
  /* box-shadow: 0 20px 30px -11px var(--clr-primary-light); */
  transform: scale(1.01);
  cursor: pointer;
}

.button--filled {
  color: white;
  background-color: var(--clr-primary);
}

.button--filled:hover {
  background-color: #f1556a;
}

.button--outlined {
  /* border-color: #333; */
  background-color: #333;
  /* border-style: solid; */
  border: 0;
  color: #fff;
}

.button--outlined:hover {
  background-color: #444;
}

.logo-img {
  max-width: 330px;
  margin-bottom: 50px;
}

.federal-state,
.company-div {
  display: none;
}

.input_placeholder {
  font-weight: normal;
  margin-bottom: 0;
  padding-bottom: 5px;
}

.number_circle_1 {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  padding: 2px 12px;
  background: #f38235;
  border: 0;
  color: #fff;
  text-align: center;
  font-size: 18px;
}

.number_circle {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  padding: 2px 10px;
  background: #f38235;
  border: 0;
  color: #fff;
  text-align: center;
  font-size: 18px;
}

/* Custom select */
.select-div {
  position: relative;
  float: left;
}

/* .select-div:after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  padding: 8px;
  position: absolute;
  top: 29px;
  right: 0px;
  background: #333333;
  z-index: 1;
  text-align: center;
  width: 12%;
  height: 40px;
  pointer-events: none;
  box-sizing: border-box;
  border-radius: 0 5px 5px 0;
} */

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
  display: none;
}

.select-div select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-width: 300px;
  height: 50px;
  float: right;
  margin: 5px 0px;
  padding: 0px 24px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #ced4da;
  -ms-word-break: normal;
  word-break: normal;
  cursor: pointer;
}

/* Custom radio buttons */

*:after,
*:before {
  box-sizing: border-box;
}

.radio-label {
  display: flex;
  cursor: pointer;
  /* font-weight: 500; */
  position: relative;
  overflow: hidden;
  margin-bottom: 0.375em;
}

.radio-label.first-radio,
.radio-label.radio-margin-right {
  margin-right: 15px;
}

.radio-label input {
  position: absolute;
  left: -9999px;
}

.radio-label input:checked + span {
  background-color: #e56c1920;
}

.radio-label input:checked + span:before {
  box-shadow: inset 0 0 0 0.4375em #e56c19;
}

.radio-label span {
  display: flex;
  align-items: center;
  padding: 0.375em 0.75em 0.375em 0.375em;
  border-radius: 99em;
  transition: 0.25s ease;
}

.radio-label span:hover {
  background-color: #feebd7;
}

.radio-label span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 0.375em;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 0.125em #e56c19;
}

.radio-container {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 0 20px; */
  padding: 0;
}

/* Surface slider */

.know-how {
  border: 2px solid #e56c1920;
  border-radius: 20px;
  padding: 15px;
  margin-bottom: 20px;
}

.know-how-head {
  text-align: center;
}

#slider-input input {
  width: 100%;
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  color: #f38235;
  border: 0 !important;
  /* padding: 20px 0; */
}

#slider-surface {
  width: 100%;
  top: 17px;
}

/* jQuery UI surface slider */
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 0;
    background: #e56c19;
    font-weight: normal;
    color: #ffffff;
    border-radius: 100%;
    padding: 10px;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.5em;
    height: 1.5em;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -0.4em;
    margin-left: -0.6em;
}

.ui-widget.ui-widget-content {
    border: 0;
    background-color: #e56c1920;
}

.ui-corner-all {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

#results-table {
  background-color: #e56c1910;
  border-radius: 10px;
}

.results-column {
  color: #e56c19;
  font-weight: normal !important;
}

.surface-main {
  color: #e56c19;
  font-size: 18px;
}

.orange-text-important {
  color: #e56c19;
  font-size: 20px;
  text-align: center;
  padding-top: 15px;
}

.premium-report-content {
  margin-left: -15px;
}

.orange-star {
  color: #e56c19;
}

.city-note {
  font-size: 14px;
}

.capitalize {
  text-transform: capitalize;
}

.payment-data {
  color: #e56c19;
  font-weight: 500;
}

/* Bootstrap Select */

.select-flag-img {
  max-width: 24px;
  display: inline-block;
}

.select-country,
.filter-option-inner-inner {
  text-transform: uppercase;
  margin-left: 8px;
}

.bootstrap-select .dropdown-menu li a span.text {
  text-transform: uppercase;
}

.bootstrap-select>.dropdown-toggle {
  min-width: 260px;
  min-height: 40px;
  margin-top: 5px;
  padding: 5px;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: 0 !important;
  outline: 0 auto -webkit-focus-ring-color !important;
  outline-offset: 0;
}

/* MS-Dropdown */

.ms-dd-header:after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  background: #333333;
  z-index: 1;
  text-align: center;
  width: 9%;
  height: 45px;
  /* pointer-events: none; */
  box-sizing: border-box;
  /* border-radius: 0 5px 5px 0; */
}

.ms-dd .ms-dd-header {
  border: 0;
  /* border-radius: 5px; */
  cursor: pointer;
  min-height: 35px;
  position: relative;
  min-width: 330px;
  margin-left: -2px;
}

.ms-dd .ms-list-option {
  border-bottom: 0;
  height: 45px;
}

.ms-dd .ms-dd-option-image, .ms-dd .ms-dd-selected-img {
  margin-right: 8px;
  max-width: 24px;
  vertical-align: middle;
}

.ms-dd .ms-dd-header .option-selected {
  text-transform: uppercase;
  font-weight: normal;
  color: #333333;
}

.ms-dd .ms-options {
  min-width: 328px;
  border: 0;
  /* border-radius: 5px; */
  text-transform: uppercase;
  color: #333333;
  margin-top: 5px;
}

.ms-dd .ms-dd-option-content {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  padding-top: 2px;
}

.dropdown, .dropleft, .dropright, .dropup {
  position: absolute;
}

/* Scrollbar */
/* Width */
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f5f5f5; 
} 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888888; 
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #333333; 
}

@media screen and (min-width: 500px) {
  form {
    width: 330px;
  }  
}

@media screen and (min-width: 1024px) {
  .container {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    align-items: center;
  }
  .image__wrapper {
    max-width: 600px;
    padding: 3em;
  }

  .form__wrapper {
    margin-top: 0;
  }
}
