.flight-cancel-check {
  overflow: visible !important;
}
.flight-cancel-check .link-button {
  display: inline-block;
  height: auto;
  width: auto;
  text-decoration: none;
  color: var(--button--text-color, #FFFF);
  background-color: var(--button--background-color, #005f96);
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
  border: 0px;
}
.flight-cancel-check .iconButton {
  padding: 10px 25px !important;
}
.flight-cancel-check .primary {
  padding: 7.5px 25px;
  border-radius: 30px;
  line-height: 1.7rem;
  margin-right: 10px;
}
.flight-cancel-check .secondary {
  padding: 7.5px 15px;
  border-radius: 5px;
  margin-right: 10px;
}
.flight-cancel-check .download {
  padding-left: 35px;
  position: relative;
}
.flight-cancel-check .disabled-button {
  background-color: rgba(0, 95, 150, 0.2);
  border-color: transparent;
  cursor: not-allowed;
}
.flight-cancel-check .logoButton {
  display: flex;
  height: auto;
  width: 90%;
  text-decoration: none;
  color: #005f96;
  font-size: 1rem;
  margin: 10px 0 10px;
  border: 1px solid #005f96;
  justify-content: space-between;
  flex-flow: row;
  background-color: #FFFFFF;
}
.flight-cancel-check .buttonNoBorder {
  border: 1px solid #FFFFFF !important;
}
.flight-cancel-check .imgLogo {
  display: inline-flex;
  position: relative;
  width: 100px;
  height: 25px;
  margin: auto;
}
.flight-cancel-check .imgName {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  flex: 1;
}
.flight-cancel-check .arrowIcon {
  float: right;
  text-decoration: none;
  border: 0;
  margin-left: 10px;
}
.flight-cancel-check__content__title {
  margin: 20px 15px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.5rem;
  color: #005f96;
  text-align: center;
}
.flight-cancel-check__content__subtitle {
  text-align: center;
  font-size: 1rem;
  color: #005f96;
}
.flight-cancel-check__content__form {
  display: flex;
  justify-content: space-between;
}
.flight-cancel-check__content__form .form__group {
  flex: 1;
}
.flight-cancel-check__content__form .form__group:first-child {
  margin-right: 1rem;
}
.flight-cancel-check__result {
  display: block;
  border-radius: 5px;
  margin-top: 30px;
  padding: 20px;
  background-color: #ffffff;
  font-size: 1rem;
  transition: all 0.25s;
  color: #005f96;
}
.flight-cancel-check__result__message {
  display: flex;
}
.flight-cancel-check__result__message__text {
  flex: 1;
}
.flight-cancel-check .strong {
  font-weight: 700;
}
.flight-cancel-check .arrow-icon {
  height: 20px;
  width: 20px;
  fill: #005f96;
  margin-right: 5px;
}
.flight-cancel-check .error {
  border-color: #c0307e !important;
  color: #c0307e !important;
}
.flight-cancel-check .primary {
  padding: 7.5px 25px;
  border-radius: 30px;
  line-height: 1.7rem;
  margin-right: 10px;
}
.flight-cancel-check .link-button {
  height: 100%;
  max-width: max-content;
}
.flight-cancel-check .link-button-color {
  background-color: #ff9000;
  color: #FFFF;
}
.flight-cancel-check .loading-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flight-cancel-check .spinner {
  border: 5px solid #eeeeee;
  border-top: 5px solid #005f96;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 768px) {
  .flight-cancel-check__content__form {
    flex-direction: column;
  }
  .flight-cancel-check__content__form .form__group:first-child {
    margin-right: 0;
  }
  .flight-cancel-check__result__message {
    flex-direction: column;
  }
}
@media only screen and (max-width: 480px) {
  .flight-cancel-check .link-button {
    width: 100%;
  }
}
