/* COMMON */
:root {
  --main-color: #2EC4B6;
  --bg-color: #f6fbfa;
}

body {
  background: var(--bg-color);
}

#wrap {
  margin-bottom: 7.9rem;
}

.inner {
  width: 100%;
  padding: 0 2.4rem;
  margin: 0 auto;
}

main {
  margin-top: 9.9rem;
  padding-bottom: 5rem;
}

/* HEADER */
header {
  padding: 2rem 0 2.4rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background: var(--main-color);
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0px 2px 4px 0px #16817A33;
}
header .location_wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}
header .location_wrap span {
  font-family: 'Cafe24Anemone';
  font-size: 2rem;
  color: #fff;
}
header .location_wrap button img {
  width: 2rem;
}
header .location {
  font-family: 'Cafe24Anemone';
  font-size: 2.4rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.geo_modal_wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 99999999;
}
.geo_modal_wrap.active {
  display: block;
}
.geo_modal_wrap .modal_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: calc(100% - 4.8rem);
  padding: 4rem 2.3rem;
  text-align: center;
  border-radius: 2rem;
}
.geo_modal_wrap .modal_wrap h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.geo_modal_wrap .modal_wrap p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.5rem;
  color: #6b7280;
}
.geo_modal_wrap .modal_wrap .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem; 
  margin-top: 2.4rem;
}
.geo_modal_wrap .modal_wrap .btn_wrap button {
  width: 50%;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 0;
  border-radius: 1rem;
  line-height: 2.5rem;
}
.geo_modal_wrap .modal_wrap .btn_wrap .cancel {
  border: 1px solid #D7E8E5;
  color: #6b7280;
}
.geo_modal_wrap .modal_wrap .btn_wrap .use {
  background: var(--main-color);
  color: #fff;
}

/* FOOTER */
footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  border-top: 1px solid var(--main-color);
  background: var(--bg-color);
}
footer ul {
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
}
footer ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  padding: 1.3rem 0;
}
footer ul li a img {
  width: 3rem;
  aspect-ratio: 1 / 1;
}
footer ul li a p {
  font-size: 1.4rem;
  font-weight: 600;
  color: #8DE6DD;
  white-space: nowrap;
}
footer ul li.active a p {
  color: var(--main-color);
}

/* index.php */
.home {
  padding-top: 3rem;
}
.home .around_wrap {
  margin-bottom: 4rem;
}
.home .around_wrap h2 {
  font-family: 'Cafe24Anemone';
  font-size: 2rem;
  margin-bottom: 1.6rem;
}
.home .around_wrap .station_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 0;
  border-radius: 2rem;
  box-shadow: 0px 0px 5px 0px #16817A4D;
}
.home .around_wrap .station_wrap .box {
  width: 50%;
  text-align: center;
  padding: .6rem 0;
}
.home .around_wrap .station_wrap .box:first-of-type {
  border-right: 1px solid #D7E8E5;
}
.home .around_wrap .station_wrap .box h3 {
  font-family: 'Cafe24Anemone';
  font-size: 1.6rem;
  margin-bottom: 2.2rem;
}
.home .around_wrap .station_wrap .box p {
  font-family: 'Cafe24Anemone';
  font-size: 3.2rem;
  color: var(--main-color);
}
.home .around_wrap .station_wrap .box p span {
  font-family: 'Cafe24Anemone';
  font-size: 1.6rem;
}
.home .list_wrap h2 {
  font-family: 'Cafe24Anemone';
  font-size: 2rem;
  margin-bottom: 1.6rem;
}
.home .list_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home .list_wrap ul li {
  border-radius: 2rem;
  box-shadow: 0px 0px 5px 0px #16817A4D;
  padding: 2.4rem;
  position: relative;
}
.home .list_wrap ul li .left_wrap {
  max-width: calc(100% - 6.5rem);
}
.home .list_wrap ul li .left_wrap h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  word-break: auto-phrase;
  line-height: 1.4;
}
.home .list_wrap ul li .left_wrap > p {
  font-size: 1.4rem;
  color: #6b7280;
  margin-bottom: 1.6rem;
}
.home .list_wrap ul li .left_wrap .state_wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.home .list_wrap ul li .left_wrap .state_wrap p {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--main-color);
}
.home .list_wrap ul li .left_wrap .state_wrap p b {
  font-size: 2rem;
}
.home .list_wrap ul li .left_wrap .state_wrap p.able {
  font-weight: 500;
}
.home .list_wrap ul li .left_wrap .state_wrap i {
  display: block;
  width: .1rem;
  height: 1.6rem;
  background: #D7E8E5;
}
.home .list_wrap ul li .right_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
}
.home .list_wrap ul li .right_wrap .state {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--main-color);
  border-radius: 2rem;
  padding: .3rem .9rem;
  border: 1px solid var(--main-color);
}
.home .list_wrap ul li .right_wrap .bookmark img {
  width: 2rem;
}
.home .list_wrap ul li .find {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  border-radius: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 0;
  margin-top: 1.6rem;
}
.home .list_wrap .more_btn {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--main-color);
  text-align: center;
  border-radius: 2rem;
  border: 1px solid var(--main-color);
  padding: 1.2rem 0;
  margin-top: 1.6rem;
}

/* 사용 불가 상태 / 데이터 없음 (home · list · bookmark · map 공통) */
.home .list_wrap ul li .right_wrap .state.disable,
.list .list_wrap ul li .right_wrap .state.disable,
.map .info_modal .right_wrap .state.disable {
  color: #9ca3af;
  border-color: #d1d5db;
}
.home .list_wrap ul li .left_wrap .state_wrap p.none,
.list .list_wrap ul li .left_wrap .state_wrap p.none,
.map .info_modal .left_wrap .state_wrap p.none {
  color: #9ca3af;
  font-weight: 500;
}

/* 실시간 조회가 닿지 않아 스냅샷 값을 쓰는 카드.
   숫자를 흐리게 해서 지금 확인된 값이 아님을 드러낸다 */
.home .list_wrap ul li .left_wrap .state_wrap p.stale,
.list .list_wrap ul li .left_wrap .state_wrap p.stale,
.map .info_modal .left_wrap .state_wrap p.stale {
  color: #9ca3af;
  font-weight: 500;
}
.home .list_wrap ul li .left_wrap .stale_note,
.list .list_wrap ul li .left_wrap .stale_note,
.map .info_modal .left_wrap .stale_note {
  font-size: 1.1rem;
  color: #9ca3af;
  line-height: 1.4;
  margin-top: .4rem;
  margin-bottom: 0;
}
.list_wrap .empty {
  font-size: 1.4rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.7;
  padding: 3rem 0 2rem;
}
.detail .title_wrap .title_box .state.disable {
  color: #9ca3af;
  border-color: #d1d5db;
}
.detail .info_wrap .state_wrap .box .refuel_wrap p.none {
  color: #9ca3af;
  font-weight: 500;
}
.detail .notice_wrap p + p {
  margin-top: .4rem;
}
/* 위치 미설정 안내 버튼 (list.php) */
.list .list_wrap .more_btn {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--main-color);
  text-align: center;
  border-radius: 2rem;
  border: 1px solid var(--main-color);
  padding: 1.2rem 0;
}
/* 지도에서 마커를 선택했을 때 */
.map .info_modal.active {
  display: block;
}
/* 지도 위의 현재 위치 점 */
.map .my_pos {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--main-color);
  border: 2px solid #fff;
  box-shadow: 0px 0px 20px 0px #2EC4B6;
  backdrop-filter: blur(30px);
}
/* 설정 페이지 아코디언 - 아이콘이 위쪽 화살표라 접힌 상태에서만 뒤집는다 */
.setting .app_box .title_wrap {
  cursor: pointer;
}
.setting .app_box .title_wrap img {
  transition: transform .25s;
}
.setting .app_box:not(.open) .title_wrap img {
  transform: rotate(180deg);
}

/* 필터 항목은 눌러서 고르는 요소다 */
.filter .filter_wrap .filter_box ul li {
  cursor: pointer;
}
/* 지도에서 조건에 맞는 충전소가 없을 때 안내 박스 안의 버튼 */
.map .view_able .more_btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 0;
  border-radius: 2rem;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

/* 목록·지도의 사용 가능 대수가 언제 기준인지 알리는 안내 */
.data_note {
  font-size: 1.2rem;
  color: #9ca3af;
  text-align: right;
  line-height: 1.5;
  margin: .8rem 0;
}
.map .map_wrap {
  position: relative;
}
.map .map_wrap .data_note {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  margin: 0;
  background: rgba(255, 255, 255, .92);
  border-radius: 1rem;
  padding: .5rem 1rem;
  box-shadow: 0px 0px 4px 0px #16817A33;
}
.map .map_box .map_error {
  font-size: 1.4rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.7;
  padding-top: 4rem;
}

/* list.php */
.common_filter_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.common_filter_wrap .filter img {
  width: 2.4rem; 
}
.common_filter_wrap .view {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #16817a;
}
.common_filter_wrap .view img {
  width: 2.4rem;
}

.list {
  padding-top: 1.5rem;
}
.list .list_wrap .view_able {
  border-radius: 2rem;
  box-shadow: 0px 0px 5px 0px #16817A4D;
  padding: 2.2rem 2.7rem;
  text-align: center;
  margin-bottom: 2rem;
}
.list .list_wrap .view_able h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}
.list .list_wrap .view_able button {
  display: block;
  width: 100%;
  border-radius: 2rem;
  border: 1px solid var(--main-color);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 0;
  color: var(--main-color);
}
.list .list_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.list .list_wrap ul li {
  border-radius: 2rem;
  box-shadow: 0px 0px 5px 0px #16817A4D;
  padding: 2.4rem;
  position: relative;
}
.list .list_wrap ul li .left_wrap {
  max-width: calc(100% - 6.5rem);
}
.list .list_wrap ul li .left_wrap h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  word-break: auto-phrase;
  line-height: 1.4;
}
.list .list_wrap ul li .left_wrap > p {
  font-size: 1.4rem;
  color: #6b7280;
  margin-bottom: 1.6rem;
}
.list .list_wrap ul li .left_wrap .state_wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.list .list_wrap ul li .left_wrap .state_wrap p {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--main-color);
}
.list .list_wrap ul li .left_wrap .state_wrap p b {
  font-size: 2rem;
}
.list .list_wrap ul li .left_wrap .state_wrap p.able {
  font-weight: 500;
}
.list .list_wrap ul li .left_wrap .state_wrap i {
  display: block;
  width: .1rem;
  height: 1.6rem;
  background: #D7E8E5;
}
.list .list_wrap ul li .right_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
}
.list .list_wrap ul li .right_wrap .state {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--main-color);
  border-radius: 2rem;
  padding: .3rem .9rem;
  border: 1px solid var(--main-color);
}
.list .list_wrap ul li .right_wrap .bookmark img {
  width: 2rem;
}
.list .list_wrap ul li .find {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  border-radius: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 0;
  margin-top: 1.6rem;
}

/* filter.php */
main.filter {
  padding-top: 1.6rem;
}
.filter .filter_wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.filter .filter_wrap .filter_box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.filter .filter_wrap .filter_box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.filter .filter_wrap .filter_box ul li {
  font-size: 1.6rem;
  font-weight: 600;
  color: #6b7280;
  border-radius: 3rem;
  border: 1px solid #6b7280;
  padding: .7rem 1.4rem;
}
.filter .filter_wrap .filter_box ul li.active {
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff;
}

/* detail.php */
.detail {
  background: var(--main-color);
  margin-top: 0;
  padding-bottom: 0;
}
.detail .detail_container {
  background: var(--bg-color);
  padding: 1.6rem 0 6rem;
  transform: translateY(2rem);
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0px -5px 5px 0px #16817A4D;
}
.detail .title_wrap .close_btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 1rem;
}
.detail .title_wrap .close_btn img {
  width: 2.4rem;
}
.detail .title_wrap .title_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.detail .title_wrap .title_box h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
}
.detail .title_wrap .title_box .state {
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid var(--main-color);
  border-radius: 2rem;
  padding: .3rem .9rem;
  color: var(--main-color);
  flex-shrink: 0;
}
.detail .title_wrap .info_box {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  position: relative;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #D7E8E5;
}
.detail .title_wrap .info_box .info_area {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.detail .title_wrap .info_box .info_area span {
  font-size: 1.4rem;
  color: #6b7280;
  line-height: 1.4;
  white-space: nowrap;
}
.detail .title_wrap .info_box .info_area p {
  font-size: 1.4rem;
  color: #6b7280;
  line-height: 1.4;
  word-break: keep-all;
}
.detail .title_wrap .info_box .info_area .copy img {
  width: 1.6rem;
}
.detail .title_wrap .info_box .bookmark {
  position: absolute;
  right: 0;
  bottom: 1.6rem;
}
.detail .title_wrap .info_box .bookmark img {
  width: 2.4rem;
}
.detail .info_wrap {
  padding-top: 2rem;
}
.detail .info_wrap .state_wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.detail .info_wrap .state_wrap .box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.detail .info_wrap .state_wrap .box img {
  width: 2.4rem;
}
.detail .info_wrap .state_wrap .box p {
  font-size: 1.6rem;
  color: #6b7280;
}
.detail .info_wrap .state_wrap .box .refuel_wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.detail .info_wrap .state_wrap .box .refuel_wrap i {
  width: .1rem;
  height: 1.6rem;
  background: #D7E8E5;
}
.detail .info_wrap .state_wrap .box .refuel_wrap p {
  color: var(--main-color);
  font-weight: 600;
}
.detail .info_wrap .state_wrap .box .refuel_wrap p.able_state {
  font-weight: 500;
}
.detail .info_wrap .state_wrap .box .refuel_wrap span {
  display: block;
  margin-left: auto;
  font-size: 1.2rem;
  color: #6b7280;
}
.detail .info_wrap .list_wrap {
  margin-bottom: 2.4rem;
}
.detail .info_wrap .list_wrap ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}
.detail .info_wrap .list_wrap ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border: 1px solid #6b7280;
  border-radius: 1.5rem;
}
.detail .info_wrap .list_wrap ul li .text_wrap span {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: .5rem;
}
.detail .info_wrap .list_wrap ul li .text_wrap p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6b7280;
}
.detail .info_wrap .list_wrap ul li img {
  width: 2.4rem;
}
.detail .info_wrap .list_wrap ul li.able {
  border: 1px solid var(--main-color);
}
.detail .info_wrap .list_wrap ul li.able span {
  color: var(--main-color);
}
.detail .info_wrap .list_wrap ul li.able p {
  color: var(--main-color);
}
.detail .notice_wrap {
  text-align: center;
}
.detail .notice_wrap p {
  font-size: 1.2rem;
  color: #6b7280;
}

/* bookmark.php */
main.bookmark {
  padding-top: 3rem;
}

/* setting.php */
.setting .detail_container {
  padding: 4rem 0 6rem;
}
.setting .app_box {
  background: #fff;
  border-radius: 1.6rem;
  padding: 2.4rem 2rem;
  box-shadow: 0px 0px 6px 0px #00000033;
}
.setting .app_box:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.setting .app_box .title_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.setting .app_box .title_wrap h2 {
  font-size: 2rem;
  font-weight: 600;
}
.setting .app_box .title_wrap img {
  width: 2.4rem; 
}
.setting .app_box .content_wrap {
  padding-top: 2.1rem;
}
.setting .app_box .content_wrap p {
  font-size: 1.4rem;
  line-height: 2.3rem;
  color: #6b7280;
  word-break: keep-all;
}
.setting .app_box .content_wrap p span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: inherit;
}
.setting .app_box .content_wrap p b {
  font-weight: 600;
}

/* map.php */
.map {
  padding-top: 1.5rem;
  padding-bottom: 0;
  position: relative;
}
.map .map_wrap {
  width: 100%;
  height: calc(100dvh - 23.4rem);
  overflow: hidden;
}
.map .map_wrap .map_box {
  width: 100%;
  height: 100%;
}
.map .map_wrap .map_box img {
  width: 100%;
  height: 100%;
}
.map .view_able {
  width: calc(100% - 4.8rem);
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: #F6FBFA;
  box-shadow: 0px 0px 5px 0px #16817A4D;
  text-align: center;
  padding: 2.2rem 2.7rem;
  border-radius: 2rem;
  z-index: 990;
}
.map .view_able h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}
.map .view_able button {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 0;
  border-radius: 2rem;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.map .info_modal {
  display: none;
  width: calc(100% - 4.8rem);
  background: #F6FBFA;
  border-radius: 2rem;
  box-shadow: 0px 0px 5px 0px #16817A4D;
  padding: 2.4rem;
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 990;
}
.map .info_modal .left_wrap {
  max-width: calc(100% - 6.5rem);
}
.map .info_modal .left_wrap h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  word-break: keep-all;
  line-height: 1.4;
}
.map .info_modal .left_wrap > p {
  font-size: 1.4rem;
  color: #6b7280;
  margin-bottom: 1.6rem;
}
.map .info_modal .left_wrap .state_wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.map .info_modal .left_wrap .state_wrap p {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--main-color);
}
.map .info_modal .left_wrap .state_wrap p b {
  font-size: 2rem;
}
.map .info_modal .left_wrap .state_wrap p.able {
  font-weight: 500;
}
.map .info_modal .left_wrap .state_wrap i {
  display: block;
  width: .1rem;
  height: 1.6rem;
  background: #D7E8E5;
}
.map .info_modal .right_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
}
.map .info_modal .right_wrap .state {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--main-color);
  border-radius: 2rem;
  padding: .3rem .9rem;
  border: 1px solid var(--main-color);
}
.map .info_modal .right_wrap .bookmark img {
  width: 2rem;
}
.map .info_modal .find {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  border-radius: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 0;
  margin-top: 1.6rem;
}