@charset "UTF-8";
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #131314;
  background-color: #e8e8e8;
  background-clip: padding-box;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #131314;
}
.form-control:focus {
  color: #131314;
  background-color: #e8e8e8;
  border-color: #f96873;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(216, 9, 25, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e8e8e8;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #131314;
  background-color: #e8e8e8;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #131314;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 1rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.5rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #e8e8e8 no-repeat center right 1.75rem/calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 1rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.5rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #e8e8e8 no-repeat center right 1.75rem/calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #131314;
  background-color: #e8e8e8;
  background-clip: padding-box;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #131314;
}
.form-control:focus {
  color: #131314;
  background-color: #e8e8e8;
  border-color: #f96873;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(216, 9, 25, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e8e8e8;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #131314;
  background-color: #e8e8e8;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #131314;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 1rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.5rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #e8e8e8 no-repeat center right 1.75rem/calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 1rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.5rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #e8e8e8 no-repeat center right 1.75rem/calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  opacity: 1;
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  opacity: 1;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  opacity: 1;
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  opacity: 1;
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  opacity: 1;
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  opacity: 1;
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  opacity: 1;
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  opacity: 1;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  opacity: 1;
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  opacity: 1;
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  opacity: 1;
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  opacity: 1;
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  opacity: 1;
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  opacity: 1;
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  opacity: 1;
  animation-name: bounceInUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDownSmall {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownSmall {
  animation-name: fadeInDownSmall;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    transform: translate3d(-20%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftSmall {
  animation-name: fadeInLeftSmall;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightSmall {
  animation-name: fadeInRightSmall;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  opacity: 1;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  opacity: 1;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  opacity: 1;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  opacity: 1;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  opacity: 1;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  opacity: 1;
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  opacity: 1;
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  opacity: 1;
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  opacity: 1;
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  opacity: 1;
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  opacity: 1;
  animation-name: rotateInUpRight;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
  opacity: 1;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
  opacity: 1;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
  opacity: 1;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
  opacity: 1;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
  opacity: 1;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
  opacity: 1;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
  opacity: 1;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
  opacity: 1;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
  opacity: 1;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  opacity: 1;
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  opacity: 1;
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  opacity: 1;
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  opacity: 1;
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  opacity: 1;
  animation-name: bounceOutUp;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
  opacity: 1;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
  opacity: 1;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
  opacity: 1;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
  opacity: 1;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
  opacity: 1;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
  opacity: 1;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
  opacity: 1;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
  opacity: 1;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
  opacity: 1;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
  opacity: 1;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  opacity: 1;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
  opacity: 1;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  opacity: 1;
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  opacity: 1;
  animation-name: rotateOutUpRight;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  opacity: 1;
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  opacity: 1;
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  opacity: 1;
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  opacity: 1;
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  opacity: 1;
  animation-name: zoomOutUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  opacity: 1;
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  opacity: 1;
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  opacity: 1;
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  opacity: 1;
  animation-name: slideOutUp;
}

.card {
  margin-bottom: 30px;
}

.accordion .card {
  margin-bottom: 0;
}
.accordion .card .card-header {
  padding: 0;
}
.accordion .card .card-header a {
  display: block;
  padding: 0.75rem 45px 0.75rem 1.25rem;
  position: relative;
  z-index: 5;
}

.card-header {
  position: relative;
}
.card-header .arrow-down,
.card-header .arrow-up {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 1;
}
.card-header .arrow-up {
  visibility: hidden;
}

.card-open .card-header .arrow-up {
  visibility: visible;
}
.card-open .card-header .arrow-down {
  visibility: hidden;
}

.card-form .card-body {
  padding-bottom: 0.25rem;
}

.card-header-split {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.cart-header-left {
  flex-grow: 1;
}

.cart-header-right {
  justify-self: flex-end;
  padding-left: 10px;
}

.inline-sections-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.inline-sections-wrapper.text-right {
  justify-content: flex-end;
}
.inline-sections-wrapper.text-right > .container {
  justify-content: flex-end;
}
.inline-sections-wrapper.text-center {
  justify-content: center;
}
.inline-sections-wrapper.text-center > .container {
  justify-content: center;
}
.inline-sections-wrapper > .container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.thumbnail {
  display: block;
  margin-bottom: 1.5;
  line-height: 1.5;
}
.thumbnail > a {
  display: block;
  padding: 0.25rem;
  background-color: #e8e8e8;
  border: 1px solid #dee2e6;
  border-radius: 0;
  transition: border 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .thumbnail > a {
    transition: none;
  }
}
.thumbnail > a:hover, .thumbnail > a:focus, .thumbnail > a.active {
  border-color: #D80919;
}
.thumbnail > img,
.thumbnail a > img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.thumbnail .caption {
  padding: 5px;
  color: #6c757d;
  font-size: 90%;
}

body.disable-transitions * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.overlay-visible {
  overflow: hidden;
}

label {
  vertical-align: top;
}

.navbar-toggler {
  text-align: center;
  background: transparent;
  margin: 6px 12px 6px 0;
  line-height: 30px;
  padding: 4px;
  background: #343a40;
  color: #fff;
  border: 0 none;
}
.navbar-toggler i {
  text-align: center;
  vertical-align: top;
  font-size: 24px;
  line-height: 30px;
  height: 30px;
  width: 30px;
}
.navbar-toggler:hover, .navbar-toggler:focus, .navbar-toggler:active {
  background: #D80919;
  color: #fff;
}

.navbar-header-content-left .navbar-toggler {
  margin: 6px 0 6px 12px;
}

.link-block {
  display: block;
}

.form-control {
  box-shadow: 0 0 transparent !important;
}

svg {
  vertical-align: top;
}

a, button {
  outline: none !important;
}
a:hover, a:focus, a:active, button:hover, button:focus, button:active {
  text-decoration: none;
}

.loading {
  position: relative;
}
.loading:after {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.15);
}
.loading:before {
  box-sizing: border-box;
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  border: 8px solid #D80919;
  border-left-color: transparent;
  border-radius: 50%;
  margin: -24px 0 0 -24px;
  animation: rotation 1s linear infinite;
  z-index: 101;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  box-shadow: 0 0 5px 7px #fff;
}

article .cart-add-form.loading:before,
.loading.small-loading:before {
  width: 30px;
  height: 30px;
  border: 6px solid #D80919;
  border-left-color: transparent;
  margin: -15px 0 0 -15px;
}

@media (min-width: 768px) {
  .form-group.no-label {
    padding-top: 5px;
  }
}

main section, .after-main section, .before-main section, .quick-view-modal section, .modal-dialog section {
  margin-bottom: 30px;
}
main .tab-content section:last-child, .after-main .tab-content section:last-child, .before-main .tab-content section:last-child, .quick-view-modal .tab-content section:last-child, .modal-dialog .tab-content section:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  main {
    min-height: 400px;
  }
}

.dropdown-cart-hover:hover > .dropdown-menu {
  display: block;
}

@media (max-width: 991.98px) {
  header .container {
    max-width: 100% !important;
  }
  header .navbar .navbar-header {
    background: #D80919;
  }
}
.navbar .nav-item,
.taxonomies-menu .nav-item {
  display: flex;
  flex-flow: wrap;
}
@media (max-width: 991.98px) {
  .navbar .nav-item .collapse, .navbar .nav-item .collapsing,
.taxonomies-menu .nav-item .collapse,
.taxonomies-menu .nav-item .collapsing {
    width: 100%;
  }
}
.navbar ul.nav .wrapper,
.taxonomies-menu ul.nav .wrapper {
  position: relative;
}
.navbar ul.nav a.handle,
.taxonomies-menu ul.nav a.handle {
  padding: 0 10px;
  align-items: center;
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .navbar ul.nav a.handle,
.taxonomies-menu ul.nav a.handle {
    display: none;
  }
}
.navbar ul.nav a.handle:after,
.taxonomies-menu ul.nav a.handle:after {
  font-family: "Font Awesome 5 Pro";
  content: "";
}
.navbar ul.nav .dropdown-slide > a:first-child,
.taxonomies-menu ul.nav .dropdown-slide > a:first-child {
  padding-right: 50px;
}
@media (min-width: 992px) {
  .navbar ul.nav li.dropdown-hover a.handle,
.navbar ul.nav .submenu-wrapper a.handle,
.taxonomies-menu ul.nav li.dropdown-hover a.handle,
.taxonomies-menu ul.nav .submenu-wrapper a.handle {
    display: none;
  }
}
.navbar ul.nav .submenu-wrapper.nav-collapse-open > a.handle:after,
.navbar ul.nav li.nav-collapse-open > a.handle:after,
.navbar ul.nav li.nav-collapse-open > .wrapper > a.handle:after,
.navbar ul.nav li.open > a.handle:after,
.navbar ul.nav .show > ul > li > .handle:after,
.taxonomies-menu ul.nav .submenu-wrapper.nav-collapse-open > a.handle:after,
.taxonomies-menu ul.nav li.nav-collapse-open > a.handle:after,
.taxonomies-menu ul.nav li.nav-collapse-open > .wrapper > a.handle:after,
.taxonomies-menu ul.nav li.open > a.handle:after,
.taxonomies-menu ul.nav .show > ul > li > .handle:after {
  content: "";
}

/*
.submenu-content {
	display: none;
}*/
.open > .submenu-content {
  display: block;
}

.nav-collapse {
  padding: 0 15px;
}

.navbar-vertical .nav-item {
  display: flex;
  width: 100%;
  flex-flow: wrap;
}
.navbar-vertical .collapse, .navbar-vertical .collapsing {
  width: 100%;
}
.navbar-vertical ul.nav a.handle {
  display: flex;
}

.dropdown-menu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown-menu > ul > li > a {
  display: block;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .navbar .dropdown.dropdown-right .dropdown-menu,
.taxonomies-menu .dropdown.dropdown-right .dropdown-menu {
    top: 0;
    left: 100%;
  }
  .navbar .dropdown.dropdown-left .dropdown-menu,
.taxonomies-menu .dropdown.dropdown-left .dropdown-menu {
    top: 0;
    left: auto;
    right: 100%;
  }
  .navbar .dropdown.dropdown-top .dropdown-menu,
.taxonomies-menu .dropdown.dropdown-top .dropdown-menu {
    top: auto;
    bottom: 100%;
    left: 0;
  }
  .navbar .dropdown.dropdown-down .dropdown-menu,
.taxonomies-menu .dropdown.dropdown-down .dropdown-menu {
    top: 0;
    left: 0;
  }
  .navbar .dropdown .dropdown .dropdown-menu,
.taxonomies-menu .dropdown .dropdown .dropdown-menu {
    left: 100%;
    top: 0;
  }
  .navbar .dropdown.dropdown-left .dropdown-menu,
.taxonomies-menu .dropdown.dropdown-left .dropdown-menu {
    top: 0;
    left: auto;
    right: 100%;
  }
  .navbar .dropdown.dropdown-hover:hover > a, .navbar .dropdown.dropdown-hover.open:hover > a,
.taxonomies-menu .dropdown.dropdown-hover:hover > a,
.taxonomies-menu .dropdown.dropdown-hover.open:hover > a {
    color: #D80919;
  }
  .navbar .dropdown.dropdown-hover:hover > .dropdown-menu, .navbar .dropdown.dropdown-hover.open:hover > .dropdown-menu,
.taxonomies-menu .dropdown.dropdown-hover:hover > .dropdown-menu,
.taxonomies-menu .dropdown.dropdown-hover.open:hover > .dropdown-menu {
    display: block !important;
    height: auto;
    margin-top: 0;
  }
}

.dropdown-taxonomy-menu > li {
  position: relative;
}
.dropdown-taxonomy-menu .submenu-taxonomy-panel {
  display: none;
  background: #fff;
}
@media (min-width: 992px) {
  .dropdown-taxonomy-menu .submenu-taxonomy-panel {
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    min-width: 400px;
    transition: opacity 300ms ease;
  }
}
@media (min-width: 992px) and (prefers-reduced-motion: reduce) {
  .dropdown-taxonomy-menu .submenu-taxonomy-panel {
    transition: none;
  }
}
.dropdown-taxonomy-menu .open > .submenu-taxonomy-panel {
  display: block;
}
@media (min-width: 992px) {
  .dropdown-taxonomy-menu li:hover .submenu-taxonomy-panel {
    z-index: 200;
    opacity: 1;
    display: block;
  }
}

.infinite-nav {
  text-align: center;
  margin: 30px;
}

.infinite-nav--text {
  display: none;
  font-size: 18px;
}

.infinite-nav-loading .infinite-nav--text {
  display: block;
}

main p:last-child {
  margin-bottom: 0;
}

.map-canvas {
  height: 400px;
}

.embed-responsive {
  margin-bottom: 1em;
}

.text-left .img-responsive, .text-left svg {
  margin-right: auto;
}
.text-center .img-responsive, .text-center svg {
  margin-left: auto;
  margin-right: auto;
}
.text-right .img-responsive, .text-right svg {
  margin-left: auto;
}

.calendar .inactive {
  color: #909096;
}
.calendar .table > tbody > tr > td {
  padding: 0;
  width: 14.28571%;
}
.calendar .table > tbody > tr > td span, .calendar .table > tbody > tr > td a {
  display: block;
  padding: 8px;
  text-align: center;
}
.calendar .table > tbody > tr > td a {
  background: rgba(0, 0, 0, 0.05);
}
.calendar .table > tbody > tr > td a:hover {
  background: rgba(0, 0, 0, 0.075);
}
.calendar .table > tbody > tr > td.today a, .calendar .table > tbody > tr > td.today span {
  background: #D80919;
  color: #fff;
}

.thumbnail-center {
  margin: 20px auto;
  text-align: center;
}
.thumbnail-center a {
  display: inline-block !important;
}
.thumbnail-center .img-responsive {
  width: auto;
}

.radio,
.checkbox {
  padding-left: 30px;
  line-height: 26px;
  margin: 0 0 10px;
  padding-top: 0 !important;
  position: relative;
}
.radio .help-block,
.checkbox .help-block {
  margin-bottom: 0;
  margin-top: 0;
}

.radio > input,
.checkbox > input {
  z-index: 1;
  opacity: 0;
  position: absolute;
}

.radio > label,
.checkbox > label {
  line-height: 26px;
  padding: 0;
  display: flex;
  margin: 0;
  cursor: pointer;
  min-height: 26px;
  align-items: center;
}
.radio > label .help-block,
.checkbox > label .help-block {
  margin-bottom: 0;
  line-height: 1.5;
}

.checkbox > label:after,
.checkbox > label:before,
.radio > label:after,
.radio > label:before {
  font-family: "Font Awesome 5 Pro";
  content: "";
  font-size: 21px;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 13px;
  top: 13px;
  transform: translate(-50%, -50%);
}

.radio > label:after,
.radio > label:before {
  border-radius: 50%;
}

.checkbox > label:after {
  content: "";
  font-weight: bold;
  font-size: 17px;
}

.radio > label:after {
  width: 12px;
  height: 12px;
}

.radio > label:before,
.checkbox > label:before {
  border: 1px solid #e8e8e8;
  background: #e8e8e8;
  z-index: 10;
}

.radio > label:after,
.checkbox > label:after {
  color: transparent;
  z-index: 11;
}

.radio > input:hover + label:before,
.checkbox > input:hover + label:before {
  border-color: #f96873;
}

.radio > input:focus + label:after,
.checkbox > input:focus + label:after {
  outline: none;
  outline-offset: 0;
}

.radio > input:checked + label:after {
  background: #f96873;
}

.checkbox > input:checked + label:after {
  color: #f96873;
}

.radio > input:checked:hover + label:before,
.checkbox > input:checked:hover + label:before {
  border-color: #f96873;
}

.radio > input:disabled + label,
.checkbox > input:disabled + label {
  background: rgba(0, 0, 0, 0.075) !important;
  cursor: not-allowed;
}

.radio > input:disabled + label:before,
.checkbox > input:disabled + label:before {
  background: #e8e8e8 !important;
}

.radio > input:disabled:checked + label:after {
  background: #b5b5b5;
}

.checkbox > input:disabled:checked + label:after {
  color: #b5b5b5;
}

.form-group {
  flex-wrap: wrap;
}
.form-group .radio:last-child,
.form-group .checkbox:last-child {
  margin-bottom: 0;
}
.form-group em.error {
  display: none;
}
.form-group.has-error em.error {
  display: block;
}
.form-group .invalid-feedback {
  flex-basis: 100%;
  flex-shrink: 0;
}

.form-group.has-error em.error {
  display: block !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 80%;
}

.navbar.sidebar-nav .navbar-brand {
  text-align: center;
  height: auto;
  display: block;
}
.navbar.sidebar-nav .navbar-brand img {
  margin: 0 auto;
}
.navbar.sidebar-nav .navbar-nav {
  margin: 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  .navbar.sidebar-nav .navbar-nav {
    flex-direction: row;
    margin-bottom: 15px;
  }
}
.navbar.sidebar-nav .navbar-header {
  float: none;
}
.navbar.sidebar-nav .panel-default {
  background: transparent;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  border: 0 none;
  padding: 0;
  margin: 0;
}
.navbar.sidebar-nav .panel-default .list-group {
  border: 0 none !important;
  padding: 0 0 0 30px;
}
.navbar.sidebar-nav .panel-default .panel-heading {
  padding: 0;
}
.navbar.sidebar-nav .panel-default .panel-title a {
  font-size: 20px;
  padding: 15px 15px;
  line-height: 1.3em;
  font-weight: normal;
}
.navbar.sidebar-nav a.nav-link {
  padding-left: 12px;
  padding-right: 12px;
}
.navbar.sidebar-nav a.nav-link.active {
  color: #fff;
  background: #D80919;
}

@media (min-width: 992px) {
  .navbar-justified {
    margin: 0 auto;
    display: table;
    table-layout: auto;
    float: none;
    width: 100%;
  }

  .navbar-justified > li {
    display: table-cell;
    float: none;
    text-align: center;
  }

  .navbar-center {
    margin: 0 auto;
    float: none;
    width: 100%;
    text-align: center;
  }
  .navbar-center > li {
    display: inline-block;
    float: none;
    text-align: center;
  }

  .navbar.sidebar-nav .navbar-collapse {
    padding: 0;
    max-height: none;
  }

  .navbar.sidebar-nav ul {
    float: none;
  }

  .navbar.sidebar-nav ul:not {
    display: block;
  }

  .navbar.sidebar-nav li {
    float: none;
    display: block;
  }

  .navbar.sidebar-nav li a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.section-inline {
  display: inline-block;
  vertical-align: top;
}
.section-inline .dropdown-menu form {
  display: block;
}

section.login .dropdown-menu {
  min-width: 260px;
}
section.login .dropdown-menu form {
  padding: 15px 15px 0;
}

.bootstrap-touchadjust-hue input.form-control {
  padding-left: 2px;
  padding-right: 2px;
  text-align: center;
}

.modal-footer {
  padding-bottom: 15px;
}
.modal-footer .btn {
  margin-bottom: 5px;
  vertical-align: top;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 5px;
}

.share-iframe {
  border: 0 none;
  width: 100%;
  min-height: 300px;
}

.slide-container:not(.slick-initialized) > div {
  display: none;
  outline: none !important;
  vertical-align: top;
}
.slide-container:not(.slick-initialized) > div:first-child {
  display: block;
}

.slide-entity {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-entity--block-link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  outline: none !important;
}

.slick-initialized.row {
  margin: 0;
}
.slick-initialized div.slide,
.slick-initialized div.slide-wrapper {
  display: block;
}

a.slide,
.image-bg {
  background-size: cover;
  background-position: center center;
}

.temp-xs-2 div.slide:nth-child(2) {
  display: block;
}

.temp-xs-3 div.slide:nth-child(2),
.temp-xs-3 div.slide:nth-child(3) {
  display: block;
}

.temp-xs-4 div.slide:nth-child(2),
.temp-xs-4 div.slide:nth-child(3),
.temp-xs-4 div.slide:nth-child(4) {
  display: block;
}

@media (min-width: 576px) {
  .temp-sm-2 div.slide:nth-child(2) {
    display: block;
  }

  .temp-sm-3 div.slide:nth-child(2),
.temp-sm-3 div.slide:nth-child(3) {
    display: block;
  }

  .temp-sm-4 div.slide:nth-child(2),
.temp-sm-4 div.slide:nth-child(3),
.temp-sm-4 div.slide:nth-child(4) {
    display: block;
  }
}
@media (min-width: 768px) {
  .temp-md-2 div.slide:nth-child(2) {
    display: block;
  }

  .temp-md-3 div.slide:nth-child(2),
.temp-md-3 div.slide:nth-child(3) {
    display: block;
  }

  .temp-md-4 div.slide:nth-child(2),
.temp-md-4 div.slide:nth-child(3),
.temp-md-4 div.slide:nth-child(4) {
    display: block;
  }
}
@media (min-width: 992px) {
  .temp-lg-2 div.slide:nth-child(2) {
    display: block;
  }

  .temp-lg-3 div.slide:nth-child(2),
.temp-lg-3 div.slide:nth-child(3) {
    display: block;
  }

  .temp-lg-4 div.slide:nth-child(2),
.temp-lg-4 div.slide:nth-child(3),
.temp-lg-4 div.slide:nth-child(4) {
    display: block;
  }
}
.parallax__container {
  clip: rect(0, auto, auto, 0);
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
}
.parallax__container .parallax {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  top: 0;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
}

a.btn-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 26px;
  text-align: center;
  padding: 5px;
  display: none;
  z-index: 100;
  border-radius: 50%;
}
a.btn-to-top:hover, a.btn-to-top:focus, a.btn-to-top:active {
  background: #D80919;
  color: #fff;
}
a.btn-to-top i {
  margin: 0;
  line-height: 30px;
  font-size: 28px;
}
a.btn-to-top span {
  display: none;
}

@media (min-width: 768px) {
  .thumbnail-pull-left {
    float: left;
    margin: 0 15px 5px 0;
  }

  .thumbnail-pull-right {
    float: right;
    margin: 0 0 5px 15px;
  }

  .thumbnail-width-1 {
    width: 8.33333333%;
  }

  .thumbnail-width-2 {
    width: 16.66666667%;
  }

  .thumbnail-width-3 {
    width: 25%;
  }

  .thumbnail-width-4 {
    width: 33.33333333%;
  }

  .thumbnail-width-5 {
    width: 41.66666667%;
  }

  .thumbnail-width-6 {
    width: 50%;
  }

  .thumbnail-width-7 {
    width: 58.33333333%;
  }

  .thumbnail-width-8 {
    width: 66.66666667%;
  }

  .thumbnail-width-9 {
    width: 45%;
  }

  .thumbnail-width-10 {
    width: 83.33333333%;
  }

  .thumbnail-width-11 {
    width: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .font-size-switcher {
    padding-top: 25px;
  }
}

.btn-font-size {
  padding: 6px 2px;
  line-height: 38px;
  vertical-align: top;
  font-size: 16px;
  font-family: "Play", sans-serif;
  color: #D80919;
  font-weight: normal;
}
.btn-font-size:hover, .btn-font-size:focus, .btn-font-size:active {
  color: #D80919 !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-font-size.medium {
  font-size: 20px;
}
.btn-font-size.big {
  font-size: 25px;
}

@media (min-width: 992px) {
  body {
    font-size: 1rem;
  }
  body .btn-font-size.medium,
body .btn-font-size.big {
    color: #fff;
  }
  body .btn-font-size.normal {
    color: #D80919;
  }

  body.medium {
    font-size: 1.2rem;
  }
  body.medium .btn-font-size.normal,
body.medium .btn-font-size.big {
    color: #fff;
  }
  body.medium .btn-font-size.medium {
    color: #D80919;
  }

  body.big {
    font-size: 1.4rem;
  }
  body.big .btn-font-size.normal,
body.big .btn-font-size.medium {
    color: #fff;
  }
  body.big .btn-font-size.big {
    color: #D80919;
  }
}
.cookie-warning {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 15px 15px 9px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 12px;
  z-index: 50000;
  transform: translate(0, 100%);
  opacity: 0;
  transition: transform 300ms ease;
}
.cookie-warning .btn {
  font-size: 12px;
  padding: 6px 8px;
  height: auto;
  margin: 0 6px 6px 0;
}
.cookie-warning .btn:last-child {
  margin-right: 0;
}
.cookie-warning p {
  margin-bottom: 6px;
}
.cookie-warning.enabled {
  opacity: 1;
}
.cookie-warning.show {
  transform: translate(0, 0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-warning {
    font-size: 14px;
  }
  .cookie-warning .btn {
    font-size: 14px;
    padding: 8px 10px;
  }
}
@media (min-width: 992px) {
  .cookie-warning {
    font-size: 16px;
  }
  .cookie-warning .btn {
    font-size: 16px;
    padding: 10px 12px;
  }
}
.cookie-warning .cookie-warning-buttons {
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .cookie-warning .cookie-warning-buttons {
    padding-bottom: 0;
    float: right;
    margin-left: 15px;
  }
}

@media (max-width: 991.98px) {
  form.slide-out {
    position: relative;
    padding: 15px 0;
  }
  form.slide-out .btn {
    position: absolute;
    right: 0;
    top: 15px;
  }
}
@media (min-width: 992px) {
  form.slide-out .form-control {
    width: 0;
    transition: all ease 300ms;
    padding: 0;
  }
  form.slide-out.open .form-control {
    width: 200px;
    padding: 0.5rem 0.75rem;
  }
}

.image-upload {
  margin-bottom: 30px;
}

.info-row {
  margin-bottom: 15px;
  position: relative;
  display: flex;
  flex-direction: row;
  line-height: 24px;
  align-items: center;
}
.info-row > p {
  margin: 0;
}
.info-row > i {
  line-height: 24px;
  width: 24px;
  text-align: center;
  margin-right: 5px;
}

.info-row-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.info-row-content > p {
  margin: 0;
}

.show-hidden-comments a {
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px;
}

.info-text-row {
  margin-bottom: 15px;
  display: flex;
}
@media (min-width: 768px) {
  .info-text-row {
    flex-direction: row;
  }
  .info-text-row .info-text-row-label {
    width: 30%;
    padding-right: 15px;
  }
  .info-text-row .info-text-row-value {
    width: 70%;
  }
}

section.title small, section.title strong, section.title em {
  display: block;
  color: #D80919;
}
section.title h1, section.title h2, section.title h3, section.title h4, section.title h5, section.title h6 {
  margin: 0;
}
section.title span {
  display: inline-block;
  vertical-align: top;
}

.row-eq-height {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-flow: row wrap;
  align-content: flex-end;
}
.row-eq-height > div {
  display: flex;
  flex-direction: column;
  float: none;
}

@media (min-width: 768px) {
  .affix-wrapper {
    position: relative !important;
  }
}
.affix {
  top: 0 !important;
}

@media (max-width: 991.98px) {
  .affix {
    position: relative !important;
  }
}
.article-icons {
  margin-bottom: -10px;
}
.article-icons .btn {
  margin: 0 10px 10px 0;
}

@media print {
  header, footer {
    display: none;
  }

  .article-icons {
    display: none;
  }

  a[href]:after {
    content: "" !important;
  }

  main > .container .col-xs-12 {
    width: 100% !important;
    float: none !important;
    border: 0 none !important;
  }

  .sidebar, .before-main, .after-main, .cookie-warning {
    display: none !important;
  }

  body.print-order {
    font-size: 12px;
  }
  body.print-order section.title {
    display: none !important;
  }
  body.print-order main > .container .col-sm-6 {
    width: 50% !important;
    float: left !important;
    border: 0 none !important;
  }
}
.range-input-group > .row {
  position: relative;
}
.range-input-group > .row:before {
  display: inline-block;
  background: #6c757d;
  width: 6px;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  margin: -1px 0 0 -3px;
}

.filter-form .form-group {
  position: relative;
}
.filter-form .form-group.has-value .clear-condition {
  display: inline-block;
}
.filter-form .checkbox label:after {
  content: "";
  font-size: 16px;
  font-weight: bold;
}
.filter-form .filter-clear-section {
  float: right;
  font-size: 16px;
  color: #dc3545;
  cursor: pointer;
}
.filter-form .filter-clear-section:hover, .filter-form .filter-clear-section:active, .filter-form .filter-clear-section:focus {
  color: #a71d2a;
}
.filter-form .form-buttons {
  display: none;
}
.filter-form .form-buttons a, .filter-form .form-buttons button {
  display: none;
}
.filter-form .form-buttons.show-submit, .filter-form .form-buttons.show-reset {
  display: block;
}
.filter-form .form-buttons.show-submit .btn-submit {
  display: inline-block;
}
.filter-form .form-buttons.show-reset .btn-reset {
  display: inline-block;
}

.no-results {
  margin: 30px 0;
}
.no-results p {
  margin: 0;
}

section.search form {
  margin: 20px 0;
}

body.under-construction {
  background: #ECF0F5;
  text-align: center;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
}
body.under-construction h1 {
  font-size: 34px;
  margin: 0 0 20px;
}
body.under-construction p:last-child {
  margin-bottom: 0;
}
body.under-construction .img-responsive {
  margin: 0 auto 20px;
}
body.under-construction .container {
  max-width: 600px;
  margin: 50px auto;
  padding: 50px 20px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #00c0ee;
}

.gmnoprint:not(.gm-bundled-control) {
  display: none;
}

.gm-bundled-control .gmnoprint {
  display: block;
}

.banner {
  margin-bottom: 30px;
  position: relative;
}
.banner > a {
  display: block;
}
.banner:last-child {
  margin-bottom: 0;
}
.banner.banner-image a {
  display: block;
}
.banner.banner-image .img-responsive {
  margin: 0 auto;
}
.banner a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.banner .banner--background {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-size: cover;
}
.banner .banner--content {
  position: relative;
  z-index: 2;
}

.banner-item-col--loading {
  display: none !important;
}

.banner-light {
  color: #343a40;
}

.banner-dark {
  color: #fff;
}

a[href^="http://maps.google.com/maps"] {
  display: none !important;
}

.panel-title a {
  outline: none !important;
}

.panel .row > div:last-child > .form-group:last-child,
.panel .panel-body > .form-group:last-child,
.panel .checkout-billing-details > .form-group:last-child,
.panel .checkout-shipping-details > .form-group:last-child {
  margin-bottom: 0;
}

.more {
  margin-top: 30px;
}

.paginated-text .text-page {
  display: none;
  margin-bottom: 15px;
}
.paginated-text .text-page.active {
  display: block;
}

.text-col {
  margin-bottom: 1em;
}
.text-col:last-child {
  margin-bottom: 0;
}

.fb-page {
  max-width: 100% !important;
  overflow: hidden;
}

.pagination-nav .pagination {
  justify-content: center;
}

.collapsible-list .collapsible-list-header {
  display: none;
}
.collapsible-list .collapsible-list-header .btn {
  text-align: left;
  position: relative;
  padding-left: 15px;
  padding-right: 50px;
}
.collapsible-list .collapsible-list-header .btn i {
  position: absolute;
  right: 15px;
  top: 50%;
  line-height: 24px;
  font-size: 18px;
  margin-top: -12px;
}
.collapsible-list .collapsible-list-header .btn .open-icon {
  display: none;
}

@media (max-width: 767.98px) {
  .collapsible-list .collapsible-list-header {
    display: block;
  }

  .collapsible-list.show-xs .collapsible-list-header {
    display: none;
  }
  .collapsible-list.show-xs .collapse {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .collapsible-list .collapsible-list-header {
    display: block;
  }

  .collapsible-list.show-sm .collapsible-list-header {
    display: none;
  }
  .collapsible-list.show-sm .collapse {
    display: block !important;
  }
}
@media (min-width: 576px) {
  .collapsible-list .collapsible-list-header {
    display: block;
  }

  .collapsible-list.show-md .collapsible-list-header {
    display: none;
  }
  .collapsible-list.show-md .collapse {
    display: block !important;
  }
}
.property-select-value .radio {
  padding: 0;
  position: relative;
}
.property-select-value .radio > input {
  position: absolute;
  left: 0;
  top: 0;
}
.property-select-value .radio > label {
  display: block;
  padding: 10px 10px 10px 40px;
  line-height: 20px;
}
.property-select-value .radio > label img {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}
.property-select-value .radio > label:after {
  left: 10px;
  top: 10px;
}
.property-select-value .radio > label:hover {
  background: #dee2e6;
}
.property-select-value .radio > input:checked + label {
  background: #dee2e6;
}

.property-select {
  position: relative;
}
.property-select .property-select-error {
  display: none;
}
.property-select.has-error .bootstrap-select .dropdown-toggle {
  border: 1px solid #dc3545;
}
.property-select.has-error .property-select-error {
  display: block;
  margin-bottom: 5px;
  width: 100%;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 0);
  position: absolute;
  padding: 3px 8px;
  color: #721c24;
  text-align: center;
  background-color: #f8d7da;
  border-radius: 0;
}
.property-select.has-error .property-select-error:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  -moz-transform: scale(0.9999);
  border-color: #dc3545 transparent transparent transparent;
  border-width: 0.4rem 0.4rem 0 0.4rem;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  display: block;
  color: #131314;
}
h1 .date, h2 .date, h3 .date, h4 .date, h5 .date, h6 .date {
  color: #D80919;
  font-size: 1rem;
  line-height: 1.5;
}

.delivery-radio, .delivery-selected,
.payment-radio, .payment-selected {
  margin-bottom: 0;
  padding: 0;
}
.delivery-radio .price, .delivery-selected .price,
.payment-radio .price, .payment-selected .price {
  text-align: right;
  font-weight: bold;
  margin: 0 0 0 15px;
}
.delivery-radio:last-child, .delivery-selected:last-child,
.payment-radio:last-child, .payment-selected:last-child {
  margin-bottom: 0;
}
.delivery-radio > label, .delivery-selected > label,
.payment-radio > label, .payment-selected > label {
  display: block;
  padding: 10px 10px 10px 45px;
}
.delivery-radio > label:hover, .delivery-selected > label:hover,
.payment-radio > label:hover, .payment-selected > label:hover {
  background: rgba(0, 0, 0, 0.03);
}
.delivery-radio > label:before, .delivery-radio > label:after, .delivery-selected > label:before, .delivery-selected > label:after,
.payment-radio > label:before,
.payment-radio > label:after, .payment-selected > label:before, .payment-selected > label:after {
  left: 23px;
  top: 23px;
}
.delivery-radio strong, .delivery-selected strong,
.payment-radio strong, .payment-selected strong {
  color: #131314;
}
.delivery-radio > input:checked + label, .delivery-selected > input:checked + label,
.payment-radio > input:checked + label, .payment-selected > input:checked + label {
  background: rgba(0, 0, 0, 0.03);
}

.payment-mode-head,
.delivery-mode-head {
  display: flex;
  align-items: flex-start;
}
.payment-mode-head .price,
.delivery-mode-head .price {
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

.delivery-selected,
.payment-selected {
  padding: 0;
}
.delivery-selected:last-child,
.payment-selected:last-child {
  margin-bottom: 0;
}

.checkout-price-label {
  text-align: right;
}

.checkout-price-value {
  text-align: right;
  color: #D80919;
}

.checkout-billing-details,
.checkout-shipping-details {
  opacity: 1;
  transition: opacity 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .checkout-billing-details,
.checkout-shipping-details {
    transition: none;
  }
}
.checkout-billing-details.disabled .form-group,
.checkout-shipping-details.disabled .form-group {
  opacity: 0.3;
  position: relative;
}
@media (max-width: 767.98px) {
  .checkout-billing-details.disabled .form-group,
.checkout-shipping-details.disabled .form-group {
    display: none;
  }
}
.checkout-billing-details.disabled .form-group:before,
.checkout-shipping-details.disabled .form-group:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 150;
}
.checkout-billing-details.disabled .form-group.no-disable,
.checkout-shipping-details.disabled .form-group.no-disable {
  display: block;
  opacity: 1;
}
.checkout-billing-details.disabled .form-group.no-disable:before,
.checkout-shipping-details.disabled .form-group.no-disable:before {
  display: none;
}

.shipping-address-full-width .checkout-billing-details.disabled,
.shipping-address-full-width .checkout-shipping-details.disabled,
.billing-address-full-width .checkout-billing-details.disabled,
.billing-address-full-width .checkout-shipping-details.disabled {
  display: none;
}

.table .btn {
  padding: 6px 10px;
}

.comment-form {
  margin-bottom: 30px;
}

.comment-list {
  margin-bottom: 30px;
}
.comment-list:last-child {
  margin-bottom: 0;
}
.comment-list .comment {
  border-bottom: 1px solid #dee2e6;
  padding: 15px;
  position: relative;
}
.comment-list .comment .btn-toolbar {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 110;
}
.comment-list .comment:last-child {
  border-bottom: 0 none;
}
.comment-list .comment-new {
  border-left: 5px solid #28a745;
}
.comment-list .comment-head {
  margin-bottom: 10px;
}
.comment-list .comment-head .timestamp {
  font-size: 12px;
  margin-right: 10px;
}
.comment-list .rating {
  margin-bottom: 10px;
}
.comment-list .comment-answers {
  padding: 15px 0 0 15px;
}
.comment-list .comment-answers .comment:last-child {
  border-bottom: 0 none;
}
.comment-list .comment-info {
  font-size: 12px;
  margin-top: 10px;
  font-style: italic;
}

.btn-toolbar {
  display: flex;
}
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn-group,
.btn-toolbar > .input-group + .input-group {
  margin-left: 5px;
}

.card-footer .accept-eula {
  margin-bottom: 15px;
}
.card-footer .accept-eula .checkbox {
  display: inline-block;
}
.card-footer .form-buttons {
  display: flex;
}
@media (min-width: 768px) {
  .card-footer .form-buttons .btn-right {
    margin-left: auto !important;
  }
}
@media (max-width: 767.98px) {
  .card-footer .form-buttons {
    flex-direction: column;
    align-items: center;
  }
  .card-footer .form-buttons .btn {
    margin: 0 0 15px;
  }
  .card-footer .form-buttons .btn:last-child {
    margin: 0 !important;
  }
}
.card-footer.text-center .btn-toolbar .btn-group {
  float: none !important;
}
@media (max-width: 767.98px) {
  .card-footer {
    text-align: center;
  }
  .card-footer .btn-group {
    float: none !important;
    margin: 0 auto 5px;
  }
}

@media print {
  header, footer {
    display: none;
  }

  .no-print {
    display: none;
  }

  .print-content {
    width: 100% !important;
  }
}
.discounts article h5, .discounts article .price,
.additional-charges article h5,
.additional-charges article .price {
  margin: 0;
  padding: 15px 0;
  line-height: 20px;
}

.additional-charges .price strong {
  color: #dc3545;
}
.additional-charges article.free .price strong {
  color: inherit;
}

.discounts .price strong {
  color: #28a745;
}

.taxonomy-description-before {
  margin-bottom: 30px;
}

.taxonomy-description-after {
  margin-top: 30px;
}

.entity-list-order .btn:hover .current-order {
  display: none;
}
.entity-list-order .btn:hover .reverse-order {
  display: inline-block !important;
}

div.clear {
  margin: 0 0 0.5rem;
}
div.clear:last-child {
  margin: 0;
}

.infinite-nav h3 {
  display: none;
}
.infinite-nav.infinite-nav-loading a {
  display: none;
}
.infinite-nav.infinite-nav-loading h3 {
  display: block;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.suggestions-search {
  position: relative;
}
.suggestions-search.focus {
  z-index: 900;
}
.suggestions-search .input-group-append {
  position: relative;
}
.suggestions-search .input-group-append .loader {
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 100;
}

.suggestions-dropdown {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  right: auto;
  min-width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  text-align: left;
  padding: 10px;
  z-index: 902;
}
.suggestions-dropdown.visible {
  display: block;
}
.suggestions-dropdown .show-all-results {
  display: block;
  padding: 12px 5px;
  text-align: center;
  text-decoration: none;
  margin-bottom: -10px;
}
.suggestions-dropdown > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767.98px) {
  .suggestions-dropdown > ul {
    height: 240px;
    overflow-y: scroll;
  }
}
.suggestions-dropdown > ul > li > a {
  display: block;
  border-bottom: 1px solid #dee2e6;
  padding: 5px;
  position: relative;
}
.suggestions-dropdown > ul > li > a:before, .suggestions-dropdown > ul > li > a:after {
  content: " ";
  display: table;
}
.suggestions-dropdown > ul > li > a:after {
  clear: both;
}
.suggestions-dropdown > ul > li.active > a {
  background: #D80919;
  color: #fff;
}
.suggestions-dropdown > ul > li.active > a h5 small {
  color: #fff;
}
.suggestions-dropdown > ul > li:last-child > a {
  border: 0 none;
}
.suggestions-dropdown > ul > li.no-results {
  text-align: center;
  padding: 15px;
  font-size: 16px;
  color: #dc3545;
  margin: 0;
}

.suggestions-dropdown--title {
  font-weight: bold;
  color: #343a40;
  margin-bottom: 8px;
  font-size: 18px;
  position: relative;
}
.suggestions-dropdown--title a {
  font-size: 14px;
  position: absolute;
  font-weight: normal;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

@media (min-width: 768px) {
  .suggestions-dropdown--results,
.suggestions-dropdown--featured {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.suggestions-dropdown--col {
  padding: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .suggestions-dropdown--col {
    width: 50%;
  }
  .suggestions-dropdown--col:first-child:last-child {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .suggestions-dropdown--col {
    width: 300px;
  }
  .suggestions-dropdown--col:first-child:last-child {
    width: 450px;
  }
}

.suggestions-item {
  border-top: 1px solid #e8e8e8;
}
.suggestions-item a {
  display: flex;
  color: #131314;
  min-height: 60px;
  align-items: center;
}
.suggestions-item a:hover, .suggestions-item a:focus, .suggestions-item a:active, .suggestions-item.active a {
  background: #e8e8e8;
}
.suggestions-item .suggestions-item--details {
  padding: 5px;
  flex-grow: 1;
  overflow: hidden;
}
.suggestions-item .suggestions-item--image {
  padding: 5px;
  flex-shrink: 0;
}
.suggestions-item .suggestions-item--title {
  display: block;
  font-weight: bold;
  color: #343a40;
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 18px;
}
.suggestions-item .suggestions-item--price {
  margin-top: 5px;
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #D80919;
}
.suggestions-item .suggestions-item--result-info {
  display: block;
  font-size: 14px;
}

.suggestions-dropdown--no-results {
  font-weight: bold;
  color: #343a40;
}

.navbar-header-content-left {
  width: 50%;
  order: 0;
  display: flex;
  justify-content: flex-start;
}

.navbar-header-content-right {
  width: 50%;
  order: 2;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .navbar-brand {
    margin: 0;
  }
}
.mobile-dropdown-wrapper .suggestion-search-form {
  padding: 0;
}
.mobile-dropdown-wrapper .suggestion-search-form .input-group {
  padding: 10px;
  margin: 0;
}
.mobile-dropdown-wrapper .suggestions-dropdown {
  width: auto;
  left: 0;
  right: 0;
  transform: translate(0, 0);
}

body.fixed-header-mobile .mobile-dropdown-wrapper .suggestions-dropdown {
  display: block;
  position: fixed;
  bottom: 0;
  top: 110px;
  overflow-x: hidden;
  overflow-y: auto;
}

ul.properties {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.properties li {
  margin-bottom: 5px;
}
ul.properties li:last-child {
  margin-bottom: 0;
}
ul.properties li .property, ul.properties li .value {
  display: block;
}
@media (min-width: 768px) {
  ul.properties li {
    display: flex;
  }
  ul.properties li .property {
    width: 180px;
    padding-right: 10px;
    flex-shrink: 0;
  }
  ul.properties li .value-link {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}
ul.properties li.separator {
  border-bottom: 1px solid #e8e8e8;
  margin: 10px 0;
  position: relative;
  display: block;
}
ul.properties span.property {
  font-weight: bold;
}

.module-title {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.module-title .pull-right {
  font-size: 14px;
  margin-left: auto;
}
.module-title .pull-right:before {
  content: "";
  display: block;
}
@media (min-width: 992px) {
  .module-title .pull-right:before {
    display: none;
  }
}
.module-title small {
  display: block;
  color: #131314;
  font-style: normal;
}
.module-title span {
  display: inline-block;
  vertical-align: top;
}

.bootstrap-select .dropdown-menu.inner {
  display: block;
}

.module-button.title {
  margin-left: auto;
}
.module-button.beforeContent, .module-button.afterContent {
  text-align: center;
}
.module-button.beforeContent {
  margin-bottom: 15px;
}
.module-button.afterContent {
  margin-top: 15px;
}

article.product-list-item {
  position: relative;
}
article.product-list-item form.loading {
  min-height: 0 !important;
}
article.product-list-item form.loading:after {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: 80%;
  cursor: wait;
  background-color: rgba(255, 255, 255, 0.85);
}

.bootstrap-dialog section {
  margin-bottom: 30px;
}
.bootstrap-dialog section:last-child {
  margin-bottom: 0;
}

.cart.widget .dropdown > .btn {
  position: relative;
}
.cart.widget .dropdown > .btn .badge {
  position: absolute;
  right: 1px;
  top: 1px;
  border-radius: 50%;
  background: #e8e8e8;
  font-weight: normal;
  font-size: 12px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  padding: 0;
  text-align: center;
}
.cart.widget .dropdown-menu form {
  height: 100vh;
  padding: 10px 10px 60px;
  width: 100vw;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  .cart.widget .dropdown-menu form {
    height: auto;
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .cart.widget .dropdown-menu form {
    width: 350px;
  }
}
.cart.widget .dropdown-menu .empty-cart {
  padding: 15px;
  margin: 0;
}
.cart.widget .dropdown-menu .cart-product-list {
  padding: 0;
}
.cart.widget .dropdown-menu .cart-product-list::after {
  display: block;
  clear: both;
  content: "";
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .cart.widget .dropdown-menu .cart-product-list .cart-item {
    float: left;
    width: 50%;
  }
  .cart.widget .dropdown-menu .cart-product-list .cart-item:nth-child(2n+1) {
    clear: both;
    border-right: 5px solid #202226;
  }
  .cart.widget .dropdown-menu .cart-product-list .cart-item:nth-child(2n) {
    border-left: 5px solid #202226;
  }
}
.cart.widget .dropdown-menu .btn-toolbar {
  margin: 0;
}
.cart.widget .dropdown-menu h5 {
  margin: 0 0 15px;
}
.cart.widget .dropdown-menu .net strong, .cart.widget .dropdown-menu .gross strong {
  font-size: 20px;
}
@media (min-width: 992px) {
  .cart.widget .dropdown-menu .cart-product-list-scroll {
    height: auto;
    max-height: 400px;
    overflow-x: hidden;
  }
}
.cart.widget .dropdown-menu .empty-cart {
  padding: 10px;
  margin: 0;
}
.cart.widget .dropdown-menu .empty-cart .alert, .cart.widget .dropdown-menu .empty-cart p {
  margin: 0;
}

section:empty {
  margin-bottom: 0 !important;
}

article.removed-cart-item {
  padding: 10px 0;
  position: relative;
  margin-bottom: 10px;
}

article.cart-item,
article.bought-product {
  padding: 10px 0;
  position: relative;
  margin-bottom: 10px;
}
article.cart-item > .row,
article.bought-product > .row {
  flex-grow: 1;
}
article.cart-item h4,
article.bought-product h4 {
  padding-right: 20px;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}
article.cart-item h4 > div,
article.bought-product h4 > div {
  font-weight: normal;
}
article.cart-item .alert,
article.bought-product .alert {
  margin-top: 5px;
  padding: 5px;
  font-size: 0.8rem;
}
article.cart-item .thumbnail,
article.bought-product .thumbnail {
  margin: 0;
}
article.cart-item.removed-cart-item,
article.bought-product.removed-cart-item {
  font-size: 12px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  article.cart-item.cart-item-with-remove .cart-item-details,
article.bought-product.cart-item-with-remove .cart-item-details {
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  article.cart-item.cart-item-with-remove,
article.bought-product.cart-item-with-remove {
    padding-right: 30px;
  }
}
article.cart-item .image,
article.bought-product .image {
  text-align: center;
}
article.cart-item .btn-remove,
article.bought-product .btn-remove {
  position: absolute;
  right: 0;
  top: 5px;
  padding: 0;
  line-height: 20px;
  width: 20px;
  background: transparent;
  color: #dc3545;
}
article.cart-item .btn-remove:hover,
article.bought-product .btn-remove:hover {
  color: #a71d2a;
}
article.cart-item .price,
article.bought-product .price {
  font-weight: bold;
  white-space: nowrap;
  color: #D80919;
}
article.cart-item .unit-price,
article.bought-product .unit-price {
  font-size: 0.8rem;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  article.cart-item > .row > div,
article.cart-item form > .row > div,
article.bought-product > .row > div,
article.bought-product form > .row > div {
    margin-bottom: 10px;
  }
}
article.cart-item img,
article.bought-product img {
  margin: 0 auto;
}
article.cart-item .product-info,
article.bought-product .product-info {
  margin-bottom: 5px;
}

.cart-item--top {
  display: flex;
  flex-direction: row;
  margin-bottom: 5px;
}

.cart-item--image {
  margin-right: 20px;
  flex-shrink: 0;
}

.cart-item--price-row {
  width: 100%;
}

section.cart.widget .cart-item--details,
.slide-in-cart .cart-item--details {
  padding-right: 15px;
}
section.cart.widget .cart-item--price-row,
.slide-in-cart .cart-item--price-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
section.cart.widget .cart-item--price-row .price,
.slide-in-cart .cart-item--price-row .price {
  flex-grow: 1;
  font-weight: bold;
  padding-right: 10px;
}
section.cart.widget .cart-item--price-row .price small,
.slide-in-cart .cart-item--price-row .price small {
  display: block;
  font-weight: normal;
}
section.cart.widget .cart-item--price-row .bootstrap-touchadjust-hue .btn-default,
.slide-in-cart .cart-item--price-row .bootstrap-touchadjust-hue .btn-default {
  padding-left: 6px;
  padding-right: 6px;
}
section.cart.widget article.cart-item,
.slide-in-cart article.cart-item {
  padding: 10px;
  background: #dee2e6;
}
section.cart.widget article.cart-item h4,
.slide-in-cart article.cart-item h4 {
  margin-bottom: 10px;
}
section.cart.widget .total-wrapper,
.slide-in-cart .total-wrapper {
  margin-bottom: 20px;
}
section.cart.widget .total-wrapper .summary-price-label,
.slide-in-cart .total-wrapper .summary-price-label {
  font-size: 12px;
}
section.cart.widget .total-wrapper .summary-price-amount,
.slide-in-cart .total-wrapper .summary-price-amount {
  font-weight: bold;
}

.slide-in-cart-footer {
  text-align: center;
  padding-bottom: 30px;
}
.slide-in-cart-footer .btn-group + .btn-group {
  margin-top: 15px;
}

@media (min-width: 768px) {
  section.cart.dynamic article.cart-item h4 {
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  section.cart.dynamic article.cart-item .price {
    padding-right: 30px;
  }
}

.pac-container {
  z-index: 21000;
}

.gm-style-iw h3:first-child {
  margin-top: 0;
  font-size: 1.2rem;
}
.gm-style-iw .btn {
  margin-right: 10px;
}

.slider-wrapper {
  position: relative;
}
.slider-wrapper .slick-slide {
  outline: none;
}
.slider-wrapper div.slide {
  background-position: center center;
  background-size: cover;
  position: relative;
}
.slider-wrapper div.slide .slide-link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.slider-wrapper div.slide.slide-fixed-height > div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
}
.slider-wrapper .slide-content {
  padding: 15px;
  color: #fff;
}

.slick-arrow {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  font-size: 24px;
  color: #D80919;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 10;
}
.slick-arrow:hover {
  background: #D80919;
  color: #fff;
}
.slick-arrow.slick-disabled {
  opacity: 0.4 !important;
  cursor: not-allowed;
}
.slick-arrow.slick-disabled:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #D80919;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
}
.slick-dots li {
  float: none;
  margin: 0 5px;
}
.slick-dots li span {
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  cursor: pointer;
}
.slick-dots li span:hover {
  background: rgba(0, 0, 0, 0.75);
}
.slick-dots li.slick-active span {
  background: #D80919;
}

.no-margin {
  margin: 0 !important;
}

.alert-dismissible .close {
  opacity: 0.5;
}

.alert-dismissible-single-row {
  position: relative;
}
.alert-dismissible-single-row .close {
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  position: absolute;
}

.delivery-mode-config iframe {
  border: 0 none;
  overflow: hidden;
}

address:last-child {
  margin-bottom: 0;
}

ul.tags {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
ul.tags li {
  margin: 5px 5px 0 0;
}
ul.tags li a {
  display: inline-block;
  background: #D80919;
  background-color: #343a40;
  color: #fff;
  padding: 5px;
}
ul.tags li a:hover {
  background-color: #D80919;
  color: #fff;
}

.color-sample {
  display: inline-flex;
  vertical-align: top;
  width: 24px;
  height: 24px;
  flex-direction: row;
}
.color-sample span {
  display: block;
  flex-grow: 1;
}

.input-group {
  flex-wrap: nowrap;
}

.quantity-input.disabled {
  position: relative;
}
.quantity-input.disabled:after {
  content: "";
  display: block;
  cursor: not-allowed;
  position: absolute;
  left: -15px;
  top: -15px;
  right: -15px;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 120;
}

.slide-thumbnail .thumbnail {
  margin: 0;
}
.slide-thumbnail a {
  display: block;
}

@media (max-width: 767.98px) {
  .text-entity .text-entity-description-col, .text-entity .text-entity-image-col {
    margin-bottom: 30px;
  }
  .text-entity .text-entity-description-col:last-child, .text-entity .text-entity-image-col:last-child {
    margin-bottom: 0;
  }
}
.payment-form {
  margin-top: 30px;
}

.accordion .panel-heading {
  padding: 0;
}
.accordion .panel-heading a {
  display: block;
  padding: 10px 50px 10px 15px;
  position: relative;
}
.accordion .panel-heading a .arrow-up, .accordion .panel-heading a .arrow-down {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 24px;
  display: inline-block;
}
.accordion .panel-heading a .arrow-down {
  opacity: 0;
}
.accordion .panel-heading a.collapsed .arrow-down {
  opacity: 1;
}
.accordion .panel-heading a.collapsed .arrow-up {
  opacity: 0;
}
.accordion .accordion-item {
  padding: 15px;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-icons ul li + li {
  margin-top: 10px;
}

.range-slider {
  padding: 0 15px;
}
.range-slider .readout {
  margin-top: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.grecaptcha-badge {
  background: #fff;
  z-index: 30000;
}

.navbar-sticky {
  z-index: 990;
}

.navbar-dropdown-toggle {
  background: transparent;
  border: 0 none;
  height: 50px;
  line-height: 40px;
  padding: 5px;
  border-radius: 0;
}
.navbar-dropdown-toggle .fa, .navbar-dropdown-toggle .fal, .navbar-dropdown-toggle .far, .navbar-dropdown-toggle .fab, .navbar-dropdown-toggle .fas {
  font-size: 22px;
  line-height: 40px;
  vertical-align: top;
}
@media (min-width: 992px) {
  .navbar-dropdown-toggle {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .mobile-dropdown {
    display: none;
  }
}
.mobile-dropdown-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #e8e8e8;
  display: none;
  z-index: 999;
}
.mobile-dropdown-wrapper.open {
  display: block;
}
.mobile-dropdown-wrapper .mobile-dropdown {
  display: block;
}
.mobile-dropdown-wrapper section {
  padding: 15px;
  display: block !important;
}
.mobile-dropdown-wrapper section.cart.widget,
.mobile-dropdown-wrapper section.login.widget {
  padding: 0;
}
.mobile-dropdown-wrapper section.section-inline {
  display: block;
}
.mobile-dropdown-wrapper section.section-inline form {
  display: block;
}
.mobile-dropdown-wrapper section > .btn-open {
  display: none;
}
.mobile-dropdown-wrapper section > .dropdown > button {
  display: none;
}
.mobile-dropdown-wrapper section > .dropdown .dropdown-menu {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 0;
  box-shadow: 0 0 transparent;
  border: 0 none;
  left: auto;
  right: auto;
  top: auto;
  float: none;
}
.mobile-dropdown-wrapper section > .dropdown .dropdown-menu > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
}
.mobile-dropdown-wrapper section > .login-dialog-content {
  display: block !important;
  position: relative;
  padding: 15px;
}
.mobile-dropdown-wrapper section > .login-dialog-content .btn-open {
  display: none;
}

@media (max-width: 991.98px) {
  header {
    position: relative;
    z-index: 100;
  }
}
header .navbar .navbar-brand, header .navbar .navbar-brand {
  height: auto;
}
header .navbar .navbar-toggle .title, header .navbar .navbar-toggle .title {
  display: none;
}
header .navbar .navbar-toggle .icon-bar, header .navbar .navbar-toggle .icon-bar {
  width: 22px;
  height: 4px;
}
header .navbar .navbar-toggle .icon-bar + .icon-bar, header .navbar .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 3px;
}

.mobile-dropdown-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 998;
  display: none;
}
.mobile-dropdown-backdrop.show {
  display: block;
}

@media (max-width: 991.98px) {
  .navbar-header-content {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .navbar-header-content .mobile-dropdowns-left {
    align-self: flex-start;
    margin-right: auto;
  }
}
.mobile-dropdowns-left,
.mobile-dropdowns-right {
  display: flex;
}

.navbar-dropdown-toggle-left {
  margin-left: 10px;
}

.navbar-dropdown-toggle-right,
.navbar-toggler {
  margin-right: 10px;
}

.fa-badge {
  position: relative;
}

.fa-badge[data-count]:after {
  font-family: "Play", sans-serif;
  position: absolute;
  content: attr(data-count);
  right: -2px;
  bottom: -2px;
  background: #dc3545;
  border-radius: 100px;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  line-height: 10px;
  padding: 2px;
  display: inline-block;
}

.navbar .navbar-text {
  margin: 0;
  padding: 10px 15px;
  font-weight: bold;
}

.navbar-form {
  margin: 0 -30px;
}
.navbar-form .form-group {
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-form.navbar-login-form .form-group .input-group {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .bootstrap-dialog-footer {
    text-align: center;
  }
  .bootstrap-dialog-footer .btn {
    display: block;
    margin-left: 0 !important;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  header.fixed-mobile .header-content-section {
    display: none;
  }
}
@media (min-width: 992px) {
  body.fixed-header header,
body.fixed-header-auto-hide header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1010;
  }
}
@media (max-width: 991.98px) {
  body.fixed-header-mobile,
body.fixed-header-mobile-auto-hide {
    padding-top: 50px;
    z-index: 999;
  }
  body.fixed-header-mobile.header-dropdown-open,
body.fixed-header-mobile-auto-hide.header-dropdown-open {
    overflow: hidden;
  }
  body.fixed-header-mobile.menu-open,
body.fixed-header-mobile-auto-hide.menu-open {
    overflow: hidden;
  }
  body.fixed-header-mobile.menu-open header,
body.fixed-header-mobile-auto-hide.menu-open header {
    max-height: 100%;
    overflow-y: auto;
  }
  body.fixed-header-mobile header,
body.fixed-header-mobile-auto-hide header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1010;
  }
  body.fixed-header-mobile header .navbar-header-content,
body.fixed-header-mobile-auto-hide header .navbar-header-content {
    height: 50px;
  }
  body.fixed-header-mobile header .navbar-collapse,
body.fixed-header-mobile-auto-hide header .navbar-collapse {
    max-height: calc(100vh - 50px);
    overflow-y: scroll;
  }
}

body.fixed-header-mobile-auto-hide header,
body.fixed-header-auto-hide header {
  transition: transform 200ms linear;
  transform: translate(0%, 0%);
}

@media (max-width: 991.98px) {
  body.fixed-header-mobile-auto-hide.header-unpinned header:not(.menu-open) {
    transform: translate(0%, -100%);
  }
}
@media (min-width: 992px) {
  body.fixed-header-auto-hide.header-unpinned header {
    transform: translate(0%, -100%);
  }
}
@media (max-width: 991.98px) {
  header .header-content-section,
header .navbar-widgets,
header .navbar-widgets.navbar-collapse,
header .navbar-widgets.navbar-collapse.collapsing,
header .navbar-widgets.navbar-collapse.in {
    display: none !important;
  }
}
.navbar-header {
  position: relative;
}

@media (max-width: 767.98px) {
  .ellipsis {
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.5em;
  }

  .ellipsis-1-xs {
    height: 1.5em;
  }

  .ellipsis-2-xs {
    height: 3em;
  }

  .ellipsis-3-xs {
    height: 4.5em;
  }

  .ellipsis-4-xs {
    height: 6em;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .ellipsis {
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.5em;
  }

  .ellipsis-1-sm {
    height: 1.5em;
  }

  .ellipsis-2-sm {
    height: 3em;
  }

  .ellipsis-3-sm {
    height: 4.5em;
  }

  .ellipsis-4-sm {
    height: 6em;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .ellipsis {
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.5em;
  }

  .ellipsis-1-md {
    height: 1.5em;
  }

  .ellipsis-2-md {
    height: 3em;
  }

  .ellipsis-3-md {
    height: 4.5em;
  }

  .ellipsis-4-md {
    height: 6em;
  }
}
@media (min-width: 1200px) {
  .ellipsis {
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.5em;
  }

  .ellipsis-1-lg {
    height: 1.5em;
  }

  .ellipsis-2-lg {
    height: 3em;
  }

  .ellipsis-3-lg {
    height: 4.5em;
  }

  .ellipsis-4-lg {
    height: 6em;
  }
}
.navbar-brand {
  z-index: 100;
  display: block;
}

.sticky-wrapper {
  z-index: 800;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
.product-popup {
  min-height: 300px;
}

.modal-full-width .modal-dialog {
  width: 100%;
}
.modal-full-width .modal-header {
  border-bottom: 0 none;
}

.image-tooltip-wrapper .image-tooltip {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 1011;
  width: 100px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.image-tooltip-wrapper .image-tooltip img {
  margin: 0 auto;
}
.image-tooltip-wrapper:hover .image-tooltip {
  display: block;
}

.quick-view-modal {
  bottom: 0;
  display: none;
  left: 0;
  outline: 0 none;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1031;
}
.quick-view-modal button.close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1032;
}

.input-group .input-group-btn .btn,
.input-group .input-group-addon {
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .input-group .input-group-btn .btn,
.input-group .input-group-addon {
    transition: none;
  }
}

.input-group.focus .input-group-btn .btn,
.input-group.focus .input-group-addon {
  outline: 0;
  border-color: #f96873;
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .input-group.focus .input-group-btn .btn,
.input-group.focus .input-group-addon {
    transition: none;
  }
}
.input-group.focus .input-group-addon {
  background: #f96873;
  color: #fff;
}

.quick-view-modal-dialog {
  position: relative;
  z-index: 1031;
  padding: 30px 0;
}

.quick-view-modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  outline: 0;
  padding: 30px;
}
@media (max-width: 767.98px) {
  .quick-view-modal-content {
    margin: 0 15px;
  }
}
.quick-view-modal-content.loading:after {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.btn-property-image {
  padding: 0 !important;
  opacity: 1;
}
.btn-property-image:hover, .btn-property-image:focus, .btn-property-image:active {
  opacity: 0.5;
}

.property-buttons .btn small,
.taxonomy-buttons .btn small {
  margin-left: 5px;
}

.property-buttons-selected .btn,
.taxonomy-buttons-selected .btn {
  opacity: 0.25;
}
.property-buttons-selected .btn.active,
.taxonomy-buttons-selected .btn.active {
  opacity: 1;
  box-shadow: 0 0 transparent !important;
}

article.entity {
  margin-bottom: 30px;
}
article.entity a:hover h2, article.entity a:focus h2, article.entity a:active h2 {
  color: #8f0611;
}
article.entity h2 {
  margin: 0;
  font-size: 1.2rem;
}

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

.contact-form-popup .g-recaptcha {
  display: none;
}

.img-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.img-bg-link {
  display: block;
  position: relative;
}
.img-bg-link .img-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.img-bg-link .img-overlay {
  position: relative;
  z-index: 10;
}

.opening-popup p:last-child, .opening-popup .thumbnail:last-child {
  margin-bottom: 0;
}

.opening-popup-no-title .modal-header {
  height: 0;
  background: transparent !important;
  border: 0 none !important;
  min-height: 0;
  position: relative;
  padding: 0;
}
.opening-popup-no-title .modal-header .bootstrap-dialog-title {
  display: none;
}
.opening-popup-no-title .modal-header .bootstrap-dialog-close-button {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1100;
}
.opening-popup-no-title .modal-header .bootstrap-dialog-close-button button {
  background: #fff;
  border-radius: 100%;
  color: #D80919;
  opacity: 1;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}

.alert {
  display: block;
}

.text-smaller {
  font-size: 80%;
}

.text-small {
  font-size: 90%;
}

.text-large {
  font-size: 125%;
}

.text-larger {
  font-size: 150%;
}

.main-alert-bar {
  overflow: hidden;
  transition: all 300ms ease-in-out;
  max-height: 100px;
}
.main-alert-bar .alert {
  border-radius: 0 !important;
  margin: 0;
}
.main-alert-bar.hide {
  max-height: 0;
}

.content-row > div {
  margin-bottom: 30px;
}

a p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .menu-category-dropdown-button {
    position: relative;
  }
  .menu-category-dropdown-button:before {
    content: "";
    font-size: 24px;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    display: block;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
  }
}

.dropdown-taxonomy-menu > li.has-submenu-taxonomy-panel > a {
  position: relative;
}
.dropdown-taxonomy-menu > li.has-submenu-taxonomy-panel > a:after {
  content: "";
  font-size: 24px;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  display: block;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
.dropdown-taxonomy-menu > li .submenu-taxonomy-panel {
  padding: 15px;
}
.dropdown-taxonomy-menu > li .submenu-taxonomy-panel li > a {
  white-space: nowrap;
  color: #131314;
}
.dropdown-taxonomy-menu > li .submenu-taxonomy-panel li > a:hover, .dropdown-taxonomy-menu > li .submenu-taxonomy-panel li > a:focus, .dropdown-taxonomy-menu > li .submenu-taxonomy-panel li > a:active {
  color: #D80919;
}

main section.notifications, .after-main section.notifications, .before-main section.notifications {
  margin: 0;
}

li.collapsible-submenu,
li.hover-submenu {
  position: relative;
}
li.collapsible-submenu > a,
li.hover-submenu > a {
  padding-right: 60px;
  position: relative;
}
li.collapsible-submenu.active > a,
li.collapsible-submenu li.active > a,
li.hover-submenu.active > a,
li.hover-submenu li.active > a {
  color: #D80919;
}
li.collapsible-submenu .collapse-handle,
li.hover-submenu .collapse-handle {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  text-align: center;
  line-height: 50px;
  font-family: "Font Awesome 5 Pro";
  font-size: 26px;
  cursor: pointer;
  z-index: 100;
  color: #131314;
}
li.collapsible-submenu .collapse-handle:hover, li.collapsible-submenu .collapse-handle:focus, li.collapsible-submenu .collapse-handle:active,
li.hover-submenu .collapse-handle:hover,
li.hover-submenu .collapse-handle:focus,
li.hover-submenu .collapse-handle:active {
  color: #D80919;
}
li.collapsible-submenu .collapse-handle:before,
li.hover-submenu .collapse-handle:before {
  content: "";
}
li.collapsible-submenu > ul,
li.hover-submenu > ul {
  display: none;
}

li.collapsible-submenu .collapse-handle {
  z-index: 100;
}
li.collapsible-submenu.open .collapse-handle:before {
  content: "";
}
li.collapsible-submenu.open > ul {
  display: block;
}

li.hover-submenu .collapse-handle:before {
  content: "";
}
li.hover-submenu ul {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  min-width: 250px;
  z-index: 1000;
}
li.hover-submenu ul li {
  white-space: nowrap;
}
li.hover-submenu:hover ul {
  display: block;
}

@media screen and (max-width: 340px) {
  .g-recaptcha > div {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin: 0;
  }
}
.row-no-padding {
  margin: 0;
}
.row-no-padding > div {
  padding: 0;
}

.entity-left-thumbnail > div, .entity-left-thumbnail > a, .entity-right-thumbnail > div, .entity-right-thumbnail > a {
  display: block;
  position: relative;
}
.entity-left-thumbnail .details, .entity-right-thumbnail .details {
  padding: 15px;
}
.entity-left-thumbnail .image, .entity-right-thumbnail .image {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-position: center center;
  background-size: cover;
}

.entity-left-thumbnail > div, .entity-left-thumbnail > a {
  padding-left: 50%;
}
.entity-left-thumbnail .image {
  left: 0;
}

.entity-right-thumbnail > div, .entity-right-thumbnail > a {
  padding-right: 50%;
}
.entity-right-thumbnail .image {
  left: auto;
}

.date {
  margin-bottom: 10px;
}

.filter-group-inline-list {
  display: flex;
  align-items: center;
}
.filter-group-inline-list .filter-group {
  margin: 10px 15px 10px 0;
}
.filter-group-inline-list .checkbox:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .filter-group-inline-list {
    flex-direction: column;
    align-items: center;
  }
  .filter-group-inline-list .range-slider {
    min-width: 260px;
  }
}
.filter-selected-conditions {
  display: flex;
  margin-top: 20px;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.filter-selected-conditions > span {
  display: inline-flex;
  margin: 0 10px 10px 0;
}

.filter-selected-conditions--title {
  padding: 5px 0;
}

.filter-selected-condition--label {
  padding: 5px 10px;
  background: #e8e8e8;
}

.filter-selected-condition--remove {
  padding: 5px 10px;
  background: #cbcbcb;
  cursor: pointer;
}

.filter-group-head {
  display: flex;
  align-items: center;
}
.filter-group-head h5 {
  margin: 0;
  padding: 10px;
  flex-grow: 1;
}
.filter-group-head .filter-group-clear-btn {
  margin-left: auto;
  display: block;
  padding: 0 10px;
  position: absolute;
  font-size: 18px;
  color: #dc3545;
}

.filter-group {
  margin-bottom: 30px;
}

.smart-filter-group-controls {
  text-align: center;
  padding: 10px;
  margin-bottom: -10px;
}
.smart-filter-group-controls a {
  text-decoration: none !important;
}

.clear {
  clear: both;
  display: block;
}

.favorites-list-item {
  position: relative;
}
.favorites-list-item .favorites-list-item-remove {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 40px;
  text-align: center;
}

.delivery-mode-config--subform {
  padding: 15px;
}

.delivery-mode-glspont #psitems-canvas {
  overflow: auto;
  height: 250px;
}
.delivery-mode-glspont #left-canvas {
  font-size: 12px;
  overflow: hidden;
}
.delivery-mode-glspont #map-canvas {
  width: 100%;
  height: 350px;
}
.delivery-mode-glspont #searchinput {
  opacity: 1;
}
.delivery-mode-glspont .psOver {
  background: rgba(0, 0, 0, 0.03);
}
.delivery-mode-glspont .psSelected {
  color: #D80919;
}
.delivery-mode-glspont hr {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.delivery-mode-postapont #postaPontApi-content {
  background-color: #fff;
}
.delivery-mode-postapont #postaPontApi-inner form div#pp-select-container {
  padding: 5px;
  height: auto;
  width: calc(100% - 130px);
}

.use-credits-config .input-group,
.use-coupon-config .input-group {
  margin-bottom: 10px;
}
.use-credits-config .input-group:last-child,
.use-coupon-config .input-group:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .use-credits-config,
.use-coupon-config {
    margin-bottom: 30px;
  }

  :last-child > .use-credits-config,
:last-child > .use-coupon-config {
    margin-bottom: 0;
  }
}
.explanation {
  color: #D80919;
}

.explanation-wrapper {
  display: inline;
  position: relative;
}
.explanation-wrapper .explained-phrase {
  color: #D80919;
}
.explanation-wrapper .explanation {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  min-width: 240px;
  padding: 15px;
  background: #000;
  color: #fff;
  max-width: 200px;
  border-radius: 0;
  z-index: 500;
}
.explanation-wrapper:hover .explanation {
  display: block;
}

.rate-bought-products .bought-product {
  padding: 30px 0 20px;
  border-bottom: 1px solid #dee2e6;
}
body > .privacy-settings-form {
  display: none;
}

.privacy-settings-form .tab-pane {
  padding: 0;
}

.privacy-settings-box {
  margin-top: 30px;
}

.panel-body .alert:last-child {
  margin-bottom: 0;
}

.social-share-iframe {
  height: 300px;
  border: 0 none;
  width: 100%;
}

.cart-add-form + .cart-add-form {
  margin-top: 30px;
}

.share-order-on-facebook {
  margin-top: 30px;
}
.share-order-on-facebook .description {
  margin-bottom: 30px;
}
.share-order-on-facebook .share-order-on-facebook-box {
  text-align: center;
  margin-bottom: 30px;
}
.share-order-on-facebook:last-child {
  margin-bottom: 0;
}

.form-horizontal .payment-modes .help-block,
.form-horizontal .delivery-modes .help-block {
  padding-left: 15px;
}

@media (max-width: 767.98px) {
  .optional-free-product .image-col {
    margin-bottom: 15px;
  }
}

.offered-product-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 15000;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  clip-path: inset(50% 50% 50% 50%);
  transition: 300ms ease-in;
  display: none;
  overflow-y: auto;
}
.offered-product-overlay.visible {
  display: block;
}
.offered-product-overlay.visible.in {
  clip-path: inset(0 0 0 0);
}

.offered-product-modal {
  max-width: 500px;
  margin: 50px auto 50px;
  padding: 30px;
  background: #fff;
}
@media (min-width: 992px) {
  .offered-product-modal {
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.offered-product-modal .image-col a {
  display: block;
}
.offered-product-modal strong {
  display: block;
}

.checkout-form.loading:after {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 16000;
}
.checkout-form.loading:before {
  position: fixed;
  z-index: 16001;
}

.form-group > label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}
.form-group > label .fa-sup {
  align-self: flex-start;
  font-size: 60%;
  font-weight: bold;
  margin-left: 4px;
  color: #D80919;
  cursor: help;
}
.form-group > label .form-info-tooltip {
  margin-left: auto;
}

.option-with-image {
  margin: -3px -20px;
  padding: 5px;
}
.option-with-image .option-image {
  margin-bottom: 5px;
}
.option-with-image .option-image img {
  max-width: 100%;
  margin: 0 auto;
}
.option-with-image .option-label {
  text-align: center;
}
.option-with-image.option-with-left-image::after {
  display: block;
  clear: both;
  content: "";
}
.option-with-image.option-with-left-image .option-image {
  float: left;
}
.option-with-image.option-with-left-image .option-label {
  text-align: left;
  float: left;
  padding: 5px 5px 5px 10px;
}

.product-list-item {
  position: relative;
}

.product-badges {
  position: absolute;
}
.product-badges::after {
  display: block;
  clear: both;
  content: "";
}
.product-badges.product-badges-lt {
  top: 0;
  left: 0;
}
.product-badges.product-badges-mt {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.product-badges.product-badges-rt {
  top: 0;
  right: 0;
}
.product-badges.product-badges-lm {
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.product-badges.product-badges-mm {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-badges.product-badges-rm {
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.product-badges.product-badges-lb {
  bottom: 0;
  left: 0;
}
.product-badges.product-badges-mb {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.product-badges.product-badges-rb {
  bottom: 0;
  right: 0;
}

.product-badge {
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .product-badge {
    padding: 3px 6px;
    font-size: 14px;
  }
}

.product-badges-left .product-badge {
  float: left;
  clear: left;
}

.product-badges-right .product-badge {
  float: right;
  clear: right;
}

.product-badge-discount {
  background: #D80919;
}

.product-badge-new {
  background: #17a2b8;
}

.product-badge-low-stock {
  background: #dc3545;
}

.product-badge-discontinued {
  background: #adb5bd;
}

.product-badge-custom {
  background: #ffc107;
}

.entity-list-buttons .btn {
  margin-left: 5px;
}
.entity-list-buttons .btn:first-child {
  margin-left: 0;
}

.products-grid-table--header {
  display: none;
}

.products-grid-table--row {
  background: #dee2e6;
  margin-bottom: 10px;
}
.products-grid-table--row:hover {
  background: #e8e8e8;
}

.products-grid-table--col-quantity form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.products-grid-table--col-quantity form .input-wrapper {
  width: 80px;
  margin-right: 15px;
}

.products-grid-table--row-content {
  padding: 10px 15px;
  position: relative;
}
.products-grid-table--row-content .products-grid-table--col-quantity {
  position: relative;
  z-index: 11;
}

.products-grid-table--row-link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  overflow: hidden;
  text-indent: -50000px;
}

@media (min-width: 768px) {
  .products-grid-table--row,
.products-grid-table--header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .products-grid-table--row,
.products-grid-table--header {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .products-grid-table--header {
    font-weight: bold;
    line-height: 20px;
    padding: 15px;
  }
}
@media (min-width: 768px) {
  .products-grid-table--row-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .products-grid-table--col-name {
    max-height: 50px;
    line-height: 25px;
    overflow: hidden;
    margin-right: auto;
    padding-right: 15px;
    width: calc(100% - 120px - 170px);
  }
}
@media (min-width: 768px) {
  .products-grid-table--row-with-both-price .products-grid-table--col-name {
    width: calc(100% - 120px - 120px - 170px);
  }
}
@media (min-width: 768px) {
  .products-grid-table--col-price {
    width: 120px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) {
  .products-grid-table--col-quantity {
    width: 170px;
  }
}
@media (max-width: 767.98px) {
  .slide-in-sidebar-left.slide-in-sidebar-xs {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 900;
    overflow-x: hidden;
    overflow-y: auto;
    width: 400px;
    transform: translate(-100%, 0);
    transition: transform 300ms ease;
    margin: 0 !important;
  }

  .slide-in-sidebar-right.slide-in-sidebar-xs {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    overflow-x: hidden;
    overflow-y: auto;
    width: 400px;
    transform: translate(100%, 0);
    transition: transform 300ms ease-in-out;
    margin: 0 !important;
  }

  body.fixed-header-mobile .slide-in-sidebar-left.slide-in-sidebar-xs,
body.fixed-header-mobile .slide-in-sidebar-right.slide-in-sidebar-xs,
body.fixed-header-mobile .slide-in-sidebar-left.slide-in-sidebar-sm,
body.fixed-header-mobile .slide-in-sidebar-right.slide-in-sidebar-sm,
body.fixed-header-mobile .slide-in-sidebar-left.slide-in-sidebar-desktop,
body.fixed-header-mobile .slide-in-sidebar-right.slide-in-sidebar-desktop,
body.fixed-header-mobile-auto-hide .slide-in-sidebar-left.slide-in-sidebar-xs,
body.fixed-header-mobile-auto-hide .slide-in-sidebar-right.slide-in-sidebar-xs,
body.fixed-header-mobile-auto-hide .slide-in-sidebar-left.slide-in-sidebar-sm,
body.fixed-header-mobile-auto-hide .slide-in-sidebar-right.slide-in-sidebar-sm,
body.fixed-header-mobile-auto-hide .slide-in-sidebar-left.slide-in-sidebar-desktop,
body.fixed-header-mobile-auto-hide .slide-in-sidebar-right.slide-in-sidebar-desktop {
    top: 50px;
  }

  .slide-in-sidebar-desktop,
.slide-in-sidebar-xs,
.slide-in-sidebar-sm {
    width: 100% !important;
  }

  .slide-in-sidebar-xs, .slide-in-sidebar-sm {
    background: #e8e8e8;
    padding: 20px 15px;
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .slide-in-sidebar-left.slide-in-sidebar-sm {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 900;
    overflow-x: hidden;
    overflow-y: auto;
    width: 400px;
    transform: translate(-100%, 0);
    transition: transform 300ms ease;
    margin: 0 !important;
  }

  .slide-in-sidebar-right.slide-in-sidebar-sm {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    overflow-x: hidden;
    overflow-y: auto;
    width: 400px;
    transform: translate(100%, 0);
    transition: transform 300ms ease-in-out;
    margin: 0 !important;
  }

  body.fixed-header-mobile .slide-in-sidebar-left.slide-in-sidebar-sm,
body.fixed-header-mobile .slide-in-sidebar-right.slide-in-sidebar-sm,
body.fixed-header-mobile .slide-in-sidebar-left.slide-in-sidebar-desktop,
body.fixed-header-mobile .slide-in-sidebar-right.slide-in-sidebar-desktop,
body.fixed-header-mobile-auto-hide .slide-in-sidebar-left.slide-in-sidebar-sm,
body.fixed-header-mobile-auto-hide .slide-in-sidebar-right.slide-in-sidebar-sm,
body.fixed-header-mobile-auto-hide .slide-in-sidebar-left.slide-in-sidebar-desktop,
body.fixed-header-mobile-auto-hide .slide-in-sidebar-right.slide-in-sidebar-desktop {
    top: 50px;
  }

  .slide-in-sidebar-sm {
    background: #e8e8e8;
    padding: 20px 15px;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .slide-in-sidebar-left.slide-in-sidebar-xs,
.slide-in-sidebar-right.slide-in-sidebar-xs,
.slide-in-sidebar-left.slide-in-sidebar-sm,
.slide-in-sidebar-right.slide-in-sidebar-sm {
    -webkit-transform: none !important;
    transform: none !important;
  }
}
.slide-in-sidebar-left.slide-in-sidebar-desktop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 900;
  overflow-x: hidden;
  overflow-y: auto;
  width: 400px;
  transform: translate(-100%, 0);
  transition: transform 300ms ease;
  margin: 0 !important;
}

.slide-in-sidebar-right.slide-in-sidebar-desktop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  overflow-x: hidden;
  overflow-y: auto;
  width: 400px;
  transform: translate(100%, 0);
  transition: transform 300ms ease-in-out;
  margin: 0 !important;
}

body.fixed-header .slide-in-sidebar-left.slide-in-sidebar-desktop,
body.fixed-header .slide-in-sidebar-right.slide-in-sidebar-desktop,
body.fixed-header-auto-hide .slide-in-sidebar-left.slide-in-sidebar-desktop,
body.fixed-header-auto-hide .slide-in-sidebar-right.slide-in-sidebar-desktop {
  top: 50px;
}

.slide-in-sidebar-desktop {
  background: #e8e8e8;
  padding: 20px 15px;
  text-align: left;
}

.slide-in-cart-header {
  margin-bottom: 20px;
}
.slide-in-cart-header h2 {
  margin: 0;
}
.slide-in-cart-header a {
  font-size: 14px;
}
.slide-in-cart-header a.clear-cart {
  color: #dc3545;
}
.slide-in-cart-header a + a {
  margin-left: 15px;
}

.sidebar-close {
  position: absolute;
  z-index: 901;
  color: #131314;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-size: 22px;
  background: #fff;
  display: block;
  top: 17px;
  right: 15px;
}
.sidebar-close i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
  .slide-in-sidebar-xs .sidebar-close, .slide-in-sidebar-sm .sidebar-close {
    display: none;
  }
}
.slide-in-sidebar-left.sidebar-visible, .slide-in-sidebar-left.show,
.slide-in-sidebar-right.sidebar-visible,
.slide-in-sidebar-right.show {
  transform: translate(0, 0);
}

.overlay-content {
  display: none;
}

.mobile-dropdown-wrapper .overlay-content {
  display: block;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  opacity: 0;
  animation: fadein 300ms ease;
  position: fixed;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  z-index: 890;
  cursor: pointer;
}
.overlay.visible {
  display: block;
  opacity: 1;
}
.overlay.cover-header {
  z-index: 1020;
}
.overlay .overlay-content {
  display: block;
  margin: 30px;
}
.overlay .overlay-content--head {
  text-align: right;
  margin-bottom: 15px;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.form-inline .form-group, .form-inline .pagination-nav {
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .form-inline .form-group, .form-inline .pagination-nav {
    margin: 0 15px 0;
  }
}
.form-inline .pagination-nav {
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .form-inline .pagination {
    margin: 0;
  }
  .form-inline .form-group, .form-inline .pagination-nav {
    vertical-align: top;
    margin: 0 15px 15px 0;
  }
  .form-inline .pagination-nav {
    display: inline-block;
    margin-bottom: 5px;
  }
}

section.entity-list-config {
  margin-bottom: 15px;
}
section.entity-list-config > div {
  margin: 0 15px 15px 0;
}

section.entity-list-config--inline {
  display: flex;
  flex-direction: row;
}
section.entity-list-config--inline .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: auto;
}

@media (max-width: 767.98px) {
  .compact-row-xs {
    margin: 0 -8px;
  }
  .compact-row-xs > div {
    padding: 0 8px;
  }
  .compact-row-xs > div article {
    margin-bottom: 16px !important;
  }
}
.checkout-step-display {
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .checkout-step-display {
    display: none;
  }
}

.checkout-step-display--step {
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  color: #e8e8e8;
  width: 230px;
  position: relative;
}
.checkout-step-display--step:before {
  display: block;
  content: "";
  height: 1px;
  position: absolute;
  top: 40px;
  background: #e8e8e8;
  z-index: -1;
  width: 120px;
  right: 172px;
}
.checkout-step-display--step strong {
  font-size: 2rem;
  display: block;
  height: 80px;
  width: 80px;
  color: #e8e8e8;
  font-weight: bold;
  text-align: center;
  border: 2px solid #dee2e6;
  line-height: 76px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: #e8e8e8;
  position: relative;
}
.checkout-step-display--step span {
  display: block;
}
.checkout-step-display--step.active, .checkout-step-display--step.completed {
  color: #343a40;
}
.checkout-step-display--step.active strong, .checkout-step-display--step.completed strong {
  border: 2px solid #343a40;
  color: #343a40;
}
.checkout-step-display--step:first-child:before {
  display: none;
}

.cart-table--head,
.cart-table--row {
  border-bottom: 1px solid #343a40;
}
@media (min-width: 768px) {
  .cart-table--head,
.cart-table--row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-flow: row wrap;
    width: 100%;
    align-items: center;
  }
}

.cart-table--head {
  text-transform: uppercase;
  color: #343a40;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .cart-table--head {
    display: none;
  }
}

.cart-table--row {
  position: relative;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .cart-table--row {
    padding-left: 120px;
  }
}

.cart-table--field {
  padding: 15px;
}
.cart-table--field h4 {
  margin: 0 0 10px;
}
.cart-table--field .label {
  display: inline-block;
}
@media (max-width: 767.98px) {
  .cart-table--field.image {
    display: none;
  }
  .cart-table--field.product {
    width: 100%;
    padding-right: 60px;
  }
}
@media (max-width: 991.98px) {
  .cart-table--field.remove {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .cart-table--field.image {
    width: 120px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .cart-table--field.product {
    width: 100%;
    padding-right: 60px;
  }
  .cart-table--field.inventory {
    width: 30%;
  }
  .cart-table--field.unit-price {
    display: none;
  }
  .cart-table--field.quantity {
    width: 40%;
  }
  .cart-table--field.total {
    width: 30%;
  }
}
@media (min-width: 992px) {
  .cart-table--field.image {
    width: 10%;
  }
  .cart-table--field.product {
    width: calc(30% - 50px);
  }
  .cart-table--field.inventory {
    width: 15%;
  }
  .cart-table--field.unit-price {
    width: 15%;
  }
  .cart-table--field.quantity {
    width: 15%;
  }
  .cart-table--field.total {
    width: 15%;
  }
  .cart-table--field.remove {
    width: 50px;
  }
}

@media (min-width: 992px) {
  .section-inline .search-input,
.section-inline .search-input-group {
    max-width: 250px;
  }
}
body > .static-logo {
  position: fixed;
  z-index: 2999;
}
body > .static-logo a {
  display: block;
}
body > .static-logo.static-logo-lt, body > .static-logo.static-logo-mt, body > .static-logo.static-logo-rt {
  top: 0;
}
body > .static-logo.static-logo-lm, body > .static-logo.static-logo-mm, body > .static-logo.static-logo-rm {
  top: 50%;
}
body > .static-logo.static-logo-lb, body > .static-logo.static-logo-mb, body > .static-logo.static-logo-rb {
  bottom: 0;
}
body > .static-logo.static-logo-lt {
  left: 0;
}
body > .static-logo.static-logo-mt {
  left: 50%;
  transform: translate(-50%, 0);
}
body > .static-logo.static-logo-rt {
  right: 0;
}
body > .static-logo.static-logo-lm {
  left: 0;
  transform: translate(0, -50%);
}
body > .static-logo.static-logo-mm {
  left: 50%;
  transform: translate(-50%, -50%);
}
body > .static-logo.static-logo-rm {
  right: 0;
  transform: translate(0, -50%);
}
body > .static-logo.static-logo-lb {
  left: 0;
}
body > .static-logo.static-logo-mb {
  left: 50%;
  transform: translate(-50%, 0);
}
body > .static-logo.static-logo-rb {
  right: 0;
}

body > .notifications {
  position: fixed;
  z-index: 3000;
  max-width: 100%;
  padding: 15px;
  transition: transform 300ms ease-in;
}
@media (prefers-reduced-motion: reduce) {
  body > .notifications {
    transition: none;
  }
}
body > .notifications .alert {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
@media (max-width: 767.98px) {
  body > .notifications.notifications-lt, body > .notifications.notifications-mt, body > .notifications.notifications-rt, body > .notifications.notifications-lm, body > .notifications.notifications-mm, body > .notifications.notifications-rm {
    right: 0;
    left: 0;
    top: 0;
    transform: translate(0, -100%);
  }
  body > .notifications.notifications-lt.visible, body > .notifications.notifications-mt.visible, body > .notifications.notifications-rt.visible, body > .notifications.notifications-lm.visible, body > .notifications.notifications-mm.visible, body > .notifications.notifications-rm.visible {
    transform: translate(0, 0);
  }
  body > .notifications.notifications-lb, body > .notifications.notifications-mb, body > .notifications.notifications-rb {
    right: 0;
    left: 0;
    bottom: 0;
    transform: translate(0, 100%);
  }
  body > .notifications.notifications-lb.visible, body > .notifications.notifications-mb.visible, body > .notifications.notifications-rb.visible {
    transform: translate(0, 0);
  }
}
@media (min-width: 768px) {
  body > .notifications.notifications-lt {
    left: 0;
    top: 0;
    transform: translate(-100%, 0);
  }
  body > .notifications.notifications-lt.visible {
    transform: translate(0, 0);
  }
  body > .notifications.notifications-mt {
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
  }
  body > .notifications.notifications-mt.visible {
    transform: translate(-50%, 0);
  }
  body > .notifications.notifications-rt {
    right: 0;
    top: 0;
    transform: translate(100%, 0);
  }
  body > .notifications.notifications-rt.visible {
    transform: translate(0, 0);
  }
  body > .notifications.notifications-lm {
    left: 0;
    top: 50%;
    transform: translate(-100%, -50%);
  }
  body > .notifications.notifications-lm.visible {
    transform: translate(0, -50%);
  }
  body > .notifications.notifications-mm {
    left: 50%;
    top: 50%;
    opacity: 0;
    transition: opacity 300ms ease-in;
  }
}
@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  body > .notifications.notifications-mm {
    transition: none;
  }
}
@media (min-width: 768px) {
  body > .notifications.notifications-mm.visible {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  body > .notifications.notifications-rm {
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
  }
  body > .notifications.notifications-rm.visible {
    transform: translate(0, -50%);
  }
}
@media (min-width: 768px) {
  body > .notifications.notifications-lb {
    left: 0;
    bottom: 0;
    transform: translate(-100%, 0);
  }
  body > .notifications.notifications-lb.visible {
    transform: translate(0, 0);
  }
}
@media (min-width: 768px) {
  body > .notifications.notifications-mb {
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -100%);
  }
  body > .notifications.notifications-mb.visible {
    transform: translate(-50%, 0);
  }
}
@media (min-width: 768px) {
  body > .notifications.notifications-rb {
    right: 0;
    bottom: 0;
    transform: translate(100%, 0);
  }
  body > .notifications.notifications-rb.visible {
    transform: translate(0, 0);
  }
}

img[data-src],
img[data-srcset] {
  display: block;
  min-height: 1px;
}

.lazy {
  width: 100%;
  height: 0;
  position: relative;
}
.lazy img {
  position: absolute;
  width: 100%;
}

.modal-body form.login-form {
  margin-bottom: -15px;
}

.navbar-collapse .container {
  padding: 0;
}

@media (min-width: 768px) {
  .tab-switch-mobile {
    display: none;
  }
}

.panel-heading-with-link {
  padding: 0;
}
.panel-heading-with-link a {
  display: block;
  padding: 10px 15px;
}

.cart-items-table {
  font-size: 13px;
}
.cart-items-table td.price, .cart-items-table td.quantity, .cart-items-table th.price, .cart-items-table th.quantity {
  text-align: right;
}
.cart-items-table td.price, .cart-items-table td.quantity {
  white-space: nowrap;
}
.cart-items-table td.price-total {
  font-weight: bold;
}
.cart-items-table h4 {
  margin: 0 0 5px;
  font-size: 14px;
  text-transform: none;
}

.panel-body > table {
  margin-left: -15px;
  margin-right: -15px;
}

@media (max-width: 767.98px) {
  .responsive-table {
    display: block;
    border: 0 none;
    max-width: none;
    width: auto;
  }
  .responsive-table thead, .responsive-table tfoot {
    display: none;
  }
  .responsive-table tbody {
    display: block;
  }
  .responsive-table tbody tr {
    display: block;
    margin-bottom: 20px;
    position: relative;
    border-bottom: 1px solid #dee2e6;
  }
  .responsive-table tbody tr:last-child {
    border-bottom: 0 none;
  }
  .responsive-table tbody tr td {
    display: block;
    box-sizing: border-box;
    width: 100% !important;
    text-align: left !important;
    border: 0 none;
  }
  .responsive-table tbody tr td[data-title] {
    min-height: 28px !important;
    padding-left: 140px;
    padding-top: 4px;
    padding-bottom: 4px;
    position: relative;
  }
  .responsive-table tbody tr td[data-title]:before {
    content: attr(data-title);
    display: block;
    width: 130px;
    padding: 4px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(0, 0, 0, 0.02);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    text-align: left;
    font-weight: bold;
  }
}
.list-item-toolbar-button {
  display: inline-block;
  vertical-align: top;
}

.login-form-buttons > div {
  margin-bottom: 15px;
  text-align: center;
}

.estimated-deliver-time {
  margin-bottom: 15px;
}

section.checkout .btn-checkout {
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 768px) {
  section.checkout .btn-checkout {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.summary-price {
  margin-bottom: 5px;
  font-size: 14px;
}
.summary-price:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .summary-price {
    display: flex;
  }
  .summary-price .summary-price-amount {
    margin-left: auto;
  }
}
.summary-price .summary-price-amount {
  font-weight: bold;
}

.summary--total .summary-price-amount {
  color: #D80919;
}

.summary-price-amount {
  white-space: nowrap;
}

.summary--total-title {
  margin-top: 15px;
}

.cart-summary {
  margin-bottom: 30px;
}
.cart-summary:last-child {
  margin-bottom: 0;
}

.slide-in-cart .cart-summary {
  margin-top: 15px;
  margin-bottom: 15px;
}

.summary--total .summary-price:last-child {
  font-size: 18px;
}

.products-details-list--item {
  margin: 0 0 15px;
}
.products-details-list--item h2, .products-details-list--item .price {
  margin: 0 0 15px;
}
.products-details-list--item .rating, .products-details-list--item .products-details-list-toolbar-button {
  margin-bottom: 15px;
}

.products-details-list--item-image a {
  display: block;
}
.products-details-list--item-image img {
  margin: 0 auto;
}

.products-details-list--item-image,
.products-details-list--item-details {
  margin-bottom: 15px;
}

.container .container {
  width: 100% !important;
}

.form-buttons {
  margin-bottom: 20px;
}
.form-buttons .btn + .btn {
  margin-left: 5px;
}

.card-footer .form-buttons {
  margin: 0;
}

.input-group-file {
  position: relative;
}
.input-group-file .form-control {
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.input-group-file .form-control small {
  font-weight: bold;
}
.input-group-file input[type=file] {
  visibility: hidden;
  height: 0;
}
@media (max-width: 767.98px) {
  .input-group-file {
    display: block;
  }
  .input-group-file .form-control:not(:first-child):not(:last-child) {
    float: none;
    display: block;
    width: 100%;
    border-radius: 0 0 0 0;
  }
  .input-group-file .input-group-btn {
    display: block;
    width: 100%;
  }
  .input-group-file .input-group-btn .btn:last-child {
    display: block;
    width: 100%;
    margin: -1px 0 0 0;
    border-radius: 0 0 0 0;
  }
}

.file-input-list {
  padding: 0 0 0 10px;
  margin: 10px 0 0;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
}

.checkout .order-other .form-group {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.slide-entity h1 {
  text-align: inherit;
}

section.error-404 {
  padding: 30px;
  text-align: center;
}

.content-section {
  margin: 0 0 1rem;
}

.row > div:last-child .content-section:last-child {
  margin-bottom: 0 !important;
}

.content-section-inline {
  display: flex;
  margin: 0 -15px;
}
.content-section-inline > div {
  flex-grow: 1;
  padding: 0 15px;
}

@media (max-width: 319px) {
  .slave-slider {
    display: none;
  }
}
.selected-property-images img {
  margin: 0 auto;
}
.selected-property-images img + img {
  margin-top: 20px;
}

.description-section + .description-section {
  margin-top: 0.5rem;
}

.password-strength meter {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  width: 100%;
  height: 8px;
  background: #dee2e6;
  border-radius: 0;
  overflow: hidden;
  display: block;
}
.password-strength meter::-webkit-meter-bar {
  background: #dee2e6;
}
.password-strength meter[value="1"]::-webkit-meter-optimum-value {
  background: #dc3545;
}
.password-strength meter[value="2"]::-webkit-meter-optimum-value {
  background: #ffc107;
}
.password-strength meter[value="3"]::-webkit-meter-optimum-value {
  background: #ffc107;
}
.password-strength meter[value="4"]::-webkit-meter-optimum-value {
  background: #28a745;
}

.download-files-btn {
  margin-top: 15px;
  text-align: center;
}

.product-optional-features {
  margin-bottom: 15px;
}
.product-optional-features .checkbox {
  margin: 0;
}

.product-cart-comment {
  background: #e8e8e8;
  font-size: 12px;
  padding: 8px;
}
.product-cart-comment p:last-child {
  margin-bottom: 0;
}

.product-optional-features--item + .product-optional-features--item {
  margin-top: 10px;
}

.lazy-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gallery-row {
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}
.gallery-row figure {
  margin: 0;
}
.gallery-row figure * {
  height: 100%;
  display: block;
}
.gallery-row figure:nth-child(5n+2),
.gallery-row figure:nth-child(5n+4),
.gallery-row figure:nth-child(5n+5) {
  grid-column-end: span 2;
}

.gallery-grid-big {
  margin: 30px 0;
}
@media (min-width: 768px) {
  .gallery-grid-big {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
  .gallery-grid-big div.thumbnail {
    margin: 0;
  }
  .gallery-grid-big div.thumbnail {
    margin: 0;
    display: flex;
    height: 100%;
  }
  .gallery-grid-big div.thumbnail a {
    height: 100%;
  }
  .gallery-grid-big div.thumbnail .image {
    height: 100%;
  }
  .gallery-grid-big div.thumbnail img {
    object-fit: cover;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .gallery-grid-big-left .item-0 {
    grid-area: 1 / 1 / 3 / 3;
  }
  .gallery-grid-big-left .item-1 {
    grid-area: 1 / 3 / 2 / 4;
  }
  .gallery-grid-big-left .item-2 {
    grid-area: 1 / 4 / 2 / 5;
  }
  .gallery-grid-big-left .item-3 {
    grid-area: 2 / 3 / 3 / 4;
  }
  .gallery-grid-big-left .item-4 {
    grid-area: 2 / 4 / 3 / 5;
  }
}

@media (min-width: 768px) {
  .gallery-grid-big-right .item-0 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .gallery-grid-big-right .item-1 {
    grid-area: 1 / 2 / 2 / 3;
  }
  .gallery-grid-big-right .item-2 {
    grid-area: 1 / 3 / 3 / 5;
  }
  .gallery-grid-big-right .item-3 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .gallery-grid-big-right .item-4 {
    grid-area: 2 / 2 / 3 / 3;
  }
}

.inventory-notification .alert:last-child {
  margin-bottom: 0;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.text-center .btn-toolbar {
  justify-content: center;
}

@media (max-width: 575.98px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xl {
    display: none !important;
  }
}
.hidden {
  display: none !important;
}

.slide-in-cart-footer {
  display: flex;
  flex-direction: column;
}

.navbar-nav .dropdown-menu.collapsing {
  display: block;
}

.dropdown-menu {
  padding: 0;
}
.dropdown-menu > div {
  padding: 0.5rem 0;
}

.navbar {
  padding: 0;
}
.navbar .navbar-nav.justify-content-center,
.navbar .navbar-nav.justify-content-between,
.navbar .navbar-nav.justify-content-around {
  width: 100%;
}

.slider-auto .slide-entity {
  padding: 50px 0;
}

@media (max-width: 767.98px) {
  .tabs-wrapper.collapse-on-mobile .tab-pane {
    display: block !important;
  }
  .tabs-wrapper.collapse-on-mobile .tab-pane + .tab-pane {
    margin-top: 30px;
  }
}
.fixed-sections-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 200;
  background: #e8e8e8;
  padding: 15px 0;
}
.fixed-sections-wrapper .container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.fixed-top-sections-wrapper {
  top: 0;
}

.fixed-bottom-sections-wrapper {
  bottom: 0;
}

.add-to-cart-input {
  display: flex;
}
.add-to-cart-input .input-group {
  margin: 0;
}
.add-to-cart-input > .btn {
  margin-left: 10px;
}

@media (max-width: 991.98px) {
  .dropdown-menu.collapse.show {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  header nav .nav-link {
    flex-grow: 1;
  }
}
.nav + .tab-content {
  margin-top: 15px;
}

@media (min-width: 576px) {
  .grid {
    display: grid;
  }
  .grid section.banners {
    display: flex;
    align-items: stretch;
  }
  .grid .banners-wrapper, .grid .banner {
    flex-grow: 1;
    display: flex;
  }
  .grid > div, .grid > article, .grid > section {
    margin: 0;
  }

  .grid-2-r {
    grid-row-end: span 2;
  }

  .grid-3-r {
    grid-row-end: span 3;
  }

  .grid-4-r {
    grid-row-end: span 4;
  }

  .grid-5-r {
    grid-row-end: span 5;
  }

  .grid-6-r {
    grid-row-end: span 6;
  }

  .grid-2-c {
    grid-column-end: span 2;
  }

  .grid-3-c {
    grid-column-end: span 3;
  }

  .grid-4-c {
    grid-column-end: span 4;
  }

  .grid-5-c {
    grid-column-end: span 5;
  }

  .grid-6-c {
    grid-column-end: span 6;
  }
}
.checkout-items--sidebar-table td.price, .checkout-items--sidebar-table td.quantity {
  white-space: nowrap;
  text-align: center;
}
.checkout-items--sidebar-table small {
  display: block;
}

.form-hidden .form-wrapper {
  display: none;
}

.cart-free-shipping-meter {
  margin: 0 auto 30px;
  text-align: center;
}
.cart-free-shipping-meter .progress {
  margin-top: 10px;
}

.alert-solid.alert-primary {
  color: #fff;
  background-color: #D80919;
  border-color: #D80919;
}
.alert-solid.alert-primary hr {
  border-top-color: #c00816;
}
.alert-solid.alert-primary .alert-link {
  color: #e6e6e6;
}

.alert-solid.alert-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.alert-solid.alert-secondary hr {
  border-top-color: #60686f;
}
.alert-solid.alert-secondary .alert-link {
  color: #e6e6e6;
}

.alert-solid.alert-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.alert-solid.alert-success hr {
  border-top-color: #23923d;
}
.alert-solid.alert-success .alert-link {
  color: #e6e6e6;
}

.alert-solid.alert-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.alert-solid.alert-info hr {
  border-top-color: #148ea1;
}
.alert-solid.alert-info .alert-link {
  color: #e6e6e6;
}

.alert-solid.alert-warning {
  color: #131314;
  background-color: #ffc107;
  border-color: #ffc107;
}
.alert-solid.alert-warning hr {
  border-top-color: #edb100;
}
.alert-solid.alert-warning .alert-link {
  color: black;
}

.alert-solid.alert-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.alert-solid.alert-danger hr {
  border-top-color: #d32535;
}
.alert-solid.alert-danger .alert-link {
  color: #e6e6e6;
}

.alert-solid.alert-light {
  color: #131314;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.alert-solid.alert-light hr {
  border-top-color: #e9ecef;
}
.alert-solid.alert-light .alert-link {
  color: black;
}

.alert-solid.alert-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.alert-solid.alert-dark hr {
  border-top-color: #292d32;
}
.alert-solid.alert-dark .alert-link {
  color: #e6e6e6;
}

.cart-item-optional-free--items {
  margin-top: 20px;
}
.cart-item-optional-free--items:first-child {
  margin-top: 0;
}

.cart-item-optional-free--item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cart-item-optional-free--item + .cart-item-optional-free--item {
  margin-top: 15px;
}
.cart-item-optional-free--item .checkbox {
  margin: 0 15px 0 0;
}

.cart-item-optional-free--item-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.cart-item-optional-free--item-image {
  max-width: 150px;
  margin-right: 20px;
}

.label-with-action {
  display: flex;
}
.label-with-action a {
  margin-left: auto;
}

.label-block {
  display: block;
}

.form-info-tooltip {
  float: right;
  margin-left: 5px;
}

section.breadcrumbs {
  display: flex;
  align-items: center;
}

.block-link {
  position: relative;
}
.block-link > a {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.vertical-slider-image-viewer {
  display: flex;
  flex-direction: row;
}
@media (max-width: 991.98px) {
  .vertical-slider-image-viewer {
    flex-direction: column-reverse;
  }
}

.vertical-slider-image-viewer--slider {
  position: relative;
}
.vertical-slider-image-viewer--slider div.slide {
  display: block;
}
@media (min-width: 992px) {
  .vertical-slider-image-viewer--slider {
    flex-basis: 35%;
    padding-right: 15px;
  }
  .vertical-slider-image-viewer--slider .slick-slider.has-arrows {
    padding: 30px 0;
  }
  .vertical-slider-image-viewer--slider .slick-arrow {
    left: 0;
    right: 0;
    transform: none;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vertical-slider-image-viewer--slider .slick-arrow.slick-prev {
    top: 0;
    bottom: auto;
  }
  .vertical-slider-image-viewer--slider .slick-arrow.slick-next {
    bottom: 0;
    top: auto;
  }
}

.filter-sidebar-footer {
  display: none;
}

.slide-in-sidebar-left.sidebar-visible .filter-sidebar-footer,
.slide-in-sidebar-right.sidebar-visible .filter-sidebar-footer {
  display: flex;
  margin-top: 2em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  opacity: 0.4;
  font-weight: bold;
}
.slide-in-sidebar-left.sidebar-visible .filter-sidebar-footer i,
.slide-in-sidebar-right.sidebar-visible .filter-sidebar-footer i {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #6c757d;
}

@media (max-width: 767.98px) {
  table.table-responsive-sm {
    display: block;
    padding: 5px;
  }
  table.table-responsive-sm > thead {
    display: none;
  }
  table.table-responsive-sm > tbody {
    display: block;
  }
  table.table-responsive-sm > tbody > tr {
    display: block;
    padding: 10px;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
  }
  table.table-responsive-sm > tbody > tr:last-child {
    margin-bottom: 0;
  }
  table.table-responsive-sm > tbody > tr > td {
    display: flex;
    align-items: center;
    padding: 4px 0;
    border: none;
  }
  table.table-responsive-sm > tbody > tr > td[data-label]:before {
    content: attr(data-label);
    flex-basis: 30%;
    flex-shrink: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    padding: 5px 10px 5px 5px;
    text-align: left !important;
    font-weight: bold;
    font-size: 0.8rem;
  }
}
@media (max-width: 991.98px) {
  table.table-responsive-md {
    display: block;
    padding: 5px;
  }
  table.table-responsive-md > thead {
    display: none;
  }
  table.table-responsive-md > tbody {
    display: block;
  }
  table.table-responsive-md > tbody > tr {
    display: block;
    padding: 10px;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
  }
  table.table-responsive-md > tbody > tr:last-child {
    margin-bottom: 0;
  }
  table.table-responsive-md > tbody > tr > td {
    display: flex;
    align-items: center;
    padding: 4px 0;
    border: none;
  }
  table.table-responsive-md > tbody > tr > td[data-label]:before {
    content: attr(data-label);
    flex-basis: 30%;
    flex-shrink: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    padding: 5px 10px 5px 5px;
    text-align: left !important;
    font-weight: bold;
    font-size: 0.8rem;
  }
}
@media (max-width: 1199.98px) {
  table.table-responsive-lg {
    display: block;
    padding: 5px;
  }
  table.table-responsive-lg > thead {
    display: none;
  }
  table.table-responsive-lg > tbody {
    display: block;
  }
  table.table-responsive-lg > tbody > tr {
    display: block;
    padding: 10px;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
  }
  table.table-responsive-lg > tbody > tr:last-child {
    margin-bottom: 0;
  }
  table.table-responsive-lg > tbody > tr > td {
    display: flex;
    align-items: center;
    padding: 4px 0;
    border: none;
  }
  table.table-responsive-lg > tbody > tr > td[data-label]:before {
    content: attr(data-label);
    flex-basis: 30%;
    flex-shrink: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    padding: 5px 10px 5px 5px;
    text-align: left !important;
    font-weight: bold;
    font-size: 0.8rem;
  }
}
.mobile-menu-top {
  margin-bottom: 20px;
}

.mobile-menu-bottom {
  margin-top: 20px;
}

.product-messages > div, .product-messages > span {
  margin-top: 6px;
}

.video-background {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.slide-with-video-bg {
  position: relative;
  overflow: hidden;
}

.rating-item {
  display: flex;
  border-bottom: 1px solid #dee2e6;
  padding: 15px;
}
.rating-item:last-child {
  border-bottom: 0 none;
}

.rating-item-new {
  border-left: 5px solid #28a745;
}

.rating-item--timestamp {
  font-size: 12px;
}

.rating-item--details {
  margin-right: 15px;
}

.rating-item--description {
  flex-grow: 1;
}

.rating-box--display {
  position: relative;
  font-size: 24px;
  display: inline-flex;
  color: #cbcbcb;
}
.rating-box--display:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: bold;
  content: "";
}
.rating-box--display > div {
  display: inline-flex;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #ffc107;
}
.rating-box--display > div:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: bold;
  content: "";
}

.rating {
  white-space: nowrap;
  display: inline-flex;
  font-size: 24px;
  line-height: 30px;
  unicode-bidi: bidi-override;
  direction: rtl;
}
.rating.rating-active label {
  cursor: pointer;
}

.rating input {
  position: absolute;
  left: -999999px;
}

.rating label,
.rating span {
  width: 20%;
}

.rating label:before,
.rating span:before {
  font-family: "Font Awesome 5 Pro";
  position: relative;
  display: block;
  font-weight: bold;
  content: "";
  color: #dee2e6;
  width: 100%;
  text-align: center;
}

.rating-active:hover label.selected:before,
.rating-active:hover label.selected ~ label:before {
  color: #dee2e6;
}
.rating-active:hover label:hover:before,
.rating-active:hover label:hover ~ label:before {
  color: #ffc107 !important;
}

.rating span.selected:before,
.rating span.selected ~ span:before,
.rating label.selected:before,
.rating label.selected ~ label:before {
  color: #ffc107;
}

.rating-disabled {
  opacity: 0.5;
}

.rating-statistics {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.rating-statistics--summary {
  text-align: center;
  padding: 15px 40px;
}

.rating-statistics--buckets .bucket {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.rating-statistics--buckets .bucket:last-child {
  margin-bottom: 0;
}
.rating-statistics--buckets .bucket .rating-box--display {
  font-size: 14px;
  margin-right: 15px;
}
.rating-statistics--buckets .bucket .progress {
  width: 200px;
  height: 4px;
}

#baguetteBox-background {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(20px) brightness(60%);
  filter: blur(20px) brightness(60%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  -webkit-perspective: 600px;
  perspective: 600px;
  -webkit-transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(10) rotate(0.01deg);
  transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(10) rotate(0.01deg);
}

.warehouse-stock {
  display: flex;
  align-items: center;
}

.warehouse-stock--warehouse {
  flex-grow: 1;
}

.checkout-summary-sidebar--sidebar .card.discounts .card-body > div {
  margin-bottom: 15px;
}
.checkout-summary-sidebar--sidebar .card.discounts .card-body > div:last-child {
  margin-bottom: 0;
}

body.has-webp .d-no-webp-only {
  display: none !important;
}

body.no-webp .d-webp-only {
  display: none !important;
}

.nav-link-delete-user {
  color: #dc3545;
}

.order-change-payment-mode {
  margin-top: 30px;
}

.asterisk-fields-are-required {
  font-size: 0.875rem;
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .entity-list-config .show-in-sidebar-sm {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .entity-list-config .show-in-sidebar-md {
    display: none;
  }
}

.badge-light {
  color: #fff;
}

.badge-dark {
  color: #131314;
}

a[type=button] {
  -webkit-appearance: none;
}

div.payment-required {
  margin-top: 0.5em;
}

/*!
 * Font Awesome Pro 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/fa-light-300.eot");
  src: url("/fonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("/fonts/fa-light-300.woff2") format("woff2"), url("/fonts/fa-light-300.woff") format("woff"), url("/fonts/fa-light-300.ttf") format("truetype"), url("/fonts/fa-light-300.svg#fontawesome") format("svg");
}
.fal {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}

/*!
 * Font Awesome Pro 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/fa-regular-400.eot");
  src: url("/fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/fonts/fa-regular-400.woff2") format("woff2"), url("/fonts/fa-regular-400.woff") format("woff"), url("/fonts/fa-regular-400.ttf") format("truetype"), url("/fonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/fonts/fa-solid-900.eot");
  src: url("/fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/fonts/fa-solid-900.woff2") format("woff2"), url("/fonts/fa-solid-900.woff") format("woff"), url("/fonts/fa-solid-900.ttf") format("truetype"), url("/fonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

/*!
 * Font Awesome Pro 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("/fonts/fa-brands-400.eot");
  src: url("/fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/fonts/fa-brands-400.woff2") format("woff2"), url("/fonts/fa-brands-400.woff") format("woff"), url("/fonts/fa-brands-400.ttf") format("truetype"), url("/fonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

/*!
 * Font Awesome Pro 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "";
}

.fa-abacus:before {
  content: "";
}

.fa-accessible-icon:before {
  content: "";
}

.fa-accusoft:before {
  content: "";
}

.fa-acorn:before {
  content: "";
}

.fa-acquisitions-incorporated:before {
  content: "";
}

.fa-ad:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-card:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-adobe:before {
  content: "";
}

.fa-adversal:before {
  content: "";
}

.fa-affiliatetheme:before {
  content: "";
}

.fa-air-freshener:before {
  content: "";
}

.fa-airbnb:before {
  content: "";
}

.fa-alarm-clock:before {
  content: "";
}

.fa-alarm-exclamation:before {
  content: "";
}

.fa-alarm-plus:before {
  content: "";
}

.fa-alarm-snooze:before {
  content: "";
}

.fa-algolia:before {
  content: "";
}

.fa-alicorn:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-slash:before {
  content: "";
}

.fa-alipay:before {
  content: "";
}

.fa-allergies:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-amazon-pay:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-amilia:before {
  content: "";
}

.fa-analytics:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-angel:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angry:before {
  content: "";
}

.fa-angrycreative:before {
  content: "";
}

.fa-angular:before {
  content: "";
}

.fa-ankh:before {
  content: "";
}

.fa-app-store:before {
  content: "";
}

.fa-app-store-ios:before {
  content: "";
}

.fa-apper:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-apple-alt:before {
  content: "";
}

.fa-apple-crate:before {
  content: "";
}

.fa-apple-pay:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-archway:before {
  content: "";
}

.fa-arrow-alt-circle-down:before {
  content: "";
}

.fa-arrow-alt-circle-left:before {
  content: "";
}

.fa-arrow-alt-circle-right:before {
  content: "";
}

.fa-arrow-alt-circle-up:before {
  content: "";
}

.fa-arrow-alt-down:before {
  content: "";
}

.fa-arrow-alt-from-bottom:before {
  content: "";
}

.fa-arrow-alt-from-left:before {
  content: "";
}

.fa-arrow-alt-from-right:before {
  content: "";
}

.fa-arrow-alt-from-top:before {
  content: "";
}

.fa-arrow-alt-left:before {
  content: "";
}

.fa-arrow-alt-right:before {
  content: "";
}

.fa-arrow-alt-square-down:before {
  content: "";
}

.fa-arrow-alt-square-left:before {
  content: "";
}

.fa-arrow-alt-square-right:before {
  content: "";
}

.fa-arrow-alt-square-up:before {
  content: "";
}

.fa-arrow-alt-to-bottom:before {
  content: "";
}

.fa-arrow-alt-to-left:before {
  content: "";
}

.fa-arrow-alt-to-right:before {
  content: "";
}

.fa-arrow-alt-to-top:before {
  content: "";
}

.fa-arrow-alt-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-arrow-from-bottom:before {
  content: "";
}

.fa-arrow-from-left:before {
  content: "";
}

.fa-arrow-from-right:before {
  content: "";
}

.fa-arrow-from-top:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-square-down:before {
  content: "";
}

.fa-arrow-square-left:before {
  content: "";
}

.fa-arrow-square-right:before {
  content: "";
}

.fa-arrow-square-up:before {
  content: "";
}

.fa-arrow-to-bottom:before {
  content: "";
}

.fa-arrow-to-left:before {
  content: "";
}

.fa-arrow-to-right:before {
  content: "";
}

.fa-arrow-to-top:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-arrows-alt-h:before {
  content: "";
}

.fa-arrows-alt-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-artstation:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-asymmetrik:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-atlas:before {
  content: "";
}

.fa-atlassian:before {
  content: "";
}

.fa-atom:before {
  content: "";
}

.fa-atom-alt:before {
  content: "";
}

.fa-audible:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-autoprefixer:before {
  content: "";
}

.fa-avianex:before {
  content: "";
}

.fa-aviato:before {
  content: "";
}

.fa-award:before {
  content: "";
}

.fa-aws:before {
  content: "";
}

.fa-axe:before {
  content: "";
}

.fa-axe-battle:before {
  content: "";
}

.fa-baby:before {
  content: "";
}

.fa-baby-carriage:before {
  content: "";
}

.fa-backpack:before {
  content: "";
}

.fa-backspace:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-bacon:before {
  content: "";
}

.fa-badge:before {
  content: "";
}

.fa-badge-check:before {
  content: "";
}

.fa-badge-dollar:before {
  content: "";
}

.fa-badge-percent:before {
  content: "";
}

.fa-badger-honey:before {
  content: "";
}

.fa-bags-shopping:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-balance-scale-left:before {
  content: "";
}

.fa-balance-scale-right:before {
  content: "";
}

.fa-ball-pile:before {
  content: "";
}

.fa-ballot:before {
  content: "";
}

.fa-ballot-check:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-band-aid:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-barcode-alt:before {
  content: "";
}

.fa-barcode-read:before {
  content: "";
}

.fa-barcode-scan:before {
  content: "";
}

.fa-bars:before {
  content: "";
}

.fa-baseball:before {
  content: "";
}

.fa-baseball-ball:before {
  content: "";
}

.fa-basketball-ball:before {
  content: "";
}

.fa-basketball-hoop:before {
  content: "";
}

.fa-bat:before {
  content: "";
}

.fa-bath:before {
  content: "";
}

.fa-battery-bolt:before {
  content: "";
}

.fa-battery-empty:before {
  content: "";
}

.fa-battery-full:before {
  content: "";
}

.fa-battery-half:before {
  content: "";
}

.fa-battery-quarter:before {
  content: "";
}

.fa-battery-slash:before {
  content: "";
}

.fa-battery-three-quarters:before {
  content: "";
}

.fa-battle-net:before {
  content: "";
}

.fa-bed:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-bell-exclamation:before {
  content: "";
}

.fa-bell-plus:before {
  content: "";
}

.fa-bell-school:before {
  content: "";
}

.fa-bell-school-slash:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bells:before {
  content: "";
}

.fa-bezier-curve:before {
  content: "";
}

.fa-bible:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-biking:before {
  content: "";
}

.fa-biking-mountain:before {
  content: "";
}

.fa-bimobject:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-biohazard:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitcoin:before {
  content: "";
}

.fa-bity:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-blackberry:before {
  content: "";
}

.fa-blanket:before {
  content: "";
}

.fa-blender:before {
  content: "";
}

.fa-blender-phone:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-blog:before {
  content: "";
}

.fa-blogger:before {
  content: "";
}

.fa-blogger-b:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-bolt:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-bone:before {
  content: "";
}

.fa-bone-break:before {
  content: "";
}

.fa-bong:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-book-alt:before {
  content: "";
}

.fa-book-dead:before {
  content: "";
}

.fa-book-heart:before {
  content: "";
}

.fa-book-medical:before {
  content: "";
}

.fa-book-open:before {
  content: "";
}

.fa-book-reader:before {
  content: "";
}

.fa-book-spells:before {
  content: "";
}

.fa-book-user:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-books:before {
  content: "";
}

.fa-books-medical:before {
  content: "";
}

.fa-boot:before {
  content: "";
}

.fa-booth-curtain:before {
  content: "";
}

.fa-bootstrap:before {
  content: "";
}

.fa-border-all:before {
  content: "";
}

.fa-border-bottom:before {
  content: "";
}

.fa-border-center-h:before {
  content: "";
}

.fa-border-center-v:before {
  content: "";
}

.fa-border-inner:before {
  content: "";
}

.fa-border-left:before {
  content: "";
}

.fa-border-none:before {
  content: "";
}

.fa-border-outer:before {
  content: "";
}

.fa-border-right:before {
  content: "";
}

.fa-border-style:before {
  content: "";
}

.fa-border-style-alt:before {
  content: "";
}

.fa-border-top:before {
  content: "";
}

.fa-bow-arrow:before {
  content: "";
}

.fa-bowling-ball:before {
  content: "";
}

.fa-bowling-pins:before {
  content: "";
}

.fa-box:before {
  content: "";
}

.fa-box-alt:before {
  content: "";
}

.fa-box-ballot:before {
  content: "";
}

.fa-box-check:before {
  content: "";
}

.fa-box-fragile:before {
  content: "";
}

.fa-box-full:before {
  content: "";
}

.fa-box-heart:before {
  content: "";
}

.fa-box-open:before {
  content: "";
}

.fa-box-up:before {
  content: "";
}

.fa-box-usd:before {
  content: "";
}

.fa-boxes:before {
  content: "";
}

.fa-boxes-alt:before {
  content: "";
}

.fa-boxing-glove:before {
  content: "";
}

.fa-brackets:before {
  content: "";
}

.fa-brackets-curly:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-brain:before {
  content: "";
}

.fa-bread-loaf:before {
  content: "";
}

.fa-bread-slice:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-briefcase-medical:before {
  content: "";
}

.fa-bring-forward:before {
  content: "";
}

.fa-bring-front:before {
  content: "";
}

.fa-broadcast-tower:before {
  content: "";
}

.fa-broom:before {
  content: "";
}

.fa-browser:before {
  content: "";
}

.fa-brush:before {
  content: "";
}

.fa-btc:before {
  content: "";
}

.fa-buffer:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-bullseye-arrow:before {
  content: "";
}

.fa-bullseye-pointer:before {
  content: "";
}

.fa-burger-soda:before {
  content: "";
}

.fa-burn:before {
  content: "";
}

.fa-buromobelexperte:before {
  content: "";
}

.fa-burrito:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-bus-alt:before {
  content: "";
}

.fa-bus-school:before {
  content: "";
}

.fa-business-time:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-cabinet-filing:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-calculator-alt:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-calendar-alt:before {
  content: "";
}

.fa-calendar-check:before {
  content: "";
}

.fa-calendar-day:before {
  content: "";
}

.fa-calendar-edit:before {
  content: "";
}

.fa-calendar-exclamation:before {
  content: "";
}

.fa-calendar-minus:before {
  content: "";
}

.fa-calendar-plus:before {
  content: "";
}

.fa-calendar-star:before {
  content: "";
}

.fa-calendar-times:before {
  content: "";
}

.fa-calendar-week:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-camera-alt:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-campfire:before {
  content: "";
}

.fa-campground:before {
  content: "";
}

.fa-canadian-maple-leaf:before {
  content: "";
}

.fa-candle-holder:before {
  content: "";
}

.fa-candy-cane:before {
  content: "";
}

.fa-candy-corn:before {
  content: "";
}

.fa-cannabis:before {
  content: "";
}

.fa-capsules:before {
  content: "";
}

.fa-car:before {
  content: "";
}

.fa-car-alt:before {
  content: "";
}

.fa-car-battery:before {
  content: "";
}

.fa-car-building:before {
  content: "";
}

.fa-car-bump:before {
  content: "";
}

.fa-car-bus:before {
  content: "";
}

.fa-car-crash:before {
  content: "";
}

.fa-car-garage:before {
  content: "";
}

.fa-car-mechanic:before {
  content: "";
}

.fa-car-side:before {
  content: "";
}

.fa-car-tilt:before {
  content: "";
}

.fa-car-wash:before {
  content: "";
}

.fa-caret-circle-down:before {
  content: "";
}

.fa-caret-circle-left:before {
  content: "";
}

.fa-caret-circle-right:before {
  content: "";
}

.fa-caret-circle-up:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-caret-square-down:before {
  content: "";
}

.fa-caret-square-left:before {
  content: "";
}

.fa-caret-square-right:before {
  content: "";
}

.fa-caret-square-up:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-carrot:before {
  content: "";
}

.fa-cars:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cash-register:before {
  content: "";
}

.fa-cat:before {
  content: "";
}

.fa-cauldron:before {
  content: "";
}

.fa-cc-amazon-pay:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-apple-pay:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-centercode:before {
  content: "";
}

.fa-centos:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-chair:before {
  content: "";
}

.fa-chair-office:before {
  content: "";
}

.fa-chalkboard:before {
  content: "";
}

.fa-chalkboard-teacher:before {
  content: "";
}

.fa-charging-station:before {
  content: "";
}

.fa-chart-area:before {
  content: "";
}

.fa-chart-bar:before {
  content: "";
}

.fa-chart-line:before {
  content: "";
}

.fa-chart-line-down:before {
  content: "";
}

.fa-chart-network:before {
  content: "";
}

.fa-chart-pie:before {
  content: "";
}

.fa-chart-pie-alt:before {
  content: "";
}

.fa-chart-scatter:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-check-double:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-cheese:before {
  content: "";
}

.fa-cheese-swiss:before {
  content: "";
}

.fa-cheeseburger:before {
  content: "";
}

.fa-chess:before {
  content: "";
}

.fa-chess-bishop:before {
  content: "";
}

.fa-chess-bishop-alt:before {
  content: "";
}

.fa-chess-board:before {
  content: "";
}

.fa-chess-clock:before {
  content: "";
}

.fa-chess-clock-alt:before {
  content: "";
}

.fa-chess-king:before {
  content: "";
}

.fa-chess-king-alt:before {
  content: "";
}

.fa-chess-knight:before {
  content: "";
}

.fa-chess-knight-alt:before {
  content: "";
}

.fa-chess-pawn:before {
  content: "";
}

.fa-chess-pawn-alt:before {
  content: "";
}

.fa-chess-queen:before {
  content: "";
}

.fa-chess-queen-alt:before {
  content: "";
}

.fa-chess-rook:before {
  content: "";
}

.fa-chess-rook-alt:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-double-down:before {
  content: "";
}

.fa-chevron-double-left:before {
  content: "";
}

.fa-chevron-double-right:before {
  content: "";
}

.fa-chevron-double-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-chevron-square-down:before {
  content: "";
}

.fa-chevron-square-left:before {
  content: "";
}

.fa-chevron-square-right:before {
  content: "";
}

.fa-chevron-square-up:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-chimney:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-chromecast:before {
  content: "";
}

.fa-church:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-circle-notch:before {
  content: "";
}

.fa-city:before {
  content: "";
}

.fa-claw-marks:before {
  content: "";
}

.fa-clinic-medical:before {
  content: "";
}

.fa-clipboard:before {
  content: "";
}

.fa-clipboard-check:before {
  content: "";
}

.fa-clipboard-list:before {
  content: "";
}

.fa-clipboard-list-check:before {
  content: "";
}

.fa-clipboard-prescription:before {
  content: "";
}

.fa-clipboard-user:before {
  content: "";
}

.fa-clock:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-closed-captioning:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-download-alt:before {
  content: "";
}

.fa-cloud-drizzle:before {
  content: "";
}

.fa-cloud-hail:before {
  content: "";
}

.fa-cloud-hail-mixed:before {
  content: "";
}

.fa-cloud-meatball:before {
  content: "";
}

.fa-cloud-moon:before {
  content: "";
}

.fa-cloud-moon-rain:before {
  content: "";
}

.fa-cloud-rain:before {
  content: "";
}

.fa-cloud-rainbow:before {
  content: "";
}

.fa-cloud-showers:before {
  content: "";
}

.fa-cloud-showers-heavy:before {
  content: "";
}

.fa-cloud-sleet:before {
  content: "";
}

.fa-cloud-snow:before {
  content: "";
}

.fa-cloud-sun:before {
  content: "";
}

.fa-cloud-sun-rain:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-cloud-upload-alt:before {
  content: "";
}

.fa-clouds:before {
  content: "";
}

.fa-clouds-moon:before {
  content: "";
}

.fa-clouds-sun:before {
  content: "";
}

.fa-cloudscale:before {
  content: "";
}

.fa-cloudsmith:before {
  content: "";
}

.fa-cloudversify:before {
  content: "";
}

.fa-club:before {
  content: "";
}

.fa-cocktail:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-code-branch:before {
  content: "";
}

.fa-code-commit:before {
  content: "";
}

.fa-code-merge:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-coffee-togo:before {
  content: "";
}

.fa-coffin:before {
  content: "";
}

.fa-cog:before {
  content: "";
}

.fa-cogs:before {
  content: "";
}

.fa-coin:before {
  content: "";
}

.fa-coins:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-comment-alt:before {
  content: "";
}

.fa-comment-alt-check:before {
  content: "";
}

.fa-comment-alt-dollar:before {
  content: "";
}

.fa-comment-alt-dots:before {
  content: "";
}

.fa-comment-alt-edit:before {
  content: "";
}

.fa-comment-alt-exclamation:before {
  content: "";
}

.fa-comment-alt-lines:before {
  content: "";
}

.fa-comment-alt-medical:before {
  content: "";
}

.fa-comment-alt-minus:before {
  content: "";
}

.fa-comment-alt-plus:before {
  content: "";
}

.fa-comment-alt-slash:before {
  content: "";
}

.fa-comment-alt-smile:before {
  content: "";
}

.fa-comment-alt-times:before {
  content: "";
}

.fa-comment-check:before {
  content: "";
}

.fa-comment-dollar:before {
  content: "";
}

.fa-comment-dots:before {
  content: "";
}

.fa-comment-edit:before {
  content: "";
}

.fa-comment-exclamation:before {
  content: "";
}

.fa-comment-lines:before {
  content: "";
}

.fa-comment-medical:before {
  content: "";
}

.fa-comment-minus:before {
  content: "";
}

.fa-comment-plus:before {
  content: "";
}

.fa-comment-slash:before {
  content: "";
}

.fa-comment-smile:before {
  content: "";
}

.fa-comment-times:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-comments-alt:before {
  content: "";
}

.fa-comments-alt-dollar:before {
  content: "";
}

.fa-comments-dollar:before {
  content: "";
}

.fa-compact-disc:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-compass-slash:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-compress-alt:before {
  content: "";
}

.fa-compress-arrows-alt:before {
  content: "";
}

.fa-compress-wide:before {
  content: "";
}

.fa-concierge-bell:before {
  content: "";
}

.fa-confluence:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-construction:before {
  content: "";
}

.fa-container-storage:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-conveyor-belt:before {
  content: "";
}

.fa-conveyor-belt-alt:before {
  content: "";
}

.fa-cookie:before {
  content: "";
}

.fa-cookie-bite:before {
  content: "";
}

.fa-copy:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-corn:before {
  content: "";
}

.fa-cotton-bureau:before {
  content: "";
}

.fa-couch:before {
  content: "";
}

.fa-cow:before {
  content: "";
}

.fa-cpanel:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-creative-commons-by:before {
  content: "";
}

.fa-creative-commons-nc:before {
  content: "";
}

.fa-creative-commons-nc-eu:before {
  content: "";
}

.fa-creative-commons-nc-jp:before {
  content: "";
}

.fa-creative-commons-nd:before {
  content: "";
}

.fa-creative-commons-pd:before {
  content: "";
}

.fa-creative-commons-pd-alt:before {
  content: "";
}

.fa-creative-commons-remix:before {
  content: "";
}

.fa-creative-commons-sa:before {
  content: "";
}

.fa-creative-commons-sampling:before {
  content: "";
}

.fa-creative-commons-sampling-plus:before {
  content: "";
}

.fa-creative-commons-share:before {
  content: "";
}

.fa-creative-commons-zero:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-credit-card-blank:before {
  content: "";
}

.fa-credit-card-front:before {
  content: "";
}

.fa-cricket:before {
  content: "";
}

.fa-critical-role:before {
  content: "";
}

.fa-croissant:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-crop-alt:before {
  content: "";
}

.fa-cross:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-crow:before {
  content: "";
}

.fa-crown:before {
  content: "";
}

.fa-crutch:before {
  content: "";
}

.fa-crutches:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-css3-alt:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-curling:before {
  content: "";
}

.fa-cut:before {
  content: "";
}

.fa-cuttlefish:before {
  content: "";
}

.fa-d-and-d:before {
  content: "";
}

.fa-d-and-d-beyond:before {
  content: "";
}

.fa-dagger:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-deaf:before {
  content: "";
}

.fa-debug:before {
  content: "";
}

.fa-deer:before {
  content: "";
}

.fa-deer-rudolph:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-democrat:before {
  content: "";
}

.fa-deploydog:before {
  content: "";
}

.fa-deskpro:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-desktop-alt:before {
  content: "";
}

.fa-dev:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-dewpoint:before {
  content: "";
}

.fa-dharmachakra:before {
  content: "";
}

.fa-dhl:before {
  content: "";
}

.fa-diagnoses:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-diaspora:before {
  content: "";
}

.fa-dice:before {
  content: "";
}

.fa-dice-d10:before {
  content: "";
}

.fa-dice-d12:before {
  content: "";
}

.fa-dice-d20:before {
  content: "";
}

.fa-dice-d4:before {
  content: "";
}

.fa-dice-d6:before {
  content: "";
}

.fa-dice-d8:before {
  content: "";
}

.fa-dice-five:before {
  content: "";
}

.fa-dice-four:before {
  content: "";
}

.fa-dice-one:before {
  content: "";
}

.fa-dice-six:before {
  content: "";
}

.fa-dice-three:before {
  content: "";
}

.fa-dice-two:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-digging:before {
  content: "";
}

.fa-digital-ocean:before {
  content: "";
}

.fa-digital-tachograph:before {
  content: "";
}

.fa-diploma:before {
  content: "";
}

.fa-directions:before {
  content: "";
}

.fa-discord:before {
  content: "";
}

.fa-discourse:before {
  content: "";
}

.fa-disease:before {
  content: "";
}

.fa-divide:before {
  content: "";
}

.fa-dizzy:before {
  content: "";
}

.fa-dna:before {
  content: "";
}

.fa-do-not-enter:before {
  content: "";
}

.fa-dochub:before {
  content: "";
}

.fa-docker:before {
  content: "";
}

.fa-dog:before {
  content: "";
}

.fa-dog-leashed:before {
  content: "";
}

.fa-dollar-sign:before {
  content: "";
}

.fa-dolly:before {
  content: "";
}

.fa-dolly-empty:before {
  content: "";
}

.fa-dolly-flatbed:before {
  content: "";
}

.fa-dolly-flatbed-alt:before {
  content: "";
}

.fa-dolly-flatbed-empty:before {
  content: "";
}

.fa-donate:before {
  content: "";
}

.fa-door-closed:before {
  content: "";
}

.fa-door-open:before {
  content: "";
}

.fa-dot-circle:before {
  content: "";
}

.fa-dove:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-draft2digital:before {
  content: "";
}

.fa-drafting-compass:before {
  content: "";
}

.fa-dragon:before {
  content: "";
}

.fa-draw-circle:before {
  content: "";
}

.fa-draw-polygon:before {
  content: "";
}

.fa-draw-square:before {
  content: "";
}

.fa-dreidel:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-dribbble-square:before {
  content: "";
}

.fa-drone:before {
  content: "";
}

.fa-drone-alt:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-drum:before {
  content: "";
}

.fa-drum-steelpan:before {
  content: "";
}

.fa-drumstick:before {
  content: "";
}

.fa-drumstick-bite:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-dryer:before {
  content: "";
}

.fa-dryer-alt:before {
  content: "";
}

.fa-duck:before {
  content: "";
}

.fa-dumbbell:before {
  content: "";
}

.fa-dumpster:before {
  content: "";
}

.fa-dumpster-fire:before {
  content: "";
}

.fa-dungeon:before {
  content: "";
}

.fa-dyalog:before {
  content: "";
}

.fa-ear:before {
  content: "";
}

.fa-ear-muffs:before {
  content: "";
}

.fa-earlybirds:before {
  content: "";
}

.fa-ebay:before {
  content: "";
}

.fa-eclipse:before {
  content: "";
}

.fa-eclipse-alt:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-edit:before {
  content: "";
}

.fa-egg:before {
  content: "";
}

.fa-egg-fried:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-elementor:before {
  content: "";
}

.fa-elephant:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-h-alt:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-ellipsis-v-alt:before {
  content: "";
}

.fa-ello:before {
  content: "";
}

.fa-ember:before {
  content: "";
}

.fa-empire:before {
  content: "";
}

.fa-empty-set:before {
  content: "";
}

.fa-engine-warning:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-dollar:before {
  content: "";
}

.fa-envelope-open-text:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-equals:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-erlang:before {
  content: "";
}

.fa-ethereum:before {
  content: "";
}

.fa-ethernet:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-euro-sign:before {
  content: "";
}

.fa-evernote:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-exchange-alt:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-exclamation-square:before {
  content: "";
}

.fa-exclamation-triangle:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-expand-alt:before {
  content: "";
}

.fa-expand-arrows:before {
  content: "";
}

.fa-expand-arrows-alt:before {
  content: "";
}

.fa-expand-wide:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-external-link-alt:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-external-link-square-alt:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-dropper:before {
  content: "";
}

.fa-eye-evil:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-facebook:before {
  content: "";
}

.fa-facebook-f:before {
  content: "";
}

.fa-facebook-messenger:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-fan:before {
  content: "";
}

.fa-fantasy-flight-games:before {
  content: "";
}

.fa-farm:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-feather:before {
  content: "";
}

.fa-feather-alt:before {
  content: "";
}

.fa-fedex:before {
  content: "";
}

.fa-fedora:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-field-hockey:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-figma:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-alt:before {
  content: "";
}

.fa-file-archive:before {
  content: "";
}

.fa-file-audio:before {
  content: "";
}

.fa-file-certificate:before {
  content: "";
}

.fa-file-chart-line:before {
  content: "";
}

.fa-file-chart-pie:before {
  content: "";
}

.fa-file-check:before {
  content: "";
}

.fa-file-code:before {
  content: "";
}

.fa-file-contract:before {
  content: "";
}

.fa-file-csv:before {
  content: "";
}

.fa-file-download:before {
  content: "";
}

.fa-file-edit:before {
  content: "";
}

.fa-file-excel:before {
  content: "";
}

.fa-file-exclamation:before {
  content: "";
}

.fa-file-export:before {
  content: "";
}

.fa-file-image:before {
  content: "";
}

.fa-file-import:before {
  content: "";
}

.fa-file-invoice:before {
  content: "";
}

.fa-file-invoice-dollar:before {
  content: "";
}

.fa-file-medical:before {
  content: "";
}

.fa-file-medical-alt:before {
  content: "";
}

.fa-file-minus:before {
  content: "";
}

.fa-file-pdf:before {
  content: "";
}

.fa-file-plus:before {
  content: "";
}

.fa-file-powerpoint:before {
  content: "";
}

.fa-file-prescription:before {
  content: "";
}

.fa-file-search:before {
  content: "";
}

.fa-file-signature:before {
  content: "";
}

.fa-file-spreadsheet:before {
  content: "";
}

.fa-file-times:before {
  content: "";
}

.fa-file-upload:before {
  content: "";
}

.fa-file-user:before {
  content: "";
}

.fa-file-video:before {
  content: "";
}

.fa-file-word:before {
  content: "";
}

.fa-files-medical:before {
  content: "";
}

.fa-fill:before {
  content: "";
}

.fa-fill-drip:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-film-alt:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-fingerprint:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-fire-alt:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-fire-smoke:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-fireplace:before {
  content: "";
}

.fa-first-aid:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-first-order-alt:before {
  content: "";
}

.fa-firstdraft:before {
  content: "";
}

.fa-fish:before {
  content: "";
}

.fa-fish-cooked:before {
  content: "";
}

.fa-fist-raised:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-flag-alt:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-flag-usa:before {
  content: "";
}

.fa-flame:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-flask-poison:before {
  content: "";
}

.fa-flask-potion:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-flipboard:before {
  content: "";
}

.fa-flower:before {
  content: "";
}

.fa-flower-daffodil:before {
  content: "";
}

.fa-flower-tulip:before {
  content: "";
}

.fa-flushed:before {
  content: "";
}

.fa-fly:before {
  content: "";
}

.fa-fog:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-minus:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-folder-plus:before {
  content: "";
}

.fa-folder-times:before {
  content: "";
}

.fa-folder-tree:before {
  content: "";
}

.fa-folders:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-font-awesome:before {
  content: "";
}

.fa-font-awesome-alt:before {
  content: "";
}

.fa-font-awesome-flag:before {
  content: "";
}

.fa-font-awesome-logo-full:before {
  content: "";
}

.fa-font-case:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-fonticons-fi:before {
  content: "";
}

.fa-football-ball:before {
  content: "";
}

.fa-football-helmet:before {
  content: "";
}

.fa-forklift:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-fort-awesome-alt:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-fragile:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-freebsd:before {
  content: "";
}

.fa-french-fries:before {
  content: "";
}

.fa-frog:before {
  content: "";
}

.fa-frosty-head:before {
  content: "";
}

.fa-frown:before {
  content: "";
}

.fa-frown-open:before {
  content: "";
}

.fa-fulcrum:before {
  content: "";
}

.fa-function:before {
  content: "";
}

.fa-funnel-dollar:before {
  content: "";
}

.fa-futbol:before {
  content: "";
}

.fa-galactic-republic:before {
  content: "";
}

.fa-galactic-senate:before {
  content: "";
}

.fa-game-board:before {
  content: "";
}

.fa-game-board-alt:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-gas-pump:before {
  content: "";
}

.fa-gas-pump-slash:before {
  content: "";
}

.fa-gavel:before {
  content: "";
}

.fa-gem:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-ghost:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-gift-card:before {
  content: "";
}

.fa-gifts:before {
  content: "";
}

.fa-gingerbread-man:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-git-alt:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-gitkraken:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-gitter:before {
  content: "";
}

.fa-glass:before {
  content: "";
}

.fa-glass-champagne:before {
  content: "";
}

.fa-glass-cheers:before {
  content: "";
}

.fa-glass-citrus:before {
  content: "";
}

.fa-glass-martini:before {
  content: "";
}

.fa-glass-martini-alt:before {
  content: "";
}

.fa-glass-whiskey:before {
  content: "";
}

.fa-glass-whiskey-rocks:before {
  content: "";
}

.fa-glasses:before {
  content: "";
}

.fa-glasses-alt:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-globe-africa:before {
  content: "";
}

.fa-globe-americas:before {
  content: "";
}

.fa-globe-asia:before {
  content: "";
}

.fa-globe-europe:before {
  content: "";
}

.fa-globe-snow:before {
  content: "";
}

.fa-globe-stand:before {
  content: "";
}

.fa-gofore:before {
  content: "";
}

.fa-golf-ball:before {
  content: "";
}

.fa-golf-club:before {
  content: "";
}

.fa-goodreads:before {
  content: "";
}

.fa-goodreads-g:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-google-drive:before {
  content: "";
}

.fa-google-play:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-google-plus-g:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-gopuram:before {
  content: "";
}

.fa-graduation-cap:before {
  content: "";
}

.fa-gratipay:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-greater-than:before {
  content: "";
}

.fa-greater-than-equal:before {
  content: "";
}

.fa-grimace:before {
  content: "";
}

.fa-grin:before {
  content: "";
}

.fa-grin-alt:before {
  content: "";
}

.fa-grin-beam:before {
  content: "";
}

.fa-grin-beam-sweat:before {
  content: "";
}

.fa-grin-hearts:before {
  content: "";
}

.fa-grin-squint:before {
  content: "";
}

.fa-grin-squint-tears:before {
  content: "";
}

.fa-grin-stars:before {
  content: "";
}

.fa-grin-tears:before {
  content: "";
}

.fa-grin-tongue:before {
  content: "";
}

.fa-grin-tongue-squint:before {
  content: "";
}

.fa-grin-tongue-wink:before {
  content: "";
}

.fa-grin-wink:before {
  content: "";
}

.fa-grip-horizontal:before {
  content: "";
}

.fa-grip-lines:before {
  content: "";
}

.fa-grip-lines-vertical:before {
  content: "";
}

.fa-grip-vertical:before {
  content: "";
}

.fa-gripfire:before {
  content: "";
}

.fa-grunt:before {
  content: "";
}

.fa-guitar:before {
  content: "";
}

.fa-gulp:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-h1:before {
  content: "";
}

.fa-h2:before {
  content: "";
}

.fa-h3:before {
  content: "";
}

.fa-h4:before {
  content: "";
}

.fa-hacker-news:before {
  content: "";
}

.fa-hacker-news-square:before {
  content: "";
}

.fa-hackerrank:before {
  content: "";
}

.fa-hamburger:before {
  content: "";
}

.fa-hammer:before {
  content: "";
}

.fa-hammer-war:before {
  content: "";
}

.fa-hamsa:before {
  content: "";
}

.fa-hand-heart:before {
  content: "";
}

.fa-hand-holding:before {
  content: "";
}

.fa-hand-holding-box:before {
  content: "";
}

.fa-hand-holding-heart:before {
  content: "";
}

.fa-hand-holding-magic:before {
  content: "";
}

.fa-hand-holding-seedling:before {
  content: "";
}

.fa-hand-holding-usd:before {
  content: "";
}

.fa-hand-holding-water:before {
  content: "";
}

.fa-hand-lizard:before {
  content: "";
}

.fa-hand-middle-finger:before {
  content: "";
}

.fa-hand-paper:before {
  content: "";
}

.fa-hand-peace:before {
  content: "";
}

.fa-hand-point-down:before {
  content: "";
}

.fa-hand-point-left:before {
  content: "";
}

.fa-hand-point-right:before {
  content: "";
}

.fa-hand-point-up:before {
  content: "";
}

.fa-hand-pointer:before {
  content: "";
}

.fa-hand-receiving:before {
  content: "";
}

.fa-hand-rock:before {
  content: "";
}

.fa-hand-scissors:before {
  content: "";
}

.fa-hand-spock:before {
  content: "";
}

.fa-hands:before {
  content: "";
}

.fa-hands-heart:before {
  content: "";
}

.fa-hands-helping:before {
  content: "";
}

.fa-hands-usd:before {
  content: "";
}

.fa-handshake:before {
  content: "";
}

.fa-handshake-alt:before {
  content: "";
}

.fa-hanukiah:before {
  content: "";
}

.fa-hard-hat:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-hat-chef:before {
  content: "";
}

.fa-hat-santa:before {
  content: "";
}

.fa-hat-winter:before {
  content: "";
}

.fa-hat-witch:before {
  content: "";
}

.fa-hat-wizard:before {
  content: "";
}

.fa-haykal:before {
  content: "";
}

.fa-hdd:before {
  content: "";
}

.fa-head-side:before {
  content: "";
}

.fa-head-side-brain:before {
  content: "";
}

.fa-head-side-medical:before {
  content: "";
}

.fa-head-vr:before {
  content: "";
}

.fa-heading:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-headphones-alt:before {
  content: "";
}

.fa-headset:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-heart-broken:before {
  content: "";
}

.fa-heart-circle:before {
  content: "";
}

.fa-heart-rate:before {
  content: "";
}

.fa-heart-square:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-helicopter:before {
  content: "";
}

.fa-helmet-battle:before {
  content: "";
}

.fa-hexagon:before {
  content: "";
}

.fa-highlighter:before {
  content: "";
}

.fa-hiking:before {
  content: "";
}

.fa-hippo:before {
  content: "";
}

.fa-hips:before {
  content: "";
}

.fa-hire-a-helper:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-hockey-mask:before {
  content: "";
}

.fa-hockey-puck:before {
  content: "";
}

.fa-hockey-sticks:before {
  content: "";
}

.fa-holly-berry:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-home-alt:before {
  content: "";
}

.fa-home-heart:before {
  content: "";
}

.fa-home-lg:before {
  content: "";
}

.fa-home-lg-alt:before {
  content: "";
}

.fa-hood-cloak:before {
  content: "";
}

.fa-hooli:before {
  content: "";
}

.fa-horizontal-rule:before {
  content: "";
}

.fa-hornbill:before {
  content: "";
}

.fa-horse:before {
  content: "";
}

.fa-horse-head:before {
  content: "";
}

.fa-hospital:before {
  content: "";
}

.fa-hospital-alt:before {
  content: "";
}

.fa-hospital-symbol:before {
  content: "";
}

.fa-hospital-user:before {
  content: "";
}

.fa-hospitals:before {
  content: "";
}

.fa-hot-tub:before {
  content: "";
}

.fa-hotdog:before {
  content: "";
}

.fa-hotel:before {
  content: "";
}

.fa-hotjar:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-start:before {
  content: "";
}

.fa-house-damage:before {
  content: "";
}

.fa-house-flood:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-hryvnia:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-hubspot:before {
  content: "";
}

.fa-humidity:before {
  content: "";
}

.fa-hurricane:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-ice-cream:before {
  content: "";
}

.fa-ice-skate:before {
  content: "";
}

.fa-icicles:before {
  content: "";
}

.fa-icons:before {
  content: "";
}

.fa-icons-alt:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-id-card:before {
  content: "";
}

.fa-id-card-alt:before {
  content: "";
}

.fa-igloo:before {
  content: "";
}

.fa-image:before {
  content: "";
}

.fa-images:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-inbox-in:before {
  content: "";
}

.fa-inbox-out:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-industry-alt:before {
  content: "";
}

.fa-infinity:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-info-square:before {
  content: "";
}

.fa-inhaler:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-integral:before {
  content: "";
}

.fa-intercom:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-intersection:before {
  content: "";
}

.fa-inventory:before {
  content: "";
}

.fa-invision:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-island-tropical:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-itch-io:before {
  content: "";
}

.fa-itunes:before {
  content: "";
}

.fa-itunes-note:before {
  content: "";
}

.fa-jack-o-lantern:before {
  content: "";
}

.fa-java:before {
  content: "";
}

.fa-jedi:before {
  content: "";
}

.fa-jedi-order:before {
  content: "";
}

.fa-jenkins:before {
  content: "";
}

.fa-jira:before {
  content: "";
}

.fa-joget:before {
  content: "";
}

.fa-joint:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-journal-whills:before {
  content: "";
}

.fa-js:before {
  content: "";
}

.fa-js-square:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-kaaba:before {
  content: "";
}

.fa-kaggle:before {
  content: "";
}

.fa-kerning:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-key-skeleton:before {
  content: "";
}

.fa-keybase:before {
  content: "";
}

.fa-keyboard:before {
  content: "";
}

.fa-keycdn:before {
  content: "";
}

.fa-keynote:before {
  content: "";
}

.fa-khanda:before {
  content: "";
}

.fa-kickstarter:before {
  content: "";
}

.fa-kickstarter-k:before {
  content: "";
}

.fa-kidneys:before {
  content: "";
}

.fa-kiss:before {
  content: "";
}

.fa-kiss-beam:before {
  content: "";
}

.fa-kiss-wink-heart:before {
  content: "";
}

.fa-kite:before {
  content: "";
}

.fa-kiwi-bird:before {
  content: "";
}

.fa-knife-kitchen:before {
  content: "";
}

.fa-korvue:before {
  content: "";
}

.fa-lambda:before {
  content: "";
}

.fa-lamp:before {
  content: "";
}

.fa-landmark:before {
  content: "";
}

.fa-landmark-alt:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-laptop-code:before {
  content: "";
}

.fa-laptop-medical:before {
  content: "";
}

.fa-laravel:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-laugh:before {
  content: "";
}

.fa-laugh-beam:before {
  content: "";
}

.fa-laugh-squint:before {
  content: "";
}

.fa-laugh-wink:before {
  content: "";
}

.fa-layer-group:before {
  content: "";
}

.fa-layer-minus:before {
  content: "";
}

.fa-layer-plus:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-leaf-heart:before {
  content: "";
}

.fa-leaf-maple:before {
  content: "";
}

.fa-leaf-oak:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-lemon:before {
  content: "";
}

.fa-less:before {
  content: "";
}

.fa-less-than:before {
  content: "";
}

.fa-less-than-equal:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-level-down-alt:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-up-alt:before {
  content: "";
}

.fa-life-ring:before {
  content: "";
}

.fa-lightbulb:before {
  content: "";
}

.fa-lightbulb-dollar:before {
  content: "";
}

.fa-lightbulb-exclamation:before {
  content: "";
}

.fa-lightbulb-on:before {
  content: "";
}

.fa-lightbulb-slash:before {
  content: "";
}

.fa-lights-holiday:before {
  content: "";
}

.fa-line:before {
  content: "";
}

.fa-line-columns:before {
  content: "";
}

.fa-line-height:before {
  content: "";
}

.fa-link:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-linkedin-in:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-lips:before {
  content: "";
}

.fa-lira-sign:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-location:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-location-circle:before {
  content: "";
}

.fa-location-slash:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-lock-alt:before {
  content: "";
}

.fa-lock-open:before {
  content: "";
}

.fa-lock-open-alt:before {
  content: "";
}

.fa-long-arrow-alt-down:before {
  content: "";
}

.fa-long-arrow-alt-left:before {
  content: "";
}

.fa-long-arrow-alt-right:before {
  content: "";
}

.fa-long-arrow-alt-up:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-loveseat:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-luchador:before {
  content: "";
}

.fa-luggage-cart:before {
  content: "";
}

.fa-lungs:before {
  content: "";
}

.fa-lyft:before {
  content: "";
}

.fa-mace:before {
  content: "";
}

.fa-magento:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-mail-bulk:before {
  content: "";
}

.fa-mailbox:before {
  content: "";
}

.fa-mailchimp:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-mandalorian:before {
  content: "";
}

.fa-mandolin:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-map-marked:before {
  content: "";
}

.fa-map-marked-alt:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-map-marker-alt:before {
  content: "";
}

.fa-map-marker-alt-slash:before {
  content: "";
}

.fa-map-marker-check:before {
  content: "";
}

.fa-map-marker-edit:before {
  content: "";
}

.fa-map-marker-exclamation:before {
  content: "";
}

.fa-map-marker-minus:before {
  content: "";
}

.fa-map-marker-plus:before {
  content: "";
}

.fa-map-marker-question:before {
  content: "";
}

.fa-map-marker-slash:before {
  content: "";
}

.fa-map-marker-smile:before {
  content: "";
}

.fa-map-marker-times:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-markdown:before {
  content: "";
}

.fa-marker:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mask:before {
  content: "";
}

.fa-mastodon:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-meat:before {
  content: "";
}

.fa-medal:before {
  content: "";
}

.fa-medapps:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-medium-m:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-medrt:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.fa-megaphone:before {
  content: "";
}

.fa-megaport:before {
  content: "";
}

.fa-meh:before {
  content: "";
}

.fa-meh-blank:before {
  content: "";
}

.fa-meh-rolling-eyes:before {
  content: "";
}

.fa-memory:before {
  content: "";
}

.fa-mendeley:before {
  content: "";
}

.fa-menorah:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-meteor:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-alt:before {
  content: "";
}

.fa-microphone-alt-slash:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-microscope:before {
  content: "";
}

.fa-microsoft:before {
  content: "";
}

.fa-mind-share:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-minus-hexagon:before {
  content: "";
}

.fa-minus-octagon:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-mistletoe:before {
  content: "";
}

.fa-mitten:before {
  content: "";
}

.fa-mix:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-mizuni:before {
  content: "";
}

.fa-mobile:before {
  content: "";
}

.fa-mobile-alt:before {
  content: "";
}

.fa-mobile-android:before {
  content: "";
}

.fa-mobile-android-alt:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-monero:before {
  content: "";
}

.fa-money-bill:before {
  content: "";
}

.fa-money-bill-alt:before {
  content: "";
}

.fa-money-bill-wave:before {
  content: "";
}

.fa-money-bill-wave-alt:before {
  content: "";
}

.fa-money-check:before {
  content: "";
}

.fa-money-check-alt:before {
  content: "";
}

.fa-money-check-edit:before {
  content: "";
}

.fa-money-check-edit-alt:before {
  content: "";
}

.fa-monitor-heart-rate:before {
  content: "";
}

.fa-monkey:before {
  content: "";
}

.fa-monument:before {
  content: "";
}

.fa-moon:before {
  content: "";
}

.fa-moon-cloud:before {
  content: "";
}

.fa-moon-stars:before {
  content: "";
}

.fa-mortar-pestle:before {
  content: "";
}

.fa-mosque:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-mountain:before {
  content: "";
}

.fa-mountains:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-mug:before {
  content: "";
}

.fa-mug-hot:before {
  content: "";
}

.fa-mug-marshmallows:before {
  content: "";
}

.fa-mug-tea:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-napster:before {
  content: "";
}

.fa-narwhal:before {
  content: "";
}

.fa-neos:before {
  content: "";
}

.fa-network-wired:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-newspaper:before {
  content: "";
}

.fa-nimblr:before {
  content: "";
}

.fa-node:before {
  content: "";
}

.fa-node-js:before {
  content: "";
}

.fa-not-equal:before {
  content: "";
}

.fa-notes-medical:before {
  content: "";
}

.fa-npm:before {
  content: "";
}

.fa-ns8:before {
  content: "";
}

.fa-nutritionix:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-octagon:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-oil-can:before {
  content: "";
}

.fa-oil-temp:before {
  content: "";
}

.fa-old-republic:before {
  content: "";
}

.fa-om:before {
  content: "";
}

.fa-omega:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-ornament:before {
  content: "";
}

.fa-osi:before {
  content: "";
}

.fa-otter:before {
  content: "";
}

.fa-outdent:before {
  content: "";
}

.fa-overline:before {
  content: "";
}

.fa-page-break:before {
  content: "";
}

.fa-page4:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-pager:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-paint-brush-alt:before {
  content: "";
}

.fa-paint-roller:before {
  content: "";
}

.fa-palette:before {
  content: "";
}

.fa-palfed:before {
  content: "";
}

.fa-pallet:before {
  content: "";
}

.fa-pallet-alt:before {
  content: "";
}

.fa-paper-plane:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-parachute-box:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-paragraph-rtl:before {
  content: "";
}

.fa-parking:before {
  content: "";
}

.fa-parking-circle:before {
  content: "";
}

.fa-parking-circle-slash:before {
  content: "";
}

.fa-parking-slash:before {
  content: "";
}

.fa-passport:before {
  content: "";
}

.fa-pastafarianism:before {
  content: "";
}

.fa-paste:before {
  content: "";
}

.fa-patreon:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-paw-alt:before {
  content: "";
}

.fa-paw-claws:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-peace:before {
  content: "";
}

.fa-pegasus:before {
  content: "";
}

.fa-pen:before {
  content: "";
}

.fa-pen-alt:before {
  content: "";
}

.fa-pen-fancy:before {
  content: "";
}

.fa-pen-nib:before {
  content: "";
}

.fa-pen-square:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-pencil-alt:before {
  content: "";
}

.fa-pencil-paintbrush:before {
  content: "";
}

.fa-pencil-ruler:before {
  content: "";
}

.fa-pennant:before {
  content: "";
}

.fa-penny-arcade:before {
  content: "";
}

.fa-people-carry:before {
  content: "";
}

.fa-pepper-hot:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-percentage:before {
  content: "";
}

.fa-periscope:before {
  content: "";
}

.fa-person-booth:before {
  content: "";
}

.fa-person-carry:before {
  content: "";
}

.fa-person-dolly:before {
  content: "";
}

.fa-person-dolly-empty:before {
  content: "";
}

.fa-person-sign:before {
  content: "";
}

.fa-phabricator:before {
  content: "";
}

.fa-phoenix-framework:before {
  content: "";
}

.fa-phoenix-squadron:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-phone-alt:before {
  content: "";
}

.fa-phone-laptop:before {
  content: "";
}

.fa-phone-office:before {
  content: "";
}

.fa-phone-plus:before {
  content: "";
}

.fa-phone-slash:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-phone-square-alt:before {
  content: "";
}

.fa-phone-volume:before {
  content: "";
}

.fa-photo-video:before {
  content: "";
}

.fa-php:before {
  content: "";
}

.fa-pi:before {
  content: "";
}

.fa-pie:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-pied-piper-hat:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pig:before {
  content: "";
}

.fa-piggy-bank:before {
  content: "";
}

.fa-pills:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-pizza:before {
  content: "";
}

.fa-pizza-slice:before {
  content: "";
}

.fa-place-of-worship:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-plane-alt:before {
  content: "";
}

.fa-plane-arrival:before {
  content: "";
}

.fa-plane-departure:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-playstation:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-plus-hexagon:before {
  content: "";
}

.fa-plus-octagon:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-podium:before {
  content: "";
}

.fa-podium-star:before {
  content: "";
}

.fa-poll:before {
  content: "";
}

.fa-poll-h:before {
  content: "";
}

.fa-poll-people:before {
  content: "";
}

.fa-poo:before {
  content: "";
}

.fa-poo-storm:before {
  content: "";
}

.fa-poop:before {
  content: "";
}

.fa-popcorn:before {
  content: "";
}

.fa-portrait:before {
  content: "";
}

.fa-pound-sign:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-pray:before {
  content: "";
}

.fa-praying-hands:before {
  content: "";
}

.fa-prescription:before {
  content: "";
}

.fa-prescription-bottle:before {
  content: "";
}

.fa-prescription-bottle-alt:before {
  content: "";
}

.fa-presentation:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-print-search:before {
  content: "";
}

.fa-print-slash:before {
  content: "";
}

.fa-procedures:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-project-diagram:before {
  content: "";
}

.fa-pumpkin:before {
  content: "";
}

.fa-pushed:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-python:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-question-square:before {
  content: "";
}

.fa-quidditch:before {
  content: "";
}

.fa-quinscape:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-quran:before {
  content: "";
}

.fa-r-project:before {
  content: "";
}

.fa-rabbit:before {
  content: "";
}

.fa-rabbit-fast:before {
  content: "";
}

.fa-racquet:before {
  content: "";
}

.fa-radiation:before {
  content: "";
}

.fa-radiation-alt:before {
  content: "";
}

.fa-rainbow:before {
  content: "";
}

.fa-raindrops:before {
  content: "";
}

.fa-ram:before {
  content: "";
}

.fa-ramp-loading:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-raspberry-pi:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-react:before {
  content: "";
}

.fa-reacteurope:before {
  content: "";
}

.fa-readme:before {
  content: "";
}

.fa-rebel:before {
  content: "";
}

.fa-receipt:before {
  content: "";
}

.fa-rectangle-landscape:before {
  content: "";
}

.fa-rectangle-portrait:before {
  content: "";
}

.fa-rectangle-wide:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-red-river:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-redhat:before {
  content: "";
}

.fa-redo:before {
  content: "";
}

.fa-redo-alt:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-remove-format:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-repeat:before {
  content: "";
}

.fa-repeat-1:before {
  content: "";
}

.fa-repeat-1-alt:before {
  content: "";
}

.fa-repeat-alt:before {
  content: "";
}

.fa-reply:before {
  content: "";
}

.fa-reply-all:before {
  content: "";
}

.fa-replyd:before {
  content: "";
}

.fa-republican:before {
  content: "";
}

.fa-researchgate:before {
  content: "";
}

.fa-resolving:before {
  content: "";
}

.fa-restroom:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-retweet-alt:before {
  content: "";
}

.fa-rev:before {
  content: "";
}

.fa-ribbon:before {
  content: "";
}

.fa-ring:before {
  content: "";
}

.fa-rings-wedding:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-robot:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-rocketchat:before {
  content: "";
}

.fa-rockrms:before {
  content: "";
}

.fa-route:before {
  content: "";
}

.fa-route-highway:before {
  content: "";
}

.fa-route-interstate:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-ruble-sign:before {
  content: "";
}

.fa-ruler:before {
  content: "";
}

.fa-ruler-combined:before {
  content: "";
}

.fa-ruler-horizontal:before {
  content: "";
}

.fa-ruler-triangle:before {
  content: "";
}

.fa-ruler-vertical:before {
  content: "";
}

.fa-running:before {
  content: "";
}

.fa-rupee-sign:before {
  content: "";
}

.fa-rv:before {
  content: "";
}

.fa-sack:before {
  content: "";
}

.fa-sack-dollar:before {
  content: "";
}

.fa-sad-cry:before {
  content: "";
}

.fa-sad-tear:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-salad:before {
  content: "";
}

.fa-salesforce:before {
  content: "";
}

.fa-sandwich:before {
  content: "";
}

.fa-sass:before {
  content: "";
}

.fa-satellite:before {
  content: "";
}

.fa-satellite-dish:before {
  content: "";
}

.fa-sausage:before {
  content: "";
}

.fa-save:before {
  content: "";
}

.fa-scalpel:before {
  content: "";
}

.fa-scalpel-path:before {
  content: "";
}

.fa-scanner:before {
  content: "";
}

.fa-scanner-keyboard:before {
  content: "";
}

.fa-scanner-touchscreen:before {
  content: "";
}

.fa-scarecrow:before {
  content: "";
}

.fa-scarf:before {
  content: "";
}

.fa-schlix:before {
  content: "";
}

.fa-school:before {
  content: "";
}

.fa-screwdriver:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-scroll:before {
  content: "";
}

.fa-scroll-old:before {
  content: "";
}

.fa-scrubber:before {
  content: "";
}

.fa-scythe:before {
  content: "";
}

.fa-sd-card:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-search-dollar:before {
  content: "";
}

.fa-search-location:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-searchengin:before {
  content: "";
}

.fa-seedling:before {
  content: "";
}

.fa-sellcast:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-send-back:before {
  content: "";
}

.fa-send-backward:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-servicestack:before {
  content: "";
}

.fa-shapes:before {
  content: "";
}

.fa-share:before {
  content: "";
}

.fa-share-all:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-sheep:before {
  content: "";
}

.fa-shekel-sign:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-shield-alt:before {
  content: "";
}

.fa-shield-check:before {
  content: "";
}

.fa-shield-cross:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-shipping-fast:before {
  content: "";
}

.fa-shipping-timed:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-shish-kebab:before {
  content: "";
}

.fa-shoe-prints:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-shopware:before {
  content: "";
}

.fa-shovel:before {
  content: "";
}

.fa-shovel-snow:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-shredder:before {
  content: "";
}

.fa-shuttle-van:before {
  content: "";
}

.fa-shuttlecock:before {
  content: "";
}

.fa-sickle:before {
  content: "";
}

.fa-sigma:before {
  content: "";
}

.fa-sign:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-sign-in-alt:before {
  content: "";
}

.fa-sign-language:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-sign-out-alt:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-signal-1:before {
  content: "";
}

.fa-signal-2:before {
  content: "";
}

.fa-signal-3:before {
  content: "";
}

.fa-signal-4:before {
  content: "";
}

.fa-signal-alt:before {
  content: "";
}

.fa-signal-alt-1:before {
  content: "";
}

.fa-signal-alt-2:before {
  content: "";
}

.fa-signal-alt-3:before {
  content: "";
}

.fa-signal-alt-slash:before {
  content: "";
}

.fa-signal-slash:before {
  content: "";
}

.fa-signature:before {
  content: "";
}

.fa-sim-card:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-sistrix:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-sith:before {
  content: "";
}

.fa-skating:before {
  content: "";
}

.fa-skeleton:before {
  content: "";
}

.fa-sketch:before {
  content: "";
}

.fa-ski-jump:before {
  content: "";
}

.fa-ski-lift:before {
  content: "";
}

.fa-skiing:before {
  content: "";
}

.fa-skiing-nordic:before {
  content: "";
}

.fa-skull:before {
  content: "";
}

.fa-skull-crossbones:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-slack-hash:before {
  content: "";
}

.fa-slash:before {
  content: "";
}

.fa-sledding:before {
  content: "";
}

.fa-sleigh:before {
  content: "";
}

.fa-sliders-h:before {
  content: "";
}

.fa-sliders-h-square:before {
  content: "";
}

.fa-sliders-v:before {
  content: "";
}

.fa-sliders-v-square:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-smile:before {
  content: "";
}

.fa-smile-beam:before {
  content: "";
}

.fa-smile-plus:before {
  content: "";
}

.fa-smile-wink:before {
  content: "";
}

.fa-smog:before {
  content: "";
}

.fa-smoke:before {
  content: "";
}

.fa-smoking:before {
  content: "";
}

.fa-smoking-ban:before {
  content: "";
}

.fa-sms:before {
  content: "";
}

.fa-snake:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-snooze:before {
  content: "";
}

.fa-snow-blowing:before {
  content: "";
}

.fa-snowboarding:before {
  content: "";
}

.fa-snowflake:before {
  content: "";
}

.fa-snowflakes:before {
  content: "";
}

.fa-snowman:before {
  content: "";
}

.fa-snowmobile:before {
  content: "";
}

.fa-snowplow:before {
  content: "";
}

.fa-socks:before {
  content: "";
}

.fa-solar-panel:before {
  content: "";
}

.fa-sort:before {
  content: "";
}

.fa-sort-alpha-down:before {
  content: "";
}

.fa-sort-alpha-down-alt:before {
  content: "";
}

.fa-sort-alpha-up:before {
  content: "";
}

.fa-sort-alpha-up-alt:before {
  content: "";
}

.fa-sort-alt:before {
  content: "";
}

.fa-sort-amount-down:before {
  content: "";
}

.fa-sort-amount-down-alt:before {
  content: "";
}

.fa-sort-amount-up:before {
  content: "";
}

.fa-sort-amount-up-alt:before {
  content: "";
}

.fa-sort-down:before {
  content: "";
}

.fa-sort-numeric-down:before {
  content: "";
}

.fa-sort-numeric-down-alt:before {
  content: "";
}

.fa-sort-numeric-up:before {
  content: "";
}

.fa-sort-numeric-up-alt:before {
  content: "";
}

.fa-sort-shapes-down:before {
  content: "";
}

.fa-sort-shapes-down-alt:before {
  content: "";
}

.fa-sort-shapes-up:before {
  content: "";
}

.fa-sort-shapes-up-alt:before {
  content: "";
}

.fa-sort-size-down:before {
  content: "";
}

.fa-sort-size-down-alt:before {
  content: "";
}

.fa-sort-size-up:before {
  content: "";
}

.fa-sort-size-up-alt:before {
  content: "";
}

.fa-sort-up:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-soup:before {
  content: "";
}

.fa-sourcetree:before {
  content: "";
}

.fa-spa:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-spade:before {
  content: "";
}

.fa-sparkles:before {
  content: "";
}

.fa-speakap:before {
  content: "";
}

.fa-speaker-deck:before {
  content: "";
}

.fa-spell-check:before {
  content: "";
}

.fa-spider:before {
  content: "";
}

.fa-spider-black-widow:before {
  content: "";
}

.fa-spider-web:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-spinner-third:before {
  content: "";
}

.fa-splotch:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-spray-can:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-square-full:before {
  content: "";
}

.fa-square-root:before {
  content: "";
}

.fa-square-root-alt:before {
  content: "";
}

.fa-squarespace:before {
  content: "";
}

.fa-squirrel:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-stackpath:before {
  content: "";
}

.fa-staff:before {
  content: "";
}

.fa-stamp:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-and-crescent:before {
  content: "";
}

.fa-star-christmas:before {
  content: "";
}

.fa-star-exclamation:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-star-half-alt:before {
  content: "";
}

.fa-star-of-david:before {
  content: "";
}

.fa-star-of-life:before {
  content: "";
}

.fa-stars:before {
  content: "";
}

.fa-staylinked:before {
  content: "";
}

.fa-steak:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-steam-symbol:before {
  content: "";
}

.fa-steering-wheel:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-sticker-mule:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-stocking:before {
  content: "";
}

.fa-stomach:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stopwatch:before {
  content: "";
}

.fa-store:before {
  content: "";
}

.fa-store-alt:before {
  content: "";
}

.fa-strava:before {
  content: "";
}

.fa-stream:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-stretcher:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-stripe:before {
  content: "";
}

.fa-stripe-s:before {
  content: "";
}

.fa-stroopwafel:before {
  content: "";
}

.fa-studiovinari:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-suitcase-rolling:before {
  content: "";
}

.fa-sun:before {
  content: "";
}

.fa-sun-cloud:before {
  content: "";
}

.fa-sun-dust:before {
  content: "";
}

.fa-sun-haze:before {
  content: "";
}

.fa-sunglasses:before {
  content: "";
}

.fa-sunrise:before {
  content: "";
}

.fa-sunset:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-supple:before {
  content: "";
}

.fa-surprise:before {
  content: "";
}

.fa-suse:before {
  content: "";
}

.fa-swatchbook:before {
  content: "";
}

.fa-swimmer:before {
  content: "";
}

.fa-swimming-pool:before {
  content: "";
}

.fa-sword:before {
  content: "";
}

.fa-swords:before {
  content: "";
}

.fa-symfony:before {
  content: "";
}

.fa-synagogue:before {
  content: "";
}

.fa-sync:before {
  content: "";
}

.fa-sync-alt:before {
  content: "";
}

.fa-syringe:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-table-tennis:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-tablet-alt:before {
  content: "";
}

.fa-tablet-android:before {
  content: "";
}

.fa-tablet-android-alt:before {
  content: "";
}

.fa-tablet-rugged:before {
  content: "";
}

.fa-tablets:before {
  content: "";
}

.fa-tachometer:before {
  content: "";
}

.fa-tachometer-alt:before {
  content: "";
}

.fa-tachometer-alt-average:before {
  content: "";
}

.fa-tachometer-alt-fast:before {
  content: "";
}

.fa-tachometer-alt-fastest:before {
  content: "";
}

.fa-tachometer-alt-slow:before {
  content: "";
}

.fa-tachometer-alt-slowest:before {
  content: "";
}

.fa-tachometer-average:before {
  content: "";
}

.fa-tachometer-fast:before {
  content: "";
}

.fa-tachometer-fastest:before {
  content: "";
}

.fa-tachometer-slow:before {
  content: "";
}

.fa-tachometer-slowest:before {
  content: "";
}

.fa-taco:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-tally:before {
  content: "";
}

.fa-tanakh:before {
  content: "";
}

.fa-tape:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-tasks-alt:before {
  content: "";
}

.fa-taxi:before {
  content: "";
}

.fa-teamspeak:before {
  content: "";
}

.fa-teeth:before {
  content: "";
}

.fa-teeth-open:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-telegram-plane:before {
  content: "";
}

.fa-temperature-frigid:before {
  content: "";
}

.fa-temperature-high:before {
  content: "";
}

.fa-temperature-hot:before {
  content: "";
}

.fa-temperature-low:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-tenge:before {
  content: "";
}

.fa-tennis-ball:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-text:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-size:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-the-red-yeti:before {
  content: "";
}

.fa-theater-masks:before {
  content: "";
}

.fa-themeco:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-thermometer:before {
  content: "";
}

.fa-thermometer-empty:before {
  content: "";
}

.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-theta:before {
  content: "";
}

.fa-think-peaks:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbtack:before {
  content: "";
}

.fa-thunderstorm:before {
  content: "";
}

.fa-thunderstorm-moon:before {
  content: "";
}

.fa-thunderstorm-sun:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-ticket-alt:before {
  content: "";
}

.fa-tilde:before {
  content: "";
}

.fa-times:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-times-hexagon:before {
  content: "";
}

.fa-times-octagon:before {
  content: "";
}

.fa-times-square:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-tint-slash:before {
  content: "";
}

.fa-tire:before {
  content: "";
}

.fa-tire-flat:before {
  content: "";
}

.fa-tire-pressure-warning:before {
  content: "";
}

.fa-tire-rugged:before {
  content: "";
}

.fa-tired:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-toilet:before {
  content: "";
}

.fa-toilet-paper:before {
  content: "";
}

.fa-toilet-paper-alt:before {
  content: "";
}

.fa-tombstone:before {
  content: "";
}

.fa-tombstone-alt:before {
  content: "";
}

.fa-toolbox:before {
  content: "";
}

.fa-tools:before {
  content: "";
}

.fa-tooth:before {
  content: "";
}

.fa-toothbrush:before {
  content: "";
}

.fa-torah:before {
  content: "";
}

.fa-torii-gate:before {
  content: "";
}

.fa-tornado:before {
  content: "";
}

.fa-tractor:before {
  content: "";
}

.fa-trade-federation:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-traffic-cone:before {
  content: "";
}

.fa-traffic-light:before {
  content: "";
}

.fa-traffic-light-go:before {
  content: "";
}

.fa-traffic-light-slow:before {
  content: "";
}

.fa-traffic-light-stop:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-tram:before {
  content: "";
}

.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-trash-alt:before {
  content: "";
}

.fa-trash-restore:before {
  content: "";
}

.fa-trash-restore-alt:before {
  content: "";
}

.fa-trash-undo:before {
  content: "";
}

.fa-trash-undo-alt:before {
  content: "";
}

.fa-treasure-chest:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-tree-alt:before {
  content: "";
}

.fa-tree-christmas:before {
  content: "";
}

.fa-tree-decorated:before {
  content: "";
}

.fa-tree-large:before {
  content: "";
}

.fa-tree-palm:before {
  content: "";
}

.fa-trees:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-triangle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-trophy-alt:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-truck-container:before {
  content: "";
}

.fa-truck-couch:before {
  content: "";
}

.fa-truck-loading:before {
  content: "";
}

.fa-truck-monster:before {
  content: "";
}

.fa-truck-moving:before {
  content: "";
}

.fa-truck-pickup:before {
  content: "";
}

.fa-truck-plow:before {
  content: "";
}

.fa-truck-ramp:before {
  content: "";
}

.fa-tshirt:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-turkey:before {
  content: "";
}

.fa-turtle:before {
  content: "";
}

.fa-tv:before {
  content: "";
}

.fa-tv-retro:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-typo3:before {
  content: "";
}

.fa-uber:before {
  content: "";
}

.fa-ubuntu:before {
  content: "";
}

.fa-uikit:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-umbrella-beach:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-undo:before {
  content: "";
}

.fa-undo-alt:before {
  content: "";
}

.fa-unicorn:before {
  content: "";
}

.fa-union:before {
  content: "";
}

.fa-uniregistry:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-university:before {
  content: "";
}

.fa-unlink:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-untappd:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-ups:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-usd-circle:before {
  content: "";
}

.fa-usd-square:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-user-alt:before {
  content: "";
}

.fa-user-alt-slash:before {
  content: "";
}

.fa-user-astronaut:before {
  content: "";
}

.fa-user-chart:before {
  content: "";
}

.fa-user-check:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-clock:before {
  content: "";
}

.fa-user-cog:before {
  content: "";
}

.fa-user-crown:before {
  content: "";
}

.fa-user-edit:before {
  content: "";
}

.fa-user-friends:before {
  content: "";
}

.fa-user-graduate:before {
  content: "";
}

.fa-user-hard-hat:before {
  content: "";
}

.fa-user-headset:before {
  content: "";
}

.fa-user-injured:before {
  content: "";
}

.fa-user-lock:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-user-md-chat:before {
  content: "";
}

.fa-user-minus:before {
  content: "";
}

.fa-user-ninja:before {
  content: "";
}

.fa-user-nurse:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-user-shield:before {
  content: "";
}

.fa-user-slash:before {
  content: "";
}

.fa-user-tag:before {
  content: "";
}

.fa-user-tie:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-users:before {
  content: "";
}

.fa-users-class:before {
  content: "";
}

.fa-users-cog:before {
  content: "";
}

.fa-users-crown:before {
  content: "";
}

.fa-users-medical:before {
  content: "";
}

.fa-usps:before {
  content: "";
}

.fa-ussunnah:before {
  content: "";
}

.fa-utensil-fork:before {
  content: "";
}

.fa-utensil-knife:before {
  content: "";
}

.fa-utensil-spoon:before {
  content: "";
}

.fa-utensils:before {
  content: "";
}

.fa-utensils-alt:before {
  content: "";
}

.fa-vaadin:before {
  content: "";
}

.fa-value-absolute:before {
  content: "";
}

.fa-vector-square:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-vial:before {
  content: "";
}

.fa-vials:before {
  content: "";
}

.fa-viber:before {
  content: "";
}

.fa-video:before {
  content: "";
}

.fa-video-plus:before {
  content: "";
}

.fa-video-slash:before {
  content: "";
}

.fa-vihara:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-vimeo-v:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-vnv:before {
  content: "";
}

.fa-voicemail:before {
  content: "";
}

.fa-volcano:before {
  content: "";
}

.fa-volleyball-ball:before {
  content: "";
}

.fa-volume:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-mute:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-slash:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-vote-nay:before {
  content: "";
}

.fa-vote-yea:before {
  content: "";
}

.fa-vr-cardboard:before {
  content: "";
}

.fa-vuejs:before {
  content: "";
}

.fa-walker:before {
  content: "";
}

.fa-walking:before {
  content: "";
}

.fa-wallet:before {
  content: "";
}

.fa-wand:before {
  content: "";
}

.fa-wand-magic:before {
  content: "";
}

.fa-warehouse:before {
  content: "";
}

.fa-warehouse-alt:before {
  content: "";
}

.fa-washer:before {
  content: "";
}

.fa-watch:before {
  content: "";
}

.fa-watch-fitness:before {
  content: "";
}

.fa-water:before {
  content: "";
}

.fa-water-lower:before {
  content: "";
}

.fa-water-rise:before {
  content: "";
}

.fa-wave-sine:before {
  content: "";
}

.fa-wave-square:before {
  content: "";
}

.fa-wave-triangle:before {
  content: "";
}

.fa-waze:before {
  content: "";
}

.fa-webcam:before {
  content: "";
}

.fa-webcam-slash:before {
  content: "";
}

.fa-weebly:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-weight:before {
  content: "";
}

.fa-weight-hanging:before {
  content: "";
}

.fa-weixin:before {
  content: "";
}

.fa-whale:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-whatsapp-square:before {
  content: "";
}

.fa-wheat:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-whistle:before {
  content: "";
}

.fa-whmcs:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-wifi-1:before {
  content: "";
}

.fa-wifi-2:before {
  content: "";
}

.fa-wifi-slash:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-wind:before {
  content: "";
}

.fa-wind-turbine:before {
  content: "";
}

.fa-wind-warning:before {
  content: "";
}

.fa-window:before {
  content: "";
}

.fa-window-alt:before {
  content: "";
}

.fa-window-close:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-windsock:before {
  content: "";
}

.fa-wine-bottle:before {
  content: "";
}

.fa-wine-glass:before {
  content: "";
}

.fa-wine-glass-alt:before {
  content: "";
}

.fa-wix:before {
  content: "";
}

.fa-wizards-of-the-coast:before {
  content: "";
}

.fa-wolf-pack-battalion:before {
  content: "";
}

.fa-won-sign:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-wordpress-simple:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-wpressr:before {
  content: "";
}

.fa-wreath:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-x-ray:before {
  content: "";
}

.fa-xbox:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-y-combinator:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-yammer:before {
  content: "";
}

.fa-yandex:before {
  content: "";
}

.fa-yandex-international:before {
  content: "";
}

.fa-yarn:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-yen-sign:before {
  content: "";
}

.fa-yin-yang:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-zhihu:before {
  content: "";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
@import "../framework/less/magnify.less";
@import "../admin/less/debug-console.less";*/
@font-face {
  font-family: "Play";
  src: url("/fonts/Play-Regular.woff2") format("woff2"), url("/fonts/Play-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Play";
  src: url("/fonts/Play-Bold.woff2") format("woff2"), url("/fonts/Play-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.module-title {
  font-style: italic;
  font-size: 20px;
  color: #D80919;
  font-weight: 900;
}
@media (min-width: 768px) {
  .module-title {
    font-size: 30px;
  }
}

header {
  background: #e8e8e8;
  border-bottom: 1px solid #9A9A9A;
}
@media (max-width: 991.98px) {
  header {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  }
}
header .container-fluid {
  padding: 0;
}
header section.text .description {
  display: flex;
  padding: 15px;
}
@media (max-width: 991.98px) {
  header .inline-sections-wrapper {
    display: none;
  }
}
header .info-row {
  margin: 0 0 0 20px;
  font-size: 14px;
  line-height: 19px;
}
header .info-row strong:first-child {
  font-size: 14px;
  text-transform: uppercase;
}
header .info-row strong:last-child {
  font-size: 20px;
}
header .info-row p {
  margin: 0;
}
header .info-row > i {
  width: 40px;
  margin-right: 10px;
}
header .info-row > i:before, header .info-row > i:after {
  display: none !important;
}
header .info-row:first-child i {
  background: url(/pics/icon-phone.svg) center center no-repeat;
}
header .info-row:last-child i {
  background: url(/pics/icon-clock.svg) center center no-repeat;
}
header .info-row + .info-row {
  margin-left: 15px;
}
header .social-icons {
  margin-left: auto;
  display: flex;
  flex-direction: row;
}
header .social-icons a {
  display: flex;
  font-size: 30px;
  align-items: center;
  padding: 0 10px;
  color: #131314;
}
header .inline-sections-wrapper {
  background: #fff;
  padding-left: 330px;
}
header .navbar {
  padding: 0;
}
@media (max-width: 991.98px) {
  header .navbar {
    background: #fff;
  }
  header .navbar .navbar-brand {
    padding: 5px 5px 0;
    width: 120px;
    margin: 0;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
  }
}
header .navbar .navbar-toggler {
  background: #131314;
  color: #fff;
}
header .navbar .navbar-toggler:hover {
  background: #D80919;
}
@media (min-width: 992px) {
  header .navbar .navbar-header-content {
    position: absolute;
    left: 0;
    top: -70px;
  }
  header .navbar .navbar-brand {
    padding: 18px 24px;
    margin: 0;
    background: #fff;
  }
}
@media (min-width: 992px) {
  header .navbar .navbar-nav {
    padding-left: 345px;
  }
}
header .navbar .navbar-nav .nav-item .nav-link {
  font-size: 17px;
  color: #131314;
  text-transform: uppercase;
  padding: 20px 12px;
  line-height: 20px;
  font-weight: bold;
}
header .navbar .navbar-nav .nav-item:hover > .nav-link, header .navbar .navbar-nav .nav-item:focus > .nav-link, header .navbar .navbar-nav .nav-item:active > .nav-link {
  color: #D80919;
}

.main-product-links {
  margin: 30px 0 -30px;
}
@media (min-width: 768px) {
  .main-product-links {
    position: absolute;
    right: 0;
    top: 48px;
    z-index: 101;
    margin: 0;
  }
}
.main-product-links section {
  margin: 0;
  padding-left: 15px;
}
.main-product-links .btn-link,
.main-product-links .btn-secondary {
  font-size: 20px;
  font-weight: bold;
  font-family: "Play", sans-serif;
  line-height: 24px;
}
.main-product-links .btn-link {
  color: #131314;
  padding: 8px 12px;
}
.main-product-links .btn-link:hover, .main-product-links .btn-link:focus, .main-product-links .btn-link:active {
  color: #D80919;
  text-decoration: none;
}
.main-product-links .btn-secondary {
  background-color: #131314;
  background-image: url(/pics/chevron-right.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 50%;
  color: #fff;
  padding: 8px 24px;
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .main-product-links .btn-secondary {
    transition: none;
  }
}
.main-product-links .btn-secondary:hover, .main-product-links .btn-secondary:focus, .main-product-links .btn-secondary:active {
  color: #fff;
  background-position: calc(100% - 2px) center;
}

body {
  padding-top: 130px;
}
body.main-page main .col-content {
  position: relative;
}
body.main-page .main-col {
  margin: 0;
}
body.main-page section.slide {
  border-bottom: 60px solid #fff;
  margin: 0;
}
@media (min-width: 992px) {
  body.main-page section.slide .slick-dots {
    transform: translate(calc(300px - 50%), 0);
  }
}
body.main-page section.slide .entity-list-container {
  border-bottom: 1px solid #9A9A9A;
}
body.main-page section.slide .slider-auto .slide-entity {
  padding: 0;
}
body.main-page section.slide .slider-auto .slide-entity .container {
  display: flex;
  height: 100%;
  width: 360px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.9);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 992px) {
  body.main-page section.slide .slider-auto .slide-entity .container {
    transform: translate(300px, 0);
  }
}
body.main-page section.slide .slider-auto .slide-entity .container:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 30px;
  transform: translate(-50%, 0);
  display: none;
  width: 195px;
  height: 42px;
  background: url(/pics/yamaha-logo-hero.png) 0 0 no-repeat;
  margin-bottom: 40px;
}
body.main-page section.slide .slider-auto .slide-entity h1 {
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  color: #D80919;
}
@media (min-width: 992px) {
  body.main-page section.slide .slider-auto .slide-entity h1 {
    font-size: 41px;
  }
}
body.main-page section.slide .slider-auto .slide-entity .description {
  font-size: 18px;
  font-style: italic;
  line-height: 1;
  padding-top: 50px;
}
@media (min-width: 768px) {
  body.main-page section.slide .slider-auto .slide-entity .description {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  body.main-page section.slide .slider-auto .slide-entity .description {
    font-size: 36px;
  }
}
body.main-page section.yamaha {
  padding: 50px 0 20px;
  margin: 0;
}
body.main-page section.yamaha h2.module-title {
  font-family: "Play", sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 22px;
  color: #D80919;
  padding-top: 36px;
  position: relative;
}
body.main-page section.yamaha h2.module-title:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 159px;
  height: 34px;
  background: url(/pics/yamaha-logo.png) 0 0 no-repeat;
}

.main-full-width-row .container {
  max-width: none;
  width: 100%;
  background: #fff;
  padding: 60px 15px 60px;
}
@media (min-width: 992px) {
  .main-full-width-row .container {
    padding: 60px 30px 60px;
  }
}
@media (min-width: 768px) {
  .main-full-width-row section {
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .main-full-width-row .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.main-full-width-row section.image {
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  .main-full-width-row section.image {
    margin-bottom: 60px;
  }
}
.main-full-width-row section.image a:hover .img-overlay {
  transform: translate(-50%, -30px);
}
@media (min-width: 992px) {
  .main-full-width-row section.image a:hover .img-overlay {
    transform: translate(0, -30px);
  }
}
.main-full-width-row section.image .img-bg {
  padding-bottom: 55.5555%;
  position: static;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}
.main-full-width-row section.image .img-overlay {
  padding: 35px 30px 0 30px !important;
  overflow: hidden;
  background: url(/pics/featured-link-title-bg.svg) right center no-repeat;
  background-size: cover;
  color: #fff;
  position: absolute;
  width: 260px;
  font-size: 14px;
  height: 140px;
  transform: translate(-50%, 0);
  transition: all 300ms ease;
  bottom: -80px;
  left: 50%;
}
@media (prefers-reduced-motion: reduce) {
  .main-full-width-row section.image .img-overlay {
    transition: none;
  }
}
@media (min-width: 768px) {
  .main-full-width-row section.image .img-overlay {
    bottom: -30px;
  }
}
@media (min-width: 992px) {
  .main-full-width-row section.image .img-overlay {
    width: 50%;
    min-width: 340px;
    left: auto;
    bottom: -60px;
    right: 90px;
    transform: translate(0, 0);
  }
}
.main-full-width-row section.image .img-overlay h2 {
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  margin: 0 0 15px;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .main-full-width-row section.image .img-overlay h2 {
    font-size: 2vw;
  }
}
.main-full-width-row section.image .img-overlay h2:before, .main-full-width-row section.image .img-overlay h2:after {
  content: "";
  display: block;
  position: absolute;
  width: 300px;
  height: 1px;
  background: #fff;
  top: 50%;
}
.main-full-width-row section.image .img-overlay h2:before {
  left: -315px;
}
.main-full-width-row section.image .img-overlay h2:after {
  right: -315px;
}
@media (min-width: 768px) {
  .main-full-width-row section.image .img-overlay .img-overlay {
    font-size: 15px;
    height: 140px;
  }
}
@media (min-width: 1200px) {
  .main-full-width-row section.image .img-overlay .img-overlay {
    font-size: 16px;
    height: 170px;
  }
}
@media (min-width: 992px) {
  .main-full-width-row section.image.image-right .img-overlay {
    left: 90px;
    right: auto;
  }
}
.main-full-width-row section.image.image-wide {
  margin-top: -120px;
}
@media (min-width: 992px) {
  .main-full-width-row section.image.image-wide {
    margin-top: 0;
  }
  .main-full-width-row section.image.image-wide .img-bg {
    padding-bottom: 35%;
  }
  .main-full-width-row section.image.image-wide .img-overlay {
    bottom: 20px;
    left: auto;
    right: 20px;
    width: 40%;
  }
}

footer {
  overflow: hidden;
  background: #000;
  margin-top: 80px;
}
footer .subrow {
  background: url(/pics/footer-contact.jpg) right bottom no-repeat #D80919;
  background-size: contain;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer .subrow {
    background-size: cover;
  }
}
@media (max-width: 1199.98px) {
  footer .subrow .container {
    max-width: none;
    width: 100%;
    padding: 0;
  }
}
footer .subrow .row {
  margin: 0;
}
footer .subrow .row > div {
  padding: 0;
}
footer .subrow section {
  background: #D80919;
  padding: 80px 30px;
}
@media (max-width: 1199.98px) {
  footer .subrow section {
    padding: 40px 30px;
  }
}
footer .subrow section p:last-child {
  margin-bottom: 0;
}
footer .subrow .module-title {
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
}
@media (min-width: 768px) {
  footer .subrow .module-title {
    font-size: 32px;
  }
}
footer .inline-sections-wrapper {
  padding: 50px 0;
  align-items: center;
  color: #fff;
}
@media (max-width: 991.98px) {
  footer .inline-sections-wrapper {
    flex-direction: column;
    justify-content: center;
  }
  footer .inline-sections-wrapper section {
    margin-bottom: 30px;
  }
  footer .inline-sections-wrapper section:last-child {
    margin-bottom: 0;
  }
}
footer .inline-sections-wrapper p {
  margin: 0;
}
@media (min-width: 992px) {
  footer .inline-sections-wrapper section.menu {
    margin-left: 60px;
    padding-left: 15px;
    border-left: 1px solid #333333;
  }
}
footer .inline-sections-wrapper .navbar {
  padding: 0;
}
@media (max-width: 991.98px) {
  footer .inline-sections-wrapper .navbar .navbar-nav .nav-item {
    justify-content: center;
  }
}
footer .inline-sections-wrapper .navbar .navbar-nav .nav-item .nav-link {
  color: #fff;
}
footer .inline-sections-wrapper .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #D80919;
}
@media (min-width: 992px) {
  footer .inline-sections-wrapper section.image {
    margin-left: auto;
  }
}

.subpage-hero {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .subpage-hero {
    height: 340px;
  }
}
.subpage-hero h1 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
@media (min-width: 992px) {
  .subpage-hero h1 {
    font-size: 34px;
  }
}

.breadcrumbs {
  border-bottom: 1px solid #cbcbcb;
  padding: 0 0 10px;
}
@media (min-width: 768px) {
  .breadcrumbs {
    padding: 20px 0 32px;
  }
}
.breadcrumbs .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumbs .breadcrumb a {
  color: #131314;
}
.breadcrumbs .breadcrumb a:hover {
  color: #D80919;
}
.breadcrumbs .breadcrumb .breadcrumb-item:last-child a {
  color: #D80919;
}

.sidebar .menu {
  background: #131314;
  margin: 0;
}
.sidebar .menu .navbar {
  padding: 20px 15px;
  justify-content: center;
}
@media (min-width: 992px) {
  .sidebar .menu .navbar {
    justify-content: left;
    padding: 50px 25px;
  }
}
.sidebar .menu .navbar .navbar-nav .nav-item {
  justify-content: center;
}
@media (min-width: 992px) {
  .sidebar .menu .navbar .navbar-nav .nav-item {
    justify-content: left;
  }
}
.sidebar .menu .navbar .navbar-nav .nav-item .nav-link {
  font-size: 20px;
  color: #fff;
  padding: 5px 0;
}
.sidebar .menu .navbar .navbar-nav .nav-item .nav-link:hover, .sidebar .menu .navbar .navbar-nav .nav-item .nav-link:focus, .sidebar .menu .navbar .navbar-nav .nav-item .nav-link:active {
  color: #D80919;
}
.sidebar .menu .navbar .navbar-nav .nav-item.active {
  border-bottom: 1px solid #D80919;
}
.sidebar .menu .navbar .navbar-nav .nav-item.active .nav-link {
  color: #D80919;
}

.dealer-box {
  background: #D80919;
  padding: 30px 10px 30px;
  box-shadow: inset 0 30px 20px -20px #8b0712;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.dealer-box .img-responsive {
  margin: 0 auto 15px;
}
.dealer-box h2 {
  margin: 0;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
  padding: 0 15px;
}

.bootstrap-select .dropdown-menu {
  width: 100%;
}
.bootstrap-select ul a {
  align-items: center !important;
}
.bootstrap-select ul a .text {
  display: block !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap !important;
}

section.entity-list-config {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  section.entity-list-config {
    margin-top: -95px;
    margin-bottom: 60px;
  }
}
section.entity-list-config .order-input {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}
section.entity-list-config label {
  margin: 0;
}
section.entity-list-config .btn-secondary {
  background: #131314;
  color: #fff;
  min-width: 250px;
  border-radius: 0;
  margin-left: 10px;
}
section.entity-list-config .order-input label {
  margin-right: 10px;
}
section.entity-list-config .order-input .form-control {
  max-width: 200px !important;
}

.dropdown-menu li .dropdown-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thumbnail {
  margin-bottom: 30px;
}
.thumbnail a {
  padding: 0;
  border: 0 none;
  position: relative;
}
.thumbnail a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  border: 1px solid #D80919;
  opacity: 0;
  transition: opacity 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .thumbnail a:after {
    transition: none;
  }
}
.thumbnail a:hover:after {
  opacity: 1;
}

section.attachments .row {
  margin: 0 -5px;
}
section.attachments .row > div {
  padding: 0 5px;
}
section.attachments .thumbnail {
  margin-bottom: 10px;
}

.product-head {
  background: #fff;
  padding: 15px;
}
@media (min-width: 768px) {
  .product-head {
    padding: 30px;
  }
}
.product-head h1 {
  font-size: 20px;
  color: #D80919;
  font-weight: 900;
  font-style: italic;
  margin: 0 0 30px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .product-head h1 {
    font-size: 30px;
  }
}
.product-head .product-head--item {
  margin-bottom: 15px;
}
.product-head .product-head--item:last-child {
  margin-bottom: 0;
}
.product-head .product-head--item strong {
  display: block;
}
.product-head .product-head--item.product-head--price-original strong {
  text-decoration: line-through;
}
.product-head .product-head--item.product-head--price-discount strong, .product-head .product-head--item.product-head--price strong {
  font-size: 20px;
  color: #D80919;
}

.tabs-wrapper .card .card-header {
  padding: 0;
}

.card {
  border: 0 none;
  background: transparent;
}
.card .card-header {
  border: 0 none;
  background: transparent;
}
.card .card-header .card-header-tabs {
  margin: 0;
}
.card .card-header .nav .nav-item .nav-link {
  background: transparent;
  color: #131314;
  border: 0 none;
  padding: 15px 25px;
}
.card .card-header .nav .nav-item .nav-link.active {
  background: #fff;
  color: #D80919;
}
.card .card-body {
  background: #fff;
}

main section.title h1 {
  font-style: italic;
  font-size: 30px;
  color: #D80919;
  font-weight: 900;
}

.contact-top,
.contact-bottom {
  padding: 50px 0;
}
.contact-top .module-title,
.contact-bottom .module-title {
  font-style: italic;
  font-size: 30px;
  color: #D80919;
  font-weight: 900;
}

.contact-bottom {
  background: #fff;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  body.products.entity-details main .subrow > .container > .row {
    justify-content: center;
  }
  body.products.entity-details main .subrow > .container > .row > div:first-child {
    flex: 0 0 75%;
    max-width: 75%;
  }
  body.products.entity-details main .subrow > .container > .row > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media print {
  body.products {
    padding: 30px;
  }
  body.products section.contact-form,
body.products section.attachments,
body.products .card-header,
body.products #kapcsolat {
    display: none !important;
  }
  body.products .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  body.products .tab-pane {
    display: block;
    margin-bottom: 30px;
  }
  body.products .product-head {
    text-align: center !important;
  }
}
.data-form .card-header {
  display: none;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #131314;
  background-color: #e8e8e8;
  background-clip: padding-box;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #131314;
}
.form-control:focus {
  color: #131314;
  background-color: #e8e8e8;
  border-color: #f96873;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(216, 9, 25, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e8e8e8;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #131314;
  background-color: #e8e8e8;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #131314;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 1rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.5rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #e8e8e8 no-repeat center right 1.75rem/calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 1rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.5rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #e8e8e8 no-repeat center right 1.75rem/calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

article.product {
  margin-bottom: 30px;
}
article.product a {
  display: block;
  color: #fff;
}
article.product a:hover .image img, article.product a:focus .image img, article.product a:active .image img {
  transform: scale(1.2);
}
article.product .details {
  background: url(/pics/carbon-fiber-pattern.png) center center no-repeat;
  background-size: cover;
  padding: 10px 15px;
}
article.product .image {
  overflow: hidden;
  position: relative;
}
article.product .image img {
  transform: scale(1);
  transition: all 300ms ease;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  article.product .image img {
    transition: none;
  }
}
article.product .image .badge {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  font-weight: bold;
  border-radius: 0;
  padding: 6px 12px;
  z-index: 100;
  max-width: 100%;
  white-space: normal;
}
article.product h2 {
  font-size: 18px;
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}
article.product .subtitle {
  font-size: 16px;
  margin: 0 0 5px;
  line-height: 20px;
  height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
article.product .old-price {
  font-size: 14px;
  margin: 0 0 5px;
  line-height: 20px;
  height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: line-through;
}
article.product .price {
  color: #D80919;
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  height: 22px;
}
aside .navbar-nav {
  flex-direction: column !important;
}

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