@import "reset.css";

* {
  outline: none;
}

@font-face {
  font-family: "AppleSDGothicNeo";
  src: url("../fonts/AppleSDGothicNeoL.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AppleSDGothicNeo";
  src: url("../fonts/AppleSDGothicNeoB.ttf");
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: "AppleSDGothicNeo", "Nanum Gothic", sans-serif;
  position: relative;
  line-height: 1.41;
}
a {
  text-decoration: none;
  color: #000;
}
/* 기본 스타일 정의 */
.overflow-hidden {
  overflow-y: hidden;
}

.color-white {
  color: #fff !important;
}
.color-black {
  color: #000 !important;
}
.color-deepgray {
  color: #1d1d1f !important;
}
.color-middlegray {
  color: #6e6e73 !important;
}
.color-softgray {
  color: #d2d2d7 !important;
}
.color-lightgray {
  color: #f5f5f7 !important;
}
.color-hyperlink {
  color: #0066cc !important;
}
.color-red,
.active {
  color: #d60e25 !important;
}

.wemake__button--red {
  display: inline-block;
  border: 1px solid #d60e25;
  background-color: #d60e25;
  color: #fff;
  border-radius: 25px;
  padding: 10px 30px;
  font-size: 14pt;
}
.wemake__button--large {
  padding: 10px 100px;
  font-weight: 700;
  font-size: 16pt;
}

.wemake__button--white {
  display: inline-block;
  border: 1px solid #000;
  color: #000;
  border-radius: 25px;
  padding: 7px 30px;
  font-size: 14pt;
}

.wemake__button--white--small {
  padding: 7px 20px !important;
}

/* 체크박스 */

.wemake__checkbox {
  position: relative;
}

.wemake__checkbox input[type="checkbox"] {
  /* 실제 체크박스는 화면에서 숨김 */
  display: none;
}

.wemake__checkbox input[type="checkbox"] + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.wemake__checkbox input[type="checkbox"] + label:before {
  /* 가짜 체크박스 */
  content: " ";
  display: inline-block;
  width: 16px;
  /* 체크박스의 너비를 지정 */
  height: 16px;
  /* 체크박스의 높이를 지정 */
  line-height: 18px;
  /* 세로정렬을 위해 높이값과 일치 */
  margin: -4px 8px 0 0;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #d2d2d7;
}
.wemake__checkbox--required input[type="checkbox"] + label {
  color: #d60e25;
  font-weight: 600;
}

.wemake__checkbox input[type="checkbox"]:checked + label {
  color: #d60e25;
}

.wemake__checkbox input[type="checkbox"]:checked + label:before {
  /* 체크박스를 체크했을때 */
  content: "\f00c";
  /* 체크표시 유니코드 사용 */
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  color: #d60e25;
  font-size: 9pt;
  background: #ffffff;
  border-color: #d60e25;
}

/* 체크박스 끝 */

/* 라디오박스 */

.wemake__radiobox {
  position: relative;
}

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

.wemake__radiobox input[type="radio"] + label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.wemake__radiobox input[type="radio"] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 16px;
  height: 16px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 100%;
}

.wemake__radiobox input[type="radio"]:checked + label:before {
  background: #ffffff;
  border-color: #d60e25;
}

.wemake__radiobox input[type="radio"]:checked + label:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: #d60e25;
  border-radius: 100%;
}

.wemake__radiobox input[type="radio"]:checked + label {
  color: #d60e25;
}

/* 라디오박스 끝 */

/* 인풋 박스 */
.wemake__input {
  width: calc(100% - 32px);
  border: 2px solid #d60e25;
  padding: 10.5px 14px;
  color: #1d1d1f;
  background-color: transparent;
  font-size: 13pt;
}

.wemake__input::placeholder {
  color: #6e6e73;
}

.wemake__input:disabled {
  background-color: #d2d2d7;
  color: #6e6e73;
}

.wemake__email:after {
  position: absolute;
  content: "@";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  top: 8px;
  font-size: 12pt;
  right: 25px;
  color: #6e6e73;
  width: 0px;
  height: 0px;
}
/* 인풋 박스 끝 */

/* select box */

.wemake__select {
  position: relative;
}

.wemake__select select {
  display: none;
}

.wemake__select--selected {
  background-color: transparent;
  border: 2px solid #d60e25;
}

.wemake__select--selected:after {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  top: 14px;
  font-size: 12pt;
  right: 25px;
  color: #6e6e73;
  width: 0px;
  height: 0px;
}

.wemake__select--selected.wemake__select--arrow:after {
  position: absolute;
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  top: 14px;
  font-size: 12pt;
  right: 25px;
  color: #d60e25;
  width: 0px;
  height: 0px;
}

.wemake__select--selected {
  color: #000000;
  padding: 10px 14px;
  cursor: pointer;
}

.wemake__select--items div {
  color: #6e6e73;
  padding: 10px 20px;
  border-right: 2px solid #d60e25;
  border-left: 2px solid #d60e25;
  border-bottom: 1px solid #d2d2d7;
  cursor: pointer;
}

.wemake__select--items div:last-of-type {
  border-bottom: 2px solid #d60e25;
}

.wemake__select--items {
  position: absolute;
  background-color: #ffffff;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 430px;
  overflow-y: auto;
}

.wemake__select--hide {
  display: none;
}

.wemake__select--items div:hover,
.wemake__select--same {
  background-color: rgba(0, 0, 0, 0.1);
}

.select-styled,
.select-options {
  display: none;
}

/* select box 끝 */

/* textarea 시작*/
.wemake__textarea {
  width: calc(100% - 22px);
  height: 130px;
  border-color: #d2d2d7;
  padding: 10px;
  resize: none;
}
/* textarea 끝 */

/* input file 시작 */

.wemake__file input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.wemake__file {
  overflow: hidden;
  position: relative;
  float: right;
  cursor: pointer;
  padding-left: 3px;
}

/* input file 끝 */

/* Header 스타일 정의 */

.wemake__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  border-bottom: 1px solid #d2d2d7;
  position: fixed;
  width: calc(100% - 50px);
  top: 0;
  z-index: 1050;
  background-color: #ffffff;
}

.header__column:last-of-type {
  display: flex;
  align-items: center;
}

.header__logo {
  width: 90px;
  margin-right: 15px;
}

.header__link {
  padding: 0px 20px;
  font-size: 13pt;
}

.header__button {
  padding: 10px 25px;
  height: 100%;
  background-color: #d60e25;
  color: #fff;
  border-radius: 25px;
}

.menu {
  background-color: #ffffff;
  color: #000000;
  box-shadow: none;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  margin-top: 4rem;
  right: 0;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 10002;
}

.links {
  list-style: none;
  padding: 0px;
}

.links li {
  border-top: 1px solid #d2d2d7;
}

.links li:last-child {
  border-bottom: 1px solid #d2d2d7;
}

.links li a {
  border: 0;
  color: inherit;
  display: block;
  line-height: 3.5rem;
  text-decoration: none;
  font-size: 16pt;
  font-weight: 700;
  padding: 0px 25px;
}

.open {
  visibility: visible;
  overflow-y: hidden;
}

.close {
  text-decoration: none;
  -moz-transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  border: 0;
  color: #000000;
  cursor: pointer;
  display: block;
  height: 3.25rem;
  line-height: 3.25rem;
  padding-right: 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
  width: 7rem;
}
.menu-desktop {
  display: block;
}
.menu-mobile {
  display: none;
  margin-right: 10px;
  margin-bottom: 5px;
}

.dimmed {
  background-color: #000;
  opacity: 0.5;
  height: 100%;
}

.header__blank {
  height: 70px;
}
/* Footer 스타일 정의 */

.wemake__footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 0 4rem 0;
  text-align: center;
  position: absolute;
  width: 100%;
}
.footer__logo {
  padding: 15px 0px;
}

.footer__column {
  padding-top: 10px;
  line-height: 1.8;
}

.footer__contact {
  padding: 45px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__tel {
  padding-right: 20px;
}
.footer__email {
  padding-left: 20px;
}

.footer__hr {
  margin: 8px 25px;
  border-color: #6e6e73;
}
.footer__copyright {
  padding-top: 15px;
  font-size: 11pt;
}

.justify-center {
  justify-content: center !important;
}
.display-none {
  display: none !important;
}
.visible-none {
  visibility: hidden;
}
.relative {
  position: relative;
}

.chat__container {
  width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 15px 0px;
  justify-content: flex-end;
  display: flex;
}

#create-channel-chat-button {
  margin-right: 5px;
}

.support__layer {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
}

.support__layer img {
  cursor: pointer;
}

.header__logo,
.header__button:first-child {
  margin-right: 20px;
}

/* 미디어 쿼리 */

@media screen and (max-width: 1110px) {
  .menu-desktop {
    display: none;
  }
  .menu-mobile {
    display: block;
  }
  .header__column > .header__button {
    display: none;
  }

  .chat__container {
    width: calc(100% - 30px);
    padding: 15px;
  }
}

@media screen and (max-width: 500px) {
  .main__title {
    font-size: 7.5vw !important;
  }

  .main__subtitle {
    font-size: 3.8vw !important;
  }
  .footer__logo,
  .footer__copyright {
    font-size: 3vw;
  }
}
