@charset "UTF-8";
/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --white:#fff;
  --black:#000;
  --red:#9B0000;
  --blue:#0F0078;
  --light-blue:#5163c0;
  --deep-blue:#05014a;
  --orange:#ff9644;
  --gray-cd:#cdcdcd;
  --gray-af:#afafaf;
  --gray-e8:#e8e8e8;
  --gray-f8:#f8f8f8;
  --gray-d2:#d2d2d2;
  --gray-d4:#d4d4d4;
  --gray-d5:#d5d5d5;
  --gray-dd:#dddddd;
  --gray-f0:#f0f0f0;
  --gray-f1:#f1f1f1;
  --gray-f3:#f3f3f3;
  --gray-f7:#f7f7f7;
  --gray-7c:#7c7c7c;
  --gray-f8:#f8f8f8;
  --point-color:#2e55e7;
  --point01:#010A65;
  --schedule:#00B09C;
  --border-color:#d1d1d1;
  --history-color:#DBD2D2;
  --footer-bg:#191E29;
}

/* font-size */
/* absolute-center */
/* transition */
/* common */
html {
  font-size: 62.5%;
}

body {
  font-family: "Pretendard", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  word-break: keep-all;
  background: #f8f8f8;
}
body a {
  color: var(--black);
  text-decoration: none;
}
@media (max-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
body:has(#modal.show) {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

a, input, button, select {
  outline-offset: 2px;
  outline-color: #000000;
}

/* table */
table {
  width: 100%;
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.program-none-data {
  width: 100%;
  text-align: center;
  border: 1px solid var(--border-color);
  border-width: 1px 0;
  padding: 2.7rem 1rem;
}

.wrap {
  max-width: 1410px;
  margin: 0 auto;
}
@media (max-width: 1460px) {
  .wrap {
    max-width: 96%;
  }
}
@media (max-width: 768px) {
  .wrap {
    max-width: 90%;
  }
}

/* list-dot */
.list-dot > li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 0.78em;
  line-height: 1.6;
}
.list-dot > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #000000;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.list-dot > li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .list-dot > li {
    margin-bottom: 6px;
    padding-left: 0.624em;
  }
  .list-dot > li::before {
    width: 3px;
    height: 3px;
    top: 10px;
  }
}

/* list-line */
.list-line > li {
  position: relative;
  margin: 4px 0;
  padding-left: 0.78em;
  line-height: 1.6;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .list-line > li {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .list-line > li {
    font-size: 1.4rem;
  }
}
.list-line > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 2px;
  background-color: #7c7c7c;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* list-basic 아무것도없는 리스트만 */
.list-basic > li {
  position: relative;
  margin-bottom: 6px;
  line-height: 1.6;
}
.list-basic > li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .list-basic > li {
    margin-bottom: 4px;
  }
}

/* header */
#top-header {
  width: 100%;
  height: 130px;
  padding: 0 48px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #d6d6d6;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#top-header .logo {
  width: 216px;
  height: 46px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#top-header .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/images/gsndnurse/common/logo.svg") no-repeat center/100%;
}
#top-header .nav {
  margin-left: auto;
  margin-right: 0;
  z-index: 90;
}
#top-header .nav nav .btn-nav-close {
  display: none;
}
#top-header .nav nav .dep1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#top-header .nav nav .dep1 > li {
  position: relative;
}
#top-header .nav nav .dep1 > li > a {
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  display: block;
  padding: 10px 48px;
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
}
@media (max-width: 1024px) {
  #top-header .nav nav .dep1 > li > a {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  #top-header .nav nav .dep1 > li > a {
    font-size: 1.7rem;
  }
}
#top-header .nav nav .dep1 > li.active::before, #top-header .nav nav .dep1 > li.active::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  border-radius: 50%;
}
#top-header .nav nav .dep1 > li.active::before {
  left: 50%;
  margin-left: -6px;
  background-color: #2e55e7;
}
#top-header .nav nav .dep1 > li.active::after {
  right: 50%;
  margin-right: -6px;
  background-color: #47cfb7;
}
#top-header .nav nav .dep2 {
  display: none;
  position: absolute;
  top: 89px;
  width: 100%;
  height: 380px;
  padding: 1.8em 1.5em 0;
  border-left: 1px solid #d6d6d6;
}
#top-header .nav nav .dep2 li a {
  display: inline-block;
  font-size: 1.6rem;
  color: #5c5c5c;
  padding: 5px 0;
}
#top-header .nav nav .dep2 li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: -3px;
  background-color: #000000;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
#top-header .nav nav .dep2 li a:hover {
  color: #000000;
}
#top-header .nav nav .dep2 li a:hover::after {
  width: 100%;
}
#top-header .nav nav .dep1 li:first-child .dep2 {
  border-left: 0;
}
#top-header .util {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#top-header .util-member {
  width: 60px;
  height: 48px;
  background: url("/images/gsndnurse/common/member.svg") no-repeat center/24px 23px;
}
#top-header .util-member a {
  display: block;
  width: 100%;
  height: 100%;
}
#top-header .util-member.member-my {
  background-image: url("/images/gsndnurse/common/member_check.svg");
}
#top-header .util-burger {
  display: none;
}
#top-header .util-burger a {
  width: 60px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top-header .util-burger .burger {
  width: 60%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#top-header .util-burger .burger span {
  width: 100%;
  height: 2px;
  display: block;
  background-color: #000000;
}
#top-header .nav-bg {
  display: none;
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  height: 380px;
  background-color: #fff;
  z-index: 80;
  -webkit-box-shadow: 0 30px 30px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 30px 30px -30px rgba(0, 0, 0, 0.2);
}
#top-header.scroll {
  height: 84px;
}
#top-header.scroll .nav nav .dep2 {
  top: 66px;
}
#top-header.scroll .nav-bg {
  top: 84px;
}
@media (max-width: 1480px) {
  #top-header {
    padding: 0 2%;
  }
}
@media (max-width: 1440px) {
  #top-header .nav nav .dep1 > li > a {
    padding: 10px 44px;
  }
}
@media (max-width: 1280px) {
  #top-header {
    height: 100px;
  }
  #top-header .logo {
    width: 172px;
    height: 36px;
  }
  #top-header .nav {
    display: none;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    background: #ffffff url("/images/gsndnurse/common/nav_bg.png") no-repeat bottom right/auto;
  }
  #top-header .nav .btn-nav-close {
    position: absolute;
    top: 41px;
    right: 2%;
    display: block;
  }
  #top-header .nav .btn-nav-close a {
    width: 60px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #top-header .nav .btn-nav-close .close {
    width: 60%;
    height: 50%;
    position: relative;
  }
  #top-header .nav .btn-nav-close .close span {
    opacity: 1;
    position: absolute;
    width: 100%;
    height: 2px;
    display: block;
    left: 0;
    top: 0;
    background-color: #000000;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
  }
  #top-header .nav .btn-nav-close .close span:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }
  #top-header .nav .btn-nav-close .close span:last-child {
    top: auto;
    bottom: 0;
  }
  #top-header .nav .btn-nav-close .close.nav-open span:first-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 50%;
    margin-top: -1px;
  }
  #top-header .nav .btn-nav-close .close.nav-open span:nth-child(2) {
    opacity: 0;
    left: 100%;
  }
  #top-header .nav .btn-nav-close .close.nav-open span:last-child {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: 50%;
    margin-bottom: -1px;
  }
  #top-header .nav nav {
    width: 100%;
    height: 100%;
    padding-top: 120px;
    overflow: auto;
  }
  #top-header .nav nav .dep1 {
    display: block;
  }
  #top-header .nav nav .dep1 > li {
    padding: 0 40px 1em;
    margin-bottom: 1em;
    border-bottom: 1px solid #d6d6d6;
  }
  #top-header .nav nav .dep1 > li:last-child {
    border-bottom: 0;
  }
  #top-header .nav nav .dep1 > li > a {
    padding: 12px;
    font-size: 2.4rem;
    font-weight: 700;
  }
  #top-header .nav nav .dep1 > li .ele-br {
    display: block;
    line-height: 0;
  }
  #top-header .nav nav .dep1 > li.active::before, #top-header .nav nav .dep1 > li.active::after {
    display: none;
  }
  #top-header .nav nav .dep2 {
    position: static;
    height: auto;
    top: 0;
    border-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
  #top-header .nav nav .dep2 li a {
    padding: 12px;
  }
  #top-header .util-burger {
    display: block;
  }
  #top-header .nav-bg {
    display: none;
  }
  #top-header.scroll {
    height: 78px;
  }
}
@media (max-width: 768px) {
  #top-header {
    padding: 0 12px;
    height: 60px;
  }
  #top-header .logo {
    width: 151px;
    height: 32px;
  }
  #top-header .util-member {
    width: 40px;
    height: 40px;
    background-size: 21px 20px;
  }
  #top-header .util-burger a {
    width: 40px;
    height: 40px;
  }
  #top-header .util-burger .burger {
    width: 70%;
  }
  #top-header .nav .btn-nav-close {
    top: 10px;
    right: 12px;
  }
  #top-header .nav .btn-nav-close a {
    width: 40px;
    height: 40px;
  }
  #top-header .nav nav {
    padding-top: 40px;
  }
  #top-header .nav nav .dep1 > li {
    padding: 0 5% 1em;
  }
  #top-header .nav nav .dep1 > li > a {
    font-size: 2rem;
  }
  #top-header .nav nav .dep2 li a {
    padding: 8px 12px;
    font-size: 1.4rem;
  }
  #top-header.scroll {
    height: 60px;
  }
}

/*------------------------- link --------------------------*/
.m-link {
  padding: 55px 5.5%;
  background-color: #f3f3f3;
  overflow: hidden;
}
.m-link .cont {
  margin: 0 -0.85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-link .cont a {
  display: block;
  margin: 0 0.85%;
}
.m-link .cont a img {
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .m-link .cont {
    width: 100%;
    margin: 0;
  }
  .m-link .cont a {
    margin: 0;
    padding: 0 12px;
  }
}
@media screen and (max-width: 768px) {
  .m-link {
    padding: 36px 2%;
  }
  .m-link .cont {
    width: 90%;
    margin: 0 auto;
  }
  .m-link .cont a {
    margin: 0;
    padding: 0 5px;
  }
}
@media screen and (max-width: 480px) {
  .m-link {
    padding: 30px 4%;
  }
}

/* footer */
footer {
  font-size: 0.8em;
  text-align: center;
  border-top: 1px solid #aaaaaa;
  background-color: #ffffff;
  padding: 2em 1rem;
}

/* modal */
#modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  display: none;
}
#modal::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
}
#modal #modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
}
#modal #modal-close-btn::after {
  content: "×";
  font-size: 50pt;
  font-weight: 100;
  line-height: 50px;
  color: #fff;
}

.modal-map.show {
  height: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-map.show::after {
  height: 100%;
}
.modal-map.show > div {
  width: 100%;
  max-width: 800px;
  background: #ffffff;
  padding: 1rem;
  z-index: 110;
}
.modal-map.show > div .map-wrap {
  position: relative;
}
.modal-map.show > div .map-wrap:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 66.6666666667%;
}
.modal-map.show > div .map-wrap > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.modal-map.show > div .map-wrap #map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 120;
}
.modal-map.show > div .button-set {
  font-size: 0.85em;
  text-align: center;
  margin-top: 1rem;
}
.modal-map.show > div .button-set p {
  margin-top: 1rem;
}
.modal-map.show > div .button-set button {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.modal-map.show > div .button-set button:hover {
  color: #ffffff;
  border-color: #da3a15;
  background: #da3a15;
}

/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --white:#fff;
  --black:#000;
  --red:#9B0000;
  --blue:#0F0078;
  --light-blue:#5163c0;
  --deep-blue:#05014a;
  --orange:#ff9644;
  --gray-cd:#cdcdcd;
  --gray-af:#afafaf;
  --gray-e8:#e8e8e8;
  --gray-f8:#f8f8f8;
  --gray-d2:#d2d2d2;
  --gray-d4:#d4d4d4;
  --gray-d5:#d5d5d5;
  --gray-dd:#dddddd;
  --gray-f0:#f0f0f0;
  --gray-f1:#f1f1f1;
  --gray-f3:#f3f3f3;
  --gray-f7:#f7f7f7;
  --gray-7c:#7c7c7c;
  --gray-f8:#f8f8f8;
  --point-color:#2e55e7;
  --point01:#010A65;
  --schedule:#00B09C;
  --border-color:#d1d1d1;
  --history-color:#DBD2D2;
  --footer-bg:#191E29;
}

/* absolute-center */
/* transition */
/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --white:#fff;
  --black:#000;
  --red:#9B0000;
  --blue:#0F0078;
  --light-blue:#5163c0;
  --deep-blue:#05014a;
  --orange:#ff9644;
  --gray-cd:#cdcdcd;
  --gray-af:#afafaf;
  --gray-e8:#e8e8e8;
  --gray-f8:#f8f8f8;
  --gray-d2:#d2d2d2;
  --gray-d4:#d4d4d4;
  --gray-d5:#d5d5d5;
  --gray-dd:#dddddd;
  --gray-f0:#f0f0f0;
  --gray-f1:#f1f1f1;
  --gray-f3:#f3f3f3;
  --gray-f7:#f7f7f7;
  --gray-7c:#7c7c7c;
  --gray-f8:#f8f8f8;
  --point-color:#2e55e7;
  --point01:#010A65;
  --schedule:#00B09C;
  --border-color:#d1d1d1;
  --history-color:#DBD2D2;
  --footer-bg:#191E29;
}

/************************************************************************************/
/*************************************** Form ***************************************/
/************************************************************************************/
*:disabled + label {
  opacity: 0.5;
  cursor: default;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
}

input[type=text],
input[type=date],
input[type=time],
input[type=number],
input[type=password],
select {
  height: 60px;
  padding: 10px 20px;
  border-radius: 5px;
}
@media (max-width: 1024px) {
  input[type=text],
input[type=date],
input[type=time],
input[type=number],
input[type=password],
select {
    height: 52px;
  }
}
@media (max-width: 768px) {
  input[type=text],
input[type=date],
input[type=time],
input[type=number],
input[type=password],
select {
    height: 42px;
    padding: 10px 14px;
  }
}

input[type=time]::-webkit-calendar-picker-indicator {
  display: none;
}

select {
  background: url("/images/gsndnurse/common/select.svg") no-repeat right 1em center/10px 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=checkbox] + label::before {
  border-radius: 0;
}
input[type=checkbox]:checked + label::before {
  outline: 1px solid #da3a15;
  background: #da3a15 url("/images/layouts/survey/checked.png") no-repeat center;
}

input[type=radio] + label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-right: 2.5em;
  height: 60px;
}
input[type=radio] + label::before, input[type=radio] + label::after {
  content: "";
  border-radius: 50%;
  display: block;
}
input[type=radio] + label::before {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  background: #ffffff;
  border: 1px solid #cccccc;
}
input[type=radio]:checked + label::before {
  border-color: #da3a15;
}
input[type=radio]:checked + label::after {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #da3a15;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  input[type=radio] + .input-label {
    height: 52px;
    margin-right: 1.5em;
  }
  input[type=radio] + .input-label::before {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }
  input[type=radio]:checked + .input-label::after {
    width: 10px;
    height: 10px;
    top: 50%;
    left: 7px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 768px) {
  input[type=radio] + .input-label {
    height: 42px;
    margin-right: 1em;
  }
  input[type=radio] + .input-label::before {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }
  input[type=radio]:checked + .input-label::after {
    width: 8px;
    height: 8px;
    top: 50%;
    left: 6px;
    margin-top: -4px;
  }
}

input,
select,
textarea {
  border: 1px solid #d1d1d1;
}
input.error ~ label.error,
select.error ~ label.error,
textarea.error ~ label.error {
  position: relative;
}

label.error {
  font-size: 1.4rem !important;
  color: #fff;
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-danger);
  padding: 0.25rem 0.5rem;
  display: block;
}

/* font-size */
h1 {
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid #000000;
  margin: 0 auto 2em auto;
  display: table;
}
h1:last-child {
  margin-bottom: 0;
}

h2 {
  font-size: 1.25em;
  font-weight: 700;
  padding-left: 1.5rem;
  position: relative;
}
h2:last-child {
  margin-bottom: 0;
}
h2::before, h2::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #da3a15;
  position: absolute;
  top: 6px;
  left: 0;
}
h2::after {
  top: 14px;
}

.list-line {
  margin-left: 1rem;
}

.survey-reply .title-image {
  overflow: hidden;
  border-radius: 3em 3em 0 0;
}
.survey-reply:has(.title-image) .survey-title-wrap .survey-section {
  border-radius: 0 0 1em 1em;
}

.survey-title b {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: block;
  position: relative;
}
.survey-title b::before, .survey-title b::after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  border-right: 4px solid #da3a15;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.survey-title b::after {
  border-right: 2px solid #da3a15;
  left: 7px;
}

.survey-wrap {
  padding: 1em 0;
}
.survey-wrap .button-set {
  text-align: center;
}
.survey-wrap .button-set button {
  height: auto;
  font-size: 0.9em;
  color: #ffffff;
  background: #da3a15;
  padding: 0.8em 2em;
}

.survey-section {
  border-radius: 1em;
  background: #ffffff;
  padding: 1em;
  margin-bottom: 2em;
}
.survey-section:has(.error) {
  -webkit-box-shadow: 0 0 0 2px #da3a15 inset;
          box-shadow: 0 0 0 2px #da3a15 inset;
}
.survey-section:has(.error[style="display: none;"]) {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.survey-section .question_title {
  margin-bottom: 1rem;
  display: block;
}
.survey-section .answer {
  margin-bottom: 1rem;
}
.survey-section .answer:last-child {
  margin-bottom: 0;
}
.survey-section .county {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.survey-section .county .county-inner {
  width: calc(100% / 3);
}

@media screen and (min-width: 767px) {
  h2::before, h2::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
  }
  h2::after {
    top: 18px;
  }

  .survey-wrap {
    padding: 3em 0;
  }

  .survey-section {
    padding: 2em;
  }
  .survey-section .county .county-inner {
    width: calc(100% / 5);
  }
}
.map-info {
  font-size: 0.85em;
  margin-top: 1rem;
}
.map-info button {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.map-info button:hover {
  color: #ffffff;
  border-color: #da3a15;
  background: #da3a15;
}
