@font-face {
    font-family: "NotoSansKR";
    src: url("../fonts/NotoSansKR-Regular.subset.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: "NotoSansKRBold";
    src: url("../fonts/NotoSansKR-Bold.subset.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
  }

body {
  font-family: "NotoSansKR", sans-serif;
  margin: 0;
}
.header {
  background-color: #2949b3;
  padding-left: 24px;
  padding-right: 24px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}
.header-privacy {
  padding-left: 24px;
  padding-right: 24px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}
.parent-container {
  height: calc(100vh - 108px);
  padding: 0 24px;
  overflow-y: auto;
  max-width: 312px;
  margin: 0 auto;
}
.heading {
  font-size: 34px;
  color: #333;
  font-weight: bold;
  text-align: center;
  font-family: "NotoSansKRBold", sans-serif;
  margin-top: 40px;
  line-height: 43px;
  margin-bottom: 16px;
}
.sub-heading {
  font-size: 14px;
  color: #707070;
  text-align: center;
  margin-top: 16px;
}
.download-container {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;

}
.google {
  display: flex;
  flex-direction: column;
  padding: 20px 5px;
  align-items: center;
  width: 156px;
}
.decoration-none {
  text-decoration: none;
}
.margin-right-4 {
  margin-right: 4px;
}
.download-link {
  color: #2949b3;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 14px;
}
.separator {
  height: 64px;
  width: 1px;
  background-color: #d6d6d6;
}
.sub-heading-2 {
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-top: 40px;
  letter-spacing: -0.2px;
}
.platform-heading {
  color: #333;
  font-family: "NotoSansKRBold";
}
.margin-top8 {
  margin-top: 8px;
}
.footer {
  height: 57px;
  color: #858585;
  border-top: 1px solid #d6d6d6;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}
.dropdown-wrapper {
  position: relative;
  display: inline-block;
}
.dropdown-wrapper-privacy {
  position: absolute; /* 우측 고정 */
  right: 20px; /* 우측에서 20px 간격 */
  top: 50%; /* 화면 중앙에 위치 */
}
.dropdown-privacy {
  background-color: #fff;
  border: 1px solid #ccc;
  position: relative;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}
.dropdown-privacy:hover {
  background-color: #f1f1f1;
}
.dropdown-content-privacy {
  display: none;
  position: relative;
  top: 100%; /* 부모 요소의 상단에서 아래로 위치 */
  left: 0; /* 좌측 정렬 */
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.dropdown-content-privacy a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}
.dropdown-content-privacy a:hover {
  background-color: #f1f1f1;
}
.dropdown-privacy:hover .dropdown-content-privacy {
  display: block;
}
.dropdown-privacy:not(:hover) .dropdown-content-privacy {
  display: none; /* 마우스 오버되지 않을 때 숨김 */
}
/* 드롭다운 메뉴 간 간격 조정 */
.dropdown-privacy + .dropdown-privacy {
  margin-left: 10px; /* 왼쪽 드롭다운 메뉴와 간격 */
}
.dropdown-privacy .selected {
  display: block; /* 선택된 값 항상 표시 */
  padding: 10px;
  text-decoration: none;
  color: #333;
}
.content-privacy {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.earth-icon {

  cursor: pointer;
}

.dropdown {
  display: none;
  position: absolute;
  top: 28px;
  right: 0;
  background-color: white;
  border: 1px solid#2949b3;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;

}

.dropdown div {
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #333;
  font-size: 14px;
}
.dropdown div:hover{
  background-color: #2949b314;
}
.dropdown div.selected{
  background-color: #2949b324;
  color: #2949b3;
}
.dropdown div.selected:hover{
  background-color: #2949b324;
}
.dropdown div:hover {
  background-color: #f0f0f0;
}

.show {
  display: block;
}
.padding-bottom-30{
  padding-bottom: 30px;
}
.min-height-100vh{
  min-height: 100vh;
}
@media screen and (min-width: 480px){
  .parent-container{
    max-width: max-content !important;

  }
}