#modal{
  position: fixed;
  top: 0;
  left: 0;
  background: #000000b0; /* #0000005c;*/
  color: white;
  width: 100%;
  height: 100vh;
  display: none;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  font-size: 22px;
  z-index: 10000;
}

body.on-modal {
  overflow: hidden;
}

.modal-box {
  border: 1px solid white;
  padding: 20px;
  border-radius: 10px;
  color: black;
  background-color: white;
  font-family: 'Roboto';
  font-size: 4vw;
  font-weight: 700;
}



.search-card {
  opacity: 1;
  width: 100%;
  height: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  background: #fff;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
  visibility: hidden;
  z-index: 1;
}
.search-card .row {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-color: #fff;
  z-index: 9999;
}
.search-svg {
  margin-bottom: -4px;
}
.search-line {
  width: 444.001px;
  border: none;
  border-top: 1px solid #202020;
  height: 1px;
  margin: 0;
  padding: 0;
  margin: 7px 0 0;
}
.search-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  padding: 6px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-border-radius: 90px;
  border-radius: 90px;
  border: 1.4px solid var(--gray-gray-600, #202020);
  right: 0;
}
.search-text {
  width: 85%;
  border: none;
  color: var(--gray-gray-300, grey);
  font-family: 'Metropolis Light', Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 12px;
}
.search-text:focus {
  overflow-x: scroll;
  white-space: initial;
  -o-text-overflow: unset;
  text-overflow: unset;
}
.search-close {
  width: 22px;
  height: 22px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: fixed;
  cursor: pointer;
  right: 17px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.page-wrapper.author-detail-page {
  padding-top: 110px;
}
@media screen and (max-width: 575px) {
  .search-line {
    width: 393px;
  }
  .search-close {
    top: 40%;
  }
  .search-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .search-btn {
    right: 10px;
  }
  .search-close {
    right: 0;
  }
}
@media screen and (max-width: 415px) {
  .search-card {
    position: absolute;
  }
  .search-line {
    width: 309px;
  }
  .search-close {
    display: none;
  }
  .search-text {
    width: 75%;
  }
}
