@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari&family=Noto+Sans+KR&display=swap");

html {
  font-family: "Noto Sans KR", sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

body {
  font-family: "Noto Sans KR", sans-serif !important;
  background-color: #f5f5f5 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  min-width: 280px;
}

a {
  text-decoration: none !important;
}

[data-theme="dark-mode"] body {
  background-color: #000 !important;
  color: #fff;
}

/* navigation */
.navbar {
  position: fixed !important;
  top: 0;
  overflow: hidden;
  background-color: #f5f5f5;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #c1c1c1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark-mode"] .navbar {
  background-color: #000;
  color: #fff;
}

.navbar_content {
  width: 95%;
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-item {
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7c7c7c;
  text-align: center;
  padding: 7px 7px;
  border-radius: 5px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.navbar-item:hover {
  background: #ddd;
  color: black;
}

[data-theme="dark-mode"] .navbar-item:hover {
  background: #4c4c4c;
  color: white;
}
.current-position-wrap {
  border: 3px solid red;
  position: absolute;
  left: 93%;
  transform: translate(-100%, 0);
  -webkit-tap-highlight-color: #6666668f !important;
}
/* search bar PC */
#search input[type="text"] {
  background: url(./images/icons/function-icon-004.png) no-repeat 15px 6px #fff;
  background-size: 20px;
  border: 0 none;
  color: #7c7c7c;
  width: 85%;
  padding: 6px 15px 6px 40px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
.current-position-btn {
  position: absolute;
  left: 93%;
  transform: translate(-100%, 0);
  display: flex;
  align-items: center;
  background: #f2f2f2;
  padding: 5px;
  border: 1px solid #c1c1c1;
  border-radius: 50%;
  -webkit-tap-highlight-color: #6666668f !important;
}
.current-position-btn img {
  transform: translate(-1px, 0);
  -webkit-tap-highlight-color: #6666668f !important;
  width: 20px;
}

[data-theme="dark-mode"] #search input[type="text"] {
  background: url(./images/icons/function-icon-004.png) no-repeat 15px 6px #4c4c4c;
  background-size: 20px;
  color: #aaa;
}
[data-theme="dark-mode"] .current-position-btn {
  background: #000000;
  border: 1px solid #e2e2e2;
}

#search input::placeholder {
  font-size: 12px;
}

#search input[type="text"]:focus {
  /* width: 70%; */
  background: url(./images/icons/function-icon-004.png) no-repeat 15px 6px #fff;
  background-size: 20px;
}

/* search bar Mobile */
#search2 input[type="text"] {
  outline: none;
  background: url(./images/icons/function-icon-004.png) no-repeat 15px 6px #fff;
  background-size: 20px;
  border: 0 none;
  color: #7c7c7c;
  width: 85%;
  padding: 6px 15px 6px 40px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

[data-theme="dark-mode"] #search2 input[type="text"] {
  background: url(./images/icons/function-icon-004.png) no-repeat 15px 6px #4c4c4c;
  background-size: 20px;
  color: #aaa;
}

#search2 input::placeholder {
  font-size: 12px;
}

#search2 input[type="text"]:focus {
  /* width: 70%; */
  background: url(./images/icons/function-icon-004.png) no-repeat 15px 6px #fff;
  background-size: 20px;
}

/* 피씨화면 top-navbar */
.full-desktop {
  display: none;
}
.not-full-desktop {
  display: block;
}
@media (min-width: 1247px) {
  .full-desktop {
    display: block;
  }
  .not-full-desktop {
    display: none;
  }
  .navbar_content {
    width: 100%;
    max-width: inherit;
    margin: inherit;
    justify-content: space-between;
  }
  .navbar--left {
    display: flex;
    align-items: center;
  }
  .navbar--left form {
    width: 210px;
  }
  .navbar-list ul {
    display: flex;
    margin: 0;
    gap: 15px;
  }
  .navbar-list ul li {
    cursor: pointer;
  }

  .navbar--right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 10px;
  }
  .content-right {
    display: flex;
    gap: 10px;
  }
  .language-btn {
    padding: 0;
    gap: 5px;
    border: none;
    outline: none;
    background: inherit;
    display: flex;
    align-items: center;
  }
  ul.countryDropDownList {
    position: absolute;
    margin: 0;
    width: 171px;
    background-color: #fff;
    border-radius: 20px;
    top: 30px;
    right: 0;
    box-shadow: rgb(149 157 165 / 80%) 0px 4px 12px;
    padding: 0px 0;
    max-height: 0px;
    overflow: hidden;
    transition: 0.4s;
  }
  ul.countryDropDownList.open {
    max-height: 500px;
    padding: 10px 0;
  }
  ul.countryDropDownList li {
    display: flex;
  }

  ul.countryDropDownList li label {
    flex: 1;
    padding: 5px 10px;
    font-weight: 400;
    color: #939292;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #search input[type="text"] {
    width: 100%;
  }
}

/* style */
.d-flex {
  display: flex;
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex1 {
  flex: 1 !important;
}

.flex2 {
  flex: 2 !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.m-0 {
  margin: 0px !important;
}

.p-0 {
  padding: 0px !important;
}

.p-3 {
  padding: 3px !important;
}

/* typography */
h1 {
  font-size: 1.8rem !important;
  margin: 0 !important;
  color: #333333;
  font-weight: 800 !important;
}

[data-theme="dark-mode"] h1 {
  color: #fff;
}

/* card */
.card {
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: #444;
  position: relative;
  top: 0;
  overflow: hidden;
  margin-top: 20px;
  /*box-shadow:0px 3px 6px 0 rgba(0,0,0,0.16);*/
  box-shadow: rgb(149 157 165 / 10%) 0px 4px 4px;

  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 3px;
}

[data-theme="dark-mode"] .card {
  background: #2b2b2b;
  color: #cecece;
}

[data-theme="dark-mode"] .card:focus,
[data-theme="dark-mode"] .card:hover {
  background: #2b2b2b;
  color: #cecece;
}

.card-item {
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: #444;
  position: relative;
  top: 0;
  overflow: hidden;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.16);
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 3px;
}

.no-shadow {
  box-shadow: none !important;
}

.card-border-line {
  border: solid 1px #ddd;
}

[data-theme="dark-mode"] .card-item {
  background: #2b2b2b;
  color: #cecece;
}

.card-item:focus,
.card-item:hover {
  background: white;
  color: #444;
}

.card-item:active {
  background-color: rgba(0, 0, 0, 0.1);
}

[data-theme="dark-mode"] .card-item:focus,
[data-theme="dark-mode"] .card-item:hover {
  background: #2b2b2b;
  color: #cecece;
}

.card-top {
  display: flex;
  flex-direction: row;
  padding: 25px;
  align-items: center;
}

.card-body {
  display: flex;
  padding-top: 0px;
  padding-left: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
}

.card article {
  padding: 20px;
  display: flex;

  flex: 1;
  justify-content: space-between;
  flex-direction: column;
}

.card .thumb {
  padding-bottom: 60%;
  background-size: cover;
  background-position: center center;
}

.card p {
  /* make p grow to fill available space*/
  /* flex: 1;  */
  /* line-height: 1.4; */
}

.card span {
  color: #7f7f7f;
  font-size: 1.2rem;
}

.card .gray-span-text {
  color: gray;
  font-size: 1.3rem;
}

[data-theme="dark-mode"] .card .gray-span-text {
  color: #cecece;
}

[data-theme="dark-mode"] .card span {
  color: #cecece;
}

/* card more*/
.card .more-background {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  left: 0;
  width: 100%;
  height: 83px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(#ffffff99 0%, #ffffff 70%);
}

[data-theme="dark-mode"] .card .more-background {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  left: 0;
  width: 100%;
  height: 110px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(#2b2b2b99 0%, #2b2b2b 70%);
}

/* nocard */
.nocard-title {
  padding-top: 30px;
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.copyright {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 100;
  color: #777;
  position: relative;
  margin-top: 10px;
  align-items: center;
  text-align: center;
}

.sticky {
  position: sticky;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 500px) {
  #search input[type="text"] {
    max-width: 600px;
  }
}

/* dark/light mode */
.light-mode {
  display: none;
}

.dark-mode {
  display: none;
}

[data-theme="dark-mode"] .dark-mode {
  display: inherit;
}

[data-theme="light-mode"] .light-mode {
  display: inherit;
}

.bg-weather-item-in-card {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 10px;
}

[data-theme="dark-mode"] .bg-weather-item-in-card {
  background-color: #616161;
  color: #fff !important;
}

/* link */
.link-blue {
  color: #1085f9;
  font-weight: 500;
  font-size: 1.3rem !important;
  -webkit-tap-highlight-color: #6261615c !important;
}

.link-blue:focus,
.link-blue:hover {
  display: inline-block;
  color: #1085f9;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.link-gray {
  color: #777;
  font-weight: 600;
}

.link-gray:focus,
.link-gray:hover {
  display: inline-block;
  color: #777;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;
}

/* component */
.weekly-weather-item {
  margin-top: 14px;
  margin-bottom: 16px;
}

.main-temperature-text {
  font-size: 8rem;
  color: #000;
  font-weight: 100;
  margin-top: -10px;
}

[data-theme="dark-mode"] .main-temperature-text {
  color: #fff;
}

/* horizontal scroll */
.horizontal-scrollable {
  overflow-x: auto;
  white-space: nowrap;
  cursor: pointer;
}

/* 스크롤 숨기기 */
.horizontal-scrollable::-webkit-scrollbar {
  display: none;
}

.list-item {
  margin-right: 5px;
}

.active .list-item {
  pointer-events: none;
}

.list-item-slide-img {
  height: 150px;
}

/* scroll theme */
::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
::-webkit-scrollbar-thumb:horizontal {
  background: #bbbbbb;
  border-radius: 10px;
}

/* favorite area */
.popup-background,
.side-background {
  width: 100vw;
  height: 100vh;
  background-color: #efefef;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.2s;
}
.popup-background .popup-card,
.side-menu {
  height: calc(100% - 130px); /* 80 = margin-top + padding-bottom(x) */
  margin-top: 90px;
  position: fixed;
  width: 95%;
  margin-left: calc((100% - 1240px) / 2);
  left: 0;
  top: 0;
  max-width: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  transition: 0.4s;
}

.popup-background .popup-card .card-top {
  padding-bottom: 10px;
  justify-content: space-between;
}
.popup-background .popup-card .card-top > div {
  display: none;
}
.popup-background .popup-card .card-top img {
  width: 25px;
}
.popup-background .popup-card .card-body {
  border-top: 1px solid #e2e2e2;
  margin-left: 12px;
  margin-right: 12px;
  padding: 0;
  padding-top: 5px;
}
.popup-background .popup-card .card-body ul {
  margin: 0;
  width: 100%;
}

.popup-background .popup-card .card-body ul li {
  padding-left: 8px;
}
.popup-background .popup-card .card-body ul li > div {
  padding: 14px 0;
  display: flex;
}
.popup-background .popup-card .card-body ul li div span:first-child {
  font-size: 16px;
  font-weight: 400;
}
.popup-background .popup-card .card-body ul li div span:first-child.active {
  color: #e54f96;
}
.popup-background .popup-card .card-body ul li div span:last-child {
  font-size: 12px;
}
.popup-background .popup-card .card-body ul li div input[type="radio"] {
  display: none;
}
/*register-favorite-region*/
.popup-background .popup-card.register-favorite-region .card-top .register-favorite-region {
  display: block;
}
.popup-card.register-favorite-region .card-body {
  overflow-y: scroll;
}

.popup-background .popup-card.register-favorite-region .card-body ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 13px;
  border-bottom: 1px solid #e2e2e2;
}
.popup-background .popup-card.register-favorite-region .card-body ul li:last-child {
  border-bottom: none;
}
.popup-background .popup-card.register-favorite-region .card-body ul li div {
  flex-flow: column;
}
/*.popup-background .popup-card.register-favorite-region .card-body ul li div img{*/
.popup-background .popup-card .card-body ul li div img {
  width: 25px;
}
.popup-background .popup-card .card-body .delete-button {
  display: none;
}

/*view-favorite-region*/
.popup-background .popup-card.view-favorite-region .card-top .view-favorite-region {
  display: block;
}
.popup-background .popup-card.view-favorite-region .card-body {
  height: calc(100% - 90px);
  flex-flow: column;
  justify-content: space-between;
}
.popup-background .popup-card.view-favorite-region .card-body ul li {
  padding: 0 20px;
}
.popup-background .popup-card.view-favorite-region .card-body ul li div {
  justify-content: space-between;
}

.popup-background .popup-card.view-favorite-region .card-body ul li div label {
  display: flex;
  align-items: center;
}
.popup-background .popup-card.view-favorite-region .card-body ul li div span {
  font-size: 15px;
}

.popup-background .popup-card.view-favorite-region .card-body ul li div input[type="checkbox"] {
  position: relative;
  width: 40px;
  height: 20px;
  -webkit-appearance: none;
  background-color: #e2e2e2;
  outline: none;
  border-radius: 10px;
  /* box-shadow: inset 0 0 5px rgb(0 0 0 / 20%); */
  transition: 0.2s;
}
.popup-background .popup-card.view-favorite-region .card-body ul li div input[type="checkbox"]:checked {
  background: #f9dc9b;
}
.popup-background .popup-card.view-favorite-region .card-body ul li div input[type="checkbox"]::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  top: 0;
  left: 0;
  background-color: #fcc47a;
  /* box-shadow: 0 2px 5px rgba(0,0,0,.2); */
  transition: 0.2s;
}
.popup-background .popup-card.view-favorite-region .card-body ul li div input[type="checkbox"]:checked:before {
  left: 20px;
}

.popup-background .popup-card.delete-region .card-body ul li div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.popup-background .popup-card.delete-region .card-body ul li div input[type="radio"] {
  width: 15px;
  height: 15px;
  appearance: none;
  background-color: #bfbfbf;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0px 0px 0 2px #bfbfbf;
  display: block;
}
.popup-background .popup-card.delete-region .card-body ul li div input[type="radio"]:focus {
  outline: none;
}
.popup-background .popup-card.delete-region .card-body ul li div input[type="radio"]:checked {
  appearance: none;
  background-color: #ed7d31;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0px 0px 0 2px #ed7d31;
}
.popup-background .popup-card.delete-region .card-body .delete-button {
  display: flex;
  justify-content: center;
}
.popup-background .popup-card.delete-region .card-body .delete-button button {
  border: none;
  outline: none;
  padding: 10px 30px;
  border-radius: 20px;
  background-color: #dd64c6;
  color: #fff;
}
[data-theme="dark-mode"] .popup-background {
  background-color: #000;
}
[data-theme="dark-mode"] .popup-background .popup-card.delete-region .card-body ul li div input[type="radio"] {
  border: 3px solid #323232;
}

@media only screen and (max-width: 1305px) {
  .popup-background .popup-card,
  .side-menu {
    margin-left: 2.5%;
  }
}

/* side menu */
.side-menu .card-top {
  align-items: center;
  padding-bottom: 10px;
  justify-content: space-between;
}
.side-menu .card-top a:nth-child(1) img {
  width: 30px;
}
.side-menu .card-top a:nth-child(2) img {
  width: 20px;
}

input[type="checkbox"].custom_checkbox {
  position: relative;
  width: 40px;
  height: 20px;
  -webkit-appearance: none;
  margin: 0;
  background-color: #e2e2e2;
  outline: none;
  border-radius: 10px;
  /* box-shadow: inset 0 0 5px rgb(0 0 0 / 20%); */
  transition: 0.2s;
}
input[type="checkbox"].custom_checkbox:checked {
  background: #f9dc9b;
}
input[type="checkbox"].custom_checkbox::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  top: 0;
  left: 0;
  background-color: #fcc47a;
  /* box-shadow: 0 2px 5px rgba(0,0,0,.2); */
  transition: 0.2s;
}
input[type="checkbox"].custom_checkbox:checked::before {
  left: 20px;
}
input[type="checkbox"].custom_checkbox:focus {
  outline: none;
}

.side-menu .card-body {
  flex-flow: column;
  overflow-y: scroll;
  height: 100%;
}
.side-menu .card-body .setLanguage {
  /* flex: 1; */
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px;
}
.side-menu .card-body .setLanguage h2 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}
.side-menu .card-body .setLanguage > div {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  color: #7a7a7a;
  position: relative;
}
.side-menu .card-body .setLanguage > div button {
  border: inherit;
  background-color: inherit;
}
.side-menu .card-body .setLanguage > div button i {
  color: #aaa9a9;
  font-size: 20px;
}
/* .side-menu .card-body .setLanguage > div ul {
  position: absolute;
  margin: 0;
  width: 171px;
  background-color: #fff;
  border-radius: 20px;
  top: 30px;
  right: 0;
  box-shadow: rgb(149 157 165 / 80%) 0px 4px 12px;
  padding: 0px 0;
  max-height: 0px;
  overflow: hidden;
  transition: 0.4s;
}
.side-menu .card-body .setLanguage > div ul.open {
  max-height: 500px;
  padding: 10px 0;
}
*/
input[name="country"] {
  width: 15px;
  height: 15px;
  appearance: none;
  background-color: #bfbfbf;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0px 0px 0 2px #bfbfbf;
}
input[name="country"]:focus {
  outline: inherit !important;
}
input[name="country"]:checked {
  appearance: none;
  background-color: #ed7d31;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0px 0px 0 2px #ed7d31;
}

input[name="countrym"] {
  width: 15px;
  height: 15px;
  appearance: none;
  background-color: #bfbfbf;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0px 0px 0 2px #bfbfbf;
}
input[name="countrym"]:focus {
  outline: inherit !important;
}
input[name="countrym"]:checked {
  appearance: none;
  background-color: #ed7d31;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0px 0px 0 2px #ed7d31;
}

.side-menu .card-body .setLanguage > div ul li {
  display: flex;
}
.side-menu .card-body .setLanguage > div ul li input {
  /* display: none; */
}
.side-menu .card-body .setLanguage > div ul li label {
  flex: 1;
  padding: 5px 10px;
  font-weight: 400;
  color: #939292;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.side-menu .card-body .setLanguage > div ul li label img {
  width: 15px;
  display: none;
}
.side-menu .card-body .setLanguage > div ul li input:checked + label {
  background-color: #4472c4;
}
.side-menu .card-body .setLanguage > div ul li input:checked + label span {
  color: #fff;
}
.side-menu .card-body .setLanguage > div ul li input:checked + label img {
  display: block;
}

.side-menu .card-body .quickMenu {
  padding-top: 12px;
}
.side-menu .card-body .quickMenu ul {
  margin: 0;
}
.side-menu .card-body .quickMenu ul li:first-child {
  padding: 9px 0;
}
.side-menu .card-body .quickMenu ul li:first-child span {
  font-size: 17px;
}
.side-menu .card-body .quickMenu ul li h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #727272;
}
.side-menu .card-body .quickMenu ul li:not(:first-child) {
  padding: 12px 0;
}
.side-menu .card-body .quickMenu ul a span {
  color: #7c7c7c;
  -webkit-tap-highlight-color: #6261615c !important;
}

[data-theme="dark-mode"] .side-background {
  background: #000000;
}
[data-theme="dark-mode"] .side-menu {
  background-color: #4c4c4c;
}
[data-theme="dark-mode"] .side-menu .card-body .setLanguage > div {
  color: #b1b1b2;
}
[data-theme="dark-mode"] .side-menu .card-body .setLanguage > div ul {
  background-color: #818181;
  box-shadow: none;
}
[data-theme="dark-mode"] .side-menu .card-body .setLanguage > div ul li label {
  color: #fff;
  background: #000;
}
[data-theme="dark-mode"] .side-menu .card-body .setLanguage > div ul li label:hover {
  color: #d3d3d3;
  background-color: #4c4c4c;
}

[data-theme="dark-mode"] .side-menu .card-body .quickMenu ul li h2 {
  color: #ffffff;
}
[data-theme="dark-mode"] .side-menu .card-body .quickMenu ul a {
  color: #d3d3d3;
}

/*.seasonMenuList {
  position: absolute;
  margin: 0;
  width: 171px;
  background-color: #fff;
  border-radius: 20px;
  top: 40px;
  left: 0;
  box-shadow: rgb(149 157 165 / 80%) 0px 4px 12px;
  padding: 10px 0;
  overflow: hidden;
}*/
.seasonMenuList li img {
  width: 15px;
  height: 15px;
}
.quickMenu ul li a span {
  font-size: 17px;
}
.quickMenu .seasonMenuList li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.side-menu .card-body .quickMenu .seasonMenuList li.active > a {
  background: #4472c4;
  padding-right: 10px;
}
.side-menu .card-body .quickMenu .seasonMenuList li.active > a span {
  color: #fff;
}
.side-menu .card-body .quickMenu ul .seasonMenuList li {
  padding: 0;
}
/*.quickMenu ul .seasonMenuList a span {
  font-size: 14px;
  padding: 5px 10px;
}
.quickMenu ul > li .seasonMenuList {
  display: none;
}*/
.quickMenu ul > li.active .seasonMenuList {
  display: block;
}
.side-menu .quickMenu ul > li > a {
  -webkit-tap-highlight-color: #6261615c !important;
}

/*버튼 눌리는 효과*/
#ok_btn:active {
  /* box-shadow: inset -0.3rem -0.1rem 1.4rem #dd64c6,
    inset 0.3rem 0.4rem 0.8rem #6f6f6f; */
  cursor: pointer;
  background-color: #f581df !important;
}
.sns-icon .light-mode:active {
  filter: invert(40%) sepia(4%) saturate(62%) hue-rotate(331deg) brightness(108%) contrast(77%);
  /* filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6)); */
}
.sns-icon .dark-mode {
  filter: invert(62%) sepia(73%) saturate(23%) hue-rotate(315deg) brightness(92%) contrast(104%);
}
.sns-icon .dark-mode:active {
  filter: invert(100%) sepia(6%) saturate(247%) hue-rotate(212deg) brightness(111%) contrast(75%);
}
/* 상단 기사 */
.advertisingMySwiper .news_slide a::before,
.btm-news a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, #000000 120%);
}

/* 푸터 */
[data-theme="dark-mode"] .copyright-weather > div > span {
  color: #cecece;
}

/* overlay */
#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(242 242 242);
  z-index: 101;
  cursor: pointer;
}

/* background-icon */
.weather-background-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #dac2fe;
  background-size: 35px;
}

.weather-alpha-focused {
  background: rgba(255, 255, 255, 0.5) !important;
}

[data-theme="dark-mode"] .weather-alpha-focused {
  background: #2b2b2b00 !important;
}

.weather-alpha-item {
  background: rgba(255, 255, 255, 0.7);
}

[data-theme="dark-mode"] .weather-alpha-item {
  background: #2b2b2b60;
}

/*
.weather-alpha-item:hover,
:focus {
  background: rgba(255, 255, 255, 0.5);
}

[data-theme="dark-mode"] .weather-alpha-item:hover,
:focus {
  background: #2b2b2b00;
}
*/

/* weather icon event */
.weather-icon-focus-area:hover > .weather-icon-focus-event {
  -o-transform: translate(0, -1em) scale(1.2);
  -moz-transform: translate(0, -1em) scale(1.2);
  -webkit-transform: translate(0, -1em) scale(1.2);
  transform: translate(0, -1em) scale(1.2);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.weather-icon-focus-area:hover > .weather-icon-shadow-focus-event {
  -o-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

/* weather icon tooltip */
.weather-icon-tooltiptext {
  position: relative;
  display: none;
  width: 75px;
  background-color: #fff;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 6px 0;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

/* .weather-icon-tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40%;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-top-color: #ffffff;
  border-bottom: 0;
  border-right: 0;
  margin-left: -7.5px;
  margin-bottom: -7.5px;
} */

[data-theme="dark-mode"] .weather-icon-tooltiptext {
  color: #000 !important;
}

.weather-icon-focus-area:hover > .weather-icon-tooltiptext {
  display: flex;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

/* 첫번째 날씨 아이콘 active 효과 */
.first-active-weather-icon-area > .weather-icon-focus-event {
  -o-transform: translate(0, -1em) scale(1.2);
  -moz-transform: translate(0, -1em) scale(1.2);
  -webkit-transform: translate(0, -1em) scale(1.2);
  transform: translate(0, -1em) scale(1.2);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.first-active-weather-icon-area > .weather-icon-shadow-focus-event {
  -o-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.first-active-weather-icon-area > .weather-icon-tooltiptext {
  display: flex;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

/* map */
.map_marks .map_mark {
  position: absolute;
  width: 30px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: end;
}

.map_marks .map_mark > img {
  height: 3.2rem;
  cursor: pointer;
  transition: 0.5s;
  text-shadow: -1px 0px 0.5px rgb(0 0 0 / 50%), 0px 1px 0.5px rgb(0 0 0 / 50%), 1px 0px 0.5px rgb(0 0 0 / 50%), 0px -1px 0.5px rgb(0 0 0 / 50%);
}

.map_marks .map_mark:hover > img {
  height: 4.2rem;
}

.map_marks .map_mark > img.show {
  height: 4.2rem;
}

.map_marks .map_mark .map_mark_tooltip {
  /* display: none; */
  /* position: absolute; */
  /* width: 120px; */
  /* bottom: 50px; */
  /* left: -50px; */
  padding: 10px;
  color: #fff;
  font-weight: 500;
  border-radius: 20px;
  z-index: 2;
}
/* .map_marks .map_mark .map_mark_tooltip.show {
  display: block;
}*/
.map_marks .map_mark .map_mark_tooltip span {
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
}
.map_marks .map_mark .map_mark_tooltip p {
  margin: 0;
  font-weight: 500;
  font-size: 1.3rem;
}
/* .map_mark_tooltip::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 27%;
  border-top: 0px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 0px solid transparent;
} */
.map_guide_text div {
  position: absolute;
  bottom: 5%;
  right: 5%;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.map_guide_text div img {
  height: 47px;
  color: #789863;
}
.map_guide_text div p {
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
}
.map_guide_text div p span {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
}

/* topic item */
.topic-item-title {
  margin-top: 10px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.topic-item-date {
  font-size: 1.3rem;
  text-align: end;
  margin-bottom: 10px;
}

/* 좋은날 */
.goodday-item:not(:last-child) {
  border-right: 1px solid #ccc;
}

/* button */
.btn-gray {
  background-color: #efefef;
  border: none;
  padding: 6px 30px;
  border-radius: 20px;
  text-align: center;
  color: #1085f9;
  transition: 0.3s;
}

.btn-gray:hover {
  background-color: #dedede;
}

.btn-blue-more {
  border: none;
  background-color: #8ab3fb;
  border-radius: 20px;
  color: #fff;
  width: 140px;
  font-size: 16px;
  padding: 10px 0;
}

.btn-blue-more:hover {
  background-color: #71a5ff;
}

/* radioButtons */
label {
  /* 전역 사용 가능 */
  margin: 0 !important;
}
.radioButtons {
  /* 전역 사용 가능 */
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}
.radioButtons input {
  /* 전역 사용 가능 */
  display: none;
}
.radioButtons label:hover {
  background-color: #e0e1e2;
}
[data-theme="dark-mode"] .radioButtons label:hover {
  background-color: #484949;
}
.radioButtons label {
  /* 전역 사용 가능 */
  flex: 1;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.icon-setting-radio {
  cursor: pointer;
}

/* 메뉴 */
.btn-menu-beach {
  color: #2fb2bc;
  background-color: #aef4ed;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 5px;
  width: 100px;
  height: 30px;
}

.btn-menu-valley {
  color: #fff;
  background-color: #66c6ba;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 5px;
  width: 100px;
  height: 30px;
}

.btn-menu-hike {
  color: #fff;
  background-color: #d1b77d;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 5px;
  width: 100px;
  height: 30px;
}

/* 기상특보효과 */
.pinkBg {
  background-color: #f91e77 !important;
  background-image: linear-gradient(90deg, #f91e77, #f96bac);
}
.intro-banner-vdo-play-btn {
  height: 18px;
  width: 18px;
  text-align: center;
  margin: 0px 0 0 0px;
  border-radius: 100px;
  z-index: 1;
  position: relative;
}
.intro-banner-vdo-play-btn i {
  line-height: 56px;
  font-size: 30px;
}
.ripple {
  position: absolute;
  top: calc(50% - 46px / 2);
  left: calc(50% - 46px / 2);
  width: 46px;
  height: 46px;
  opacity: 0;
  border-radius: 100px;
  -webkit-animation: ripple 1.8s infinite;
  animation: ripple 1.8s infinite;
}

.specialReportNav label.active {
  box-shadow: rgb(210 210 210) 1px 2px 3px 2px;
}

@-webkit-keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ripple:nth-child(2) {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}
.ripple:nth-child(3) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

/* risk 예보 */
.risk-forecast-item {
  padding: 0px;
}
.risk-forecast-item:not(:last-child) {
  border-right: 1px solid #ccc;
}

/* ellipsis */
.text-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* tooltip */
.tooltip-wrap {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #7f7f7f;
  font-size: 2rem !important;
}

.tooltip-wrap .tooltiptext-right {
  visibility: hidden;
  left: 25px;
  width: 200px;
  background-color: white;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  color: #7f7f7f;
  font-size: 1.2rem;
}

.tooltip-wrap .tooltiptext-left {
  visibility: hidden;
  right: 25px;
  width: 200px;
  background-color: white;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  color: #7f7f7f;
  font-size: 1.2rem;
}

.tooltip-wrap:hover .tooltiptext-right {
  visibility: visible;
}

.tooltip-wrap:hover .tooltiptext-left {
  visibility: visible;
}

/* weather-cast 아이템 */
#weather-cast .list-item {
  margin-right: 5px;
}
#weather-cast .list-item .card-item {
  width: 130px;
  height: 170px;
}
#weather-cast .list-item .card-item .card-body {
  padding-top: 18px;
}
#weather-cast .list-item .card-item .card-body img {
  border-radius: 100%;
  width: 100%;
  height: 100%;
}
#weather-cast .list-item .card-item .card-body h1 {
  color: #414142;
}
#weather-cast .list-item .card-item .card-body p {
  font-size: 13px;
  color: #9b9b9b;
  text-align: center;
}

/* 오늘 날씨 코멘트 슬라이드 기능 */

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
  display: none;
}
.swiper-button-next,
.swiper-button-prev {
  right: 10px;
  top: 52px;
  left: auto;
  display: block;
  height: auto;
  z-index: 1;
  width: 80px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: inherit;
  left: inherit;
  width: inherit;
}

.swiper-pagination.page-info {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0px 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  color: #fff;
}
.swiper-pagination.pagination {
  position: absolute;
  bottom: 0px !important;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #f5f5f5;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: inherit;
}
.weather-comment a:focus {
  outline: none;
  outline-width: 0;
}

/* 레이더 버튼, 메뉴 */
.radar-button {
  background-color: #5e5d5e;
  width: 40px;
  height: 40px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  padding: 5px;
  cursor: pointer;
  transition: 0.5s;
}

.radar-button-show {
  /* border-bottom-right-radius: 0px; */
  /* border-bottom-left-radius: 0px; */
}

.radar-button:hover {
  background-color: #f8a641;
}

.radar-dropdown-content {
  background-color: rgb(94 93 94 / 80%);
  min-width: 110px;
  height: 0px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 4;
  border-radius: 20px;
  border-top-right-radius: 0px;
  transition: 0.5s;
}

.radar-dropdown-content a {
  color: white;
  font-size: 1.4rem;
  padding: 6px;
  text-decoration: none;
  display: block;
  transition: 0.5s;
  text-align: center;
}

.radar-dropdown-content a:hover {
  background-color: #f8a641;
  color: white;
}

.sns-icon a svg:hover {
  fill: rgba(34, 34, 34, 0.8);
}

.weekly-weather .card-body table {
  width: 100%;
  max-width: 500px;
}

.weekly-weather .card-body table tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.weekly-weather .card-body table tr.weeklyWeatherToday {
}
.weekly-weather .card-body table tr.weeklyWeatherToday td:first-child span {
  color: #000;
}
[data-theme="dark-mode"] .weekly-weather .card-body table tr.weeklyWeatherToday td:first-child span {
  color: #e8e8e8;
}
.weekly-weather .card-body table tr td {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  padding: 10px 0;
}
.weekly-weather .card-body table tr td:nth-child(1) {
  flex-basis: 15%;
}
.weekly-weather .card-body table tr td:nth-child(1) span {
  display: inline-block;
  width: 35px;
  font-size: 13px;
  white-space: nowrap;
}
.weekly-weather .card-body table tr td:nth-child(2) {
}
.weekly-weather .card-body table tr td:nth-child(2) img {
}
.weekly-weather .card-body table tr td:nth-child(2) span {
  width: 40px;
  font-size: 13px;
}
.weekly-weather .card-body table tr td:nth-child(3) {
  display: flex;
  max-width: 95px;
  width: 100%;
  justify-content: space-between;
}
.weekly-weather .card-body table tr td:nth-child(4) {
}
.weekly-weather .card-body table tr td:nth-child(4) img {
}
.weekly-weather .card-body table tr td:nth-child(4) span {
  display: inline-block;
  width: 60px;
  font-size: 13px;
}
#fineDustWeatherChartContent .chartItemBody > .d-flex p {
  /* margin: 9px 0 0 0 !important; */
}

.btn-cp-logos button {
  width: 35px;
  padding: 0;
  margin: 0;
  background: inherit;
  border: inherit;
  outline: inherit;
}
.btn-cp-logos button img {
  height: 30px;
  border-radius: 100%;
  transition: 0.2s;
}
.btn-cp-logos button img.active {
  height: 35px;
}

@media only screen and (max-width: 360px) {
  .weekly-weather .card-body table tr td:nth-child(1) span {
    width: 33px;
    font-size: 12px;
  }
  .weekly-weather .card-body table tr td:nth-child(2) span {
    font-size: 12px;
  }
  .weekly-weather .card-body table tr td:nth-child(3) {
    /* width: 70px; */
    justify-content: space-around;
  }
  .weekly-weather .card-body table tr td:nth-child(4) span {
    width: 70px;
    font-size: 12px;
  }
  .weekly-weather .card-body table tr td:nth-child(3) {
    margin-right: -10px;
  }

  .btn-cp-logos button {
    width: 25px;
    padding: 0;
    margin: 0;
    background: inherit;
    border: inherit;
    outline: inherit;
  }
  .btn-cp-logos button img {
    height: 20px;
    border-radius: 100%;
    transition: 0.2s;
  }
  .btn-cp-logos button img.active {
    height: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .weekly-weather .card-body {
    height: auto;
  }
  .weekly-weather-item {
    margin-top: 5px;
    margin-bottom: 10px;
  }
  /* .side-menu .card-body .setLanguage > div ul {
    position: fixed;
    top: 70px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    width: calc(100vw - 5%);
    height: calc(100% - 130px);
  }
  .side-menu .card-body .setLanguage > div ul.open {
    max-height: 91%;
  }
  .side-menu .card-body .setLanguage > div ul li {
    padding: 10px;
    border-bottom: 1px solid #e2e2e2;
  } */
  .popup-background .popup-card,
  .side-menu {
    margin-top: 70px;
  }
  .weekly-weather .card-body table tr td:nth-child(3) {
    margin-right: -10px;
  }
}

@media only screen and (min-width: 450px) {
  .specialReportCavasArray-img-wrap {
    height: 500px;
  }
}

.dropdown-container {
  position: relative;
  max-width: 240px;

  margin: 0 auto;
}

.dropdown-container .dropdown-menu-list {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 4px -2px rgba(0, 0, 0, 0.5);
  margin-top: 17px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  max-height: 0;
  overflow-y: scroll;
  transition: 0.2s;
  z-index: 10;
}

.dropdown-container .dropdown-menu-list::-webkit-scrollbar {
  display: none;
}

.dropdown-container .dropdown-menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  z-index: 10;
}
.dropdown-container .dropdown-menu-list a {
  text-decoration: none;
  display: block;
  color: #7f7f7f;
  font-size: 15px;
  padding: 10px;
  font-weight: 500;
  /*box-shadow: 0px 0px 4px -2px rgba(0, 0, 0, 0.5);*/
  transition: all ease-in-out 0.3s;
}
.dropdown-container .dropdown-menu-list a:hover,
.dropdown-container .dropdown-menu-list a:active,
.dropdown-container .dropdown-menu-list a:focus {
  background-color: #f5f5f5;
}

.dropdown-menu-list,
.dropdown-toggle {
  position: relative;
}
.dropdown-menu-list {
  z-index: 10;
  position: relative;
}

.dropdown-menu-list::before {
  z-index: -1;
  transform: rotate(-135deg);
  top: -4px;
  border-color: #ffffff;
  box-shadow: 1px 1px 4px -2px rgba(0, 0, 0, 0.4);
}
.dropdown-container .dropdown-toggle i {
  transition: 0.2s;
}
.dropdown-container.dropdown-open .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-open .dropdown-menu-list.dropdown-active {
  max-height: 320px;
}

.dropdown-container.dropdown-open .dropdown-toggle::before {
  transform: rotate(-135deg);
}

.dropdown-bordered .dropdown-toggle {
  border: 2px solid #000000;
  border-radius: 10px;
}
.dropdown-bordered .dropdown-toggle:hover,
.dropdown-bordered .dropdown-toggle:active,
.dropdown-bordered .dropdown-toggle:focus {
  background-color: #0979ce;
  color: #ffffff;
  border-color: #ffffff;
}

.dropdown-bordered .dropdown-menu-list {
  border: 2px solid #000000;
  border-radius: 10px;
}
.dropdown-bordered .dropdown-menu-list::before {
  border-color: #000000;
}
.dropdown-bordered .dropdown-menu-list a {
  box-shadow: none;
  border-bottom: 2px solid #000000;
}
.dropdown-bordered .dropdown-menu-list li:last-child a {
  border-bottom: 0;
}

.navbar--right .dropdown-active li:hover {
  background-color: #f5f5f5;
}
.navbar--right > div,
.navbar--right > div label,
.navbar--right > div input {
  cursor: pointer;
}
.navbar_content a {
  color: rgb(51, 51, 51);
}
[data-theme="dark-mode"] .navbar_content a {
  color: rgb(255, 255, 255);
}
[data-theme="dark-mode"] .dropdown-container .dropdown-menu-list {
  color: #fff;
  background: #000;
}

[data-theme="dark-mode"] .dropdown-container .dropdown-menu-list a:hover,
[data-theme="dark-mode"] .dropdown-container .dropdown-menu-list a:active,
[data-theme="dark-mode"] .dropdown-container .dropdown-menu-list a:focus,
[data-theme="dark-mode"] .navbar--right .dropdown-active li:hover {
  background-color: #616161;
}

.mark_tooltip:hover .tooltip-drop {
  opacity: 1;
}
.mark_tooltip:hover .tooltip-drop.tooltip-top,
.mark_tooltip:hover .tooltip-drop.tooltip-bottom {
  transform: translate(-50%, 0);
}
.mark_tooltip:hover .tooltip-drop.tooltip-left,
.mark_tooltip:hover .tooltip-drop.tooltip-right {
  transform: translate(0, -50%);
}
.mark_tooltip .tooltip-drop {
  position: absolute;
  max-width: 200px;
  width: max-content;
  opacity: 0;
  padding: 0.75rem 0.875rem;
  background-color: #008eff;
  font-size: 0.875rem;
  text-align: left;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  border-radius: 0.188rem;
  color: #fff;
  pointer-events: none;
}
.mark_tooltip .tooltip-drop::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 0.775rem solid transparent;
  border-top-color: inherit;
}

.mark_tooltip .tooltip-drop.tooltip-left,
.mark_tooltip .tooltip-drop.tooltip-right {
  top: 50%;
}
.mark_tooltip .tooltip-drop.tooltip-left:before,
.mark_tooltip .tooltip-drop.tooltip-right:before {
  top: 50%;
}

.mark_tooltip .tooltip-drop.tooltip-left {
  right: calc(100% + 0.625rem);
  transform: translate(-0.25rem, -50%);
}
.mark_tooltip .tooltip-drop.tooltip-left:before {
  left: 100%;
  transform: translate(0, -50%) rotate(-90deg);
}

.mark_tooltip .tooltip-drop.tooltip-right {
  left: calc(100% + 0.625rem);
  transform: translate(0.25rem, -50%);
}
.mark_tooltip .tooltip-drop.tooltip-right:before {
  right: 100%;
  transform: translate(0, -50%) rotate(90deg);
}
.mark_tooltip .tooltip-drop.tooltip-top,
.mark_tooltip .tooltip-drop.tooltip-bottom {
  left: 50%;
  transform: translate(-50%, 0.625rem);
}
.mark_tooltip .tooltip-drop.tooltip-top:before,
.mark_tooltip .tooltip-drop.tooltip-bottom:before {
  left: 50%;
}
.mark_tooltip .tooltip-drop.tooltip-top {
  bottom: calc(100% + 0.625rem);
}
.mark_tooltip .tooltip-drop.tooltip-top:before {
  top: 100%;
  transform: translate(-50%, 0);
}
.mark_tooltip .tooltip-drop.tooltip-bottom {
  top: calc(100% + 0.625rem);
}
.mark_tooltip .tooltip-drop.tooltip-bottom:before {
  bottom: 100%;
  transform: translate(-50%, 0) rotate(180deg);
}
