/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Firefox */
input[type=number] {
  -moz-appearance: textfield; }

.calculator {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2) !important;
  top: 0;
  left: 0;
  z-index: 999;
  justify-content: center;
  align-items: center; }
  .calculator.show {
    display: flex; }
  .calculator .list-item {
    display: inline-block;
    margin-right: 10px; }
  .calculator .list-enter-active, .calculator .list-leave-active {
    transition: all 0.5s ease-in-out !important; }
  .calculator .list-enter, .calculator .list-leave-to {
    opacity: 0;
    transform: translateY(30px); }
  .calculator .vs__dropdown-toggle {
    border: 1px solid #2B5C94;
    border-radius: 2px;
    height: 31px; }
  .calculator .vs__clear {
    height: 100%;
    padding: 0 !important; }
  .calculator .arrow-down.expanded {
    transform: rotate(180deg); }
  .calculator .calculator-content {
    background: #fff;
    margin-top: -150px;
    padding: 35px 70px;
    padding-bottom: 50px;
    width: 601px;
    min-height: 300px;
    border-radius: 4px;
    position: relative; }
    .calculator .calculator-content * {
      background: #fff; }
    .calculator .calculator-content .close {
      width: 50px;
      position: absolute;
      right: 0px;
      top: 0px; }
      .calculator .calculator-content .close img {
        width: 100%; }
    .calculator .calculator-content h3 {
      text-align: center;
      font-weight: bolder;
      font-size: 24px;
      margin-bottom: 30px; }
    .calculator .calculator-content .inputs {
      display: flex;
      justify-content: space-between;
      margin-bottom: 5px; }
      .calculator .calculator-content .inputs label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 48%;
        font-size: 13px; }
    .calculator .calculator-content .input {
      font-size: 14px;
      padding: 2px 5px;
      width: 100%;
      background: #FFFFFF;
      border: 1px solid #2B5C94;
      box-sizing: border-box;
      border-radius: 2px;
      height: 31px; }
    .calculator .calculator-content .checkboxes {
      margin-top: 20px; }
    .calculator .calculator-content a {
      font-size: 13px;
      font-family: LatoWebLight !important;
      text-align: center;
      margin-top: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px; }
      .calculator .calculator-content a:hover {
        cursor: pointer; }
      .calculator .calculator-content a span {
        margin-left: 5px; }
    .calculator .calculator-content p {
      margin-left: 0;
      margin-top: 22px; }
    .calculator .calculator-content h2 {
      font-size: 24px;
      font-weight: bolder; }
    .calculator .calculator-content button {
      font-weight: bolder;
      padding: 10px 20px; }

/*# sourceMappingURL=calculator.css.map */
