.taa-flex-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.taa-flex-space-between {
  display: flex;
  justify-content: space-between;
}

.taa-flex-start {
  display: flex;
  justify-content: flex-start;
}

.taa-header {
  background-color: #FFFFFF;
  width: calc(100% - 20px);
  height: 50px;
}

.taa-main-container * {
  color: #323A45;
}

.taa-main-container {
  margin-top: 20px;
  width: 940px;
  box-sizing: border-box;
  background: #FFF;
  border: 1px solid #323A4533;
  border-radius: 6px;
}

.taa-info-section {
  padding: 30px 40px;
  box-sizing: border-box;
}

.taa-greeting {
  font: normal normal 600 12px/18px Open Sans;
  letter-spacing: 0.1px;
}

.taa-main-title {
  margin: 5px 0;
  font: normal normal 800 18px/26px Open Sans;
  letter-spacing: 0.15px;
}

.taa-main-text {
  font: normal normal normal 14px/18px Open Sans;
  letter-spacing: 0.12px;
}

.taa-step {
  flex-wrap: wrap;
}

.taa-steps {
  flex-wrap: wrap;
  margin: 14px 0 20px 0;
}

.taa-step-check {
  width: 40px;
  height: 40px;
  box-shadow: 0 3px 6px #00000027;
  border-radius: 50%;
  padding: 3px;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.taa-step-check-inner {
  background-repeat: no-repeat;
  background-position: center;
  width: 34px;
  height: 34px;
  border: 4px solid #2160B5;
  border-radius: 50%;
  box-sizing: border-box;
}

.taa-step-check-inner.taa-check {
  background-image: url("../images/check.svg");
}

.taa-step-title {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  margin: 11px 12px;
}

.taa-step-body {
  flex: 0 1 100%;
  margin: 0 52px;
  position: relative;
}

.taa-step-header {
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
}

.taa-step-description {
  font-size: 14px;
  line-height: 20px;
}

.taa-step-1 .taa-step-description {
  margin-bottom: 32px;
}

.taa-step-body:before {
  content: "";
  position: absolute;
  top: 6px;
  left: -32px;
  height: calc(100% - 15px);
  border: 1px solid #2160B5;
  border-radius: 7px;
  background-color: #2160B5;
}

.taa-step-1 .taa-step-body:before {
  opacity: 0.3;
}

.taa-step-2 .taa-step-body:before {
  height: calc(100% - 6px);
}

.taa-blue-button {
  cursor: pointer;
  text-decoration: none;
  width: 260px;
  height: 40px;
  padding: 10px 0;
  background: #2160B5;
  border-radius: 6px;
  box-sizing: border-box;
  text-align: center;
  font: normal normal 600 14px/20px Open Sans;
  letter-spacing: 0.12px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-top: 40px;
}

.taa-blue-button:hover {
  opacity: 0.7;
  color: #FFFFFF;
}

.taa-image-container {
  flex-wrap: wrap;
  padding: 0 10px;
  margin: 35px 0 30px 0;
  border-left: 1px solid #E4E4E4;
}

.taa-image-container img {
  width: 450px;
  height: 296px;
}

.taa-image-description {
  margin-top: 15px;
  width: 390px;
  padding: 20px;
  box-sizing: border-box;
  background: #F9F9F9 0% 0% no-repeat padding-box;
  border-radius: 12px;
}

.taa-image-description-header {
  font: normal normal bold 14px/20px Open Sans;
  letter-spacing: 0.12px;
  margin-bottom: 14px;
}

.taa-image-description-list {
  columns: 2;
  gap: 8px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  margin: 15px 0 0 0;
}

.taa-image-description-list li {
  margin: 0 0 10px 20px;
  position: relative;
}

.taa-image-description-list li:before {
  content: '';
  display: inline-block;
  background-image: url('../images/check_solid.svg');
  background-repeat: no-repeat;
  background-position: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -22px;
  top: -1px;
}

@media screen and (max-width: 767px) {
  .taa-image-container {
    display: none;
  }

  .taa-flex-space-between {
    flex-wrap: wrap;
  }
}

.taa-button-description {
  font-size: 12px;
  font-weight: 400;
  width: 285px;
  text-align: center;
}

.taa-button-description a {
  color: #2160B5;
  font-weight: 600;
}

.taa-loader {
  animation: rotation 1s infinite linear;
  background: url(../images/loader_small.svg) no-repeat;
  width: 18px;
  height: 18px;
  margin: auto;
}

a.taa-disable-link {
  cursor: default;
  opacity: 0.5;
}

a.taa-disable-link:hover {
  color: #ffffff;
  cursor: default;
}