@charset "UTF-8";
@import url("https://unpkg.com/pretendard@1.3.9/dist/web/static/pretendard.css");
* {
  margin: 0;
  padding: 0;
}

*,
:after,
:before {
  box-sizing: border-box;
}

:root {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  overflow-wrap: break-word;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

:focus {
  outline: 2px solid #88c1fb;
  border-radius: 4px;
}

html,
body {
  font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

fieldset,
li,
img,
input {
  border: 0;
  vertical-align: top;
}

textarea,
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
textarea:focus,
input:focus {
  outline: 1px dotted #88c1fb;
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #C1C8D0;
}
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: #C1C8D0;
}
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: #C1C8D0;
}
textarea:-moz-placeholder,
input:-moz-placeholder {
  color: #C1C8D0;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a:focus, a:active, a:hover {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul,
ol,
li {
  list-style: none;
}

i,
em {
  font-style: normal;
}

.blind {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  font-size: 1px;
  line-height: 100px;
  white-space: nowrap;
}

/***** variables *****/
/***** sprite *****/
/***** mixin *****/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
table,
th,
td,
form,
fieldset,
legend,
textarea,
input,
select,
textarea,
button,
img,
pre,
a {
  color: #222;
  font-family: Pretendard, AppleSDGothicNeo-Regular, "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-size: 14px;
  line-height: 1.43em;
  text-rendering: geometricPrecision;
}

.is-mobile {
  display: none;
}
@media screen and (max-width: 1008px) {
  .is-mobile {
    display: block;
  }
}

.is-desktop {
  display: block;
}
@media screen and (max-width: 1008px) {
  .is-desktop {
    display: none;
  }
}

:root {
  --white: #fff;
  --black: #222;
  --gray1: #F6F7FA;
  --gray2: #E0E3E7;
  --gray3: #EFF1F5;
  --gray-dot: #BBC0C5;
  --blt-red: #FC6363;
  --blt-yellow: #FFE202;
}

@keyframes fill-bar {
  0%, 33.3% {
    width: 0;
  }
  66.3% {
    width: 100%;
  }
}
body {
  background-color: var(--black);
}

.inner {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  padding: 0 25px;
}

header {
  position: relative;
  background-color: var(--white);
}
header .inner {
  position: relative;
  height: 60px;
}
header .logo {
  position: absolute;
  top: calc(50% - 16px);
  left: 20px;
}
header .logo .btn-logo {
  display: inline-block;
  padding: 4px 17px 4px 4px;
  vertical-align: top;
}
header .logo .btn-logo::before {
  display: block;
  width: 70px;
  height: 24px;
  background: url(https://static.teamblind.com/img/bleet/sp-bleet.png) no-repeat;
  background-size: 420px 350px;
  background-position: -84px -7px;
  content: "";
}

.blt-popular {
  overflow: hidden;
  position: relative;
  background-color: var(--white);
}
.blt-popular .main {
  padding: 40px 20px 30px;
  border: 1px solid var(--gray2);
  border-radius: 10px;
}
.blt-popular .title .percent {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.24em;
  font-weight: 900;
  letter-spacing: -1px;
}
.blt-popular .title .percent .number {
  color: var(--blt-red);
}
.blt-popular .message {
  margin-top: 25px;
}
.blt-popular .message p {
  display: inline-block;
  padding: 6px 10px;
  background-color: var(--gray1);
  border: 1px solid var(--gray2);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.33em;
}
.blt-popular .graph-wrap {
  position: relative;
  margin-top: 20px;
}
.blt-popular .graph-wrap .graph-area .graph-mask-wrap {
  position: relative;
  height: 25px;
  background-color: var(--gray1);
  border-radius: 20px;
}
.blt-popular .graph-wrap .graph-area .graph-mask-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(1% * var(--bar-percentage) + 2px);
  height: 100%;
  background: linear-gradient(90deg, #FF721B 0%, #FF287B 100%);
  border-radius: 20px;
  animation: fill-bar 1.5s ease-in;
}
.blt-popular .graph-wrap .graph-area .graph-line {
  position: relative;
  height: 9px;
  margin-top: 20px;
  padding-top: 4px;
}
.blt-popular .graph-wrap .graph-area .graph-line::before {
  display: block;
  height: 5px;
  border-top: 1px solid var(--gray2);
  content: "";
}
.blt-popular .graph-wrap .graph-area .graph-line .graph-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.blt-popular .graph-wrap .graph-area .graph-line .graph-dots em {
  position: absolute;
  top: 0;
  width: 9px;
  height: 9px;
  background-color: var(--gray2);
  border-radius: 50%;
}
.blt-popular .graph-wrap .graph-area .graph-line .graph-dots em:nth-child(1) {
  left: 0;
}
.blt-popular .graph-wrap .graph-area .graph-line .graph-dots em:nth-child(2) {
  left: calc(25% - 4px);
}
.blt-popular .graph-wrap .graph-area .graph-line .graph-dots em:nth-child(3) {
  left: calc(50% - 4px);
}
.blt-popular .graph-wrap .graph-area .graph-line .graph-dots em:nth-child(4) {
  left: calc(75% - 4px);
}
.blt-popular .graph-wrap .graph-area .graph-line .graph-dots em:nth-child(5) {
  left: calc(100% - 9px);
}
.blt-popular .graph-wrap .graph-area .graph-line .graph-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: var(--gray2);
  border-radius: 50%;
  box-shadow: var(--gray2) 66px 0, var(--gray2) 137px 0, var(--gray2) 208px 0, var(--gray2) 274px 0;
}
.blt-popular .graph-wrap .code-area {
  margin-top: 32px;
  padding: 15px;
  background-color: var(--gray1);
  border-radius: 10px;
  text-align: center;
}
.blt-popular .graph-wrap .code-area .code {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
}
.blt-popular .graph-wrap .lst-area {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray3);
}
.blt-popular .graph-wrap .lst-area li {
  position: relative;
  margin-top: 5px;
  padding-left: 8px;
  font-size: 12px;
  line-height: 1.33em;
}
.blt-popular .graph-wrap .lst-area li::before {
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 2px;
  height: 2px;
  background-color: var(--gray-dot);
  content: "";
}
.blt-popular .check {
  margin-top: 30px;
  text-align: center;
}
.blt-popular .check .title {
  font-size: 18px;
  font-size: 18px;
  line-height: 1.33em;
  font-weight: 400;
}
.blt-popular .check .button__check {
  display: block;
  height: 50px;
  margin-top: 20px;
  background-color: var(--blt-yellow);
  border-radius: 4px;
  color: var(--black);
  font-size: 15px;
  line-height: 50px;
}
.blt-popular .check .button__check:hover {
  background-color: rgba(255, 226, 2, 0.8);
}
.blt-popular .invite {
  position: relative;
  margin-top: 25px;
  background-color: var(--black);
}
.blt-popular .invite .inner {
  padding-top: 26px;
  padding-bottom: 26px;
}
.blt-popular .invite p {
  padding-right: 80px;
  font-size: 14px;
  color: var(--white);
  text-align: left;
}
.blt-popular .invite p strong {
  color: var(--blt-yellow);
  font-weight: 900;
}
.blt-popular .invite p::before {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 70px;
  height: 58px;
  background: url(https://static.teamblind.com/img/bleet/img-bmoney.png) no-repeat 50% 50%;
  background-size: 70px 58px;
  content: "";
}/*# sourceMappingURL=bleet-popular.css.map */