/* 수강신청 상단 파란배너 (.enrolment_top) */
.enrolment_top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 44px;
  box-sizing: border-box;
  background: #00b2d2 url("/files/images/course_bg.png") no-repeat center / 100%;
  color: #fff;
  max-width: 1230px;
  margin: 0 auto;
  border-radius: 12px;
  margin-bottom: 15px;
}
.enrolment_top .txt_box {
  display: flex;
  flex-direction: column;
}
.enrolment_top span {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 4px;
}
.enrolment_top strong {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}
.enrolment_top .btn {
  border: 1px solid #00b2d2;
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: #00b2d2;
  padding: 0 24px;
}
.enrolment_top .txt_yellow,
.txt_yellow {
  color: #FFEB3B !important;
}

@media all and (max-width: 480px) {
  .enrolment_top {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box;
  }
}

@media all and (max-width: 430px) {
  .enrolment_top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    box-sizing: border-box;
    background: #00b2d2 url("/files/images/course_bg.png") no-repeat center bottom;
    color: #fff;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    margin-bottom: 15px;
  }
  .enrolment_top .txt_box {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }
  .enrolment_top span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 4px;
  }
  .enrolment_top strong {
    display: inline-block;
    font-size: 19px;
    font-weight: 600;
    line-height: 28px;
  }
  .enrolment_top .btn {
    float: none;
    flex-shrink: 0;
    border: 1px solid #00b2d2;
    background: #fff;
    border-radius: 6px;
    box-sizing: border-box;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 36px;
    color: #00b2d2;
    padding: 0 12px;
    width: auto;
    margin-top: 0;
    margin-left: 10px;
    text-align: center;
  }
  .enrolment_top .txt_yellow,
  .txt_yellow {
    color: #FFEB3B !important;
    display: inline-block;
  }
}