@font-face {
  font-family: VarelaRound;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/static/style/font/VarelaRound-Regular.ttf) format("truetype");
}

body {
  font-family: "VarelaRound", "sans-serif";
}
body::-webkit-scrollbar {
  display: none;
}

img {
  width: 100%;
  height: auto;
}

#app {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #5c5e63;
  margin-top: 60px;
  font-size: 16px;
}

#main {
  min-height: 88vh;
}

/* color */
.color-white {
  color: #fff;
}
.color-main {
  color: #30c66c;
}
.color-light {
  color: #5a5a5a;
}
.color-desc {
  color: #5c5e63;
}
.color-desc-light {
  color: #95979c;
}
.color-caption {
  color: #a9aaae;
}
.color-error {
  color: #ef4b4b;
}

/* background */
.bg-white {
  background-color: #fff;
}
.bg-main {
  background-color: #30c66c;
}
.bg-main-light {
  background-color: #e6f5ec;
}
.bg-light {
  background-color: #5a5a5a;
}
.bg-desc {
  background-color: #5c5e63;
}
.bg-desc-light {
  background-color: #95979c;
}
.bg-caption {
  background-color: #a9aaae;
}
.bg-caption-light {
  background-color: #f7f8f8;
}

/* text align */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* font */
.bold {
  font-weight: bold;
}

/* float */
.float-right {
  float: right;
}

/* flex */
.flex {
  display: flex;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.center {
  align-items: center;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.btn-box > *:not(:last-child) {
  margin-right: 15px;
}

/* position */
.position-abs {
  position: absolute;
}
.position-rel {
  position: relative;
}
.position-fix {
  position: fixed;
}

/* transform */
.xy-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.y-center {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.x-center {
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* border */
.border {
  border: 1px solid #f1f1f1;
}
.border-t-1 {
  border-top: 1px solid #f1f1f1;
}
.border-b-1 {
  border-bottom: 1px solid #f1f1f1;
}
.border-l-1 {
  border-left: 1px solid #f1f1f1;
}
.border-r-1 {
  border-right: 1px solid #f1f1f1;
}
.border-t-1-not-last:not(:last-child) {
  border-top: 1px solid #f1f1f1;
}
.border-b-1-not-last:not(:last-child) {
  border-bottom: 1px solid #f1f1f1;
}
.border-l-1-not-last:not(:last-child) {
  border-left: 1px solid #f1f1f1;
}
.border-r-1-not-last:not(:last-child) {
  border-right: 1px solid #f1f1f1;
}
/* radius */
.radius {
  border-radius: 10px;
}
.radius-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.radius-bottom {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* button */
.m-btn {
  display: inline-block;
  font-size: 20px;
  padding: 10px 0;
  text-align: center;
  width: 220px;
  background-color: #30c66c;
  color: #fff;
  font-weight: 400;
  border-radius: 10px;
  text-decoration-line: none;
}
.m-btn:not(.disabled):hover,
.animation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.m-btn:not(.disabled):active,
.animation-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.m-btn:not(.disabled)::after,
.animation-btn::after {
  background-color: rgba(88, 225, 143, 0.5);
  content: "";
  display: unset;
  /* inline-block; */
  height: 100%;
  width: 100%;
  border-radius: 10px;
  position: unset;
  /* absolute; */
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.m-btn:not(.disabled):hover::after,
.animation-btn:hover::after {
  display: inline-block;
  position: absolute;
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
a.m-btn:hover,
a.m-btn:active,
a.m-btn:focus {
  color: #fff;
}
/* button disabled */
.m-btn.disabled {
  background-color: #e6f5ec;
  cursor: not-allowed;
}
/* round */
.round-btn {
  display: inline-block;
  font-size: 20px;
  padding: 10px 0;
  text-align: center;
  width: 200px;
  background-color: #30c66c;
  color: #fff;
  font-weight: 400;
  border-radius: 50px;
  text-decoration-line: none;
  border: none;
}
.round-btn:hover,
.animation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.round-btn:active,
.animation-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.round-btn::after,
.animation-btn::after {
  background-color: rgba(88, 225, 143, 0.5);
  content: "";
  display: unset;
  /* inline-block; */
  height: 100%;
  width: 100%;
  border-radius: 50px;
  position: unset;
  /* absolute; */
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.round-btn:hover::after,
.animation-btn:hover::after {
  display: inline-block;
  position: absolute;
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
a.round-btn:hover,
a.round-btn:active,
a.round-btn:focus {
  color: #fff;
}
/* button style 2 */
.btn-style2 {
  padding: 5px 20px;
  color: #30c66c;
  border: 1px solid #30c66c;
  border-radius: 10px;
}
.btn-style2.error {
  padding: 5px 20px;
  color: #ef4b4b;
  border: 1px solid #ef4b4b;
}
/* button disabled */
button.disabled,
a.disabled {
  pointer-events: none;
  opacity: 0.2;
}

/* a */
a:active,
a:hover,
a:focus {
  color: #30c66c;
  text-decoration-line: none;
}
a.link:active,
a.link:hover,
a.link:focus {
  color: #30c66c;
  text-decoration-line: underline;
}

/* input */
input {
  border-radius: 10px;
  border: 1px solid #cfcfcf;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #fff;
}
input.style2 {
  border: none;
  padding-left: 25px;
  padding-right: 25px;
  box-shadow: 0px 6px 10px rgba(171, 201, 185, 0.16);
}
input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #d1d1d1;
}
input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #d1d1d1;
}
input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #d1d1d1;
}
input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #d1d1d1;
}
input:focus {
  outline: none;
}

/* textarea */
textarea {
  border-radius: 10px;
  resize: none;
}
textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #d1d1d1;
}
textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #d1d1d1;
}
textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #d1d1d1;
}
textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #d1d1d1;
}

/* ul */
ul.list-style-none {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* accordion */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0;
}
.panel {
  margin-bottom: 20px;
  background-color: transparent;
  border: none;
  border-radius: 0px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
}

/* table */
table,
td {
  border: 1px solid rgb(234, 234, 234);
}
table thead {
  background-color: rgb(241, 241, 241);
}
table thead th {
  padding: 10px 15px;
  color: #5c5e63;
}
table tbody td {
  padding: 10px 15px;
  color: #5c5e63;
}

/* overflow */
.overflow-2line {
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* spiner */
.half-circle-spinner,
.half-circle-spinner * {
  box-sizing: border-box;
}

.half-circle-spinner {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  position: relative;
}

.half-circle-spinner.center {
  margin-left: auto;
  margin-right: auto;
}

.half-circle-spinner .circle {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: calc(60px / 10) solid transparent;
}

.half-circle-spinner .circle.circle-1 {
  border-top-color: #30c66c;
  animation: half-circle-spinner-animation 1s infinite;
}

.half-circle-spinner .circle.circle-2 {
  border-bottom-color: #30c66c;
  animation: half-circle-spinner-animation 1s infinite alternate;
}

/* unfocus element */
.unfocus {
  pointer-events: none;
}

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* text align */
  .lg-text-center,
  .sm-text-center,
  .xs-text-center {
    text-align: center;
  }
  .sm-text-right,
  .xs-text-right {
    text-align: right;
  }
  /* flex */
  .flex.xs-justify-center {
    justify-content: center;
  }
  /* button */
  .m-btn {
    width: 130px;
    padding: 5px 0px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* text align */
  .lg-text-center,
  .sm-text-center {
    text-align: center;
  }
  .sm-text-right {
    text-align: right;
  }
  /* button */
  .m-btn {
    width: 130px;
    padding: 5px 0px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* text align */
  .lg-text-center {
    text-align: center;
  }
  /* button */
  .m-btn {
    font-size: 17px;
    width: 160px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* text align */
  .lg-text-center {
    text-align: center;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* text align */
  .lg-text-center {
    text-align: center;
  }
}
