/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

/* Global */
html body {
  font-family: 'Montserrat', sans-serif!important;
  background-color: #F5F5F5;
}

/* Typography */
body h1{
  font-weight: 700;
  font-size: 2rem;
  line-height: 134%;
  color: #15141B;
  margin: 0;
}

body h2{
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 134%;
  color: #15141B;
  margin: 0;
}

body p, body input{
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 163%;
  color: #5D5F6A;
  text-decoration: none;
  margin: 0;
}

body p a{
  font-weight: 700;
  font-size: 1.125rem;
  color: #5D5F6A;
  text-decoration-line: underline;
  transition: 300ms;
}

body button{
  font-weight: 700;
  font-size: 1rem;
  line-height: 163%;
  color: #5D5F6A;
  cursor: pointer;
}

body span{
  font-weight: 500;
  font-size: 14px;
  line-height: 155%;
  color: #22262F;
}

/* Assets */
section{
  min-height: 100vh;
  padding: 80px 0;
}

body input{
  padding: 18px 24px;
  margin: 0;
  border: 1px solid #D4D4D4;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  background-color: #FAFAFA;
  color: #22262F;
  width: 100%;
}

body input::placeholder{
  color: #858585;
}

input:focus-visible{
  outline: none;
  box-shadow: none;
  border: 1px solid #D4D4D4;
}

form{
  white-space: nowrap;
  position: relative;
  width: 100%;
  max-width: 386px;
  margin: 0 auto;
}

.limit-text p{
  max-width: 518px;
}

.search-card{
  background-color: #ffffff;
  max-width: 756px;
  padding: 64px 80px 80px 80px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 140px;
  position: relative;
}

.search-btn{
  padding: 10px 40px;
  background: black;
  color: white;
  border: none;
  border-radius: 8px;
  position: absolute;
  top: 9px;
  right: 9px;
  transition: 300ms;
}

.search-btn:hover{
  background: grey;
}

#loader{
  display: none;
}

#loader img{
  margin-right: 8px;
  height: 40px;
  width: 20px;
}

lottie-player{
  max-width: 56px;
  width: auto;
  height: 40px;
  margin-left: -16px;
  margin-right: -12px;
}

.check lottie-player{
  display: none!important;
}

.check img{
  display: block!important;
}

#loader .justify-content-center .flex-column{
  width: 68px;
}

.result-block {
  background-color: #F2F2F2;
  padding: 24px;
  border-radius: 8px;
  display: none;
}

.result-block p{
  color: #15141B;
  text-align: initial;
}

.result-block a{
  color: #15141B;
}

.powered-tsl{
  position: absolute;
  justify-content: end;
  bottom: 4px;
  right: 4px;
}

.powered-tsl img{
  max-height: 20px;
  width: auto;
}

.powered-tsl span{
  font-weight: 500;
  font-size: 9px;
  line-height: 163%;
  color: #22262F; 
  margin-bottom: -8px;
  text-align: initial;
}


@media (max-width: 767.98px) {
  body h1{
    font-size: 1.25rem;
  }

  body p, body p a, body p a:hover{
    font-size: 1rem;
  }

  .search-card{
    padding: 64px 32px 80px 32px;
  }

  .powered-tsl{
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  section{
    padding: 64px 0;
  }
}