body {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  background-color: #141618;
  color: #b9b9b9;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 992px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
}

.hint {
  width: 200px;
  background-color: rgba(21, 21, 21, 0.9);
  color: #b9b9b9;
  font-size: 12px;
  padding: 8px;
  position: absolute;
  z-index: 100;
  display: none;
}

.hintico {
  display: inline-block;
}
.hintico:hover .hint, .hintico:focus .hint {
  display: block;
}

.error {
  background-color: #fd4d02;
  width: 200px;
  padding: 10px;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  opacity: 0;
}
.error.animate {
  animation: error 3s linear;
}

@keyframes error {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
input[type=text], select {
  height: 36px;
  border: 1px solid #525252;
  margin: 12px 0px;
  padding: 7px;
  background-color: #141618;
  color: #a5a5a5;
  outline: none;
}
@media screen and (max-width: 768px) {
  input[type=text], select {
    width: 130px;
  }
}
input[type=text]::placeholder, select::placeholder {
  color: #a5a5a5;
  text-indent: 0px;
  transition: all 1s linear;
}
input[type=text]:focus::placeholder, select:focus::placeholder {
  text-indent: 500px;
}

select {
  height: 36px;
  width: 210px;
  color: #686868;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  border-radius: 0;
  margin-right: 16px;
}
@media screen and (max-width: 992px) {
  select {
    width: 150px;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  select {
    width: 155px;
    margin-right: 0;
  }
}
@media screen and (max-width: 576px) {
  select {
    width: 155px;
    margin-right: 0;
  }
}

input[type=button] {
  width: 150px;
  margin: 5px 0;
  padding: 7px;
  background-color: #fd4d02;
  color: #fff;
  border: none;
  font-size: 18px;
  outline: none;
}
@media screen and (max-width: 992px) {
  input[type=button] {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  input[type=button] {
    width: 100%;
  }
}
input[type=button]:hover {
  background-color: #f28007;
}

.animateButton {
  animation: buttonError 0.5s linear;
}

@keyframes buttonError {
  0% {
    margin-left: 0px;
  }
  20% {
    margin-left: 20px;
  }
  40% {
    margin-left: -20px;
  }
  60% {
    margin-left: 10px;
  }
  80% {
    margin-left: -10px;
  }
  100% {
    margin-left: 0px;
  }
}
#rezult {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
@media screen and (max-width: 576px) {
  #rezult {
    flex-direction: column;
    text-align: center;
  }
}
#rezult p {
  line-height: 35px;
  margin: 0;
}
#rezult p span {
  font-size: 30px;
  color: #fd4d02;
}

#rezultTrip {
  width: 100%;
  text-align: center;
}
#rezultTrip span {
  font-size: 30px;
  color: #fd4d02;
}

/*.calc
 *  .container
 *      padding: 20px 0px
 *      border-top: 1px solid $mainColor
 *      border-bottom: 1px solid $mainColor*/
.calc .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}

.formRow {
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.formRow label {
  margin-bottom: 0;
}

.submitArea {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .submitArea {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .row {
    margin-right: 0;
    margin-left: 0;
  }
}

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