.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translateY(-25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: translate(0);
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered:before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e8e8e8;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.71429;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e8e8e8;
}

.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 500px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered:before {
    height: calc(100vh - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}

.form-control {
  display: block;
  width: 100%;
  height: calc(3.15rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1.4rem;
  line-height: 1.71429;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #75d3f7;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.25);
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.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: #495057;
  background-color: #fff;
}

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

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

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

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

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.71429;
  color: #000;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
  padding-right: 0;
  padding-left: 0;
}

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

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

select.form-control[multiple],
select.form-control[size],
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 {
  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: #5cb85c;
}

.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: 1.225rem;
  line-height: 1.42857;
  color: #fff;
  background-color: rgba(92, 184, 92, 0.9);
  border-radius: 0.25rem;
}

.custom-select.is-valid,
.form-control.is-valid,
.was-validated .custom-select:valid,
.was-validated .form-control:valid {
  border-color: #5cb85c;
}

.custom-select.is-valid:focus,
.form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.was-validated .form-control:valid:focus {
  border-color: #5cb85c;
  box-shadow: 0 0 0 0.2rem rgba(92, 184, 92, 0.25);
}

.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip,
.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip,
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip {
  display: block;
}

.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #5cb85c;
}

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

.custom-control-input.is-valid ~ .custom-control-label,
.was-validated .custom-control-input:valid ~ .custom-control-label {
  color: #5cb85c;
}

.custom-control-input.is-valid ~ .custom-control-label:before,
.was-validated .custom-control-input:valid ~ .custom-control-label:before {
  background-color: #b5dfb5;
}

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

.custom-control-input.is-valid:checked ~ .custom-control-label:before,
.was-validated
  .custom-control-input:valid:checked
  ~ .custom-control-label:before {
  background-color: #80c780;
}

.custom-control-input.is-valid:focus ~ .custom-control-label:before,
.was-validated
  .custom-control-input:valid:focus
  ~ .custom-control-label:before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(92, 184, 92, 0.25);
}

.custom-file-input.is-valid ~ .custom-file-label,
.was-validated .custom-file-input:valid ~ .custom-file-label {
  border-color: #5cb85c;
}

.custom-file-input.is-valid ~ .custom-file-label:after,
.was-validated .custom-file-input:valid ~ .custom-file-label:after {
  border-color: inherit;
}

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

.custom-file-input.is-valid:focus ~ .custom-file-label,
.was-validated .custom-file-input:valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(92, 184, 92, 0.25);
}

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

.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: 1.225rem;
  line-height: 1.42857;
  color: #fff;
  background-color: rgba(217, 83, 79, 0.9);
  border-radius: 0.25rem;
}

.custom-select.is-invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.was-validated .form-control:invalid {
  border-color: #d9534f;
}

.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: #d9534f;
  box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25);
}

.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip,
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip,
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip {
  display: block;
}

.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: #d9534f;
}

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

.custom-control-input.is-invalid ~ .custom-control-label,
.was-validated .custom-control-input:invalid ~ .custom-control-label {
  color: #d9534f;
}

.custom-control-input.is-invalid ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid ~ .custom-control-label:before {
  background-color: #f0b9b8;
}

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

.custom-control-input.is-invalid:checked ~ .custom-control-label:before,
.was-validated
  .custom-control-input:invalid:checked
  ~ .custom-control-label:before {
  background-color: #e27c79;
}

.custom-control-input.is-invalid:focus ~ .custom-control-label:before,
.was-validated
  .custom-control-input:invalid:focus
  ~ .custom-control-label:before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(217, 83, 79, 0.25);
}

.custom-file-input.is-invalid ~ .custom-file-label,
.was-validated .custom-file-input:invalid ~ .custom-file-label {
  border-color: #d9534f;
}

.custom-file-input.is-invalid ~ .custom-file-label:after,
.was-validated .custom-file-input:invalid ~ .custom-file-label:after {
  border-color: inherit;
}

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

.custom-file-input.is-invalid:focus ~ .custom-file-label,
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 500px) {
  .form-inline label {
    -ms-flex-align: center;
    justify-content: center;
  }
  .form-inline .form-group,
  .form-inline label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    flex: 0 0 auto;
    flex-flow: row wrap;
    -ms-flex-align: center;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .custom-select,
  .form-inline .input-group {
    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;
    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;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1.4rem;
  line-height: 1.71429;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:focus,
.btn:hover {
  text-decoration: none;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #0da5e0;
  border-color: #0da5e0;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0b8abc;
  border-color: #0a81b0;
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #0da5e0;
  border-color: #0da5e0;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0a81b0;
  border-color: #0a79a4;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary.focus,
.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem hsla(208, 7%, 46%, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem hsla(208, 7%, 46%, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success:hover {
  color: #fff;
  background-color: #48a648;
  border-color: #449d44;
}

.btn-success.focus,
.btn-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(92, 184, 92, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #409440;
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(92, 184, 92, 0.5);
}

.btn-info {
  color: #212529;
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-info:hover {
  color: #fff;
  background-color: #3bb4d8;
  border-color: #31b0d5;
}

.btn-info.focus,
.btn-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(91, 192, 222, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #212529;
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #2aaacf;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(91, 192, 222, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-warning:hover {
  color: #212529;
  background-color: #ed9d2b;
  border-color: #ec971f;
}

.btn-warning.focus,
.btn-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #ec971f;
  border-color: #ea9214;
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-danger:hover {
  color: #fff;
  background-color: #d23430;
  border-color: #c9302c;
}

.btn-danger.focus,
.btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #bf2e29;
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light.focus,
.btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark.focus,
.btn-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-brand-primary {
  color: #fff;
  background-color: #0da5e0;
  border-color: #0da5e0;
}

.btn-brand-primary:hover {
  color: #fff;
  background-color: #0b8abc;
  border-color: #0a81b0;
}

.btn-brand-primary.focus,
.btn-brand-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.5);
}

.btn-brand-primary.disabled,
.btn-brand-primary:disabled {
  color: #fff;
  background-color: #0da5e0;
  border-color: #0da5e0;
}

.btn-brand-primary:not(:disabled):not(.disabled).active,
.btn-brand-primary:not(:disabled):not(.disabled):active,
.show > .btn-brand-primary.dropdown-toggle {
  color: #fff;
  background-color: #0a81b0;
  border-color: #0a79a4;
}

.btn-brand-primary:not(:disabled):not(.disabled).active:focus,
.btn-brand-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-brand-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.5);
}

.btn-brand-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-brand-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-brand-secondary.focus,
.btn-brand-secondary:focus {
  box-shadow: 0 0 0 0.2rem hsla(208, 7%, 46%, 0.5);
}

.btn-brand-secondary.disabled,
.btn-brand-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-brand-secondary:not(:disabled):not(.disabled).active,
.btn-brand-secondary:not(:disabled):not(.disabled):active,
.show > .btn-brand-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-brand-secondary:not(:disabled):not(.disabled).active:focus,
.btn-brand-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-brand-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem hsla(208, 7%, 46%, 0.5);
}

.btn-outline-primary {
  color: #0da5e0;
  background-color: transparent;
  background-image: none;
  border-color: #0da5e0;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #0da5e0;
  border-color: #0da5e0;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #0da5e0;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #0da5e0;
  border-color: #0da5e0;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem hsla(208, 7%, 46%, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem hsla(208, 7%, 46%, 0.5);
}

.btn-outline-success {
  color: #5cb85c;
  background-color: transparent;
  background-image: none;
  border-color: #5cb85c;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-outline-success.focus,
.btn-outline-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(92, 184, 92, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #5cb85c;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(92, 184, 92, 0.5);
}

.btn-outline-info {
  color: #5bc0de;
  background-color: transparent;
  background-image: none;
  border-color: #5bc0de;
}

.btn-outline-info:hover {
  color: #212529;
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-outline-info.focus,
.btn-outline-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(91, 192, 222, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #5bc0de;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
  color: #212529;
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(91, 192, 222, 0.5);
}

.btn-outline-warning {
  color: #f0ad4e;
  background-color: transparent;
  background-image: none;
  border-color: #f0ad4e;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-outline-warning.focus,
.btn-outline-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #f0ad4e;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5);
}

.btn-outline-danger {
  color: #d9534f;
  background-color: transparent;
  background-image: none;
  border-color: #d9534f;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-outline-danger.focus,
.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #d9534f;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light.focus,
.btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-brand-primary {
  color: #0da5e0;
  background-color: transparent;
  background-image: none;
  border-color: #0da5e0;
}

.btn-outline-brand-primary:hover {
  color: #fff;
  background-color: #0da5e0;
  border-color: #0da5e0;
}

.btn-outline-brand-primary.focus,
.btn-outline-brand-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.5);
}

.btn-outline-brand-primary.disabled,
.btn-outline-brand-primary:disabled {
  color: #0da5e0;
  background-color: transparent;
}

.btn-outline-brand-primary:not(:disabled):not(.disabled).active,
.btn-outline-brand-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-brand-primary.dropdown-toggle {
  color: #fff;
  background-color: #0da5e0;
  border-color: #0da5e0;
}

.btn-outline-brand-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-brand-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-brand-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.5);
}

.btn-outline-brand-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

.btn-outline-brand-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-brand-secondary.focus,
.btn-outline-brand-secondary:focus {
  box-shadow: 0 0 0 0.2rem hsla(208, 7%, 46%, 0.5);
}

.btn-outline-brand-secondary.disabled,
.btn-outline-brand-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-brand-secondary:not(:disabled):not(.disabled).active,
.btn-outline-brand-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-brand-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-brand-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-brand-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-brand-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem hsla(208, 7%, 46%, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #000;
  background-color: transparent;
}

.btn-link:hover {
  color: #0da5e0;
  background-color: transparent;
}

.btn-link.focus,
.btn-link:focus,
.btn-link:hover {
  text-decoration: underline;
  border-color: transparent;
}

.btn-link.focus,
.btn-link:focus {
  box-shadow: none;
}

.btn-link.disabled,
.btn-link:disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 1rem 1.6rem;
  font-size: 2rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 1.225rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .custom-file + .custom-file,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .form-control,
.input-group > .custom-select + .custom-file,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .form-control,
.input-group > .form-control + .custom-file,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .form-control {
  margin-left: -1px;
}

.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
.input-group > .custom-select:focus,
.input-group > .form-control:focus {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .custom-select:not(:last-child),
.input-group > .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: flex;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label:after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-append,
.input-group-prepend {
  display: flex;
}

.input-group-append .btn,
.input-group-prepend .btn {
  position: relative;
  z-index: 2;
}

.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .input-group-text,
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .input-group-text {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.71429;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e8e8e8;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type="checkbox"],
.input-group-text input[type="radio"] {
  margin-top: 0;
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .input-group-text {
  height: calc(5rem + 2px);
  padding: 1rem 1.6rem;
  font-size: 2rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
  height: calc(2.3375rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 1.225rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group
  > .input-group-append:last-child
  > .btn:not(:last-child):not(.dropdown-toggle),
.input-group
  > .input-group-append:last-child
  > .input-group-text:not(:last-child),
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group
  > .input-group-prepend:first-child
  > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.border {
  border: 1px solid #bbb !important;
}

.border-top {
  border-top: 1px solid #bbb !important;
}

.border-right {
  border-right: 1px solid #bbb !important;
}

.border-bottom {
  border-bottom: 1px solid #bbb !important;
}

.border-left {
  border-left: 1px solid #bbb !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0da5e0 !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #5cb85c !important;
}

.border-info {
  border-color: #5bc0de !important;
}

.border-warning {
  border-color: #f0ad4e !important;
}

.border-danger {
  border-color: #d9534f !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-brand-primary {
  border-color: #0da5e0 !important;
}

.border-brand-secondary {
  border-color: #6c757d !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
}

.rounded-right,
.rounded-top {
  border-top-right-radius: 0.25rem !important;
}

.rounded-bottom,
.rounded-right {
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom,
.rounded-left {
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.text-monospace {
  font-family: JosefinSans, sans-serif;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 500px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1280px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #0da5e0 !important;
}

a.text-primary:focus,
a.text-primary:hover {
  color: #0a81b0 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:focus,
a.text-secondary:hover {
  color: #545b62 !important;
}

.text-success {
  color: #5cb85c !important;
}

a.text-success:focus,
a.text-success:hover {
  color: #449d44 !important;
}

.text-info {
  color: #5bc0de !important;
}

a.text-info:focus,
a.text-info:hover {
  color: #31b0d5 !important;
}

.text-warning {
  color: #f0ad4e !important;
}

a.text-warning:focus,
a.text-warning:hover {
  color: #ec971f !important;
}

.text-danger {
  color: #d9534f !important;
}

a.text-danger:focus,
a.text-danger:hover {
  color: #c9302c !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:focus,
a.text-light:hover {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:focus,
a.text-dark:hover {
  color: #1d2124 !important;
}

.text-brand-primary {
  color: #0da5e0 !important;
}

a.text-brand-primary:focus,
a.text-brand-primary:hover {
  color: #0a81b0 !important;
}

.text-brand-secondary {
  color: #6c757d !important;
}

a.text-brand-secondary:focus,
a.text-brand-secondary:hover {
  color: #545b62 !important;
}

.text-body {
  color: #000 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: hsla(0, 0%, 100%, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.button--facebook,
.button--primary,
.button--secondary,
.button--text-toggle,
.button--twitter {
  font-family: Raleway, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  border-radius: 0;
  border-width: 0;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  padding: 8px 20px 10px;
  display: inline-block;
  white-space: nowrap;
  background-image: none;
}

.button--facebook:focus,
.button--facebook:hover,
.button--primary:focus,
.button--primary:hover,
.button--secondary:focus,
.button--secondary:hover,
.button--text-toggle:focus,
.button--text-toggle:hover,
.button--twitter:focus,
.button--twitter:hover {
  text-decoration: none;
  cursor: pointer;
}

.button--facebook i,
.button--primary i,
.button--secondary i,
.button--text-toggle i,
.button--twitter i {
  font-size: 2.4rem;
  vertical-align: -4px;
  margin-right: 4px;
}

.button--primary:active,
.button--primary:focus {
  color: #333;
}

.button--secondary,
.button--text-toggle {
  color: #5e656d;
  background-color: #e4e4e0;
}

.button--secondary:hover,
.button--text-toggle:hover {
  color: #2b343e;
  background-color: #c9cbce;
}

.button--secondary:active,
.button--text-toggle:active {
  color: #c9cbce;
  background-color: #eaebec;
}

.button--text-toggle {
  font-size: 1.6rem;
}

.button--twitter {
  color: #fff;
  background-color: #55acee;
}

.button--twitter:hover {
  color: #fff;
  background-color: #399eeb;
}

.button--twitter:active {
  color: #b2d9f7;
  background-color: #59abea;
}

.button--facebook {
  color: #fff;
  background: #415f9c;
}

.button--facebook:hover {
  color: #fff;
  background-color: #385286;
}

.button--facebook:active {
  color: #7b94c8;
  background-color: #456198;
}

.button--icon {
  color: #959a9f;
}

.button--icon:hover {
  color: #2b343e;
}

.button--icon:active {
  color: #c9cbce;
}

.button--light {
  color: #fff;
  opacity: 0.7;
}

.button--light:hover {
  opacity: 0.9;
}

.button--light:active {
  opacity: 0.4;
}

.inline-button {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 0;
}

.inline-button--extlink,
.inline-button--extlink:focus {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}

.inline-button--extlink:focus i,
.inline-button--extlink i {
  color: #333;
}

.inline-button--extlink:focus:hover,
.inline-button--extlink:hover {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}

.inline-button--extlink:active,
.inline-button--extlink:focus:active {
  color: #333;
  background-color: #000;
}

@media (min-width: 768px) {
  .button--primary,
  .button--secondary {
    width: auto;
    margin-right: 10px;
  }
  .button--full-width {
    width: 100%;
    margin-right: none;
  }
}

.btn-action {
  background-color: #0da5e0;
  color: #fff;
  border: none;
  padding: 11px 0;
  text-align: center;
  display: block;
  font-size: 1.4rem;
  font-family: inherit;
  border-radius: 3px;
  border: 1px solid #009b74;
}

.btn-action.disabled {
  background-color: #c1c1c1;
  border: 1px solid #afafaf;
}

.btn-action:hover {
  text-decoration: none;
  color: #fff;
}

.btn-wrapper {
  border-radius: 3px;
}

input[type="button"].btn-infield {
  padding: 6px 10px;
  background-color: #0da5e0;
}

input[type="button"].btn-infield:hover {
  padding: 6px 10px;
  background-color: #82d0e4;
}

.btn {
  font-family: inherit;
  font-size: 19.8px;
  padding: 8px 14px 10px;
  line-height: 1;
  white-space: normal;
}

.btn-xs {
  font-size: 1.4rem;
  padding: 5px;
  line-height: 0.99;
}

.btn-sm {
  font-size: 18px;
  padding: 4px 10px 6px;
  line-height: 1;
}

.btn-lg {
  font-size: 21.6px;
  padding: 6px 16px;
}

.btn-xl {
  font-size: 27px;
  padding: 10px 16px;
  border-radius: 8px;
}

.btn-outline {
  background: none;
  color: #000;
  border-color: #000;
  padding: 6px 14px 10px;
  line-height: 1;
}

.btn-outline:hover {
  color: #82d0e4;
  border-color: #82d0e4;
}

.btn-outline:active {
  color: #0196b0;
  border-color: #0196b0;
  box-shadow: none;
}

.btn-outline:focus {
  color: #0196b0;
}

.btn-mobile {
  width: 100%;
}

.btn-abs {
  position: absolute;
}

.btn-stretch {
  width: 100%;
}

.btn-admin-edit,
.btn-cb-edit {
  position: absolute;
  top: 0;
  z-index: 99;
  right: 0;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: auto;
  height: auto;
  color: #fff;
  padding: 5px;
  font-size: 2rem;
  background: rgba(0, 153, 51, 0.35);
}

.btn-admin-edit:hover,
.btn-cb-edit:hover {
  color: #fff;
  background: rgba(0, 153, 51, 0.75);
}

.btn-cb-edit--autogen {
  background: rgba(153, 153, 0, 0.35);
}

.btn-cb-edit--autogen:hover {
  background: rgba(153, 153, 0, 0.75);
}

.button--primary {
  font-family: Raleway, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.4rem !important;
  text-transform: uppercase;
  line-height: 1 !important;
  padding: 10px 30px;
}

.button--primary,
.button--primary:active,
.button--primary:focus,
.button--primary:hover {
  color: #fff;
  background-color: #000;
}

.article-social li,
.button--social {
  border-radius: 20px;
  border: 1px solid #000;
  height: 28px;
  width: 28px;
  color: #000;
  background-color: #fff;
  margin-bottom: 6px;
  padding-top: 6px;
  display: block;
  text-align: center;
}

@media (min-width: 0px) {
  .article-social li,
  .button--social {
    margin-left: 5px;
  }
}

@media (min-width: 992px) {
  .article-social li,
  .button--social {
    margin-left: 0;
  }
}

@media (min-width: 0px) {
  .article-social li,
  .button--social {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .article-social li,
  .button--social {
    display: block;
  }
}

.article-social li a,
.button--social a {
  color: #000;
  text-decoration: none;
}

.article-social li :hover,
.button--social :hover {
  color: #0da5e0;
}

.btn-sign-in {
  color: #fff;
  background-color: #0da5e0;
  border-color: #0da5e0;
  height: 5rem;
  line-height: 3.2rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.btn-sign-in:hover {
  color: #fff;
  background-color: #0b8abc;
  border-color: #0a81b0;
}

.btn-sign-in.focus,
.btn-sign-in:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.5);
}

.btn-sign-in.disabled,
.btn-sign-in:disabled {
  color: #fff;
  background-color: #0da5e0;
  border-color: #0da5e0;
}

.btn-sign-in:not(:disabled):not(.disabled).active,
.btn-sign-in:not(:disabled):not(.disabled):active,
.show > .btn-sign-in.dropdown-toggle {
  color: #fff;
  background-color: #0a81b0;
  border-color: #0a79a4;
}

.btn-sign-in:not(:disabled):not(.disabled).active:focus,
.btn-sign-in:not(:disabled):not(.disabled):active:focus,
.show > .btn-sign-in.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 165, 224, 0.5);
}

.btn-sign-in-google {
  color: #fff;
  background-color: #dd4b39;
  border-color: #dd4b39;
  height: 5rem;
  line-height: 3.2rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.btn-sign-in-google:hover {
  color: #fff;
  background-color: #cd3623;
  border-color: #c23321;
}

.btn-sign-in-google.focus,
.btn-sign-in-google:focus {
  box-shadow: 0 0 0 0.2rem rgba(221, 75, 57, 0.5);
}

.btn-sign-in-google.disabled,
.btn-sign-in-google:disabled {
  color: #fff;
  background-color: #dd4b39;
  border-color: #dd4b39;
}

.btn-sign-in-google:not(:disabled):not(.disabled).active,
.btn-sign-in-google:not(:disabled):not(.disabled):active,
.show > .btn-sign-in-google.dropdown-toggle {
  color: #fff;
  background-color: #c23321;
  border-color: #b7301f;
}

.btn-sign-in-google:not(:disabled):not(.disabled).active:focus,
.btn-sign-in-google:not(:disabled):not(.disabled):active:focus,
.show > .btn-sign-in-google.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221, 75, 57, 0.5);
}

.btn-sign-in-fb {
  color: #fff;
  background-color: #3b5998;
  border-color: #3b5998;
  height: 5rem;
  line-height: 3.2rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.btn-sign-in-fb:hover {
  color: #fff;
  background-color: #30497c;
  border-color: #2d4373;
}

.btn-sign-in-fb.focus,
.btn-sign-in-fb:focus {
  box-shadow: 0 0 0 0.2rem rgba(59, 89, 152, 0.5);
}

.btn-sign-in-fb.disabled,
.btn-sign-in-fb:disabled {
  color: #fff;
  background-color: #3b5998;
  border-color: #3b5998;
}

.btn-sign-in-fb:not(:disabled):not(.disabled).active,
.btn-sign-in-fb:not(:disabled):not(.disabled):active,
.show > .btn-sign-in-fb.dropdown-toggle {
  color: #fff;
  background-color: #2d4373;
  border-color: #293e6a;
}

.btn-sign-in-fb:not(:disabled):not(.disabled).active:focus,
.btn-sign-in-fb:not(:disabled):not(.disabled):active:focus,
.show > .btn-sign-in-fb.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(59, 89, 152, 0.5);
}

.btn-sign-in-twitter {
  color: #212529;
  background-color: #55acee;
  border-color: #55acee;
  height: 5rem;
  line-height: 3.2rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  color: #fff;
}

.btn-sign-in-twitter:hover {
  color: #fff;
  background-color: #329beb;
  border-color: #2795e9;
}

.btn-sign-in-twitter.focus,
.btn-sign-in-twitter:focus {
  box-shadow: 0 0 0 0.2rem rgba(85, 172, 238, 0.5);
}

.btn-sign-in-twitter.disabled,
.btn-sign-in-twitter:disabled {
  color: #212529;
  background-color: #55acee;
  border-color: #55acee;
}

.btn-sign-in-twitter:not(:disabled):not(.disabled).active,
.btn-sign-in-twitter:not(:disabled):not(.disabled):active,
.show > .btn-sign-in-twitter.dropdown-toggle {
  color: #fff;
  background-color: #2795e9;
  border-color: #1b90e8;
}

.btn-sign-in-twitter:not(:disabled):not(.disabled).active:focus,
.btn-sign-in-twitter:not(:disabled):not(.disabled):active:focus,
.show > .btn-sign-in-twitter.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(85, 172, 238, 0.5);
}

.btn-search {
  font-size: 1.4rem;
  line-height: 2.4rem;
  padding: 3.75px 12px;
  background-color: #000;
  color: #fff;
}

img {
  width: 100%;
}

img.fixed-size {
  width: auto;
}

img.no-enlarge {
  width: auto;
  max-width: 100%;
}

.side-small {
  width: 30%;
}

.side-large {
  width: 50%;
}

@media (min-width: 992px) {
  img.full-width-inline {
    margin-left: -34.3%;
    width: 134.3%;
  }
  .longform-article img.full-width-inline {
    margin-left: -25.5%;
    width: 125.5%;
  }
}

.img-left {
  float: left;
  margin: 0.5rem 1.5rem 1rem 0;
}

.img-right {
  float: right;
  margin: 0.5rem 0 1rem 1.5rem;
}

.r,
.rlarge {
  border-radius: 0;
}

.rtl {
  border-top-left-radius: 0;
}

.rtr {
  border-top-right-radius: 0;
}

.rbl {
  border-bottom-left-radius: 0;
}

.rbr {
  border-bottom-right-radius: 0;
}

.bdr-color--gray-lighter {
  border-color: #e8e8e8 !important;
}

.bdr-color--gray-light {
  border-color: #eaebec !important;
}

.bdr-color--gray {
  border-color: #c9cbce;
}

.bdr-0 {
  border-width: 0;
}

.bdr-1 {
  border-width: 1px;
  border-style: solid;
}

.bdr-t1,
.bdr-y1 {
  border-width: 1px;
  border-style: solid;
  border-left: none;
  border-right: none;
}

.bdr-t1 {
  border-bottom: none;
}

.bdr-b1 {
  border-right: none;
  border-top: none;
}

.bdr-b1,
.bdr-r1 {
  border-width: 1px;
  border-style: solid;
  border-left: none;
}

.bdr-l1,
.bdr-r1 {
  border-bottom: none;
}

.bdr-l1 {
  border-width: 1px;
  border-style: solid;
  border-right: none;
}

.footer {
  background-color: #000;
}

.footer__container {
  text-align: center;
}

.footer__container .footer-menu {
  justify-content: center;
}

.footer__container .footer-menu .footer-menu__link {
  font-family: Raleway, sans-serif;
  font-size: 1.4rem;
  line-height: 1.7rem;
  font-weight: 400;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
}

.footer__container .footer-copyright {
  font-family: Raleway, sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.7rem;
}

@media screen and (min-width: 727px) {
  .footer-menu__item {
    display: inline-block;
    float: none;
  }
}

.sponsored-label {
  font-family: Raleway, sans-serif;
  color: #fff;
  padding: 3px 6px 0 3px;
  border-radius: 3px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.5px;
  background-color: #0da5e0;
  display: inline-block;
  font-weight: 500;
  text-shadow: none !important;
}

.sponsored-label.sponsored-label-lg {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 2rem 0;
}

.video-container embed,
.video-container iframe,
.video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.accent-line-after:after {
  height: 2px;
  width: 80px;
  content: "";
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: #0da5e0;
}

.pagination {
  font-weight: 700;
  font-size: 1.6rem;
}
.pagination a {
  text-decoration: none;
}
.pagination a:not(.pagination--current) {
  color: #0095da;
}

.contact-us-container .half-width {
  width: 50%;
}

.static-page-top-divider {
  margin-top: 40px;
  margin-bottom: 40px;
}

.static-page-header {
  margin-top: 40px;
}

.contact-us-container {
  padding: 30px 20px;
  background-color: #ebeced;
}

.contact-us-container .form-control {
  margin-bottom: 20px;
}

.contact-us-container .half-width {
  width: 50%;
}

.contact-address {
  font-weight: 700;
}

.number-circle {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 8px;
  padding-left: 12px;
  margin-right: 20px;
  background: #d0d2d3;
  border: 2px solid #d0d2d3;
  color: #fff;
  text-align: center;
  font-family: arial, sans-serif;
}

.promise {
  margin-bottom: 20px;
}

.our-promise {
  margin-bottom: 30px;
}

.lost-pass .retrieve-button {
  margin-top: 40px;
}

.fonts-sidebar-title {
  font-family: Raleway, sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
}

.fonts-sidebar-title a {
  transition: color 0.1s ease-in-out;
}

.fonts-sidebar-title a:hover {
  color: #0da5e0;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fonts-sidebar-title a {
    transition: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .right-sidebar .fonts-sidebar-title {
    font-size: 2.2rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .right-sidebar .fonts-buying-guides,
  .right-sidebar .fonts-recent-reviews {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}

.fonts-buying-guides,
.fonts-recent-reviews {
  font-family: Raleway, sans-serif;
  font-size: 2.2rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.fonts-buying-guides a,
.fonts-recent-reviews a {
  color: #fff;
}

.fonts-static-body {
  font-family: Raleway, sans-serif;
  font-size: 1.8rem;
  line-height: 3rem;
}

.fonts-static-body a {
  text-decoration: underline;
}

.fonts-static-body a:hover {
  text-decoration: none;
}

.fonts-static-body h1,
.fonts-static-body h2,
.fonts-static-body h3 {
  margin-top: 22px;
  margin-bottom: 11px;
}

.fonts-static-body h3 {
  font-size: 2.8rem;
  font-weight: 500;
}

.fonts-join-title {
  font-size: 3rem;
  color: #0da5e0;
}

.fonts-join-fields,
.fonts-join-title,
.fonts-or {
  font-family: Raleway, sans-serif;
}

.fonts-or {
  font-size: 6rem;
  color: #fff;
}

.fonts-join-button {
  font-size: 1.75rem;
  font-family: Raleway, sans-serif !important;
}

.fonts-join-switch {
  font-family: Raleway, sans-serif;
  color: #979899;
  font-size: 1.8rem;
  line-height: 2rem;
}

.fonts-join-switch:hover {
  color: #0da5e0;
}

.fonts-tos {
  font-size: 1.2rem;
}

.fonts-forgot-pass,
.fonts-tos {
  font-family: Raleway, sans-serif;
  color: #979899;
  line-height: 2rem;
}

.fonts-forgot-pass {
  font-size: 1.4rem;
}

.fonts-forgot-pass:hover {
  color: #0da5e0;
}

.fonts-cookie-notice-bold {
  font-family: Raleway, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.fonts-cookie-notice-content {
  font-family: Raleway, sans-serif;
  font-size: 1.5rem;
  line-height: 2.2rem;
}

.fonts-article-headline {
  font-family: Abril Fatface, sans-serif;
  font-size: 6rem;
  line-height: 6.6rem;
}

@media (max-width: 991.98px) {
  .fonts-article-headline {
    font-family: Abril Fatface, sans-serif;
    font-size: 3rem;
    line-height: 3.2rem;
  }
}

.author-articles__bar {
  height: 2px;
  background: #000;
}

@media (min-width: 768px) {
  .up-menu {
    padding-left: 10px;
    padding-right: 10px;
    list-style: none;
  }
}

@media (min-width: 768px) {
  .up-menu__button {
    display: none;
  }
}

@media (min-width: 768px) {
  .up-menu > ul > li {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 768px) {
  .up-menu__title {
    padding-right: 7px;
  }
}

@media (min-width: 768px) {
  .up-menu > ul > li a {
    text-decoration: none;
  }
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.col-1,
.col-auto {
  -webkit-box-flex: 0;
}
.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}
.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
.col-2,
.col-3 {
  -webkit-box-flex: 0;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
.col-4,
.col-5 {
  -webkit-box-flex: 0;
}
.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-6,
.col-7 {
  -webkit-box-flex: 0;
}
.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}
.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}
.col-8,
.col-9 {
  -webkit-box-flex: 0;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}
.col-10,
.col-11 {
  -webkit-box-flex: 0;
}
.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  order: -1;
}
.order-last {
  order: 13;
}
.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.order-7 {
  order: 7;
}
.order-8 {
  order: 8;
}
.order-9 {
  order: 9;
}
.order-10 {
  order: 10;
}
.order-11 {
  order: 11;
}
.order-12 {
  order: 12;
}
.offset-1 {
  margin-left: 8.33333%;
}
.offset-2 {
  margin-left: 16.66667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333%;
}
.offset-5 {
  margin-left: 41.66667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333%;
}
.offset-8 {
  margin-left: 66.66667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333%;
}
.offset-11 {
  margin-left: 91.66667%;
}
@media (min-width: 500px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1280px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

.article-image {
  position: relative;
}

.mini-article-info {
  padding-top: 10px;
}

.mini-article-info hr {
  clear: both;
  margin-bottom: 20px;
}

.mini-article-info .article-author-meta {
  float: none;
  padding-bottom: 15px;
}

.mini-article-info .article-date {
  color: #979899;
}

.mini-article-info .article-author,
.mini-article-info .article-date,
.mini-article-info .article-day {
  font-weight: 700;
}

.mini-article-info .article-media-icons {
  padding-bottom: 0;
}

@media (min-width: 500px) {
  .mini-article-info .article-author-meta {
    float: left;
  }

  .mini-article-info .article-media-icons {
    float: right;
  }
}

.article-main {
  padding-top: 30px;
}

.article-main .article-author,
.article-main .article-day,
.article-main .article-media-icons {
  border-top: 1px solid #d0d2d3;
  padding-top: 10px;
}

.article-main .article-author,
.article-main .article-date,
.article-main .article-day {
  font-weight: 700;
}

.article-main .article-date {
  color: #979899;
  padding-bottom: 20px;
}

.article-main .article-author-twitter {
  padding-bottom: 30px;
}

.article-main .article-media-icons span.fa-stack {
  font-size: 85%;
}

.article-main .article-media-icons span {
  margin-right: 3px;
}

.article-author-twitter span:hover {
  color: #0da5e0;
  cursor: pointer;
}

.inside-article-header {
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: 100%;
  color: #000;
}

.inside-article-header .rating {
  font-size: 125%;
}

.article-section {
  padding-top: 30px;
}

.article-header {
  color: #000;
  position: relative;
}

.article-header .article-title {
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.article-header .article-sub-title {
  padding-bottom: 30px;
}

.article-header.review-header .article-sub-title {
  padding-bottom: 0;
}

.article-header.review-header .rating {
  font-size: 125%;
  padding-bottom: 30px;
  padding-top: 10px;
}

.article-top-divider {
  margin-top: 10px;
  margin-bottom: 10px;
}

.reviews-sub {
  padding-bottom: 10px;
}

.tag {
  padding-left: 20px;
}

.tagged {
  padding-top: 20px;
  padding-bottom: 30px;
}

.article-body-divider {
  margin-bottom: 20px;
  clear: both;
}

.mini-news-preview,
.mini-review-preview {
  border-top: 1px solid #d0d2d3;
  padding-top: 20px;
  padding-bottom: 20px;
}

.mini-news-preview .image-preview,
.mini-review-preview .image-preview {
  padding-right: 20px;
}

.mini-news-preview .image-preview img,
.mini-review-preview .image-preview img {
  width: 120px;
}

.mini-news-preview .sponsored-label,
.mini-review-preview .sponsored-label {
  margin-bottom: 10px;
}

.mini-news-preview:last-child,
.mini-review-preview:last-child {
  border-bottom: 1px solid #d0d2d3;
}

.topic-feature-preview .headline {
  padding-top: 10px;
}

.review-clear {
  clear: both;
}

.commentable .header {
  padding-bottom: 10px;
}

.commentable .comment-blurb {
  border-top: 1px solid #d0d2d3;
  padding-top: 20px;
  padding-bottom: 20px;
}

.commentable .comment-blurb:last-child {
  border-bottom: 1px solid #d0d2d3;
}

.article-media-icons .fa-inverse {
  transition: color 0.1s ease-in-out;
}

.article-media-icons .fa-inverse:hover {
  color: #0da5e0;
}

@media screen and (prefers-reduced-motion: reduce) {
  .article-media-icons .fa-inverse {
    transition: none;
  }
}

.article-media-icons > .fa-layers > span:hover {
  cursor: pointer;
}

.article-edit {
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: auto;
  height: auto;
  color: #fff;
  padding: 5px;
  font-size: 2rem;
  background: rgba(0, 153, 51, 0.35);
}

.article-edit:hover {
  color: #fff;
  background: rgba(0, 153, 51, 0.75);
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .article-content {
    padding-right: 0;
  }

  .right-sidebar {
    padding-left: 50px;
  }

  .right-sidebar .image-preview {
    padding-right: 0;
    padding-bottom: 10px;
    float: none !important;
  }
}

.article-sponsor-meta {
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 700;
}

.article-sponsor-meta img {
  display: block;
  margin: 10px auto;
}

@media (min-width: 768px) {
  .article-sponsor-meta {
    border-top: 1px solid #d0d2d3;
    padding-top: 10px;
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .article-sponsor-meta {
    font-size: 15px;
  }
}

.fonts-article-headline {
  font-family: Abril Fatface, sans-serif;
  font-size: 6rem;
  line-height: 6.6rem;
}

.fonts-article-sub {
  font-family: Raleway, sans-serif;
  font-size: 3rem;
  color: #979899;
  line-height: 3.3rem;
}

@media (max-width: 991.98px) {
  .fonts-article-headline {
    font-family: Abril Fatface, sans-serif;
    font-size: 3rem;
    line-height: 3.2rem;
  }

  .fonts-article-sub {
    font-family: Raleway, sans-serif;
    color: #979899;
    font-size: 2rem;
    line-height: 2.2rem;
  }
}

.fonts-article-meta {
  font-family: Raleway, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 7px;
}

.fonts-article-body {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  line-height: 2.6rem;
}

.fonts-article-body h1,
.fonts-article-body h2,
.fonts-article-body h3,
.fonts-article-body h4,
.fonts-article-body h5 {
  font-family: Raleway, sans-serif;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.fonts-article-body h1,
.fonts-article-body h2 {
  font-size: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #d0d2d3;
  margin-top: 5rem;
}

.fonts-article-body h2 {
  margin-bottom: 2rem;
}

.fonts-article-body h3 {
  font-size: 3rem;
  border-top: none;
  margin-top: 0;
}

.fonts-article-body h4,
.fonts-article-body h5,
.fonts-article-body h6 {
  margin-bottom: 0.5rem;
}

.fonts-article-body h4 {
  font-size: 2.2rem;
  margin-top: 2.7rem;
}

.fonts-article-body h5,
.fonts-article-body h6 {
  font-size: 1.8rem;
}

.fonts-article-body a {
  text-decoration: underline;
  word-break: break-word;
}

.fonts-article-body a:hover {
  color: #000;
}

.fonts-article-body p {
  margin: 0 0 14px;
}

@media (min-width: 768px) {
  .fonts-article-body {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.fonts-article-body > ul li {
  list-style-type: disc;
}

.fonts-article-section a {
  color: #0da5e0;
  font-family: Raleway, sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.fonts-article-section a:hover {
  text-decoration: none;
}

.fonts-tagged {
  text-decoration: underline;
}

.fonts-tagged,
.fonts-tagged-header {
  font-family: Raleway, sans-serif;
  font-size: 1.4rem;
  color: #7d7e7f;
}

.fonts-tagged-header {
  font-weight: 900;
}

.fonts-info-box {
  line-height: 2.2rem;
  font-size: 1.5rem;
  font-family: Raleway, sans-serif;
}

.fonts-info-box h1 {
  font-size: 2rem;
  font-weight: 900;
}

.fonts-info-box h2,
.fonts-info-box h3,
.fonts-info-box h4,
.fonts-info-box h5 {
  font-size: 1.8rem;
  font-weight: 700;
}

.post_dropcap {
  font-size: 9rem;
  line-height: 4.5rem;
  float: left;
  padding-right: 0.1em;
  padding-top: 15px;
}

.fonts-pullquote-body,
.pullquote {
  font-family: Raleway, sans-serif;
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 900;
}

iframe.instagram-media-rendered,
iframe.twitter-tweet-rendered {
  margin: 2rem 0 !important;
}

iframe.instagram-media-rendered + br,
iframe.twitter-tweet-rendered + br {
  display: none;
}

.pullquote {
  padding: 3rem 0;
  margin: 1rem 0 2rem;
  border-top: 1px solid #d0d2d3;
  border-bottom: 1px solid #d0d2d3;
  border-left: 0;
  border-right: 0;
}

.pullquote:before {
  content: "\201C";
  font-family: Abril Fatface, sans-serif;
  font-size: 8.6rem;
  color: #0da5e0;
  margin-bottom: -30px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: table;
  clear: both;
}

.pullquote:after {
  content: "";
  display: block;
  clear: both;
}

.pullquote_left {
  float: left;
  width: 100%;
  margin-right: 3rem;
}

@media (min-width: 768px) {
  .pullquote_left {
    width: 35%;
  }
}

.pullquote_right {
  float: right;
  width: 100%;
  margin-left: 3rem;
}

@media (min-width: 768px) {
  .pullquote_right {
    width: 35%;
  }
}

@media (min-width: 992px) {
  .pullquote_full {
    margin-left: -34.3%;
    width: 134.3%;
  }

  .longform-article .pullquote_full {
    margin-left: -25.5%;
    width: 125.5%;
  }
}

.affiliate-box + br {
  display: none;
}

h4.affiliate-box-title {
  margin: 0 0 10px;
}

p.affiliate-box-disclaimer {
  color: #979899;
  font-size: 1.4rem;
  font-family: Raleway, sans-serif;
}

.affiliate-box-items {
  margin: 0;
}

.affiliate-box-items .col-15 {
  padding: 0 !important;
  max-width: 25% !important;
}

.affiliate-box-items .box-item {
  padding: 10px;
  height: 300px;
  border: 1px solid #b3b3b3;
  border-left: 0;
  position: relative;
}

.affiliate-box-items .box-item img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.affiliate-box-items .box-item.first {
  border-left: 1px solid #b3b3b3;
}

.affiliate-box-items .box-item-text .box-item-title {
  margin-top: 15px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: #333;
}

.affiliate-box-items .box-item-text .box-item-price-button {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background-color: #db0f5d;
  border: none;
  color: #fff;
}

@media (max-width: 991.98px) {
  .affiliate-box-items .box-item {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .affiliate-box-items .col-15 {
    max-width: 50% !important;
  }

  .affiliate-box-items .col-15 .box-item {
    padding: 10px;
    height: 165px;
    border: 1px solid #b3b3b3;
  }

  .affiliate-box-items .col-15 .odd-numbered {
    border-right: none;
  }

  .affiliate-box-items .col-15 .no-top-border {
    border-top: none;
  }

  .affiliate-box-items .col-15 .box-item img {
    margin: 0;
    width: 80px;
    height: 80px;
  }

  .affiliate-box-items .col-15 .box-item-text {
    position: absolute;
    left: 110px;
    top: 15px;
    right: 15px;
    bottom: 15px;
  }

  .affiliate-box-items .col-15 .box-item-text .box-item-title {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
  }

  .affiliate-box-items .col-15 .box-item-text .box-item-price-button {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

@media (max-width: 489px) {
  .affiliate-box-items .col-15 {
    max-width: 100% !important;
  }

  .affiliate-box-items .col-15 .box-item {
    height: 150px;
    border: 1px solid #b3b3b3;
    border-top: none;
  }

  .affiliate-box-items .col-15 .box-item.first {
    border-top: 1px solid #b3b3b3;
  }

  .affiliate-box-items .col-15 .box-item img {
    margin: 0;
    padding: 0;
    width: 110px;
    height: 110px;
  }

  .affiliate-box-items .col-15 .box-item-text {
    position: absolute;
    top: 15px;
    left: 120px;
    bottom: 15px;
    right: 15px;
  }

  .affiliate-box-items .col-15 .box-item-text .box-item-title {
    margin: 0 0 0 20px;
  }

  .affiliate-box-items .col-15 .box-item-text .box-item-price-button {
    margin: 0 20px;
    width: 140px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.amazon-pa {
  margin: 20px 0;
  padding: 10px 10px 15px;
  border: 1px solid #d0d2d3;
  font-family: Raleway, sans-serif;
}

.amazon-pa a {
  text-decoration: none !important;
}

.amazon-pa + br {
  display: none;
}

.amazon-pa__image {
  flex: 0 0 20%;
  max-width: 20%;
}

.amazon-pa__info {
  display: flex;
  padding-right: 10px;
  padding-left: 10px;
  flex: 0 0 80%;
  max-width: 80%;
}

@media (min-width: 500px) {
  .amazon-pa__info {
    padding-right: 0;
    padding-left: 0;
  }
}

.amazon-pa__info__title {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .amazon-pa__info__title {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
    padding-right: 10px;
  }
}

.amazon-pa__info__button {
  flex: 0 0 60%;
  max-width: 60%;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .amazon-pa__info__button {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    margin-top: 0;
  }
}

.amazon-pa__info .row {
  margin-right: 0;
  margin-left: 0;
}

@media (min-width: 500px) {
  .amazon-pa__info .row {
    margin-right: -10px;
    margin-left: -10px;
  }
}

.amazon-pa-image {
  display: block;
  margin: 0 auto;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .amazon-pa-image {
    width: auto;
    padding-right: 0;
  }
}

.amazon-pa-title {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 700;
}

.amazon-pa-button,
.amazon-pa-button--alone {
  color: #fff;
  background-color: #db0f5d;
  border-color: #db0f5d;
  padding: 9px 12px;
  border: 0;
  font-weight: 600;
  text-decoration: none !important;
}

.amazon-pa-button--alone:hover,
.amazon-pa-button:hover {
  color: #fff;
  background-color: #b70d4e;
  border-color: #ab0c49;
}

.amazon-pa-button--alone.focus,
.amazon-pa-button--alone:focus,
.amazon-pa-button.focus,
.amazon-pa-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(219, 15, 93, 0.5);
}

.amazon-pa-button--alone.disabled,
.amazon-pa-button--alone:disabled,
.amazon-pa-button.disabled,
.amazon-pa-button:disabled {
  color: #fff;
  background-color: #db0f5d;
  border-color: #db0f5d;
}

.amazon-pa-button--alone:not(:disabled):not(.disabled).active,
.amazon-pa-button--alone:not(:disabled):not(.disabled):active,
.amazon-pa-button:not(:disabled):not(.disabled).active,
.amazon-pa-button:not(:disabled):not(.disabled):active,
.show > .amazon-pa-button--alone.dropdown-toggle,
.show > .amazon-pa-button.dropdown-toggle {
  color: #fff;
  background-color: #ab0c49;
  border-color: #9f0b44;
}

.amazon-pa-button--alone:not(:disabled):not(.disabled).active:focus,
.amazon-pa-button--alone:not(:disabled):not(.disabled):active:focus,
.amazon-pa-button:not(:disabled):not(.disabled).active:focus,
.amazon-pa-button:not(:disabled):not(.disabled):active:focus,
.show > .amazon-pa-button--alone.dropdown-toggle:focus,
.show > .amazon-pa-button.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(219, 15, 93, 0.5);
}

.amazon-pa-button {
  font-size: 1.4rem !important;
  width: 100%;
}

.amazon-pa-button--alone {
  font-size: 1.6rem !important;
  width: auto !important;
  font-family: Raleway, sans-serif;
  padding: 14px 20px;
}

.amazon-pa-supplier {
  font-size: 1.1rem;
  line-height: 2rem;
  padding: 7px 0;
  text-align: center;
}

@media (min-width: 500px) {
  .amazon-pa {
    padding: 20px;
  }

  .amazon-pa-title {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }

  .amazon-pa-button {
    margin-left: 0;
    margin-right: 0;
  }
}

.picks {
  background-color: #e9ecef;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

h4.picks__title {
  font-size: 2.4rem;
  padding: 20px;
  margin: 0;
}

.picks__wrapper:after {
  display: block;
  clear: both;
  content: "";
}

li.picks__slide {
  width: 340px;
  height: 190px;
  margin-left: 0 !important;
  margin-right: 20px !important;
}

li.picks__slide a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

li.picks__slide img {
  display: block;
  top: 0;
  left: 0;
}

li.picks__slide .picks__item-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 4rem 2rem 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  background-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.55));
  background-repeat: repeat-x;
}

li.picks__slide .picks__item-title {
  font-family: Abril Fatface, sans-serif;
  font-size: 2.2rem;
  line-height: 2.4rem;
}

li.picks__slide .picks__item-subtitle {
  font-family: Raleway, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: 400;
  padding-top: 5px;
}

li.picks__slide .picks__item--slidein {
  max-height: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  li.picks__slide .picks__item--slidein {
    transition: none;
  }
}

li.picks__slide a:hover .picks__item--slidein {
  max-height: 100px;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: max-height 0.6s ease-in, opacity 0.6s ease-in;
}

@media screen and (prefers-reduced-motion: reduce) {
  li.picks__slide a:hover .picks__item--slidein {
    transition: none;
  }
}

@media (min-width: 992px) {
  .picks__container,
  .picks__container .longform-article {
    width: 100%;
  }
}

.picks__container {
  position: relative;
  padding: 0 20px;
}

.picks__container .picks__arrows {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.picks__container:hover .picks__arrows {
  opacity: 1;
}

.picks__container * {
  box-sizing: inherit;
}

.picks__track {
  padding-bottom: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.picks__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  padding: 0;
  white-space: nowrap;
  display: flex;
  will-change: transform;
}

.picks__slide,
.picks__slides--dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.picks__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.picks__slide a {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.picks__arrows,
.picks__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.picks__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  border: none;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  opacity: 1;
  cursor: pointer;
  transform: translateY(-50%);
  line-height: 1;
}

.picks__arrow:focus {
  outline: none;
}

/*.picks__arrow--left {*/
/*  left: 1em;*/
/*  height: 44px;*/
/*  width: 44px;*/
/*  background: url("../images/arrow-left.svg");*/
/*}*/

/*.picks__arrow--right {*/
/*  height: 44px;*/
/*  width: 44px;*/
/*  right: 1em;*/
/*  background: url("../images/arrow-right.svg");*/
/*}*/

.gallery__arrow--disabled {
  display: none !important;
}

.picks__bullets {
  position: absolute;
  z-index: 2;
  bottom: -0.5em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}

.picks__bullet {
  background-color: rgba(48, 47, 47, 0.5);
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 8px;
}

.picks__bullet:focus {
  outline: none;
}

.picks__bullet--active {
  background-color: #0da5e0;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: 400;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  border: 4px solid #fff;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: #fff;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(data:image/gif;base64,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)
    no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
}

.lb-next,
.lb-prev {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAtCAYAAADsvzj/AAAFF0lEQVR4Ac2ZW0xcVRSGPTNnhlPKcCsUAeeChkEVxhutDQwzMANaqamNWgpaH+yDIaZp1cRHbgH0gTsxkmDCI/hiRAqgD5qYRgKQ8II6TE00wfgGAcIdKeM/ydrNZIezxxg9m518gRxWmn6s9a9zhvNQJBL5T/gfjokwA5Uw0zWFeHBOugiTsAArfSWZky+iABVowAZSwRkiDSTRz1iHlJMmogATsIDTIAPYgRs8SeTTtXSQSLVKFNkivIQKksDDJFCsquqLmqZdAa/i+yCuPQ1cJHOKjdpJEWGdsIFs8BQoy83NvTEzMzO3t7f318HBweHc3Nxdj8dznWQeIWmpIryENUaiCPgdDsfN+fn5XyLcWV5eDlmt1gBqHgOpbAHIFmESySAHeECF0+m8hd/+vcgxZ3d39wBj9grqCkA6iaiyRBRunJhEpcvl+nBhYeG3iM7Z2dnZgkg1ZSgNqLI6wgebSVTZ7faPlpaW/tSTWF9f36ivr+9AbQkF3iZRhAs2dSInJ+eDUCj0h0Biq7S09BPUBkEhyAKJssKusE6QRCGoQLDfn56eDulJrK6ubgeDwS7UXgTPAztIkXUfUbhxKgLlyMRtBPtXPYm1tbXdqqoqJnEOOGhbJQCTkSJ8sJlEMNoJrFhdicPDw6PKyspe1FaD85yE2YBnLUGwSSIrK+s2bnZLehIbGxubfr+/B7WXSMJJ42QlCcVAES7YJJGdnR0dp7BgnLZKSko6qBPngIvrBEkYIKIT7PLoOKET4TjB7kbty+A8SaRxmcAxQEQn2BUI9q3Z2dl7gk7sINhRiZeoE87jMmGECB/s3JhgR8dJV2Jzc3Pb5/N1UieKKdgsEyaAY5wIk2Dj5GHBRifCgmBHb3adLBNsO3HBNkxEAWZwCmSCx4EPwb4ZJ9jbCHYXSRQDpyDYhomoNFIOUIRMvINO/KQnsbKyshMIBD5D7RVwgQWblzBahD2Sp5jN5jzM+9uLi4s/60mEw+FNbKcvUH8DVIECcAZoXLCliaRaLBbX8PBwb0RwRkZGfkftx+BdUM4+KInDbdxoWUCKoih5CQkJgYGBgS/xs6PjRPb394+ampp+RP174CIoBGcpYypQZIqYY+4dz4DLvb29Y6LONDY2fou6OuAF+SCDZCgj8kQSQDqNihfU9vX1TYlkGhoa7qDuDVBKMpQVrjMG30fYCs6gAHuRmdqurq5JkUxLS8sEaq+CMq4zJGOgCB2Fk8kHJSaTqaazs3Pi2MzQaWtrm0RtDfDFyCQyGUNFOJlEkMlkwLWenp5vRDKtra1TNGYsM5mcjKEifGeYjBfUQUaYmebm5omYzLjFC8C4zyNqTGfcNDZ1/2ABjKHudZLXkTFARJAZN/CqqnqNMqN7Ojo6vqMF4ONkVFmvFUQLQNiZ7u7u76PZAn6S4TJjrIhoAdT+iwXAdQYYKCJaAG/iPhNvAYyj7jXwAngUpAGrDBF+ATCZAuBXFOX60NDQ3TiPM1/hyfoyPf7kgNNSXyvwmSGZMk3T3hocHPwhzlPzJLLFnpZT5PztV5wZNyilbTZFmTnZrxU4GZWXATV4ap4kmeNELlEticjsSHyZq/39/V/j374P2Lk/Pj5+BznxUuDlj1acJ4B8cAH/4er29vbPR0dH58fGxubx/ac2my1Ab3iz5Yc9/gJIB05QCJ4Fz9FXD3gC5HIfi+WKCGQ0GpuzwA7yCDtdS+b/SCFfRPwaQqPxSSaS6JrlwUjR+RtEvCM0ct4sLQAAAABJRU5ErkJggg==)
    left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAtCAYAAADsvzj/AAAFDUlEQVR4Ac2ZS0xcVRjHvTN3hisw0GIRZ3AeLWHQWqdVsRqgA86AUmpqoy20Whd2YYhprJq45BVAF7yJkQQTluDGiEhBF5qYRsIjYYMKQxNNMO4gQHgjZfxP8pF8ufEe0qQ5pyf5BTKcWfzyff/vnHt5xLQ0wgbsQCfswEY80BWPxx8I5sUlHMBJP0nm4RfRWAUMkAqOgseII8AFDNqjPYwiGuEAySADeEEuOEkE6bNjIIX22riQchHWSo+SRACc1nU9ahjGG+ASfn8Vn+WT0BNUMV0so04kFTwJTodCoeuTk5N3dnd397a3t/8dHx+fzM7OvoG/nQPPADdwscqoF2HBPgJynE5nZGFhYTZuWlNTU3/4fL6b2FMMnmUyTpJRLqKTSAbIQyu9vrW1tRv/n4Uqzfv9/g+x7xUQAh6QxmVUV0SnKRWESMXm5uZ63GJNT0//GQgEPsHeUibD20xTLeKioBdUV1e3rKysrFrJzM3N/eP1ej/F3jImIxgAcsOeDLLAKRAtLCz8HDKWlZmdnf3b4/F8zCojGADyz5F04AUvgPJoNNq2tLS0YSUzNjY2iwHwEWXmFHCzymiqRGwgiaaXD7wIysvKytqWl5e3rGQwAO4iM7ewt4SmmYfLqLpr2U0yZ0FFaWlp597e3r6VDEbzXapMlGQEA0COiEYyTmozP8lcKC4u7lhdXV2zksGhOZeVlXWLy5gHgDwRJsMqE6A2qygoKGhBm60L2izmdruZjGkAyBShxTNzlGTOgvMYAO2iAYDKxKjNSgQDQI6IRWb8VJnXMADaUZlNK5mJiYl5DAC6AQgGgCwRWjaWGR/IB+fD4XDr2trahqDN5lEZ3mbZ5gEgW4QPAD6aK3BotmIArAsqE2MDIMTajGTkinAZ3mb5NAAS58zGIQPgJvaGwVMgk5597ECTLcJl+AB4GVyKRCJfLi4uijLzGzLzHrWYj1pMVyXCB4BBz/J5oAzcwDT7OhaLWZ4zMzMzvyNX79rt9uOUNyewqRSxsbzk0Jh9H3w2MDDwV1yw+vv7Ox0OR4C+q1REAzr1+ON0TpSDD+rq6n7d2dmxusbs9/T0fJOUlBTRNO2gIg6lGSGJYyAXFIFrtbW1P4oq0dnZOYR9F8EZdqaoCDtVgrJBEoXgck1Nzfciia6urlHsu0rSOSADJEkXYRK8EufAlYaGhtsiiba2thFk4kAij75Po1fiOcIkkplEGFQ2NTWNCBz2W1tbb9tstkrsLaDvcQlN5hWFS2SyTFxubGwcFUl0dHT8gH1VTCITJHMJWSLmYAcPMlFfXy9sJ0gkMnGNpEnCXAkJIhYSReAtBHvosGCTRBgEWSV0qc8jPNhMIgyutLS0/CSSSGRC1/Uqkg5aZUKGiDkTQVAMqtrb238+RGJUHGyZb1F4Je4/2FfFwZYr4qRb7QnwEngTwR4+5JxIZOJtcbDlv2lMAR5wBjfUi7h2fCuS6Ovru6Np2nVqvzwmQcFW9+43HeSg10twix0RSfT29v5iGMY7dMLniTOh+N8KghN7lKZTIQgKMiG/IkwkCJELFiL7uMWOYE+lWUL8elRNa51APoqGh4cTN9p7TOJed3f3d4nz5P4l1ITdDU66XK5Ic3PzF0NDQ1ODg4NT+P0rCFbQM3qu4MRWLsIfX7PB0yAEngPP089TwA8yBMFWKmJ+qZBGj7FecJzw0mfpwBBLqBexseAbIBWkESnAEPybQLnIf4JfIzSb+FymAAAAAElFTkSuQmCC)
    right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAbCAMAAAC6CgRnAAAAPFBMVEX///8AAAD9/f2CgoKAgIAAAAAAAAAAAABLS0sAAAAAAACqqqqqqqq6urpKSkpISEgAAAC7u7u5ubn////zbsMcAAAAE3RSTlMASv6rqwAWS5YMC7/AyZWVFcrJCYaKfAAAAHhJREFUeF590kkOgCAQRFEaFVGc+/53FYmbz6JqBbyQMFSYuoQuV+iTflnstI7ssLXRvMWRaEMs84e2uVckuZe6knL0hiSPObXhj6ChzoEkIolIIpKIO4joICAIeDd7QGIfCCjOKe9HEk8mnxpIAup/F31RPZP9fAG3IAyBSJe0igAAAABJRU5ErkJggg==)
    100% 0 no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lightbox .lb-outerContainer {
  position: absolute;
  left: 0;
  right: 0;
  top: 42px;
}

.gallery__wrapper {
  background-color: #0da5e0;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 10px 10px 0;
}

.gallery__wrapper:after {
  display: block;
  clear: both;
  content: "";
}

@media (min-width: 992px) {
  .gallery {
    margin-left: -34.3%;
    width: 134.3%;
  }

  .gallery .longform-article {
    margin-left: -25.5%;
    width: 125.5%;
  }
}

.gallery {
  position: relative;
}

.gallery__arrows {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery:hover .gallery__arrows {
  opacity: 1;
}

.gallery * {
  box-sizing: inherit;
}

.gallery__track {
  overflow: hidden;
}

.gallery__slides {
  position: relative;
  list-style: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  padding: 0;
  white-space: nowrap;
  display: flex;
  will-change: transform;
  height: auto;
}

.gallery__slide,
.gallery__slides--dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gallery__slide {
  margin-right: 10px;
  flex-shrink: 0;
  white-space: normal;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 499.98px) {
  .gallery__slide {
    width: 100%;
  }
}

.gallery__slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 500px) {
  .gallery__slide img {
    height: 250px;
  }
}

@media (min-width: 768px) {
  .gallery__slide img {
    height: 350px;
  }
}

.gallery__slide a {
  -webkit-user-drag: none;
}

.gallery__arrows,
.gallery__slide a {
  -webkit-user-select: none;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.gallery__arrows {
  -webkit-touch-callout: none;
}

.gallery__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  border: none;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  opacity: 1;
  cursor: pointer;
  transform: translateY(-50%);
  line-height: 1;
}

.gallery__arrow:focus {
  outline: none;
}

/*.gallery__arrow--left {*/
/*  left: 1em;*/
/*  height: 44px;*/
/*  width: 44px;*/
/*  background: url("../images/arrow-left.svg");*/
/*}*/

/*.gallery__arrow--right {*/
/*  height: 44px;*/
/*  width: 44px;*/
/*  right: 1em;*/
/*  background: url("../images/arrow-right.svg");*/
/*}*/

.gallery__arrow--disabled {
  opacity: 0.33;
}

.popular-stories-list {
  margin: 10px 0 40px;
}

.fonts-popular-stories-headline {
  font-family: Raleway, sans-serif;
  font-size: 2.2rem;
  line-height: 2.4rem;
  font-weight: 700;
}

.fonts-popular-story-headline {
  font-family: Raleway, sans-serif;
  font-size: 1.8rem;
  line-height: 2rem;
  transition: color 0.1s ease-in-out;
}

.fonts-popular-story-headline:hover {
  color: #0da5e0;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fonts-popular-story-headline {
    transition: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .fonts-popular-story-headline {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}

.pricebox {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pricebox-inner {
  background-color: #ebeced;
  color: #000;
  padding: 10px;
}

.pricebox-label {
  display: block;
  float: left;
  width: 12rem;
}

.pricebox-price {
  display: block;
  float: right;
}

.pricebox-link {
  clear: both;
  color: #fff;
  background-color: #db0f5d;
  border-color: #db0f5d;
  margin-top: 30px;
  padding: 7px 10px;
  border: 0;
  text-decoration: none !important;
  width: 100%;
}

.pricebox-link:hover {
  color: #fff;
  background-color: #b70d4e;
  border-color: #ab0c49;
}

.pricebox-link.focus,
.pricebox-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(219, 15, 93, 0.5);
}

.pricebox-link.disabled,
.pricebox-link:disabled {
  color: #fff;
  background-color: #db0f5d;
  border-color: #db0f5d;
}

.pricebox-link:not(:disabled):not(.disabled).active,
.pricebox-link:not(:disabled):not(.disabled):active,
.show > .pricebox-link.dropdown-toggle {
  color: #fff;
  background-color: #ab0c49;
  border-color: #9f0b44;
}

.pricebox-link:not(:disabled):not(.disabled).active:focus,
.pricebox-link:not(:disabled):not(.disabled):active:focus,
.show > .pricebox-link.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(219, 15, 93, 0.5);
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pricebox-inner {
    padding: 15px;
  }

  .pricebox-price {
    float: left;
  }

  .pricebox-link {
    margin-top: 2px;
    float: right;
    width: 20rem;
    clear: none;
  }
}

@media (min-width: 992px) {
  .pricebox {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -34.3%;
    width: 34.3%;
    float: left;
  }

  .longform-article .pricebox {
    margin-left: -25.5%;
    width: 25.5%;
  }

  .pricebox-inner {
    margin-right: 20px;
    margin-left: 10px;
  }

  .has-rsb .pricebox-inner {
    margin-left: 0;
  }

  .pricebox-label,
  .pricebox-price {
    width: 100%;
    float: none;
  }

  .pricebox-link {
    margin-top: 40px;
    width: 100%;
  }
}

.fonts-pricebox {
  font-family: Raleway, sans-serif;
}

.fonts-pricebox-label {
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 500;
}

.fonts-pricebox-price {
  font-size: 4.4rem;
  line-height: 4.4rem;
}

.fonts-pricebox-link {
  font-size: 1.4rem;
  line-height: 1.8rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .fonts-pricebox-price {
    line-height: 3.2rem;
  }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
  .fonts-pricebox-price {
    font-size: 3.8rem;
    line-height: 3.8rem;
  }

  .fonts-pricebox-link {
    font-size: 1.2rem;
  }
}

.recent-reviews {
  margin-bottom: 40px;
}

.recent-review {
  margin-top: 10px;
  position: relative;
  padding: 0;
}

.recent-review a {
  display: block;
}

.recent-review .review-text {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-bottom: 10px;
  padding-left: 10px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  padding-top: 50px;
  background-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.35));
  background-repeat: repeat-x;
}

.recent-review .sponsored-label {
  margin-top: 10px;
  margin-bottom: 10px;
}

#content .recent-review {
  padding: 0;
}

.recent-stories-list {
  margin: 10px 0 40px;
}

.fonts-recent-stories-headline {
  font-family: Raleway, sans-serif;
  font-size: 2.2rem;
  line-height: 2.4rem;
  font-weight: 700;
}

.fonts-recent-story-headline {
  font-family: Raleway, sans-serif;
  font-size: 1.8rem;
  line-height: 2rem;
  transition: color 0.1s ease-in-out;
}

.fonts-recent-story-headline:hover {
  color: #0da5e0;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fonts-recent-story-headline {
    transition: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .fonts-recent-story-headline {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}

.recent-stories-alt {
  padding-top: 22px;
}

.recent-stories-alt .recent-story-alt {
  border-bottom: 1px solid #d0d2d3;
  padding-top: 10px;
  padding-bottom: 10px;
}

.recent-stories-alt .section {
  padding-right: 10px;
}

.recent-stories-alt .title {
  padding-right: 10px;
  transition: color 0.1s ease-in-out;
}

.recent-stories-alt .title:hover {
  color: #0da5e0;
}

@media screen and (prefers-reduced-motion: reduce) {
  .recent-stories-alt .title {
    transition: none;
  }
}

.fonts-recent-stories-alt-header {
  font-size: 2.8rem;
  font-family: Raleway, sans-serif;
  font-weight: 700;
}

.fonts-recent-stories-alt-tags {
  font-size: 1.1rem;
  font-family: Raleway, sans-serif;
  font-weight: 700;
  color: #7d7e7f;
}

.fonts-recent-stories-alt-title {
  font-size: 1.8rem;
  font-family: Raleway, sans-serif;
  font-weight: 700;
}

.fonts-recent-stories-alt-author {
  font-size: 1.6rem;
  font-family: Raleway, sans-serif;
}

@font-face {
  font-family: Abril Fatface;
  font-display: auto;
  src: url(../woff2/abrilfatface-regular-webfont512a.woff2)
    format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: fa-wb;
  src: url(../eot/fa-wb622e.eot);
  src: url(../eot/fa-wb622e.eot#iefix) format("embedded-opentype"),
    url(../ttf/fa-wb7f31.ttf) format("truetype"),
    url(../woff/fa-wb4979.woff) format("woff"),
    url(../svg/fa-wb04e6.svg#fa-wb) format("svg");
  font-weight: 400;
  font-style: normal;
}

[class*=" fa-wb-"],
[class^="fa-wb-"] {
  font-family: fa-wb !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-wb-star:before,
.icon-star--empty:before,
.icon-star--full:before,
.icon-star--half:before {
  content: "\F005";
}

.fa-wb-star-o:before {
  content: "\F006";
}

.fa-wb-star-half:before {
  content: "\F089";
}

.fa-wb-star-half-o:before {
  content: "\F123";
}

.font-title {
  font-family: Abril Fatface, sans-serif !important;
  font-weight: 500;
}

.font-body,
.font-teaser {
  font-family: Raleway, sans-serif !important;
  font-weight: 400;
}

.font-teaser {
  color: #9b9c9d;
}

.article-page-body-p {
  font-family: Georgia, serif;
  color: #000;
  font-size: 1.6rem;
  line-height: 2.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.1;
}

.h1,
h1 {
  font-size: 3.6rem;
}

.h2,
h2 {
  font-size: 2.4rem;
  font-weight: 300;
}

.h4,
h4 {
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.6rem;
  }
}

.font-1 {
  font-size: 1.4rem !important;
  line-height: 1.7rem !important;
}

.font-2 {
  font-size: 1.6rem !important;
  line-height: 1.9rem !important;
}

.font-3 {
  font-size: 1.8rem !important;
  line-height: 2.5rem !important;
}

.font-4 {
  font-size: 2.2rem !important;
  line-height: 3rem !important;
}

.font-5 {
  font-size: 2.6rem !important;
  line-height: 3.2rem !important;
}

.font-6 {
  font-size: 3.4rem !important;
  line-height: 4.1rem !important;
}

.font-7 {
  font-size: 4.6rem !important;
}

.font-7,
.font-8 {
  line-height: 5.2rem !important;
}

.font-8 {
  font-size: 5.2rem !important;
}

.font-9 {
  font-size: 9.8rem !important;
  line-height: 11.9rem !important;
}

@media (min-width: 500px) {
  .font-sm-1 {
    font-size: 1.4rem !important;
    line-height: 1.7rem !important;
  }

  .font-sm-2 {
    font-size: 1.6rem !important;
    line-height: 1.9rem !important;
  }

  .font-sm-3 {
    font-size: 1.8rem !important;
    line-height: 2.5rem !important;
  }

  .font-sm-4 {
    font-size: 2.2rem !important;
    line-height: 3rem !important;
  }

  .font-sm-5 {
    font-size: 2.6rem !important;
    line-height: 3.2rem !important;
  }

  .font-sm-6 {
    font-size: 3.4rem !important;
    line-height: 4.1rem !important;
  }

  .font-sm-7 {
    font-size: 4.6rem !important;
  }

  .font-sm-7,
  .font-sm-8 {
    line-height: 5.2rem !important;
  }

  .font-sm-8 {
    font-size: 5.2rem !important;
  }

  .font-sm-9 {
    font-size: 9.8rem !important;
    line-height: 11.9rem !important;
  }
}

@media (min-width: 768px) {
  .font-md-1 {
    font-size: 1.4rem !important;
    line-height: 1.7rem !important;
  }

  .font-md-2 {
    font-size: 1.6rem !important;
    line-height: 1.9rem !important;
  }

  .font-md-3 {
    font-size: 1.8rem !important;
    line-height: 2.5rem !important;
  }

  .font-md-4 {
    font-size: 2.2rem !important;
    line-height: 3rem !important;
  }

  .font-md-5 {
    font-size: 2.6rem !important;
    line-height: 3.2rem !important;
  }

  .font-md-6 {
    font-size: 3.4rem !important;
    line-height: 4.1rem !important;
  }

  .font-md-7 {
    font-size: 4.6rem !important;
  }

  .font-md-7,
  .font-md-8 {
    line-height: 5.2rem !important;
  }

  .font-md-8 {
    font-size: 5.2rem !important;
  }

  .font-md-9 {
    font-size: 9.8rem !important;
    line-height: 11.9rem !important;
  }
}

@media (min-width: 992px) {
  .font-lg-1 {
    font-size: 1.4rem !important;
    line-height: 1.7rem !important;
  }

  .font-lg-2 {
    font-size: 1.6rem !important;
    line-height: 1.9rem !important;
  }

  .font-lg-3 {
    font-size: 1.8rem !important;
    line-height: 2.5rem !important;
  }

  .font-lg-4 {
    font-size: 2.2rem !important;
    line-height: 3rem !important;
  }

  .font-lg-5 {
    font-size: 2.6rem !important;
    line-height: 3.2rem !important;
  }

  .font-lg-6 {
    font-size: 3.4rem !important;
    line-height: 4.1rem !important;
  }

  .font-lg-7 {
    font-size: 4.6rem !important;
  }

  .font-lg-7,
  .font-lg-8 {
    line-height: 5.2rem !important;
  }

  .font-lg-8 {
    font-size: 5.2rem !important;
  }

  .font-lg-9 {
    font-size: 9.8rem !important;
    line-height: 11.9rem !important;
  }
}

@media (min-width: 1280px) {
  .font-xl-1 {
    font-size: 1.4rem !important;
    line-height: 1.7rem !important;
  }

  .font-xl-2 {
    font-size: 1.6rem !important;
    line-height: 1.9rem !important;
  }

  .font-xl-3 {
    font-size: 1.8rem !important;
    line-height: 2.5rem !important;
  }

  .font-xl-4 {
    font-size: 2.2rem !important;
    line-height: 3rem !important;
  }

  .font-xl-5 {
    font-size: 2.6rem !important;
    line-height: 3.2rem !important;
  }

  .font-xl-6 {
    font-size: 3.4rem !important;
    line-height: 4.1rem !important;
  }

  .font-xl-7 {
    font-size: 4.6rem !important;
  }

  .font-xl-7,
  .font-xl-8 {
    line-height: 5.2rem !important;
  }

  .font-xl-8 {
    font-size: 5.2rem !important;
  }

  .font-xl-9 {
    font-size: 9.8rem !important;
    line-height: 11.9rem !important;
  }
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-semi-bold {
  font-weight: 500 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

@media (min-width: 500px) {
  .font-weight-sm-light {
    font-weight: 300 !important;
  }

  .font-weight-sm-normal {
    font-weight: 400 !important;
  }

  .font-weight-sm-semi-bold {
    font-weight: 500 !important;
  }

  .font-weight-sm-bold {
    font-weight: 700 !important;
  }
}

@media (min-width: 768px) {
  .font-weight-md-light {
    font-weight: 300 !important;
  }

  .font-weight-md-normal {
    font-weight: 400 !important;
  }

  .font-weight-md-semi-bold {
    font-weight: 500 !important;
  }

  .font-weight-md-bold {
    font-weight: 700 !important;
  }
}

@media (min-width: 992px) {
  .font-weight-lg-light {
    font-weight: 300 !important;
  }

  .font-weight-lg-normal {
    font-weight: 400 !important;
  }

  .font-weight-lg-semi-bold {
    font-weight: 500 !important;
  }

  .font-weight-lg-bold {
    font-weight: 700 !important;
  }
}

@media (min-width: 1280px) {
  .font-weight-xl-light {
    font-weight: 300 !important;
  }

  .font-weight-xl-normal {
    font-weight: 400 !important;
  }

  .font-weight-xl-semi-bold {
    font-weight: 500 !important;
  }

  .font-weight-xl-bold {
    font-weight: 700 !important;
  }
}

.link-style-none:hover {
  text-decoration: none;
}

.page-title {
  font-family: Raleway, sans-serif;
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 4.5rem;
  color: #000;
  text-align: center;
}

.page-title a {
  color: #000;
}

.page-title a,
.page-title a:hover {
  text-decoration: none;
}

.page-subtitle {
  font-family: Raleway, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.9rem;
  color: #000;
}

.icon-star {
  display: inline-block;
  font-family: fa-wb;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-star--empty:before,
.icon-star--half:before {
  opacity: 0.35;
}

.icon-star--half:after {
  content: "\F089";
  position: absolute;
  left: 0;
}

.icon-star--empty,
.icon-star--full,
.icon-star--half {
  position: relative;
}

.icon-star--empty + .icon-star--empty,
.icon-star--empty + .icon-star--full,
.icon-star--empty + .icon-star--half,
.icon-star--full + .icon-star--empty,
.icon-star--full + .icon-star--full,
.icon-star--full + .icon-star--half,
.icon-star--half + .icon-star--empty,
.icon-star--half + .icon-star--full,
.icon-star--half + .icon-star--half {
  margin-left: 0.15em;
}

.review-box {
  color: #7d7e7f;
  background-color: #ebeced;
  padding: 20px;
  margin-bottom: 10px;
}

.review-box + br {
  display: none;
}

.review-box .hit,
.review-box .miss {
  width: 50%;
}

.review-box .hit h4,
.review-box .miss h4 {
  color: #000;
}

.review-box .rating {
  font-size: 200%;
  color: #000;
  padding-top: 10px;
}

.review-box ul {
  list-style: none;
  padding-left: 0;
}

.review-box .review-divider {
  margin-top: 20px;
  margin-bottom: 20px;
  clear: both;
  border-top: 1px solid #7d7e7f;
}

.review-divider {
  margin-top: 50px;
  margin-bottom: 50px;
  clear: both;
}

.review-summary {
  margin-top: 20px;
}

.fonts-review-title {
  font-family: Raleway, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #000;
}

.fonts-review-author {
  font-size: 1.6rem;
}

.fonts-review-author,
.fonts-review-body {
  font-family: Raleway, sans-serif;
  color: #7d7e7f;
}

.fonts-review-body {
  font-size: 1.4rem;
}

.fonts-hit-miss-header {
  font-family: Raleway, sans-serif;
  font-size: 1.8rem;
  color: #000;
}

.verdict-box {
  font-family: Raleway, sans-serif;
  background-color: #ebeced;
}

.verdict-box + br {
  display: none;
}

.verdict-box a {
  text-decoration: none !important;
}

/*.verdict-box__logo {*/
/*  height: 50px;*/
/*  width: 50px;*/
/*  display: inline-block;*/
/*  background-image: url("../images/ware-logo-secondary.jpg");*/
/*  background-position: 50%;*/
/*  background-repeat: no-repeat;*/
/*  background-size: contain;*/
/*}*/

.verdict-box li,
.verdict-box ul {
  list-style: none;
  padding-left: 0;
}

.verdict-box__list {
  margin: auto;
}

@media (min-width: 0px) {
  .verdict-box__list {
    width: 50%;
  }
}

@media (min-width: 1280px) {
  .verdict-box__list {
    width: 100%;
  }
}

.verdict-box__list-item {
  margin-bottom: 15px;
}

.verdict-box__list-item img {
  width: 100%;
  margin: 0;
}

.verdict-box__button {
  color: #fff;
  background-color: #db0f5d;
  border-color: #db0f5d;
  padding: 7px 10px;
  border: 0;
  font-size: 1.2rem !important;
  width: 100%;
}

.verdict-box__button:hover {
  color: #fff;
  background-color: #b70d4e;
  border-color: #ab0c49;
}

.verdict-box__button.focus,
.verdict-box__button:focus {
  box-shadow: 0 0 0 0.2rem rgba(219, 15, 93, 0.5);
}

.verdict-box__button.disabled,
.verdict-box__button:disabled {
  color: #fff;
  background-color: #db0f5d;
  border-color: #db0f5d;
}

.show > .verdict-box__button.dropdown-toggle,
.verdict-box__button:not(:disabled):not(.disabled).active,
.verdict-box__button:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #ab0c49;
  border-color: #9f0b44;
}

.show > .verdict-box__button.dropdown-toggle:focus,
.verdict-box__button:not(:disabled):not(.disabled).active:focus,
.verdict-box__button:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(219, 15, 93, 0.5);
}

.verdict-box__divider {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #7d7e7f;
}

@media (min-width: 992px) {
  .verdict-box {
    margin-left: -34.3%;
    width: 134.3%;
  }

  .longform-article .verdict-box {
    margin-left: -25.5%;
    width: 125.5%;
  }
}

.infobox {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
}

.infobox h1,
.infobox h2,
.infobox h3,
.infobox h4,
.infobox h5 {
  border: none;
  margin-top: 20px;
  padding-top: 0;
}

.infobox p:last-child {
  margin-bottom: 0;
}

.infobox li {
  list-style-type: disc;
}

.infobox {
  margin-left: -34.3%;
}

.infobox.infobox-wide {
  margin-right: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 80%;
}

.infobox.infobox-normal {
  width: 31.15%;
}

.longform-article .infobox {
  margin-left: -25.5%;
}

.longform-article .infobox.infobox-normal {
  width: 23.5%;
}

.longform-article .infobox.infobox-wide {
  width: 60%;
}

@media (max-width: 991.98px) {
  .infobox-normal,
  .infobox-wide {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0;
    padding-right: 0;
  }
}

.up-widget {
  width: 100%;
  position: relative;
  font-family: Raleway, sans-serif !important;
  font-weight: 400;
}

.up-widget__title {
  padding-bottom: 15px;
  font-weight: 700;
}

.up-widget__title--sm {
  padding-bottom: 0;
  padding-top: 15px;
}

.up-widget__list__item__title {
  font-weight: 400;
}

.up-widget .up-widget__list {
  width: 100%;
  padding-left: 0;
  margin-bottom: 40px;
}

.up-widget .up-widget__list .up-widget__list__item {
  width: 100%;
}

.up-widget .up-widget__list .up-widget__list__item--sm {
  padding: 20px 0;
  border-top: 1px solid #d2d2d2;
  display: table;
  width: 100%;
}

.up-widget .up-widget__list .up-widget__list__item--sm:last-of-type {
  border-bottom: 1px solid #d2d2d2;
}

.up-widget .up-widget__list .up-widget__list__item--sm a {
  display: table;
  color: #000;
}

.up-widget
  .up-widget__list
  .up-widget__list__item--sm
  .up-widget__list__item__img {
  width: 40%;
  display: table-cell;
  vertical-align: middle;
}

.up-widget
  .up-widget__list
  .up-widget__list__item--sm
  .up-widget__list__item__img
  img {
  width: 100%;
}

.up-widget
  .up-widget__list
  .up-widget__list__item--sm
  .up-widget__list__item__title {
  display: table-cell;
  vertical-align: middle;
  width: 60%;
  padding-left: 20px;
}

.up-widget .up-widget__list .up-widget__list__item--med {
  margin-bottom: 10px;
}

.up-widget
  .up-widget__list
  .up-widget__list__item--med
  .up-widget__list__item__wrapper {
  position: relative;
}

.up-widget
  .up-widget__list
  .up-widget__list__item--med
  .up-widget__list__item__wrapper
  .up-widget__list__item__overlay {
  position: absolute;
  width: 100%;
  bottom: 0;
  margin-bottom: 0;
  padding: 50px 10px 10px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  background-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.35));
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(0, 0, 0, 0)",endColorstr="rgba(89, 0, 0, 0)",GradientType=0);
}

.up-widget
  .up-widget__list
  .up-widget__list__item--med
  .up-widget__list__item__wrapper
  .up-widget__list__item__overlay
  .up-widget__list__item__title {
  color: #fff;
  font-weight: 400;
}

.ad-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
}

.dfp,
.mpu {
  padding-bottom: 32px;
  text-align: center;
}

.dfp.small-article,
.mpu.small-article {
  margin-bottom: 20px;
}

.dfp.dfp-rsb,
.mpu.dfp-rsb {
  margin-top: 32px;
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}

.dfp-homepage-banner .dfp {
  padding: 0;
}

.dfp-homepage-banner .dfp .dfp-slot {
  margin-top: 20px;
}

.dfp-article-banner.row {
  padding-top: 15px;
}

.dfp-article-banner .dfp {
  margin: 0;
}

.dfp-top-banner-wrapper {
  position: absolute;
  width: 100%;
  height: 800px;
}

.dfp-top-banner-placeholder {
  height: 90px;
}

.dfp-showcase-billboard {
  top: 0;
  width: 100%;
  z-index: 10000;
  background-color: #000;
}

.dfp-showcase-billboard .dfp {
  margin: 0;
  padding: 0;
}

.dfp.dfp-inline {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 15px 10px;
}

@media (max-width: 767.98px) {
  .dfp.dfp-inline {
    background-color: #f8f9fa;
    margin: 0 0 10px;
    padding: 10px;
  }
}

.dfp.small-article {
  margin-bottom: 20px;
}

.dfp-article-banner .dfp {
  margin: 20px 0;
  padding: 0;
}

.rich-text table {
  font-family: Raleway, sans-serif;
  min-width: 100%;
  width: auto;
  border-collapse: collapse;
  overflow-y: auto;
  margin-bottom: 4rem;
}

.rich-text table th {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  font-weight: 400;
}

.rich-text table th:not(:first-child) {
  border-left-color: #fff;
}

.rich-text table th:not(:last-child) {
  border-right-color: #fff;
}

.rich-text table td {
  border: 1px solid #bbb;
}

.rich-text table td,
.rich-text table th {
  padding: 1rem;
}

.rich-text .rich-text__table {
  width: 100%;
  overflow-y: auto;
  margin-bottom: 4rem;
}

.rich-text .rich-text__table table {
  margin-bottom: 0;
}

.article-author__name-twitter a {
  color: #1a1919;
}

#slidemenu-close-btn {
  color: #0da5e0;
  font-size: 19.8px;
}

