body {
  --primary-color: #358AE3;
}

.description {
  padding: 30px;
  background-color: #f7f7f7;
  border: 1px solid #dddddd;
  font-size: 14px;
  color: #717171;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 8px;
  margin-bottom: 24px;
  margin-top: 24px;

  > span{
    font-size: 12px;
  }
}

.description > .sub {
  background-color: white;
  padding: 20px;
  display: flex;
  gap: 10px;
  color : #717171;
  font-size: 12px;
}

.inputBlock--tit >.sub{
  color : #717171;
  font-size: 12px;
}

.description > .sub > .sub-content {
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.description > .sub > .sub-content > .sub-li {
  display: flex;
  gap: 8px;
  color: #161616;
  font-weight: 500;
}

.description > .sub > .sub-content > .sub-li > div {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.description > .sub > .sub-content > .sub-li .sub-desc {
  color: #717171;
}

.description > .sub > .sub-header {
  color: var(--primary-color);
  font-weight: 600;
}

.description > .inputBlock--input {
  border: 1px solid #dddddd;
  padding: 9.5px 10px;
  border-radius: 4px !important;
  resize: none;
  height: 36px;
}

.w240 {
  width: 240px;
}

.w100 {
  width: 100%;
}

.w200 {
  width: 200px !important;
}
.h48 {
  height: 48px;
}

.join-alert {
 color: var(--red-color);
 font-size: 12px;
 margin-top: 30px;
}

.center {
  display: flex;
  width: auto;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  user-select: none;
}

input[type="radio"] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: white;
}

input[type="radio"]:checked + label::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
}

button:disabled {
  background-color: #dddddd !important;
  color: #999999 !important;
}

@media (max-width: 768px) {
  .description {
    padding: 20px;
    font-size: 14px;
  }

  .description > .sub {
    padding: 16px;
  }

  .description > .sub .sub-desc {
    font-size: 12px;
    font-weight: 400;
  }

  .description > input {
    border: none;
    border-bottom: 1px solid #dddddd;
  }

  .center > .w200.h48 {
    width: 100% !important;
  }

  .w100 {
    flex: auto;
  }

  .w240 {
    width: 100%;
  }

  label[for="radio-2"] {
    display: none;
  }
}

.column {
  display: flex;
  flex-direction: column;
}

.gap-26 {
  gap: 26px;
}

.column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gap-26 {
  gap: 26px;
}

.c-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  align-items: start;
  line-height: 24px;
}
.c-checkbox > div {
  position: relative;
  bottom: 3px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.c-checkbox a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: underline;
  border-bottom: none;
  line-height: inherit;
}


.c-checkbox input[type="checkbox"] {
  display: none;
}

.c-checkbox .checkmark {
  width: 20px;
  min-width: 20px;
  height: 20px;
  background-color: white;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}

.c-checkbox input[type="checkbox"]:checked + .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.c-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.c-checkbox input[type="checkbox"]:checked + .checkmark::after {
  display: block;
}

.black {
  color: black;
}

.border {
  border: 1px solid #dddddd;
  border-radius: 4px;
}

.content {
  flex: 1;
  height: calc(var(--vh, 1vh) * 80);
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
  gap: 40px;

  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

button {
  cursor: pointer;
  border: none;
  background-color: var(--primary-color);
  color: white;
  white-space: nowrap;
  font-weight: 600;
  font-size: 17px;
  padding: 9.5px 12px;
  border-radius: 6px;
  height: 50px;
}

.name {
  font-size: 18px;
  font-weight: 700;
  line-height: 24.44px;
  text-align: center;
}

.img {
  margin-bottom: 26px;
}
