.hp-articles {
  padding: 6vh 0;
  padding-bottom: 26vh;
  position: relative;
  background-color: #EEB1A2;
}
@media only screen and (max-width: 700px) {
  .hp-articles {
    padding-bottom: 10vh;
  }
}
.hp-articles::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 175px;
  background-color: #EAF0F8;
  border-top-left-radius: 79% 21%;
  border-top-right-radius: 88% 93%;
}
@media only screen and (max-width: 700px) {
  .hp-articles::after {
    height: 35px;
  }
}
.hp-articles h2 {
  color: #1D275F;
  text-align: center;
}
.hp-articles .splide__list .splide__slide a {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: auto;
  padding: 35px 15px;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #1D275F;
  text-align: center;
  height: 180px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 24px;
}
@media only screen and (max-width: 700px) {
  .hp-articles .splide__list .splide__slide a {
    width: 75%;
  }
}
.hp-articles .splide__list .splide__slide a b {
  font-size: 25px;
  font-weight: 700;
}
.hp-articles .splide__list .splide__slide a span {
  font-size: 14px;
}
.hp-articles .splide__arrows {
  margin-top: 45px;
}
.hp-articles .splide__arrows .splide__arrow {
  background-color: #1D275F;
  opacity: 1;
  top: 65%;
  height: 3em;
  width: 3em;
}
@media only screen and (max-width: 700px) {
  .hp-articles .splide__arrows .splide__arrow {
    top: 70%;
  }
}
.hp-articles .splide__arrows .splide__arrow svg {
  fill: white;
  width: 1.8em;
  height: 1.8em;
}
.hp-articles .splide__arrows .splide__arrow--prev {
  left: -4em;
}
@media only screen and (max-width: 700px) {
  .hp-articles .splide__arrows .splide__arrow--prev {
    left: 0;
  }
}
.hp-articles .splide__arrows .splide__arrow--next {
  right: -4em;
}
@media only screen and (max-width: 700px) {
  .hp-articles .splide__arrows .splide__arrow--next {
    right: 0;
  }
}

.signup-partners {
  background: #DBE4F0;
  height: 250px;
  padding-top: 30px;
}
.signup-partners .container {
  text-align: center;
  align-content: space-between;
}
.signup-partners .container h3 {
  color: #1D275F;
}
.signup-partners .container .splide {
  margin-top: 40px;
}
.signup-partners .container .splide__slide img {
  max-width: 180px;
}

.faq-box {
  border: 1px solid #E3E3E3;
  border-radius: 6px;
  width: 100%;
  background-color: white;
  margin: 20px auto;
  max-width: 685px;
}
@media (max-width: 767px) {
  .faq-box {
    width: 94%;
  }
}
.faq-box .faq-question {
  padding: 15px 35px;
  color: #021A46;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-box .faq-question p {
  margin: 0;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}
@media (max-width: 767px) {
  .faq-box .faq-question p {
    max-width: 220px;
  }
}
.faq-box .faq-question .faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
}
.faq-box .faq-question .faq-icon span {
  width: 100%;
  height: 4px;
  background-color: #021A46;
  border-radius: 6px;
  position: absolute;
  top: 10px;
  right: 0;
  transition: 0.2s linear;
}
.faq-box .faq-question .faq-icon span:nth-child(2) {
  transform: rotate(90deg);
}
.faq-box .faq-question.active-faq .faq-icon span:nth-child(2) {
  transform: rotate(180deg);
  transition: 0.2s linear;
}
.faq-box .faq-answer {
  padding: 0 35px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: #222222;
  font-size: 16px;
}

.hp-faqs {
  background-color: #EAF0F8;
  padding-bottom: 8vh;
}
.hp-faqs h2 {
  color: #1D275F;
  text-align: center;
  margin-bottom: 5vh;
}
.hp-faqs-box {
  margin: 2.5vh auto;
  width: 80%;
}
@media only screen and (max-width: 700px) {
  .hp-faqs-box {
    width: 90%;
  }
}
.hp-faqs-box-question {
  background-color: white;
  display: flex;
  margin: auto;
  align-items: center;
  padding: 10px 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 43px;
  gap: 5%;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.hp-faqs-box-question:hover {
  cursor: pointer;
}
.hp-faqs-box-question:hover .hp-faqs-box-question-arrow {
  opacity: 1;
}
.hp-faqs-box-question-circle {
  width: 60px;
  height: 60px;
  border-radius: 70%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hp-faqs-box-question-circle img {
  max-width: 70%;
  max-height: 40px;
  margin-right: -10px;
}
.hp-faqs-box-question span {
  width: 80%;
  color: #1D275F;
  font-weight: 700;
  font-size: 20px;
}
@media only screen and (max-width: 700px) {
  .hp-faqs-box-question span {
    width: 60%;
    text-align: center;
  }
}
.hp-faqs-box-question-arrow {
  width: 40px;
  height: 40px;
  margin-right: 2%;
  opacity: 0.6;
  transition: 0.1s linear;
}
.hp-faqs-box-answers {
  display: flex;
  flex-direction: column;
  background-color: #F5F8FC;
  border-radius: 25px;
  z-index: 0;
  position: relative;
  max-height: 0px;
  overflow: hidden;
  padding: 0;
  margin-top: -45px;
  transition: 0.2s linear;
  visibility: hidden;
  padding-top: 65px;
}
.hp-faqs-box-answers a {
  width: 75%;
  text-decoration: none;
  color: #1D275F;
  font-weight: 700;
  margin: 10px auto;
}
.hp-faqs-box-answers a:hover {
  text-decoration: underline;
}
.hp-faqs-box-answers-show {
  padding-bottom: 20px;
  transition: 0.2s linear;
  visibility: visible;
}

.hp-faq-active .hp-faqs-box-question-arrow {
  transform: rotate(180deg);
  transition: 0.1s linear;
}

.signup-hero {
  background: url("/images/homepage-hero-background.svg") bottom right no-repeat, url("/images/homepage-hero-background-tl.svg") top left no-repeat;
  background-color: #EAF0F8;
  position: relative;
  padding-bottom: 45px;
  height: fit-content;
}
@media only screen and (max-width: 700px) {
  .signup-hero {
    padding-top: 25px;
  }
}
.signup-hero-con {
  display: flex;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  gap: 10%;
}
@media only screen and (max-width: 700px) {
  .signup-hero-con {
    flex-direction: column;
    padding-top: 0;
  }
}
.signup-hero-left {
  width: 50%;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 700px) {
  .signup-hero-left {
    width: 100%;
    text-align: center;
    padding-top: 0;
    margin-bottom: 50px;
  }
}
.signup-hero-left img {
  max-width: 100%;
}
@media only screen and (max-width: 700px) {
  .signup-hero-left img {
    margin: auto;
    margin-bottom: 50px;
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .signup-hero-left h1 {
    font-size: 25px;
    margin-bottom: 50px;
    text-align: left;
    margin: 0px 10% 15% 10%;
  }
}
.signup-hero-left h3 {
  color: #1D275F;
  font-size: 35px;
}
@media only screen and (max-width: 700px) {
  .signup-hero-left h3 {
    font-size: 20px;
  }
}
.signup-hero-left p {
  color: #878CA8;
  font-weight: bold;
  margin-bottom: 45px;
}
@media only screen and (max-width: 700px) {
  .signup-hero-left p {
    margin-bottom: 25px;
    display: none;
  }
}
.signup-hero-left-btn {
  color: white;
  text-decoration: none;
  border-radius: 24px;
  padding: 15px 45px;
  font-weight: bold;
}
@media only screen and (max-width: 700px) {
  .signup-hero-left-btn {
    margin: auto;
  }
}
.signup-hero-left-btn:hover {
  background-color: #049879 !important;
}
.signup-hero-left-btn-con {
  margin-top: -130px;
  margin-bottom: 65px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 700px) {
  .signup-hero-left-btn-con {
    margin: auto;
    text-align: center;
  }
}
.signup-hero-right {
  width: 50%;
  min-height: 507px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .signup-hero-right {
    width: 90%;
    min-height: unset !important;
    margin-left: auto;
    margin-right: auto;
  }
}
.signup-hero-right-lead-form {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 80%;
  background: transparent linear-gradient(180deg, #DBE4F0 0%, #E9EEF5 100%) 0% 0% no-repeat padding-box;
  box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
}
.signup-hero-right-lead-form .top-square {
  position: absolute;
  background: #DBE4F0;
  top: -29px;
  height: 48px;
  width: 150px;
  border-radius: 10px;
  text-align: center;
  padding: 7px;
}
.signup-hero-right-lead-form .loan-amount-container {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  background: white;
  width: 90%;
  align-self: center;
  padding: 10px;
  border-radius: 10px;
}
.signup-hero-right-lead-form .loan-amount-container .value-group {
  display: flex;
  justify-content: space-between;
}
.signup-hero-right-lead-form .loan-amount-container .loan-amount {
  display: flex;
  justify-content: space-between;
}
.signup-hero-right-lead-form .loan-amount-container .loan-amount .slider-amount {
  width: 200px;
  border: 2px solid #EC5D35;
  text-align: center;
}

.signup-loan-list {
  display: flex;
  flex-direction: column;
  background: #EAF0F8;
}
.signup-loan-list::-webkit-scrollbar {
  height: 5px;
}
.signup-loan-list::-webkit-scrollbar-thumb {
  background: #1D275F;
  border-radius: 5px;
}
@media only screen and (max-width: 700px) {
  .signup-loan-list {
    overflow-x: scroll;
  }
}
.signup-loan-list .loan-list-container {
  align-self: center;
  width: 50%;
  margin: 50px 0px;
}
@media only screen and (max-width: 700px) {
  .signup-loan-list .loan-list-container {
    width: 950px;
    align-self: unset;
  }
}
.signup-loan-list .loan-list-container .list-header {
  width: 100%;
  display: flex;
  background: #1D275F;
  border-radius: 10px 10px 0px 0px;
  padding: 16px 0px;
}
.signup-loan-list .loan-list-container .list-header span {
  width: 20%;
  color: white;
  text-align: center;
}
.signup-loan-list .loan-list-container .loan-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  background: #DBE4F0;
  margin-top: 5px;
  height: 90px;
  align-items: center;
  text-decoration: none;
}
.signup-loan-list .loan-list-container .loan-container span {
  width: 20%;
  color: #1D275F;
  text-align: center;
}
.signup-loan-list .loan-list-container .loan-container span img {
  max-width: 140px;
}
.signup-loan-list .loan-list-container .loan-container:nth-last-child(1) {
  border-radius: 0px 0px 10px 10px;
}

.step-by-step {
  padding: 20px;
  background: #DBE4F0;
  text-align: center;
}
.step-by-step-headline {
  color: #1D275F;
}
.step-by-step .step-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.step-by-step .step-container .step {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  position: relative;
  height: 200px;
  justify-content: center;
}
@media only screen and (max-width: 700px) {
  .step-by-step .step-container .step {
    width: 100%;
    gap: 10px;
    height: 150px;
  }
}
.step-by-step .step-container .step .step-before {
  width: 3px;
  background: #C6D3E5;
  position: absolute;
  height: 127px;
  top: -63px;
}
.step-by-step .step-container .step .step-before.active {
  background: #90A6C3;
  transform-origin: center;
  transition: 0.1s linear;
}
@media only screen and (max-width: 700px) {
  .step-by-step .step-container .step .step-before {
    height: 90px;
    top: -45px;
  }
}
.step-by-step .step-container .step .image-container {
  display: flex;
  justify-content: flex-end;
  width: 33%;
}
@media only screen and (max-width: 700px) {
  .step-by-step .step-container .step .image-container {
    width: 33%;
  }
}
.step-by-step .step-container .step .image-container.active {
  transform: scale(1.105);
  transform-origin: center;
  transition: 0.1s linear;
}
.step-by-step .step-container .step .image-container img {
  max-width: 200px;
}
@media only screen and (max-width: 700px) {
  .step-by-step .step-container .step .image-container img {
    max-width: 100%;
  }
}
.step-by-step .step-container .step.count-container {
  width: 33%;
}
.step-by-step .step-container .step-count {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C6D3E5;
  border-radius: 50px;
  width: 55px;
  height: 55px;
  color: white;
  font-size: 27px;
  font-weight: bold;
}
.step-by-step .step-container .step-count.active {
  background: #90A6C3;
}
.step-by-step .step-container .step-text {
  color: #1D275F;
  width: 33%;
  text-align: start;
}
.step-by-step .step-container .step-text.active {
  font-weight: bold;
}

.backdrop {
  background: #D8DFED;
}

.signup-categories {
  background: #EAF0F8;
  border-bottom-right-radius: 21% 35%;
  text-align: center;
  padding-bottom: 70px;
}
.signup-categories-link {
  background: white;
  height: 150px;
  width: 88%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  margin: 10px auto 10px auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1D275F;
  font-weight: 500;
  font-size: 20px;
}
@media only screen and (max-width: 700px) {
  .signup-categories-link {
    width: 60%;
  }
}
.signup-categories-link-circle {
  border-radius: 70px;
  height: 70px;
  width: 70px;
  position: relative;
}
.signup-categories-link img {
  position: absolute;
  max-width: 50px;
  top: 27px;
  right: -14px;
}
.signup-categories h3 {
  color: #1D275F;
  padding: 80px 0px 5px 0px;
}
.signup-categories .splide {
  margin: 0 auto;
}
.signup-categories .splide__arrows .splide__arrow {
  background: #1D275F;
  opacity: 1;
  margin: 0px -10%;
  height: 30px;
  width: 30px;
}
.signup-categories .splide__arrows .splide__arrow svg {
  fill: #EAF0F8;
}

.signup-about {
  padding: 10vh 0;
  position: relative;
  background: #D8DFED;
}
@media only screen and (max-width: 700px) {
  .signup-about {
    padding-top: 10vh;
  }
}
.signup-about-con {
  display: flex;
  position: relative;
  height: fit-content;
}
@media only screen and (max-width: 700px) {
  .signup-about-con {
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
  }
}
.signup-about-left {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.signup-about-left img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 700px) {
  .signup-about-left img {
    max-width: 60%;
    margin-left: -20%;
  }
}
@media only screen and (max-width: 700px) {
  .signup-about-left {
    width: 90%;
  }
}
.signup-about-right {
  width: 60%;
  padding: 0 5%;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1D275F;
  display: flex;
  flex-direction: column;
}
.signup-about-right p {
  font-size: 15px;
}
@media only screen and (max-width: 700px) {
  .signup-about-right {
    width: 100%;
    align-items: center;
  }
}
.signup-about .about-btn {
  text-align: center;
  width: 60%;
  padding: 15px;
  border-radius: 30px;
  color: white;
  background: linear-gradient(180deg, #1d275f, #7C819F 100%);
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  .signup-about .about-btn {
    position: absolute;
    bottom: -80px;
  }
}

.slider-labels {
  display: flex;
  width: 90%;
  margin: auto;
  justify-content: space-between;
  margin-top: -17px;
  margin-bottom: 0px;
}
.slider-labels span {
  font-size: 14px;
  opacity: 0.6;
}

.signup {
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 6px 2px 5px 0px #999;
  opacity: 1;
  background: linear-gradient(180deg, #DBE4F0, #E9EEF5 100%);
  width: 80%;
  margin: auto;
  padding-bottom: 5px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  position: relative;
}
@media only screen and (max-width: 700px) {
  .signup {
    width: 90%;
  }
}
.signup-header {
  background-color: #DBE4F0;
  color: #1D275F;
  padding: 10px 0;
  text-align: center;
  font-size: 20px;
  border-radius: 12px 12px 0 0;
  width: 40%;
  position: absolute;
  right: 249px;
  top: -42px;
}
@media only screen and (max-width: 700px) {
  .signup-header {
    right: 40%;
    width: 60%;
  }
}
.signup .amount-container {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  width: 90%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.signup-amount {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 90%;
  margin: auto;
  align-items: center;
  margin-top: 20px;
}
@media only screen and (max-width: 700px) {
  .signup-amount {
    flex-direction: column;
  }
}
.signup-amount-input {
  border: 1px solid #EC5D35;
  color: rgb(29, 39, 95);
  background-color: transparent;
  border-radius: 4px;
  width: 177px;
  height: 40px;
  display: flex;
  align-content: center;
  outline: 0px;
  padding: 10px 15px;
  justify-content: center;
}
@media only screen and (max-width: 700px) {
  .signup-amount-input {
    width: 90%;
    margin-bottom: 5px;
  }
}
.signup-amount-input input {
  border: none;
  outline: none;
  max-width: 85px;
  font-weight: 600;
  font-size: 20px;
  background: transparent !important;
}
.signup-amount-input .kr {
  font-weight: 600;
}
.signup .repayment-period-container {
  background: white;
  width: 90%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  margin-top: 19px;
  padding: 15px 10px;
  gap: 5px;
  position: relative;
  height: 95px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.signup .repayment-period-container label {
  padding-left: 9px;
}
.signup-repayment-period {
  background: white;
  width: 90%;
  padding: 5px 15px;
  border-radius: 5px;
  outline: 1px solid #EC5D35;
  align-self: center;
  position: absolute;
  z-index: 1;
  top: 45px;
  cursor: pointer;
}
.signup-repayment-period img {
  position: absolute;
  right: 10px;
  top: 13px;
}
.signup-repayment-period img.rotate {
  transform: rotate(180deg);
  transition: 0.1s linear;
}
.signup-repayment-period-list {
  display: none;
  list-style: none;
  background-color: white;
  width: 100%;
  border-top: none;
  right: -1px;
  border-radius: 0 0 5px 5px;
}
.signup-repayment-period-list li {
  margin: 4px;
  cursor: pointer;
}
.signup-repayment-period-list li:hover {
  transform: scale(1.105);
  transform-origin: center;
  transition: 0.1s linear;
}
.signup-repayment-period .show-list {
  display: block;
}
.signup-input {
  display: flex;
  width: 90%;
  margin-top: 19px;
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background: white;
  border-radius: 5px;
  border: 1px solid #A9BCD5;
}
.signup-input img {
  max-width: 23px;
  margin-left: 5px;
}
.signup-input .error-label {
  position: absolute;
  bottom: -15px;
  left: 5px;
  color: red;
  font-size: 11px;
}
.signup-input-name {
  color: #1D275F;
  font-size: 14px;
  margin-bottom: 2px;
}
.signup-input-name span {
  color: #EC5D35;
  font-weight: bold;
}
.signup-input input {
  border-radius: 6px;
  outline: none;
  padding: 10px 10px;
  font-size: 12px;
  border: 0px;
  width: 100%;
}
.signup-input input::-webkit-outer-spin-button,
.signup-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.signup-input input[type=number] {
  -moz-appearance: textfield;
}
.signup-consent {
  width: 90%;
  margin-top: 19px;
}
.signup-consent-label {
  font-size: 11px;
  opacity: 0.7;
  margin-left: 25px;
}
.signup .check {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  user-select: none;
  width: 40px;
}
.signup .check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0px;
  width: 0px;
}
.signup .check span {
  position: absolute;
  border-radius: 2px;
  top: 2px;
  left: 0px;
  height: 20px;
  width: 20px;
}
.signup-btn {
  display: flex;
  border: 0;
  outline: 0;
  margin: 15px auto !important;
  width: 50%;
  font-weight: 600;
  border-radius: 20px;
  background: linear-gradient(180deg, #0CC177 0%, #1F9B69 100%);
  padding: 10px 0px 10px 9px;
  gap: 5px;
}
@media only screen and (max-width: 700px) {
  .signup-btn {
    width: fit-content;
  }
}
.signup-btn span {
  color: white;
  white-space: nowrap;
}
.signup-btn img {
  max-width: 30px;
}
@media only screen and (max-width: 700px) {
  .signup-btn img {
    margin-right: 5px;
  }
}
.signup-btn:hover {
  background: #1F9B69;
}

.rc-slider {
  position: relative;
  height: 25px;
  padding: 5px 0;
  width: 90%;
  margin: 10px auto;
  border-radius: 6px;
  -ms-touch-action: none;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rc-slider-rail {
  position: absolute;
  width: 100%;
  background-color: #A9BCD5;
  height: 5px;
  border-radius: 6px;
}

.rc-slider-track {
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 6px;
  background-color: #EC5D35;
}

.rc-slider-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
  cursor: -webkit-grab;
  margin-top: -9px;
  cursor: grab;
  border-radius: 25px;
  -ms-touch-action: pan-x;
  touch-action: pan-x;
  background-color: #EC5D35;
}

.rc-slider-handle:focus {
  outline: none;
}

.rc-slider-handle:active {
  box-shadow: 0 0 0 10px rgba(38, 128, 235, 0.2);
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}

.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999;
}

.rc-slider-mark-text-active {
  color: #666;
}

.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 15px;
  background: transparent;
}

.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}

.rc-slider-dot-active {
  border-color: #96dbfa;
}

.rc-slider-dot-reverse {
  margin-left: 0;
  margin-right: -4px;
}

.rc-slider-disabled {
  background-color: #e9e9e9;
}

.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}

.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  border-color: #ccc;
  box-shadow: none;
  background-color: #fff;
  cursor: not-allowed;
}

.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}

.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}

.rc-slider-vertical .rc-slider-rail {
  height: 100%;
  width: 4px;
}

.rc-slider-vertical .rc-slider-track {
  left: 5px;
  bottom: 0;
  width: 4px;
}

.rc-slider-vertical .rc-slider-handle {
  margin-left: -5px;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}

.rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px;
}

.rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px;
}

.rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px;
}

.rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px;
}

.rc-slider-tooltip {
  display: none;
}

.slider-ripple .rc-slider-handle {
  z-index: 1;
}
.slider-ripple .rc-slider-handle::after {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  border: 8px solid rgba(29, 39, 95, 0.9);
  border-radius: 100%;
  z-index: -1;
  animation-name: ripple;
  animation-duration: 1.8s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  width: 4px;
  height: 4px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
  border-color: rgba(29, 39, 95, 0.6);
}
.slider-ripple .rc-slider-handle::before {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  border: 8px solid rgba(29, 39, 95, 0.9);
  border-radius: 100%;
  z-index: -1;
  animation-name: ripple;
  animation-duration: 1.8s;
  animation-delay: 0.21s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  width: 4px;
  height: 4px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
  border-color: rgba(29, 39, 95, 0.6);
}

.value-ripple::after {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  border: 8px solid rgba(29, 39, 95, 0.9);
  border-radius: 100%;
  z-index: -1;
  animation-name: ripple;
  animation-duration: 1.8s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  width: 4px;
  height: 4px;
  bottom: 0px;
  left: 0px;
  border-color: rgba(29, 39, 95, 0.6);
  margin-left: -1px;
}
.value-ripple::before {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  border: 8px solid rgba(29, 39, 95, 0.9);
  border-radius: 100%;
  z-index: -1;
  animation-name: ripple;
  animation-duration: 1.8s;
  animation-delay: 0.3s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  width: 4px;
  height: 4px;
  bottom: 0px;
  left: 0px;
  border-color: rgba(29, 39, 95, 0.6);
  margin-left: -1px;
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(2, 2, 2);
  }
}
.userinfo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.usericon {
  background-image: url(../images/user.svg);
  background-position: 13px center;
  background-repeat: no-repeat;
  padding: 10px 5px 10px 10px;
  text-indent: 27px;
}

.emailicon {
  background-image: url(../images/emailalt.svg);
  background-position: 13px center;
  background-repeat: no-repeat;
  padding: 10px 5px 10px 10px;
  text-indent: 27px;
}

.phoneicon {
  background-image: url(../images/telephone-fill.svg);
  background-position: 13px center;
  background-repeat: no-repeat;
  padding: 10px 5px 10px 10px;
  text-indent: 27px;
}

.kr {
  display: flex;
  align-self: center;
  color: #1D275F;
}

.stronger-text {
  font-weight: bold;
}

.arrow-button {
  width: 10px;
  margin: 0 10px;
  transition: all 0.2s linear 0s;
}

.col-xs-15:hover {
  background-color: #05B56E;
}
.col-xs-15:hover .arrow-button {
  transition: all 0.2s linear 0s;
  margin-left: 18px;
}

.checkmark {
  border: 1px solid #CCCCCC;
  width: 20px;
  height: 20px;
}

.errorborder {
  border: 1px solid red !important;
}

.error-input {
  border: 1px solid red !important;
}

.errorlabel {
  color: red !important;
  opacity: 1 !important;
}

.validated {
  border: 1px solid #08C177 !important;
  border-radius: 6px;
}

.text-input {
  width: 100%;
  border: 1px solid #E3E3E3;
  overflow: visible;
}

.check input:checked ~ .checkmark {
  background-color: #08C177;
  border: 1px solid #08C177;
  border-radius: 2px;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: -2px !important;
  margin-left: auto;
  margin-bottom: auto;
  margin-right: auto;
  margin-top: auto;
  width: 15px;
  height: auto;
}

.check input:checked ~ .checkmark:after {
  display: block;
}

.check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}