body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
}

h2 {
  margin: auto;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
}

.border {
  position: absolute;
  top: 40px;
  left: 40px;
  bottom: 40px;
  right: 40px;
}

.border .box {
  position: absolute;

  width: 40px;
  height: 40px;
}

.border .box.tl {
  top: 0px;
  left: 0px;
  border-top: 2px solid white;
  border-left: 2px solid white;
}
.border .box.tr {
  right: 0px;
  top: 0px;
  border-top: 2px solid white;
  border-right: 2px solid white;
}
.border .box.bl {
  left: 0px;
  bottom: 0px;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
}
.border .box.br {
  right: 0px;
  bottom: 0px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
}

.border .verticle {
  position: absolute;
  top: 0px;
  left: 80px;
  bottom: 0px;
  right: 80px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

.border .horizontal {
  position: absolute;
  top: 80px;
  left: 0px;
  bottom: 80px;
  right: 0px;
  border-left: 2px solid white;
  border-right: 2px solid white;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#000;
}

.content {
  position: relative;
  width: calc(100%);
  display: flex;
  justify-content: center;
  text-align: left;
}
.content iframe {
  width: 100%;
  max-width: 100vw;
  min-width: 100vw;
  /* min-height: 500px; */
  background: #000;
  max-height: calc(100vh);
  height: calc((var(--vh, 1vh) * 100));
}

.close {
  position: absolute;
  cursor: pointer;
  width: 40px;
  height: 40px;
  top: 60px;
  right: 65px;
}
.close:before,
.close:after {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 4px;
  height: 100%;
  background: white;
}
.close:before {
  transform: rotate(-45deg);
}
.close:after {
  transform: rotate(45deg);
}

.modal {
  width: 100%;
  height: 100%;
}

.join-modal {
  width: 100%;
  max-width: 600px;
  margin: auto;
  background: transparent;
  padding: 40px;
}
.join-modal .logo {
  width: 100%;
  padding: 30px 0;
}

.join-modal .logo img {
  width: 100%;
  margin: auto;
  max-width: 350px;
  display: block;
}
.join-modal .modalForm {
  width: 100%;
}
.join-modal .modalForm .userTypeRadio {
  width: 100%;
  padding: 15px 0;
}
.join-modal .modalForm .userTypeRadio h3 {
  font-size: 30px;
  line-height: 1;
  font-weight: bolder;
}
.join-modal .modalForm .userTypeRadio label {
  display: flex;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  font-weight: lighter;
  padding: 5px 0;
}
.join-modal .modalForm .userTypeRadio span {
  margin-top: 10px;
}
.join-modal .modalForm .userTypeRadio .radioWrapper {
  padding-left: 2rem;
}
.join-modal .modalForm .userTypeRadio .radioWrapper .customRadio {
  width: 28px;
  height: 28px;
  background: transparent;
  border: solid 2px #fff;
  position: relative;
  margin-right: 10px;
}
.join-modal .modalForm .userTypeRadio .radioWrapper .customRadio:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  display: block;
  top: 50%;
  left: 50%;
  background: #969696;
  border-radius: 20px;
  border: solid 2px #fff;
  transform: translate(-50%, -50%);
}
.join-modal .modalForm .userTypeRadio .radioWrapper .customRadio:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background: #4c4c4c;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  display: none;
}
.join-modal .modalForm .userTypeRadio .radioWrapper .customRadio:checked:after {
  display: block;
}
.join-modal .modalForm .select {
  width: 100%;
  padding: 15px 0;
}
.join-modal .modalForm .select h3 {
  font-size: 30px;
  line-height: 1;
  font-weight: bolder;
}
.join-modal .modalForm .select .customSelectWrapper {
  padding-left: 2rem;
  padding-top: 15px;
  padding-bottom: 15px;
}
.join-modal .modalForm .select .customSelectWrapper .customSelect {
  width: 100%;
  border: solid 1px #fff;
  border-radius: 30px;
  position: relative;
}
.join-modal .modalForm .select .customSelectWrapper .customSelect:after {
  content: url(../images/icon_arrow_down_white.svg);
  position: absolute;
  width: 20px;
  height: auto;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.join-modal .modalForm .select .customSelectWrapper .customSelect .selectCustom {
  width: 100%;
  padding: 10px 20px;
  background-color: transparent;
  color: #fff;
  border-color: transparent;
  margin-bottom: 0;
  appearance: none;
  font-size: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.join-modal .modalForm .select .customSelectWrapper .customSelect .selectCustom::-ms-expand {
  display: none;
}
.join-modal .modalForm .select .customSelectWrapper .customSelect .selectCustom option {
  padding: 10px;
  color: #000;
  background-color: transparent;
  line-height: 2.5;
  font-size: 16px;
}
.join-modal .modalForm .description {
  padding: 10px 0;
  font-size: 22px;
  line-height: 1;
  font-weight: bolder;
}
.join-modal .modalForm .description a {
  color: #fff;
}
.join-modal .modalForm .buttonWrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.join-modal .modalForm .buttonWrapper button {
  width: 250px;
  padding: 5px 10px;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  background: transparent;
  border: solid 1px #fff;
  color: #fff;
}
.join-modal .modalForm .buttonWrapper button:hover {
  background: #fff;
  color: #2e3d69;
}
