/** 홈페이지 전체 공통 부분 **/
/* '나눔고딕' 폰트 지정*/
@font-face
{
    font-family: 'Nanum Gothic';
    src: url('../fonts/NanumGothic-Regular.ttf') format('truetype');
    src: url('../fonts/NanumGothic-Regular.woff') format('woff');
    src: url('../fonts/NanumGothic-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face
{
    font-family: 'Nanum Gothic';
    src: url('../fonts/NanumGothic-Bold.ttf') format('truetype');
    src: url('../fonts/NanumGothic-Bold.woff') format('woff');
    src: url('../fonts/NanumGothic-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}
@font-face
{
    font-family: 'Nanum Gothic';
    src: url('../fonts/NanumGothic-ExtraBold.ttf') format('truetype');
    src: url('../fonts/NanumGothic-ExtraBold.woff') format('woff');
    src: url('../fonts/NanumGothic-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

/* 전체 스타일 지정*/
*
{
    margin: 0;
    padding: 0;
    font-family: 'Nanum Gothic', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: normal;
    font-style: normal;
}

/* 헤더(탑) 스타일 지정 */
.header_nav
{
    width: 100%;
    min-width: 1280px;
    margin-top: -166px;
    position: fixed;
    background-color: white;
    z-index: 10;
}

/** 헤더 hr **/
hr
{
    border: 0;
    height: 1px;
    background-color: rgb(204, 203, 203);
}

/** 헤더 및 사이즈 지정 **/
.header_style
{
    width: 1280px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    z-index: 10;
}
.header_div_style
{
    padding-top: 25px;
    padding-bottom: 20px;
}

/** 탑 메뉴(로고, 검색, 로그인, 회원가입) **/
.ul_style
{
    display: inline-flex;
    list-style-type: none;
}

/** 탑 로고 **/
.top_logo_style
{
    margin-right: 702px;
}

/** 탑 검색 **/
.top_search_style
{
    padding-top: 10px;
    padding-bottom: 20px;
}
.search_form
{
    width: 400px;
    border: 2px solid rgb(153, 153, 153);
    border-radius: 20px;
    padding: 5px;
    position: relative;
}
.search_input
{
    width: 70%;
    padding: 5px 10px;
    border-width: 0;
}
.search_input:focus
{
    outline: none;
}
.search_btn
{
    position: absolute;
    top: 0%;
    right: 10px;
    background-color: transparent;
    border: 0px;
    cursor: pointer;
}
.search_btn img
{
    position: absolute;
    height: 20px;
    margin-top: 8px;
    margin-left: -100px;
    margin-right: 5px;
}
.search_btn span
{
    position: absolute;
    font-size: 12.5pt;
    color: black;
    font-weight: normal;
    width: 80px;
    height: 20px;
    margin: 7px 10px 5px -80px;
}

/** 탑 로그인 **/
.top_login_style
{
    margin-left: 225px;
    padding-top: 17.5px;
    padding-bottom: 17.5px;
}
.top_logout_style
{
	display: flex;
	align-items: center;
	justify-content: center;
    margin-left: 135px;
    padding-top: 17.5px;
    padding-bottom: 17.5px;
}
.user_info
{
	width: 80px;
	margin-right: 10px;
	font-size: 13pt;
	font-weight: 800;
	color: rgb(45, 45, 45);
}

/** 탑 회원가입 **/
.top_member_style
{
    margin-left: 35px;
    padding-top: 17.5px;
    padding-bottom: 17.5px;
}

/** 상단메뉴 상위 6개 카테고리 메뉴 스타일 지정 **/
.nav_container
{
    width: 100%;
    min-width: 1280px;
    height: 64px;
    line-height: 64px;
}
.nav
{
    display: flex;
    flex-direction: column;
}
.nav ul li a
{
    font-size: 13.5pt;
    font-weight: bold;
}
.menu
{
    width: 1280px;
    min-width: 1280px;
    margin: 0 auto;
}
.menu ul
{
    display: inline-flex;
    list-style-type: none;
}
.menu ul li
{
	width: 210px;
    height: 64px;
    line-height: 64px;
    text-align: left;
	text-align: center;
}
.menu ul li:hover, .menu ul li:active, .menu ul li:focus
{
    background-color: #005bac;
}
.menu ul li:hover > a, .menu ul li:active > a, .menu ul li:focus > a
{
	color: #fff;
}
.submenu_container
{
    width: 100%;
    min-width: 1280px;
    margin-top: -235px;
    background-color: white;
    box-shadow: 0px 5px 5px 0px rgb(143, 142, 142);
    opacity: 0;
    z-index: -10;
    transform: translateY(0%);
    transition: 0.4s ease;
}
.nav:hover .submenu_container
{
    opacity: 1;
    transform: translateY(100%);
    transition: 0.4s ease;
}
.submenu
{
    width: 1280px;
    min-width: 1280px;
    margin: 0 auto;
    display: flex;
}
.submenu ul
{
	padding-top: 20px;
    padding-bottom: 50px;
    list-style-type: none;
}
.submenu ul li
{
	width: 210px;
    height: 55px;
    line-height: 55px;
    text-align: left;
}
.submenu ul li a
{
	padding-left: 20px;
}

/** 정보 메인 상단 내비게이션 항목 스타일 지정 **/
.nav_print_share
{
    width: 1280px;
    height: 50px;
    margin: 0 auto;
    margin-top: 166px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}
.submenu_nav
{
    width: 400px;
    padding-right: 680px;
    display: inline-flex;
}
.submenu_nav_img
{
    padding-top: 2px;
    margin-right: 15px;
}
.submenu_nav_text
{
    color: black;
    font-weight: normal;
    font-size: 13pt;
    font-family: 'Nanum Gothic', sans-serif;
}
.submenu_print_share
{
    width: 200px;
    height: 50px;
    display: inline-flex;
    justify-content: end;
    align-items: last baseline;
}
.submenu_print_share a img
{
    margin-right: 20px;
}

/* 링크 밑줄 제거 스타일 */
a
{
    text-decoration: none;
}

/* 이용시 유의사항 안내 박스 스타일 */
.notice_box
{
    background-color: rgb(230, 230, 230);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: top;
}

/* hr 스타일 */
.hr_style
{
    border: 0;
    height: 1px;
    background-color: rgb(80, 80, 80);
}

/* h2(페이지별 제목) 스타일*/
.page_title
{
	color: black;
	font-weight: bold;
}

/* 텍스트 강조 스타일(블루/레드/그레이/스킨/블랙, 볼드) */
.text_blue
{
    color: #005bac;
    font-weight: normal;
}
.text_red
{
    color: #ff0901;
    font-weight: normal;
}
.text_gray
{
    color: black;
    font-weight: normal;
}
.text_skin
{
    color: rgb(198, 135, 100);
    font-weight: normal;
}
.text_black
{
    color: black;
    font-weight: normal;
}

/* 주차면수 단위 스타일 */
.space_num
{
	font-size: 12pt;
	font-weight: normal;
	color: black;
}

/* flex 수평수직 가운데 스타일*/
.flex_center
{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* flex 열방향 수평수직 가운데 스타일 */
.flex_column
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 테이블 공통 스타일 */
table
{
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

/* 테이블 내부 input 스타일 */
.table_input
{
    font-size: 13pt;
    text-align: left;
    margin-right: 5px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid rgb(214, 214, 214);
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
}

/* 게시판형 테이블 헤더 공통 스타일 */
.table_board table th
{
    border-top: 2px solid #303030;
    border-bottom: 2px solid #aaaaaa;
    background-color: white;
    padding: 20px 10px;
    font-size: 14pt;
    font-weight: bold;
    text-align: center;
}

/* 게시판형 테이블 항목 공통 스타일 */
.table_board table td
{
    border-bottom: 2px solid #ddd;
    padding: 10px 0px;
    font-size: 13pt;
    text-align: center;
}

/* 게시판형 테이블 배경색 강조 스타일 */
.table_blue1
{
    background-color: #edf5fc;
}

/* 페이지 다수일 경우 페이지 네비게이션 */
.page_nav
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* 페이지 네비게이션 이미지 스타일 */
.prev img, .next img, .first img, .last img
{
    margin-left: 10px;
    margin-right: 10px;
    width: 34px;
    height: 34px;
}

/* 페이지 네비게이션 링크(번호) 스타일 */
.page_link
{
    color: black;
    font-size: 14pt;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 4px;
    background-color: transparent;
    transition: all 0.3s;
}

/* 페이지 네비게이션 링크(번호) 선택 시 스타일 */
.page_link_select
{
    font-size: 14pt;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 4px;
    transition: all 0.3s;
    background-color: rgb(128, 128, 128);
    color: white;
    border-color: rgb(128, 128, 128);
}

/* 페이지네이션 링크(번호) 호버링 시 색상 스타일 */
.page_link:hover, .page_link:active
{
    background-color: rgb(128, 128, 128);
    color: white;
    border-color: rgb(128, 128, 128);
}

/* 정기권 구매 및 요금 환불 페이지 상단 Step 스타일 */
.step
{
	border: 2px solid #005bac;
	border-radius: 30px;
	padding: 5px 0px;
}

/* 안내형 테이블 전체 스타일 */
.table_info, .table_info2
{
    display: flex;
    color: black;
}

/* 안내형 테이블 공통 스타일 */
.table_info table, .table_info2 table
{
    border-collapse: collapse;
    table-layout: auto;
}

/* 안내형 테이블 항목 스타일 */
.table_info td
{
    border: 1px solid #005bac;
    border-left: none;
    font-size: 13pt;
    font-weight: normal;
}

/* 안내형 테이블 첫 번째 열 스타일 */
.table_info td:first-child, .table_info2 td:first-child
{
    width: 110px;
    padding: 0 30px;
    font-weight: normal;
    text-align: center;
    border-right: none;
}

/* 안내형 테이블 마지막 열 스타일 */
.table_info td:last-child, .table_info2 td:last-child
{
    padding-left: 10px;
    text-align: left;
    font-weight: normal;
}

/* 안내형 테이블2 항목 스타일 */
.table_info2 th, .table_info2 td
{
    border: 1px solid #005bac;
    border-left: none;
    font-size: 13pt;
    font-weight: normal;
}

/* 안내형 테이블 배경색 강조 스타일 */
.table_blue
{
    background-color: #f5f9fc;
}

/* 안내형 테이블 배경색 강조 스타일2 */
.table_gray
{
    background-color: #ececec;
}

/* 정기권 유효기간 테이블 항목 스타일 */
.season_expiry_table table td
{
    width: 530px;
    border: 1px solid #005bac;
    border-left: none;
    text-align: center;
    font-size: 13pt;
    font-weight: normal;
}

/* 정기권 유효기간 첫 번째 행 스타일 */
.table_info tr:first-child
{
    padding: 0 30px;
    font-weight: normal;
    text-align: center;
}

/* 정기권 유효기간 항목 스타일 */
.expiry_text_box
{
    margin: 35px 20px;
    padding: 2px 12px;
    align-items: center;
    background-color: rgb(230, 230, 230);
    font-size: 12pt;
    font-weight: normal;
}

/* 정기권 유효기간 일자 항목 스타일 */
.expiry_date
{
    padding-top: 14px;
    font-size: 25pt;
    font-weight: normal;
    line-height: 60px;
}

/* 사전정산 하위메뉴 3등분 스타일 */
.one-third
{
    width: 33.3%;
    padding: 5px;
}

/* 사전정산 하위메뉴 3등분 이미지 스타일 */
.one-third img
{
    margin-top: 2px;
    vertical-align: top;            
}

/* 사전정산 및 계산기 행(tr) 공통 스타일 */
.table_tr_common
{
    vertical-align: center;
    text-align: center;
    border-bottom: 2px solid rgb(207, 207, 207);
    font-weight: normal;
}

/* 사전정산 및 계산기 행(tr) 첫번째 열(td) 공통 스타일 */
.table_tr_common td:first-child
{
    font-size: 13pt;
}

/* 사전정산 및 계산기 내부 테이블 공통 스타일 */
.inner_table1, .inner_table2, .inner_table3
{
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    color: black;
}

/* 사전정산 및 계산기 내부 테이블 열(th/td) 공통 스타일 */
.inner_table1 tr th, .inner_table1 tr td
{
    font-size: 13pt;
    font-weight: normal;
}
.inner_table2 tr th, .inner_table2 tr td
{
    font-size: 13pt;
    font-weight: normal;
}

/* radio 버튼 스타일 */
input[type = "radio"]
{
    flex-shrink: 0;
    appearance: none;
    width: 13px;
    height: 13px;
    background-color: white;
    border: 1px solid black;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
}

/* radio 버튼 선택 시 스타일 */
input[type = 'radio']:checked
{
    background-color: black;
    border: 3px solid white;
    box-shadow: 0 0 0 1px black;
}

/* checkbox 버튼 스타일 */
input[type = 'checkbox']
{
    flex-shrink: 0;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgb(207, 207, 207);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}
input[type = 'checkbox']:checked
{
    border: 2px solid rgb(207, 207, 207);
    border-radius: 5px;
    background-color: #005bac;
    box-shadow: 0px 0px 0px 2px white inset;
}

/* input 스타일 */
.input
{
    padding-left: 10px;
    padding-right: 10px;
    border: 2px solid rgb(207, 207, 207);
    border-radius: 10px;
    background-color: white;
    font-size: 13pt;
    font-weight: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* input placeholder 스타일 */
input::placeholder
{
    color: rgb(175, 175, 175);
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 12pt;
    font-weight: normal;
}

/* input 및 드롭다운 옵션이 들어가는 항목 테두리 스타일 */
.border
{
    padding-left: 20px;
    padding-right: 20px;
    border: 2px solid rgb(175, 175, 175);
    border-radius: 15px;
    display: flex;
    align-items: center;
    font-family: 'Nanum Gothic', sans-serif;
    font-weight: normal;
}

/* input dropdown 스타일 */
.dropdown_option
{
    list-style-type: none;
    padding: 0;
    margin-top: 5px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 216px;
    background-color: white;
    border: 2px solid rgb(209, 208, 208);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

/* input dropdown 호버링 시 항목 표출 스타일 */
.dropdown:hover .dropdown_option
{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

/* input dropdown 항목 스타일 */
.dropdown_option_btn
{
    padding: 10px;
    background-color: white;
    border: none;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    font-size: 11pt;
}

/* input dropdown 항목 호버링 시 색상 스타일 */
.dropdown_option_btn:hover
{
    background-color: #f5f5f5;
}

/* input dropdown2 스타일 */
.dropdown_option2
{
    list-style-type: none;
    margin-top: 5px;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    height: 50px;
    background-color: white;
    border: 2px solid rgb(209, 208, 208);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

/* input dropdown2 스크롤바 제거 스타일 */
.dropdown_option2::-webkit-scrollbar
{
    display: none;
}

/* input dropdown 호버링 시 항목 표출 스타일 */
.dropdown:hover .dropdown_option2
{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

/* input dropdown 항목 스타일 */
.dropdown_option_btn2
{
    padding: 10px;
    background-color: white;
    border: none;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    font-size: 11pt;
}

/* input dropdown 항목 호버링 시 색상 스타일 */
.dropdown_option_btn2:hover
{
    background-color: #f5f5f5;
}

/* textarea placeholder 스타일 */
textarea::placeholder
{
    color: rgb(175, 175, 175);
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 12pt;
    font-weight: normal;
}

/* select 스타일 */
.select
{
    width: 220px;
    height: 49px;
    margin-right: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 2px solid rgb(207, 207, 207);
    border-radius: 10px;
    background-color: white;
    font-size: 13pt;
    font-weight: normal;
}

/* 큰 크기 버튼 스타일1 */
.button_big1
{
    width: 120px;
    height: 49px;
    background-color: #005bac;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 13pt;
    font-weight: normal;
    line-height: 49px;
}

/* 큰 크기 버튼 스타일2 */
.button_big2
{
    width: 120px;
    height: 49px;
    background-color: #e0e0e0;
    border-radius: 10px;
    color: black;
    cursor: pointer;
    text-align: center;
    font-size: 13pt;
    font-weight: normal;
    line-height: 49px;
}

/* 큰 크기 버튼 스타일3 */
.button_big3
{
    width: 370px;
    height: 70px;
    background-color: #005bac;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 14pt;
    font-weight: normal;
    line-height: 70px;
}

/* 작은 크기 버튼 스타일 */
.button_small
{
    width: 55px;
    height: 25px;
    background-color: rgb(175, 175, 175);;
    border-radius: 5px;
    color: white;
    line-height: 25px;
    text-align: center;
    font-size: 11pt;
    font-weight: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* 작은 크기 버튼 스타일1 */
.button_small1
{
    width: 55px;
    height: 25px;
    background-color: rgb(0, 173, 216);
    border-radius: 5px;
    color: white;
    line-height: 25px;
    text-align: center;
    font-size: 11pt;
    font-weight: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* 작은 크기 버튼 스타일2 */
.button_small2
{
    width: 65px;
    height: 42px;
    background-color: #005bac;
    border-radius: 5px;
    color: white;
    line-height: 25px;
    text-align: center;
    font-size: 11pt;
    font-weight: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* 작은 크기 버튼 스타일3 */
.button_small3
{
    width: 55px;
    height: 25px;
    background-color: rgb(237, 9, 79);
    border-radius: 10px;
    color: white;
    line-height: 25px;
    text-align: center;
    font-size: 11pt;
    font-weight: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* 작은 크기 버튼 스타일4 */
.button_small4
{
    width: 55px;
    height: 30px;
    background-color: #005bac;
    border-radius: 5px;
    color: white;
    line-height: 25px;
    text-align: center;
    font-size: 12pt;
    font-weight: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* 버튼 클릭 시 크기 스타일 */
.button_big1:active, .button_big2:active, .button_big3:active, .button_small:active, 
.button_small1:active, .button_small2:active, .button_small3:active, .button_small4:active
{
    transform: scale(0.95);
}

/* a 링크 색상 설정 */
a:link, a:visited
{
    color: black;
}
a:hover
{
    color: #005bac;
}

/* a 링크 클릭 시 크기 설정 */
a img:active
{
    transform: scale(0.95);
}

/* aside 리스트 스타일 */
aside ul
{
    display: flex;
    list-style-type: none;
}
aside li
{
    text-align: end;
    font-weight: normal;
}
aside li a
{
    color: black;
    font-weight: normal;
}

/* 홈페이지 전체 로딩 */
html
{
	overflow: auto;
}
.loading
{
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 99999;
	transition: 0.5s ease;
}
.loading_season
{
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 99999;
	transition: 0.5s ease;
}
.loading img
{
	width: 102.4px;
	height: 102.4px;
	animation: rotate 1.5s linear infinite;
	vertical-align: bottom;
}
@keyframes rotate
{
	0%
	{
		transform: rotate(0deg)
	}
	100%
	{
		transform: rotate(360deg);
	}
}

/* popup Windowed Layer */
hidden{display:none}
.popup_bg {position:fixed;z-index:200;top:0;right:0;bottom:0;left:0;background:#000;opacity:.5;filter:alpha(opacity=50);} 
.popup {position:fixed;z-index:210;top:50%;left:50%;border:0;font-size:14px !important;background:#fff;}
.popup .tit {font-size:16px;padding-bottom:5px}
.popup .won {font-size:20px;color:#fe460d}
.popup .result_tit {margin-bottom:30px;}
.popup .result_tit strong {display:block;padding-bottom:5px;font-size:26px;letter-spacing:-1px;text-align:center}
.popup .result_tit span {display:block;font-size:16px;text-align:center;color:#888;}
.box_top {position:relative;height:40px;padding:0 15px 0 0;background-color:#fff;} 
.box_top h1{display:inline-block;height:40px;padding:0 20px;font-size:14px;line-height:38px;color:#000;background-color:#fff;}
.box_top .close {position:absolute;top:0;right:0;height:40px;padding:9px 20px 8px 20px;background-color:#0166b4}
.box_top .close:hover,
.box_top .close:active,
.box_top .close:focus {position:absolute;top:0;right:0;padding:9px 20px 8px 20px;background-color:#cc733c}
.box_top .ic_close {width:17px;height:17px;background-position:-13px -77px;}
.box_mid {padding:25px 25px 40px;overflow:auto;background-color:#fff}
.box_mid .comment {padding:5px 0;font-size:13px}
.box_mid *:first-child{margin-top:0}
.box_mid *:last-child{margin-bottom:0} 
@media all and (max-width:480px) {
	.popup{width:auto !important;top:10px;right:10px;left:10px;margin:0 !important;}
	} 
	
	
.onePopup.on {
    display: block;
}

.onePopup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 30px 73px;
    box-sizing: border-box;
}

.onePopup {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.onePopup_head {
    margin-bottom: 20px;
    border-bottom: 1px solid #E1E1E1;
}
.oneT2 {
    position: relative;
    margin-bottom: 16px;
    font-size: 21px;
    font-weight: 500;
    color: #000000;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'oneFont' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.skip {
    position: absolute;
    font-size: 0;
    width: 0;
    height: 0;
    text-indent: 1000px;
    line-height: 0;
    overflow: hidden;
}

.icon-close:before {
    content: "\e986";
}

.onePopup.on {
    display: block;
}
.onePopup {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.onePopup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    transform: translate(100%, 50%);
    width: calc(100% - 30px);
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 30px 73px;
    box-sizing: border-box;
}
