/*
 *
 * Mixin Component
 *
 */
/*
 *
 * Mixin Component
 *
 */
/*
 *
 * Extend Component
 *
 */
.dFlexStartCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexCenterCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexAroundCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexBetweenCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexEndCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexCenterStart {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.backgroundImage {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

/*
 *
 * Variables
 *
 */
.bg-grey-3 {
  background-color: #f7f7f7;
}

.textPrimary {
  color: #cb8e23;
}

.textSecondary {
  color: #1d4d4f;
}

.error {
  color: red;
}

.consultation {
  text-align: right;
}
.consultation__card {
  font-size: 22px;
  background-color: #f7f7f7;
  padding: 15px;
  border-radius: 20px;
  color: #1d4d4f;
  height: 100%;
  text-align: center;
}
.consultation__card .icon {
  font-size: 50px;
  display: block;
  color: #cb8e23;
}
.consultation__card .info {
  margin-block: 10px 5px;
}
.consultation__card span {
  display: block;
}
.consultation__card span.hint {
  color: #777;
  font-size: 16px;
}
.consultation__btn {
  background-color: #cb8e23;
  color: #fff;
  padding: 10px 20px;
}
.consultation__table tr td:first-child {
  padding-inline-end: 20px;
}
@media (max-width: 768px) {
  .consultation .col-lg-3 {
    margin-bottom: 10px;
  }
}

[dir=ltr] .consultation {
  text-align: left;
}

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