.layout {
  display: flex;
  min-height: 100vh;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  line-height: 1.5;
  
  --main-color: #49c8f4;
}
.left-side {
  padding-left: 10%;
  width: 53.46%;
  padding-right: 60px;
  padding-top: 40px;
  align-items: flex-end;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  background-color: #121212;
}
.right-side {
  padding: 20px;
  padding-right: 10%;
  width: 46.54%;
  padding-left: 60px;
  padding-top: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  background-color: #000;
}
.left-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  max-width: 570px;
}
.right-content {
  max-width: 445px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}
.full-info {
  display: none;
}
.full-info .card img {
  width: 100%;
  display: block;
  border-radius: 4px;
  margin-bottom: 15px;
}
.full-info .card .md {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
}

.full-info .card .program-description-text {
  color: #a4a8ad;
  font-size: 13px;
}

.logo-area {
  margin-bottom: 20px;
}
.logo-area img {
  max-height: 100px;
}

.steps {
  display: flex;
  font-size: 13px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #2e2e2f;
}
.steps svg g {
  fill: #a4a8ad;
}
.steps .step:nth-of-type(1) {
  margin-left: 0;
}
.steps .step {
  color: #a4a8ad;
  opacity: .5;
  margin-left: 20px;
  margin-right: 20px;
  font-weight: 500;
}
.steps .step.active-color {
  color: var(--main-color) !important;
  opacity: 1;
}
.form {
  padding-top: 30px;
}
.form .md {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.option {
  border: 1px solid #7d8084;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 20px;
}
.option.active {
  border-color: var(--main-color) !important;  
}
.option.active .dot {
  border-color: var(--main-color) !important;
  border-width: 4px;
}
.buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.cancel {
  color: #a4a8ad;
}
.buttons .base.active-border-color {
  border-color: var(--main-color) !important;
  color: #fff;
  border-radius: 4px;
  padding: 15px 35px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  outline: none;
  background-color: var(--main-color) !important;
}

.dot {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border-radius: 60px;
  margin-right: 20px;
  border: 1px solid #7d8084;
}
.desktop-price-area {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 150px;
}
.price {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.hint {
  color: #a4a8ad;
  font-size: 12px;
  margin-top: 3px;
}
.mobile-price-area {
  display: none;
}
.option .description {
  width: 100%;
}
.full-info.active {
  display: block;
}

@media only screen and (min-width:991px) and (max-width: 1199px) {
  .left-side {
    padding-right: 60px;
    padding-top: 40px;
    padding-left: 5%;
  }
}
@media only screen and (min-width:768px) and (max-width: 992px) {
  .layout {
    flex-wrap: wrap;
  }
  .left-side {
    padding-bottom: 20px;
  }
  .left-side,
  .right-side {
    width: 100%;
  }
  .left-content {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: none;
  }
  .right-content {
    max-width: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .full-info {
    max-width: 495px;
  }
}
@media only screen and (max-width:767px) {
  .left-side {
    padding: 20px;
  }
   .layout {
    flex-wrap: wrap;
  }
  .left-side,
  .right-side {
    width: 100%;
  }
  .left-content {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: none;
  }
  .right-content {
    max-width: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .full-info {
    max-width: 495px;
  }
  .steps .step {
    font-size: 11px;
    margin-right: 7px;
  }
  .option {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .desktop-price-area {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .option .description {
    margin: 15px auto;
  }
}