:root {
  --j-pink: #eea47f;
  --blue: #1e90ff;
  --white: #ffffff;
  --black: black;
  --jblue: #00539c;
  --jlightgreen: #cdff06;
  --kakaoyellow: #f7e600;
  --jdeepblue: #013563;
}

@font-face {
  font-family: "yangjin";
  src: url("https://fastly.jsdelivr.net/gh/supernovice-lab/font@0.9/yangjin.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "LeeSeoyun";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2202-2@1.0/LeeSeoyun.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-1Thin.woff")
    format("woff");
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-2ExtraLight.woff")
    format("woff");
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff")
    format("woff");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff")
    format("woff");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff")
    format("woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff")
    format("woff");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff")
    format("woff");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-8Heavy.woff")
    format("woff");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-9Black.woff")
    format("woff");
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "SejonghospitalBold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2312-1@1.1/SejonghospitalBold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
}

* {
  font-family: "Escoredream";
  font-weight: 300;
}

a {
  text-decoration-line: none;
  color: var(--text-color);
}

g {
  stroke: var(--blue);
}

html {
  overflow-y: scroll;
}

img {
  object-fit: cover;
}

option {
  color: black;
  text-align: center;
}

input[type="checkbox" i] {
  display: none;
}

button {
  cursor: pointer;
  position: relative;
}

.note-editor.note-airframe .note-editing-area,
.note-editor.note-frame .note-editing-area {
  overflow: hidden;
  background-color: var(--white) !important;
}

.main-view {
  min-height: 100vh;
}

.w100 {
  width: 100%;
}
.space-h10 {
  height: 10px;
}
.space-h30 {
  height: 30px;
}
.space-h60 {
  height: 60px;
}
.divider-line {
  width: 100%;
  border-top: var(--jlightgreen) 3px dotted;
  margin: 10px 0 10px 0;
}
.divider-line-1 {
  width: 100%;
  border-top: var(--jlightgreen) 1px dotted;
  margin: 10px 0 10px 0;
}
.hidden {
  display: none;
}
/* loading */
#loading {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
}

.spinner {
  position: relative;
  top: 50%;
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--black);
  animation: spin 0.6s infinite linear;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  z-index: 9999;
  transition: all 0.3s;
}

.spinner-login {
  width: 16px;
  height: 16px;
  border: 2px solid var(--jblue);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.loading-login .spinner-login {
  display: inline-block;
}

.btn-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin: auto;
}

.loading-login .btn-text {
  visibility: hidden;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.container-400 {
  width: 400px;
  margin: auto;
}

.container-500 {
  width: 500px;
  margin: auto;
}

.container-w500 {
  width: 90%;
  max-width: 500px;
}

.text-border {
  z-index: 0;
  position: relative;
}
.text-border::before {
  z-index: -1;
  content: attr(data-content);
  position: absolute;
  left: 0;
  /* 글자 바깥쪽으로 나갔으면 하는 테두리 크기의 두 배 */
  -webkit-text-stroke: var(--jlightgreen);
}

.err-msg {
  color: pink;
  margin: 5px 0 5px 0;
}

.width500 {
  width: 500px;
  margin: auto;
}

.flex {
  display: flex;
  justify-content: center;
}

.indent-5 {
  padding-left: 15px;
}

.page-title {
  text-align: center;
  font-weight: 900;
  color: var(--jlightgreen);
  font-size: 2rem;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-white {
  color: antiquewhite;
}

.text-aqua {
  color: rgb(0, 102, 102);
}

.setting-title {
  color: var(--white);
  padding: 0 0 10px 0;
}

.setting-body {
  color: var(--white);
  padding: 0 0 10px 0;
  font-size: 0.9rem;
}

.text-black {
  font-size: 1.1rem;
  padding: 0 10px 0 10px;
  color: var(--black);
}

.title-pb {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  margin: 10px 0 10px 0;
}

.pb-container {
  background-color: var(--jdeepblue);
  padding: 15px;
  border-radius: 10px;
}

.pb-event {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.4rem;
}

.pb-status-verified {
  margin: 10px 0 10px 5px;
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.8rem;
  color: var(--jlightgreen);
  border: dotted 1px var(--jlightgreen);
  border-radius: 20px;
  background-color: transparent;
  padding: 0 10px 0 10px;
}

.pb-status-pending {
  margin: 10px 0 10px 5px;
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.8rem;
  color: var(--j-pink);
  border: dotted 1px var(--j-pink);
  border-radius: 20px;
  background-color: transparent;
  padding: 0 10px 0 10px;
}

.pb-status-rejected {
  margin: 10px 0 10px 5px;
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.8rem;
  color: grey;
  border: dotted 1px grey;
  border-radius: 20px;
  background-color: transparent;
  padding: 0 10px 0 10px;
}

.pb-btn-container {
  display: none;
  flex-direction: column;
  align-items: center;
}

.pb-btn {
  width: 150px;
  padding: 10px 10px 10px 10px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--jlightgreen);
  border-radius: 5rem;
  border: var(--white) 2px solid;
}

.no-record {
  color: var(--j-pink);
}

.rank-counter {
  text-align: center;
  width: 40px;
}
.rank-runner {
  width: 80px;
  align-content: center;
}
.rank-record {
  width: 80px;
  align-content: center;
}

.marathon-page {
  display: flex;
  justify-content: center;
}

.marathon-list {
  max-width: 1000px;
  width: 500px;
}

.marathon-title {
  padding: 15px 10px 20px 10px;
  background-color: var(--jlightgreen);
  border-radius: 20px 20px 0 0;
  text-align: center;
  color: var(--black);
  font-size: 1.5rem;
}

.marathon-parti {
  font-size: 1rem;
  color: var(--black);
  width: 80px;
}

.marathon-desc {
  padding: 0 10px 0 10px;
  font-size: 1rem;
  color: var(--black);
}

.marathon-dist {
  font-size: 1rem;
  color: var(--black);
  height: 1rem;
  line-height: 1rem;
  border: solid 1px var(--j-pink);
}

.empty-parti {
  color: darkred;
  padding: 0 0 0 20px;
}

.marathon-form {
  padding: 0 10px 15px 10px;
}

.marathon-btn {
  color: var(--jlightgreen);
  border: var(--jlightgreen);
  background-color: var(--jblue);
  padding: 5px 15px 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
}
.del-parti-btn {
  width: 50px;
}
.del-btn-border {
  background-color: var(--jlightgreen);
  border: solid 1px var(--blue);
  color: blue;
  cursor: pointer;
  font-size: 0.8rem;
}

.card-1 {
  width: 95%;
  margin-left: 2.5%;
  border: solid 1px var(--j-pink);
  background-color: antiquewhite;
  border-radius: 20px;
  margin-bottom: 20px;
}

.parti-sec {
  margin: 30px 0 0 0;
}

.flex-row {
  display: flex;
  width: 100%;
}

.flex-row-center {
  display: flex;
  width: 100%;
  justify-content: center;
}

.flex-row-bt {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.flex-row-item {
  font-size: 1rem;
  flex-grow: 1;
  color: var(--black);
}

.city {
  color: var(--black);
  font-size: 0.8rem;
  margin: 0;
}

.cource {
  color: var(--black);
  font-size: 0.8rem;
}

.body-1 {
  color: var(--black);
  font-size: 1.2rem;
}

.line-1 {
  width: 100%;
  height: 10px;
  border-bottom: solid 1px var(--j-pink);
}

.pagenation-container {
  display: flex;
  justify-content: center;
  width: 500px;
  text-align: center;
  margin: auto;
  padding-top: 10px;
}

.page-item {
  display: flex;
  color: var(--jlightgreen);
  padding: 0 10px 0 10px;
  font-weight: 500;
  font-size: 0.9rem;
  border: var(--jlightgreen) solid 1px;
  border-radius: 5px;
}

.page-num {
  color: var(--white);
  font-size: 0.8rem;
  padding: 0 10px 0 10px;
}

.disabled {
  pointer-events: none;
  color: grey;
  opacity: 1;
  border: var(--jlightgreen) solid 0px;
}

#menu-button {
  display: none;
  visibility: hidden;
  width: 40px;
  height: 40px;
}

#screen {
  display: none;
}

.mainbg {
  background-color: var(--jblue);
  margin: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: auto;
}

.main-view {
  min-height: 90vh;
}

footer {
  padding: 10px 0 10px 10px;
  margin: 10px 0 10px 0;
  border-top: grey solid 1px;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch; /* 모멘텀 스크롤 */
  background-color: var(--jblue);
  z-index: 9999;
  opacity: 1;
  transition: 2s;
  animation: fadeout 2s;
  animation-delay: 1s;
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.loadingImg {
  position: relative;
  margin-left: 45%;
  display: block;
  top: 50vh;
  transform: translateY(-50%);
}

.login-sns-box {
  display: flex;
  flex-direction: row;
}

.sterun-logo-m {
  text-align: center;
  padding: 20px 0 0 20px;
}

.sterun-logo-m > a > img {
  width: 200px;
}

.login-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background-color: var(--jblue);
  margin: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: auto;
}

.login-container {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 400px;
}

.login-page-top-margin {
  margin-top: 7rem;
}

.id {
  width: 100%;
  height: 2.8rem;
  padding: 5px 0 5px 5px;
  margin: 0px 0px 10px 0px;
  border-radius: 5px;
  border: grey 1px solid;
  box-sizing: border-box;
}

.pw {
  width: 100%;
  height: 2.8rem;
  padding: 5px 0 5px 5px;
  margin: 0px 0px 20px 0px;
  border-radius: 5px;
  border: grey 1px solid;
  box-sizing: border-box;
}

.login-submit {
  cursor: pointer;
  position: relative;
  color: var(--jblue);
  background-color: var(--jlightgreen);
  font-size: 1.2rem;
  font-weight: 700;
  align-items: center;
  width: 100%;
  height: 3rem;
  padding: 5px 0 5px 5px;
  margin: 0px 0px 5px 0px;
  border: grey 1px solid;
  border-radius: 5px;
}

.signup-row {
  display: flex;
}

.signup-box {
  display: flex;
  width: 140px;
  padding-right: 10px;
  justify-content: end;
  align-items: center;
  color: var(--white);
  font-size: 1rem;
}

.signup-input {
  width: 100%;
  height: 2.8rem;
  padding: 5px 0 5px 5px;
  margin: 0px 0px 10px 0px;
  border-radius: 5px;
  border: grey 1px solid;
  box-sizing: border-box;
}

.signup-btn {
  font-weight: 700;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--white);
}

.centeritem {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 40px 0 20px;
}
.info-icons {
  display: flex;
  align-items: center;
}

.lan-switch {
  color: var(--jlightgreen);
  margin: 0 5px 0 5px;
  font-size: 13px;
}

.info-icon {
  color: var(--jlightgreen);
  margin: 0 10px 0 10px;
}

.smallbox {
  width: 20px;
}

.j-nav-container {
  width: 100%;
  z-index: 100;
  display: flex;
  margin: 20px 0 0 0;
  flex-direction: column;
  align-items: center;
}

.j-nav-container-2 {
  width: 100%;
  z-index: 100;
  display: flex;
  margin: 20px 0 0 0;
  flex-direction: column;
  align-items: center;
}

.j-nav-items {
  display: flex;
  color: var(--jlightgreen);
  margin: 30px 0 20px 0;
}

.j-navbar-brand {
  display: flex;
  margin: auto;
}

.j-nav-item {
  font-size: 1.3rem;
  text-align: center;
  padding: 0 30px 0 30px;
}

.j-nav-item a {
  font-weight: 600;
}

.j-nav-item a:after {
  display: block;
  content: "";
  border-bottom: solid 1px var(--jlightgreen);
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  margin-top: -12px;
}

.nav-mobile {
  display: none;
}

.j-nav-item a:hover:after {
  transform: scaleX(1);
}
.main-img-container {
  display: flex;
  justify-content: center;
}
.main-img {
  margin: 20px 0 20px 0;
  width: 700px;
}

.about-img {
  margin: 30px 0 0 0;
  width: 500px;
}

.rights {
  margin: 20px 0 0 0;
  color: var(--jlightgreen);
  font-size: 13px;
}

.about-text {
  margin: 10px 0 0 0;
  width: 450px;
  color: var(--jlightgreen);
}

.j-nav-item-active {
  font-size: 17px;
  text-align: center;
  padding: 0 30px 0 30px;
}

.j-nav-item-active::after {
  display: block;
  content: "";
  border-bottom: solid 1px var(--jlightgreen);
  transition: transform 250ms ease-in-out;
  margin-top: -12px;
}
.login-box {
  display: flex;
  flex-direction: row;
}
.login-btn {
  font-size: 0.7rem;
  color: var(--jlightgreen);
  font-weight: 700;
  border: var(--jlightgreen) solid 2px;
  border-radius: 50px;
  padding: 10px 20px 10px 20px;
  margin-left: 20px;
}
.login-btn-mobile {
  display: none;
}
.run-submit-title {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  width: 400px;
  margin: auto;
  margin-top: 40px;
  color: var(--jlightgreen);
}
.run-submit-prev {
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: auto;
  color: var(--jlightgreen);
}
.article-submit-prev {
  width: 100%;
}
.article-previous-btn {
  margin-top: 1rem;
}
.sub-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
}
.previous-btn {
  font-size: 1rem;
  margin-top: 5px;
  margin-bottom: 10px;
}
.next-btn {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
.article-submit-title {
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  width: 800px;
  margin: auto;
  margin-top: 20px;
  color: var(--jlightgreen);
}
.article-submit-prev {
  width: 800px;
  margin: auto;
}
.article-form-container {
  max-width: 800px;
  margin: auto;
}
.run-form-container {
  width: 400px;
  margin: auto;
}
.run-sm-form {
  display: flex;
  flex-direction: column;
}
.form-control {
  margin: 20px 0 20px 0;
}
.form-label {
  width: 200px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 5px 0;
  color: var(--jlightgreen);
}
.form-label-80 {
  width: 200px;
  font-size: 0.8rem;
  font-weight: 300;
  margin: 0 0 5px 0;
  color: var(--jlightgreen);
}
.run-input {
  width: 100%;
  height: 2rem;
  border-radius: 5px;
  padding: 5px;
}
.run-input-t {
  width: 40px;
  height: 2rem;
  border-radius: 5px;
  padding-left: 5px;
}
.ms-row {
  display: flex;
  flex-wrap: wrap;
}
.ms-txt {
  font-size: 0.8rem;
  color: var(--jlightgreen);
  margin: 10px 10px 0 5px;
  width: 30px;
}
#inputMessage {
  height: 5rem;
}
.btn-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0 20px 0;
}
.submit-btn {
  height: 50px;
  width: 200px;
  padding: 0 20px 0 20px;
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 700;
  background-color: var(--jlightgreen);
  border-radius: 5rem;
  border: var(--white) 2px solid;
}
.check-submit-btn {
  width: 200px;
  height: 50px;
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 700;
  background-color: var(--jlightgreen);
  border-radius: 5rem;
  border: var(--white) 2px solid;
}
.check-submit-btn-row {
  width: 150px;
  height: 50px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 10px 0 10px;
  background-color: var(--jlightgreen);
  border-radius: 5rem;
  border: var(--white) 2px solid;
}
.btn-kor {
  height: 40px;
  padding: 0 20px 0 20px;
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 700;
  background-color: var(--jlightgreen);
  border-radius: 5rem;
  border: var(--jlightgreen) 1px solid;
}
.main-info-1 {
  display: flex;
}
.record-wrap-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.record-list-container {
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 20px 15px 20px 15px;
  background-color: var(--jdeepblue);
  border-radius: 15px;
  margin-top: 10px;
}

.record-rank-container {
  width: 500px;
  padding: 20px 15px 20px 15px;
  background-color: var(--jdeepblue);
  border-radius: 15px;
}

.btn-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.upload-btn {
  display: flex;
  background-color: var(--jlightgreen);
  color: var(--blue);
  font-weight: 700;
  margin: auto;
  padding: 15px 20px 15px 20px;
  border-radius: 5rem;
  border: var(--jlightgreen) solid 2px;
}
.upload-txt {
  font-size: 1.2rem;
  font-weight: 700;
  margin: auto;
  margin-left: 5px;
}
.record-img {
  object-fit: cover;
}
.title-date {
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
.record-3 {
  color: var(--white);
  display: flex;
  flex-direction: row;
  padding-top: 2rem;
}
.record-part-box {
  width: 120px;
  display: flex;
  flex-direction: column;
}
.distance-txt {
  color: var(--white);
  font-size: 0.6rem;
  margin-bottom: 5px;
}
.record-date {
  font-size: 0.7rem;
  margin: 0 0 5px 0;
}
.record-title {
  font-weight: 700;
}
.record-distance {
  margin-right: 30px;
  font-weight: 700;
}
.record-pace {
  margin-right: 30px;
  font-weight: 700;
}
.record-time {
  margin-right: 30px;
  font-weight: 700;
}
.record-desc {
  margin-top: 30px;
  color: var(--white);
}

.search-sum {
  display: flex;
  justify-content: space-between;
  width: 500px;
  margin: auto;
  padding-bottom: 10px;
}
.distance-sum {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--jlightgreen);
}
.month-filter {
  border-radius: 0.5rem;
  font-size: 0.8rem;
  height: 1.5rem;
  width: 60px;
  color: var(--jlightgreen);
  font-weight: 700;
  background-color: transparent;
  border: var(--jlightgreen) 2px dotted;
}
.dist-filter {
  border-radius: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.5rem;
  width: 70px;
  color: var(--jblue);
  font-weight: 700;
  background-color: transparent;
  border: var(--jblue) 2px dotted;
}
.filter-line {
  display: flex;
  width: 100px;
}
.filter-card {
  padding: 10px;
  background-color: var(--jdeepblue);
  border-radius: 15px;
}

.month-filter-txt {
  padding-left: 5px;
  font-size: 0.8rem;
  color: var(--jlightgreen);
  line-height: 2.5rem;
  padding-right: 30px;
}

.cf-check {
  display: block;
  position: absolute;
  background-color: var(--jlightgreen);
  padding: 3px 3px 0 3px;
}
.bingo-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.bingo-board {
  display: flex;
  flex-direction: column;
  margin: 30px 0 30px 0;
}
.bingo-row {
  display: flex;
  margin: auto;
}
.bingo-col {
  display: flex;
  font-size: 0.7rem;
  font-weight: 300;
  width: 100px;
  height: 100px;
  padding: 10px 5px 10px 5px;
  justify-content: center;
  align-items: center;
  border: solid var(--white) 1px;
  background-color: var(--jdeepblue);
  color: var(--white);
  word-break: keep-all;
  text-align: center;
}

.bingo-img {
  display: block;
  position: absolute;
  z-index: 100;
}
.bingo-stamp {
  width: 100px;
  height: 100px;
}
.create-bingo-btn {
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  font-weight: 700;
  margin: auto;
  margin-top: 20px;
  padding: 10px 0 10px 0;
  border: solid var(--white) 1px;
  border-radius: 10px;
  width: 130px;
}
.go-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
#kakao-share-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  background-color: var(--kakaoyellow);
  font-size: 1rem;
  color: var(--black);
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
  padding: 10px 20px 10px 20px;
  border: solid var(--white) 1px;
  border-radius: 50px;
  width: 200px;
}
#kakao-share-btn > div {
  padding-left: 5px;
}

.fade-in-up-short {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

.fade-in-up-short1 {
  opacity: 0;
  transform: translateY(5px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

.fade-in-up-short2 {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.5s;
}

.fade-in-up-3 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

.fade-in-up-5 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.5s;
}

.fade-in-up-7 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.7s;
}

.rank-container {
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 500px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
.record-col {
  display: flex;
  flex-direction: column;
}
.record-row {
  display: flex;
  align-items: center;
  color: var(--jlightgreen);
  margin: 10px 0 0 0;
}

.mg-left-10 {
  display: flex;
  align-items: center;
  color: var(--jlightgreen);
  margin: 10px 0 0 15px;
}

.record-check-table {
  color: var(--white);
  font-size: 0.9rem;
  width: 100%;
  border: 1px solid var(--jlightgreen);
  border-collapse: collapse;
}
th,
td {
  border: 1px solid var(--jlightgreen);
  border-collapse: collapse;
  padding-left: 5px;
}

.yes-btn {
  color: var(--jblue);
  background-color: var(--jlightgreen);
  font-weight: 700;
  padding: 10px 10px 10px 10px;
}
.no-btn {
  color: var(--j-pink);
  background-color: var(--white);
  font-weight: 700;
  padding: 10px 10px 10px 10px;
}
.delmodal-btn {
  height: 30px;
  width: 30px;
  border: none;
}
.bingocheck-btn {
  background-color: var(--jlightgreen);
  padding: 5px 15px 5px 15px;
  border: solid var(--blue) 1px;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 280px;
}
.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.j-nav-items > div > a {
  font-size: 1.2rem;
  font-weight: 700;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-setting {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 1000px;
  margin: auto;
}

@media (max-width: 1360px) {
  .j-nav-item {
    width: 50px;
    padding: 0 10px 0 10px;
  }
  .j-nav-items > div > a {
    font-size: 0.8rem;
  }
}

@media (max-width: 620px) {
  #screen {
    display: flex;
    width: 100%;
    height: 0px;
    transition: all 0.2s;
    background-color: var(--jlightgreen);
  }

  #mobile_menu {
    width: 100%;
    position: relative;
    left: -100%;
    transition: all 0.2s;
    z-index: 999;
    background-color: var(--white);
  }

  #menu-bundle {
    width: 100%;
    background-color: var(--jlightgreen);
  }

  #menu-button {
    display: none;
  }
  .mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* 모멘텀 스크롤 */
    background-color: var(--jblue);
    z-index: 9999;
    opacity: 1;
    transition: 3s ease;
    animation: fadeout 3s;
    animation-delay: 1s;
  }
  .container-500 {
    width: 100%;
  }

  .record-col {
    margin: 10px 10px 10px 10px;
  }

  @keyframes fadeout {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  .main-img-container {
    display: flex;
    justify-content: center;
    margin: 30px 0 30px 0;
  }
  .main-img {
    margin: 20px 0 20px 0;
    width: 90%;
  }
  .j-navbar-brand > a > img {
    display: flex;
    margin: auto;
    width: 80%;
  }

  .loadingImg {
    position: relative;
    margin-left: 38%;
    display: block;
    top: 50vh;
    transform: translateY(-50%);
  }

  .info-container {
    display: block;
    margin: 0px;
    margin: 20px 20px 0 0;
  }
  .login-btn-mobile {
    display: block;
    font-size: 0.7rem;
    color: var(--jlightgreen);
    font-weight: 700;
    border: var(--jlightgreen) solid 2px;
    border-radius: 50px;
    padding: 10px 20px 10px 20px;
    margin: 0 10px 0 10px;
  }
  .login-box-mobile {
    display: flex;
    flex-direction: row;
  }
  .login-sns-box {
    display: none;
  }

  .login-container {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: auto;
  }

  .info-icons {
    display: none;
  }

  .pagenation-container {
    width: auto;
  }

  .sterun-logo-m {
    padding: 0 0 0 20px;
  }
  .article-submit-title {
    width: 90%;
    margin: auto;
  }
  .article-form-container {
    width: 90%;
    margin: auto;
  }
  .article-submit-prev {
    width: 90%;
    margin: auto;
  }
  .run-input {
    width: 90%;
    margin: auto;
  }
  .run-submit-title {
    width: 90%;
    font-weight: 700;
    margin-top: 20px;
  }
  .run-submit-prev {
    width: 95%;
  }
  .article-previous-btn {
    margin-top: 1rem;
  }

  .sterun-logo-m > a > img {
    width: 200px;
    padding: 10px 0 0 0;
  }

  .run-form-container {
    width: 80%;
  }

  .pb-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .submenu {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vh;
    font-weight: 200;
    border-bottom: var(--white) solid 1px;
  }
  .j-nav-items {
    display: none;
  }
  .login-box {
    display: none;
  }
  .login-container {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-items: center;
  }
  .id {
    width: 100%;
  }
  .pw {
    width: 100%;
  }
  .login-submit {
    width: 100%;
  }
  .form-container {
    width: 80%;
  }
  .login-btn {
    color: var(--jblue);
    font-weight: 700;
    margin-left: 0px;
    text-align: center;
    border: 0px;
    padding: 20px;
  }
  .mobile-login-box {
    display: flex;
    flex-flow: row-reverse;
  }

  .search-sum {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 20px 10px 10px;
  }

  .distance-sum {
    padding-top: 20px;
  }

  .record-list-container {
    width: 84%;
  }
  .title-date {
    padding-left: 10px;
  }
  .record-3 {
    display: flex;
  }
  .record-part-box {
    width: auto;
    font-size: 0.8rem;
  }
  .record-desc {
    font-size: 0.7rem;
    margin-top: 10px;
  }
  .bingo-col {
    width: 60px;
    height: 60px;
    font-size: 0.6rem;
    color: var(--white);
  }
  .bingo-img {
    width: 60px;
    height: 60px;
  }
  .bingo-stamp {
    width: 60px;
    height: 60px;
  }
  .signup-box {
    width: 110px;
    font-size: 0.8rem;
    word-break: keep-all;
  }
  .distance-sum {
    font-size: 1rem;
  }
  .marathon-list {
    min-width: none;
  }
  .record-rank-container {
    width: 100%;
    padding: 0 0 0 0;
  }
}

@media (max-width: 405px) {
  .mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* 모멘텀 스크롤 */
    background-color: var(--jblue);
    z-index: 9999;
    opacity: 1;
    transition: 3s ease;
    animation: fadeout 3s;
    animation-delay: 1s;
  }

  .container-500 {
    width: 100%;
  }
  .record-col {
    margin: 10px 10px 10px 10px;
  }

  @keyframes fadeout {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }

  .loadingImg {
    position: relative;
    margin-left: 38%;
    display: block;
    top: 50vh;
    transform: translateY(-50%);
  }
  .j-navbar-brand > a > img {
    display: flex;
    margin: auto;
    width: 80%;
  }

  .main-img-container {
    display: flex;
    justify-content: center;
    margin: 30px 0 30px 0;
  }
  .main-img {
    width: 100%;
    height: 300px;
  }

  .search-sum {
    width: 100%;
  }
  .pagenation-container {
    width: 100px;
  }

  .login-box-mobile {
    display: flex;
    flex-direction: row;
  }
  .login-btn-mobile {
    display: block;
    font-size: 0.7rem;
    color: var(--jlightgreen);
    font-weight: 700;
    border: var(--jlightgreen) solid 2px;
    border-radius: 50px;
    padding: 10px 20px 10px 20px;
    margin: 0 10px 0 10px;
  }
  .nav-mobile {
    display: flex;
    flex-direction: row;
    background-color: var(--jlightgreen);
    position: fixed;
    bottom: 0;
    height: 60px;
    width: 100%;
  }
  .nav-item-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 0 0;
  }
  .menu-title-mobile {
    color: var(--jblue);
    font-weight: 700;
    font-size: 0.7rem;
  }
  .menu-icon-mobile {
    text-align: center;
  }
  .flex-gw1 {
    flex-grow: 1;
  }
  .pb-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .marathon-list {
    min-width: none;
  }
}
