@charset "UTF-8";
/*=================================================================================
* Wrap
=================================================================================*/ :root {
  --color-white: #fff;
  --color-basic: #395bcb;
  --color-secondary: #0abbab;
  --color-danger: #f84c4c;
  --color-dark: #333;
  --color-gray: #ebebeb;
  --color-lightgray: #f3f3f3;
  --color-warning: #fc8800;
  --body-bg: #f5f5f5;
  --app-header-height: 55px;
}
html, body {
  font-family: "Pretendard GOV Variable", "Pretendard GOV", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
html {
  font-size: 62.5%;
  line-height: 1.5;
}
body {
  font-size: 1.6rem;
}
#wrap {
  width: 100%;
}
.sr-only, .app-caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  clip: rect(0 0 0 0);
}
.d-block {
  display: block;
}
/*=================================================================================
* Flex
=================================================================================*/
.flex {
  display: flex;
  align-items: flex-start;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.space-between {
  justify-content: space-between;
}
.space-around {
  justify-content: space-around;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
/*===============================================================================
* margin padding
=================================================================================*/
.mt5 {
  margin-top: 0.5rem;
}
.mt10 {
  margin-top: 1rem;
}
.mt20 {
  margin-top: 2rem;
}
.mt30 {
  margin-top: 3rem;
}
.mt40 {
  margin-top: 4rem;
}
.mt50 {
  margin-top: 5rem;
}
.pt10 {
  padding-top: 1rem;
}
.pt20 {
  padding-top: 2rem;
}
.pt30 {
  padding-top: 3rem;
}
.pt40 {
  padding-top: 4rem;
}
.pt50 {
  padding-top: 5rem;
}
.mb5 {
  margin-bottom: 0.5rem;
}
.mb10 {
  margin-bottom: 1rem;
}
.mb20 {
  margin-bottom: 2rem;
}
.mb30 {
  margin-bottom: 3rem;
}
.mb40 {
  margin-bottom: 4rem;
}
.mb50 {
  margin-bottom: 5rem;
}
.pb10 {
  padding-bottom: 1rem;
}
.pb20 {
  padding-bottom: 2rem;
}
.pb30 {
  padding-bottom: 3rem;
}
.pb40 {
  padding-bottom: 4rem;
}
.pb50 {
  padding-bottom: 5rem;
}
.ml5 {
  margin-left: 0.5rem;
}
.mr5 {
  margin-right: 0.5rem;
}
.mr10 {
  margin-right: 1rem;
}
.pl20 {
  padding-left: 2rem;
}
/*=================================================================================
* text
=================================================================================*/
.title-h2 {
  font-size: 3.2rem;
}
.text-01 {
  font-size: 1.4rem;
}
.text-02 {
  font-size: 1.6rem;
}
.text-03 {
  font-size: 1.8rem;
}
.color-white {
  color: var(--color-white);
}
.color-basic {
  color: var(--color-basic);
}
.color-secondary {
  color: var(--color-secondary);
}
.color-danger {
  color: var(--color-danger);
}
/*=================================================================================
* bg
=================================================================================*/
.bg-basic {
  background: var(--color-basic);
}
.bg-secondary {
  background: var(--color-secondary);
}
.bg-gray {
  background: var(--color-gray);
}
.bg-dark {
  background: var(--color-dark);
}
.bg-danger {
  background: var(--color-danger);
}
/*=================================================================================
* table style
=================================================================================*/
.table-wrap {
  width: 100%;
  padding: 1rem 0;
}
.table-wrap table {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 10px;
}
.table-wrap .table-title {
  margin-bottom: 1.2rem;
}
.table-style01 {
  border-top: 2px solid var(--color-basic);
}
.table-style01 th, .table-style01 td {
  border: 1px solid #e1e4e9;
  font-size: 1.4rem;
}
.table-style01 th {
  text-align: center;
  padding: 8px 15px;
  font-weight: bold;
}
.table-style01 td {
  padding: 8px 10px;
}
/*  bottom line  */
.table-style02 {
  border-top: 2px solid var(--color-basic);
}
.table-style02 th, .table-style02 td {
  padding: 0.8rem 1rem;
  font-size: 1.6rem;
  height: 60px;
  border-bottom: 1px solid #e1e4e9;
}
.table-style02 th {
  font-weight: bold;
  text-align: left;
  background: var(--color-lightgray);
}
/* border 0 */
.borderR {
  border-right: 0 !important;
}
.borderL {
  border-left: 0 !important;
}
/*=================================================================================
* Pagination
=================================================================================*/
.pagination a, .pagination strong {
  display: block;
  text-align: center;
  line-height: 27px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  font-size: 1.3rem;
  margin: 0 0.25rem;
}
.pagination strong.active {
  background: var(--color-secondary);
  color: var(--color-white);
}
.pagination .paging-prev a, .pagination .paging-next a {
  position: relative;
}
.pagination .paging-prev a:before, .pagination .paging-prev a:after, .pagination .paging-next a:before, .pagination .paging-next a:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  clear: both;
  content: "";
  width: 2px;
  height: 6px;
  background: #333;
}
.pagination .paging-prev a, .pagination .paging-next a {
  text-indent: -9999em;
}
.pagination .paging-prev a:before {
  transform: translate(-50%, -70%) rotate(45deg);
}
.pagination .paging-prev a:after {
  transform: translate(-50%, -20%) rotate(-45deg);
}
.pagination .paging-next a:before {
  transform: translate(-50%, -70%) rotate(-45deg);
}
.pagination .paging-next a:after {
  transform: translate(-50%, -20%) rotate(45deg);
}
/*=================================================================================
* button style
=================================================================================*/
.button-wrap .btn {
  margin: 0 0.25rem;
}
.button-wrap .btn:first-of-type {
  margin-left: 0;
}
.button-wrap .btn:last-of-type {
  margin-right: 0;
}
.btn {
  display: inline-block;
  vertical-align: middle;
  border-radius: 6px;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.6rem;
}
.btn-sm {
  padding: 0 12px;
  line-height: 28px;
  font-size: 1.2rem;
  border: 1px solid;
}
.btn-md {
  padding: 0 12px;
  line-height: 44px;
  border: 1px solid;
}
.btn-lg {
  width: 180px;
  padding: 0 12px;
  line-height: 44px;
  border: 1px solid;
}
.btn-full {
  flex: 1;
  line-height: 46px;
}
.btn-basic {
  background: var(--color-basic);
  color: var(--color-white);
  border-color: var(--color-basic);
}
.btn-basic:hover {
  background: #2c3e92;
  border-color: #2c3e92;
  color: var(--color-white);
}
.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}
.btn-secondary:hover {
  color: var(--color-white);
}
.btn-white {
  color: var(--color-basic);
  border-color: #ccc;
  background: var(--color-white);
}
.btn-gray {
  background: var(--color-gray);
  color: #666;
  border-color: var(--color-gray);
}
.btn-gray:hover {
  color: #666;
}
.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.btn-dark:hover {
  background: #000;
  color: var(--color-white);
  border-color: #000;
}
.btn-line {
  border: none;
  border: 1px solid #fff;
}
.btn-line:hover {
  color: #999;
  background: #f9f9f9;
}
/*=================================================================================
*  tip
=================================================================================*/
.tip {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  padding: 0 12px;
  line-height: 28px;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  background: var(--color-lightgray);
  border-radius: 3px;
}
.tip-submit {
  background: var(--color-warning);
  border-color: var(--color-warning);
  color: var(--color-white);
}
/*=================================================================================
* align
=================================================================================*/
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
/*=================================================================================
* text decoration
=================================================================================*/
.underline {
  text-decoration: underline;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: 500;
}
/*=================================================================================
* Checkbox  custom
=================================================================================*/
.chk_box {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 1.4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.5;
}
/* 기본 체크박스 숨기기 */
.chk_box input[type="checkbox"] {
  display: none;
}
/* 선택되지 않은 체크박스 스타일 꾸미기 */
.chk_box .on {
  width: 20px;
  height: 20px;
  background: #ddd;
  position: absolute;
  top: 0;
  left: 0;
}
/* 선택된 체크박스 스타일 꾸미기 */
.chk_box input[type="checkbox"]:checked + .on {
  background: var(--color-basic);
}
.chk_box .on:after {
  content: "";
  position: absolute;
  display: none;
}
.chk_box input[type="checkbox"]:checked + .on:after {
  display: block;
}
.chk_box .on:after {
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 6px;
  top: 2px;
}
/*=================================================================================
* Radio  custom
=================================================================================*/
.custom_radio input[type="radio"] {
  display: none;
}
.custom_radio input[type="radio"] + label {
  position: relative;
  display: inline-block;
  padding-left: 1.5em;
  margin-right: 2rem;
  cursor: pointer;
  line-height: 1em;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.custom_radio input[type="radio"] + label:before, .custom_radio input[type="radio"] + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  text-align: center;
  color: white;
  border-radius: 50%;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  border: 1px solid var(--color-gray);
}
.custom_radio input[type="radio"] + label:before {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  box-shadow: inset 0 0 0 0.2em white, inset 0 0 0 1em white;
}
.custom_radio input[type="radio"] + label:hover:before {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  box-shadow: inset 0 0 0 0.3em white, inset 0 0 0 1em #c6c6c6;
}
.custom_radio input[type="radio"]:checked + label:before {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  box-shadow: inset 0 0 0 0.2em white, inset 0 0 0 1em var(--color-basic);
}
/*=================================================================================
* data popup Style
=================================================================================*/
.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  z-index: 41;
}
.popup.open {
  display: block;
}
/* Inner */
.popup-inner {
  max-width: 700px;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0px 2px 6px rgba(0, 0, 20px, 0.5);
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--color-basic);
}
.popup-lg .popup-inner {
  max-width: 1100px;
}
.popup-md .popup-inner {
  max-width: 750px;
}
.popup-sm .popup-inner {
  max-width: 650px;
}
/*  popup-header  */
.popup-header {
  position: relative;
  width: 100%;
  height: var(--popup-height);
  background: #00756e;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup-header .title-h2 {
  font-size: 1.8rem;
  color: var(--color-white);
}
.popup-header .popup-close {
  position: relative;
  transform: translateY(-50%);
}
.popup-header .popup-close:before, .popup-header .popup-close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  clear: both;
  content: "";
  width: 2px;
  height: 14px;
  border-radius: 5px;
  background: var(--color-white);
}
.popup-header .popup-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup-header .popup-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/*  popup cont  */
.popup-scroll {
  overflow-y: scroll;
  max-height: 600px;
  padding: 0 1rem 0 0;
}
.popup-scroll::-webkit-scrollbar {
  background-color: #eee;
  width: 10px;
}
.popup-scroll::-webkit-scrollbar-thumb {
  border: 1px #eee solid;
  border-radius: 2px;
  background: #777;
  -webkit-box-shadow: 0 0 8px #555 inset;
  box-shadow: 0 0 8px #555 inset;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.popup-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: 0 0 2px #ccc;
  box-shadow: 0 0 2px #ccc;
}
.popup-cont .row {
  padding: 2rem 2rem 0;
}
.popup-cont .row:last-of-type {
  margin-bottom: 2rem;
}
.popup-cont .row .title-h3 {
  height: 40px;
  line-height: 40px;
}
.popup-cont .table-wrap {
  padding: 0;
}
/*  popup footer  */
.popup-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: var(--popup-height);
  border-top: 1px solid var(--color-gray);
  padding: 0 2rem;
}
/*  레이어 팝업  */
.pop-layer .pop-container {
  padding: 3rem 2rem 2rem;
}
.pop-layer .button-wrap {
  width: 100%;
  padding-top: 10px;
}
.pop-layer {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: auto;
  background-color: #fff;
  border-radius: 10px;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.pop-layer h2 {
  margin-bottom: 1.2rem;
}
.pop-layer .button-wrap {
  margin-top: 2rem;
}
.dim-layer {
  display: none;
  position: fixed;
  _position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.dim-layer .dimBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.dim-layer .pop-layer {
  display: block;
}
/*=================================================================================
* Layout - Page Content
=================================================================================*/
.page-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-block-size: 100vh;
}
/*  contents */
.contents {
  padding: 10rem 0;
}
.contents .row {
  width: 90%;
  margin: 0 auto;
  max-width: 1180px;
}
.contents .title-area {
  margin-bottom: 5rem;
}
/*=================================================================================
* btn - icon
=================================================================================*/
/*  app-header icon  */
.icon {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  text-align: center;
}
/*=================================================================================
* search field  style
=================================================================================*/
.search-field {
  margin-bottom: 1rem;
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
}
.search-field .table-wrap {
  padding: 0 15px;
}
.search-field table {
  margin-bottom: 0;
}
.search-field .table-wrap .select-area, .search-field .table-wrap .input-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.search-field .table-wrap .select-area select, .search-field .table-wrap .input-area input[type="date"], .search-field .table-wrap .input-area input[type="text"] {
  flex: 1;
  margin: 0 0.25rem;
}
/*=================================================================================
* Form Style
=================================================================================*/
.form-group {
  display: flex;
  justify-content: flex-start;
}
.form-group input[type="text"], .form-group input[type="password"] {
  /*    flex: 1; */
  margin: 0 4px 0 0;
}
.form-group.email input[type="text"], .form-group.email select, .form-group.number input[type="text"], .form-group.number select {
  width: 30%;
  margin: 0 4px 0 0;
}
.register-item .form-group input[type="text"], .register-item .form-group input[type="password"]  {
	flex: 1;
} 
.register-item .form-group.address input[type="text"]{
	margin-bottom: 4px;
}
.form-group.email span {
  display: inline-block;
  margin-right: 4px;
}
.form-group .readonly {
  background: var(--color-lightgray);
}
.form-group .readonly:focus {
  border-color: var(--color-gray);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}
/*=================================================================================
* Header
=================================================================================*/
.app-header {
  width: 100%;
  background: var(--color-dark);
}
.app-header .inner {
  width: 100%;
  height: 80px;
  padding: 0 2rem;
}
/*=================================================================================
* Footer
=================================================================================*/
#footer {
  background: var(--color-dark);
  padding: 4rem 0;
}
#footer .inner {
  width: 95%;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-link li {
  position: relative;
  margin-right: 1rem;
  padding-right: 1rem;
}
.footer-link li:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  clear: both;
  content: "";
  width: 1px;
  height: 12px;
  background: #fff;
}
.footer-link .a-link {
  display: block;
}
/*=================================================================================
* 회원가입
=================================================================================*/
.term-box {
  width: 100%;
  height: 200px;
  padding: 2rem;
  overflow-y: auto;
  border: 1px solid var(--color-lightgray);
  border-radius: 8px;
}
.register-item select {
  min-width: 200px;
}
.register-item .ag-category select {
  width: 100%;
  max-width: 300px;
}
/*  Radio -> Button  */
.radio-buttons {
  width: 100%;
  text-align: center;
}
.custom-radio {
  flex: 1;
  height: 200px;
  margin: 8px;
}
.custom-radio input {
  display: none;
}
.radio-btn {
  width: 100%;
  height: 100%;
  padding: 20px;
  border: 2px solid #f1f1f1;
  display: block;
  border-radius: 10px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  box-sizing: border-box;
}
.radio-btn .hobbies-icon .img-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.radio-btn .hobbies-icon .img-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}
.radio-btn .hobbies-icon h3 {
  font-size: 18px;
}
.custom-radio input:checked + .radio-btn {
  border: 2px solid var(--color-basic);
  box-shadow: 0 0 20px rgba(57, 91, 203, 0.4);
}
/*=================================================================================
* 로그인
=================================================================================*/
.login-wrap, .register-wrap {
  padding: 20px;
}
.login-form, .register-form {
  width: 520px;
  margin: 0 auto;
}
.login-form .form-group .form-control {
  width: 100%;
}
.login-form .button-wrap {
  width: 100%;
}
.login-form .user-help a {
  display: block;
  margin-right: 0.5rem;
  padding-right: 0.5rem;
}
.login-form .user-help a:hover {
  text-decoration: underline;
}
.form-title {
  border-bottom: 2px solid var(--color-basic);
}
/*=================================================================================
* 도움말
=================================================================================*/
.help-popup {
  width: 620px;
}
.help-popup dl {
  display: flex;
  padding: 4px 0;
}
.help-popup dl dt {
  font-weight: bold;
  width: 170px;
  margin-right: 12px;
  padding: 2px 4px;
  background: #f1f1f1;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.help-popup dl dd {
  flex: 1;
}
.help-popup .table-ul .step02 {
  padding-left: 20px;
}
.help-popup .comm-box {
  padding: 1.5rem;
  border: 1px solid var(--color-gray);
}
.help-popup .source dt {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 4px;
  background: #f1f1f1;
  width: auto;
  height: 24px;
}
.help-popup .source dd {
  padding: 2px 0;
}
/*=================================================================================
* Tab to Select
================================================================================*/
.tab-button-outer {
  display: none;
}
#tab-button li {
  flex: 1;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #f1f1f1;
  border-bottom-color: var(--color-basic);
}
#tab-button li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #ccc;
}
#tab-button li.is-active {
  background: var(--color-basic);
  border-color: var(--color-basic);
}
#tab-button li.is-active a {
  color: #fff;
  font-weight: bold;
}
.tab-contents {
  padding: 2rem 1rem;
}
.pop-conts .tab-contents {
  max-height: 350px;
  overflow-y: auto;
}
#tab-select {
  width: 100%;
  margin-bottom: 3rem;
}
/*=================================================================================
* media Query
=================================================================================*/
@media screen and (min-width: 640px) {
  .tab-button-outer {
    display: block;
  }
  .tab-select-outer {
    display: none;
  }
}
@media (max-width: 820px) {
  .pop-layer.help-popup {
    width: 95%;
  }
  .login-form, .register-form {
    width: 95%;
    margin: 0 auto;
    max-width: 520px;
  }
  .login-wrap .row {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .contents { 
  	padding-top: 5rem;
  }
  .site-logo h2 {
    font-size: 1.8rem;
  }
  .button-wrap {
    width: 100%;
  }
  .lnb-group.button-wrap {
    flex: 1;
    justify-content: flex-end;
  }
  .lnb-group .btn {
    width: 32px;
    height: 32px;
    text-indent: -9999em;
    text-align: center;
    padding: 0;
    line-height: 32px;
  }
   .lnb-group .btn.btn-join {
      background: var(--color-basic) url(/images/icon-add.png) center/24px no-repeat;
   }
   .lnb-group .btn.btn-login {
      background: var(--color-basic) url(/images/icon-login.png) center/24px no-repeat;
      border-color: var(--color-basic);
   }
   .lnb-group .btn.btn-logout {
      background: var(--color-gray) url(/images/icon-logout.png) center/24px no-repeat;
   }
   .lnb-group .btn.btn-map {
      background: var(--color-basic) url(/images/icon-map.png) center/24px no-repeat;
   }
   .lnb-group .btn.btn-help {
      background: var(--color-secondary) url(/images/icon-question.png) center/24px no-repeat;
   }
   .lnb-group .btn.btn-modi {
      background: var(--color-basic) url(/images/icon-edit.png) center/24px no-repeat;
   }
   .lnb-group .btn.btn-admin {
      background: var(--color-dark) url(/images/icon-lock.png) center/24px no-repeat;
      border-color: var(--color-dark);
   }
    .lnb-group .btn.btn-back {
      background: var(--color-dark) url(/images/icon-arrow-left.png) center/24px no-repeat;
      border-color: var(--color-dark);
   }
  .btn-lg {
    width: 48%;
  }
  .form-group {
    flex-wrap: wrap;
  }
  .form-group.number select {
    min-width: 100px;
  }
  .register-item select {
    min-width: 120px;
  }
  .form-group .email input[type="text"] {
    width: 20%;
  }
  .login-form .form-group .email input[type="text"] {
    width: 100%;
  }
  .pop-layer {
    width: 280px;
  }
  .register-form .radio-buttons {
    flex-direction: column;
  }
  .register-form .radio-buttons .custom-radio {
    width: 100%;
    height: 65px;
    padding: 0 20px;
    margin: 4px;
  }
  .radio-btn .hobbies-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .radio-btn .hobbies-icon .img-icon {
  	width: 50px;
  	height: 50px;
  	margin: 0;
  }
  .radio-btn .hobbies-icon h3 {
  	flex: 1;
  	text-align: center;
  }
  
}