@import url(./main.css);

.table-submit {
  margin-top: 0;
}

/* news detail */
#newsDetail .table-submit {
  padding: 12px 16px 52px 16px;
}
#newsDetail .table-submit button {
  width: 388px;
}
@media (max-width: 1200px) {
  #newsDetail {
    margin-bottom: 0;
  }
  #newsDetail .table-submit button{
    width: 100%;
  }
}

/* course-application */
#courseApplication .step {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#courseApplication .step li {
  width: 710px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--G00);
  position: relative;
  background-color: var(--G60);
  font-size: 14px;
}

#courseApplication .step li:nth-child(1) {
  border-radius: 4px 0px 0px 4px;
}

#courseApplication .step li:nth-child(3) {
  border-radius: 0px 4px 4px 0px;
}

#courseApplication .step li.active {
  background-color: var(--S30);
}

#courseApplication .step li:nth-child(1)::after {
  content: "";
  position: absolute;
  right: -12px;
  width: 12px;
  height: 40px;
  background: url(../../image/sign/arrow_right_off.png) no-repeat center / cover;
}

#courseApplication .step li:nth-child(1).active::after {
  content: "";
  position: absolute;
  right: -12px;
  width: 12px;
  height: 40px;
  background: url(../../image/sign/arrow_right_on.png) no-repeat center / cover;
}

#courseApplication .step li:nth-child(2)::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 12px;
  height: 40px;
  background: url(../../image/sign/arrow_left_off.png) no-repeat center / cover;
}

#courseApplication .step li:nth-child(2).active::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 12px;
  height: 40px;
  background: url(../../image/sign/arrow_left_on.png) no-repeat center / cover;
}

#courseApplication .step li:nth-child(2).active::after {
  content: "";
  position: absolute;
  right: -12px;
  width: 12px;
  height: 40px;
  background: url(../../image/sign/arrow_right_on.png) no-repeat center / cover;
}

#courseApplication .step li:nth-child(2)::after {
  content: "";
  position: absolute;
  right: -12px;
  width: 12px;
  height: 40px;
  background: url(../../image/sign/arrow_right_off.png) no-repeat center / cover;
}

#courseApplication .step li:nth-child(3)::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 12px;
  height: 40px;
  background: url(../../image/sign/arrow_left_off.png) no-repeat center / cover;
}

#courseApplication .step li:nth-child(3).active::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 12px;
  height: 40px;
  background: url(../../image/sign/arrow_left_on.png) no-repeat center / cover;
}

#courseApplication .step li img {
  margin-right: 12px;
}

#courseApplication .box {
  margin: 24px 0;
}

#courseApplication .box.box-confirm {
  padding: 40px 0;
}

#courseApplication .box.bg-gray {
  background-color: var(--G10);
}

#courseApplication .box input:not([type="radio"], [type="checkbox"]) {
  margin-right: 4px;
  margin-top: 4px;
}

#courseApplication .box label {
  font-size: 14px;
}

#courseApplication .box .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
#courseApplication .box .title .red,
#courseApplication .box .title .blue {
  color: var(--Sred);
  font-size: 14px;
  font-weight: 500;
}

#courseApplication .box .title .blue{
  color: var(--PrimaryBlue);
}

#courseApplication .box .inner-box {
  font-size: 14px;
  max-height: 224px;
  padding: 24px;
  overflow-y: auto;
  border: 1px solid var(--G40);
  border-radius: 4px;
}

#courseApplication .box .inner-box dt {
  color: var(--S20);
}

#courseApplication .talbe-row .table-title  {
  min-height: 56px;
}

#courseApplication .talbe-row .table-cont  {
  font-size: 14px;
  font-weight: 400;
  min-height: 56px;
}

#courseApplication .submit-btn {
  width: 200px;
  height: 48px;
  /* margin-top: 24px; */
  /* margin-bottom: 80px; */
}

#courseApplication .agreeAll {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 500;
}

#courseApplication .text {
  font-size: 18px;
}

#courseApplication .box > p:nth-child(2) {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 32px;
}
#courseApplication .box > p {
  margin-top: 10px;
  font-size: 16px;
}

#courseApplication #table {
  width: 100%;
}

#courseApplication #table th {
  width: 220px;
  height: auto;
  min-height: 56px;
  background-color: var(--G20);
  padding: 0px 12px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--G30);
  text-align: left;
  height: 56px;
}

#courseApplication #table td {
  border: 1px solid var(--G30);
  width: calc((100% - 220px) - 2px);
  padding: 12px;
  height: 56px;
}

#courseApplication #table td.border-less {
  border: none;
}

#courseApplication #table td select,
#courseApplication #table td input:not([type="radio"], [type="checkbox"], .upload-name) {
  width: 448px;
}

#courseApplication #table.table thead tr td {
  border-left: 0;
  border-right: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

#courseApplication #table.table td.subject {
  vertical-align: middle;
  background-color: var(--G20);
}

@media (max-width: 1200px) {
  section.content {
    margin: 0;
  }
  #courseApplication .step li img {
    margin-right: 0;
  }
  #courseApplication .box .inner-box {
    max-height: 320px;
  }
  #courseApplication .box .title {
    font-size: 18px;
  }
  #courseApplication .box .title .red,
  #courseApplication .box .title .blue {
    font-size: 12px;
  }

  #courseApplication .box .title > div {
    display: flex;
    flex-direction: column;
  }

  #courseApplication .box .title {
    align-items: flex-start;
  }

  #courseApplication .talbe-row .table-title,
  #courseApplication .talbe-row .table-cont  {
    min-height: auto;
  }
  #courseApplication .fc-mobile-g70 {
    color: var(--G70);
  }
  #courseApplication .filebox .upload-name {
    padding-left: 0;
  }

  #courseApplication .box.box-confirm {
    padding: 40px 12px;
  }

  #courseApplication .submit-btn {
    margin: 12px 0 52px 0;
  }
}

@media (max-width:1165px) {
  #courseApplication .step.mobile {
    display: flex !important;
  }
  #courseApplication .step li {
    width: 48%;
  }
  #courseApplication .submit-btn {
    width: 100%; 
  }
  #courseApplication#courseApplication-03 .box > p {
    font-size: 14px;
  }
}