body {
  background-color: #EEEEFF;
}

#company-ranking {
  background-color: #FBFBFF;
  min-height: 500px;
  width: 100%;
  padding-top: 50px;
  position: relative;
  z-index: 1;
}
#company-ranking #best-company {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}
#company-ranking #popular-company {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EEEEFF;
  padding-bottom: 50px;
}
#company-ranking #popular-company .header {
  text-align: right;
}
@media (max-width: 600px) {
  #company-ranking #popular-company .header {
    text-align: center;
  }
}
#company-ranking .ranking-wrapper {
  width: -moz-fit-content;
  width: fit-content;
}
#company-ranking .ranking-wrapper .header {
  color: #8C9AD7;
  font-weight: 800;
  font-size: 1.4em;
  padding: 20px 0;
}
@media (max-width: 600px) {
  #company-ranking .ranking-wrapper .header {
    text-align: center;
  }
}
#company-ranking .ranking-wrapper .ranking-companies {
  display: flex;
  gap: 25px;
}
#company-ranking .ranking-wrapper .ranking-companies .ranking-company {
  width: 180px;
  height: 240px;
  position: relative;
  background-color: #FBFBFF;
  border-radius: 10px;
  border: 2px solid #C6C6F4;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
#company-ranking .ranking-wrapper .ranking-companies .ranking-company .logo {
  width: 100%;
  height: auto;
  padding: 20px;
}
#company-ranking .ranking-wrapper .ranking-companies .ranking-company .logo img {
  width: 100%;
  height: auto;
}
#company-ranking .ranking-wrapper .ranking-companies .ranking-company .name {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 800;
  height: 100%;
}
#company-ranking .ranking-wrapper .ranking-companies .ranking-company .info {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #C6C6F4;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FBFBFF;
  font-weight: 700;
}
#company-ranking .ranking-wrapper .ranking-companies .ranking-company .info .icon {
  font-size: 1.5em;
  padding: 20px;
}
@media (max-width: 1000px) {
  #company-ranking .ranking-wrapper .ranking-companies .ranking-company {
    width: 140px;
    height: 180px;
  }
}
@media (max-width: 850px) {
  #company-ranking .ranking-wrapper .ranking-companies .ranking-company {
    width: 130px;
    height: 160px;
  }
}
@media (max-width: 700px) {
  #company-ranking .ranking-wrapper .ranking-companies .ranking-company {
    width: 100px;
    height: 140px;
  }
}
#company-ranking .ranking-wrapper .ranking-companies .ranking-company:hover {
  cursor: pointer;
}
#company-ranking .ranking-wrapper .ranking-companies .ranking-company:hover .info {
  display: flex;
}
@media (max-width: 850px) {
  #company-ranking .ranking-wrapper .ranking-companies {
    gap: 10px;
  }
}
@media (max-width: 700px) {
  #company-ranking .ranking-wrapper .ranking-companies {
    flex-wrap: wrap;
    justify-content: center;
  }
}

#search-container {
  width: 100%;
  background-color: #FBFBFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
#search-container #search-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px 0;
}
#search-container #search-wrapper .header {
  color: #414141;
  font-weight: 800;
  font-size: 1.4em;
  padding: 20px 0;
  text-align: right;
}
#search-container #search-wrapper #search-form {
  width: 800px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background-color: #EEEEFF;
  border-radius: 15px;
  padding: 20px;
  box-sizing: content-box;
}
#search-container #search-wrapper #search-form .city-input {
  width: 400px;
}
#search-container #search-wrapper #search-form .city-input #city-panel {
  width: 100%;
  background-color: #FBFBFF;
  border-right: 2px solid #6385FF;
  border-left: 2px solid #6385FF;
  border-bottom: 2px solid #6385FF;
  border-radius: 0 0 10px 10px;
  display: none;
  padding-bottom: 15px;
}
#search-container #search-wrapper #search-form .city-input #city-panel #founded-cities {
  height: 250px;
  overflow: hidden;
}
#search-container #search-wrapper #search-form .city-input #city-panel #selected-cities {
  display: none;
}
#search-container #search-wrapper #search-form .city-input #city-panel .panel-header {
  font-weight: 800;
  padding: 10px;
}
#search-container #search-wrapper #search-form .city-input #city-panel .city {
  display: flex;
  justify-content: space-between;
  padding: 5px 20px 5px 20px;
  border-bottom: 1px solid #cfcfcf;
}
#search-container #search-wrapper #search-form .city-input #city-panel .city .remove-button {
  display: none;
  color: #FF5757;
}
#search-container #search-wrapper #search-form .city-input #city-panel .city .remove-button:hover {
  color: #972525;
}
#search-container #search-wrapper #search-form .city-input #city-panel .city:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
#search-container #search-wrapper #search-form .city-input #city-panel .selected {
  background-color: rgba(0, 0, 0, 0.05);
}
#search-container #search-wrapper #search-form .city-input #city-panel .selected .remove-button {
  display: block;
}
#search-container #search-wrapper #search-form .active input {
  border-radius: 10px 10px 0 0 !important;
  border: 2px solid #6385FF;
}
#search-container #search-wrapper #search-form .active .icon {
  color: #6385FF;
}
@media (max-width: 850px) {
  #search-container #search-wrapper #search-form {
    width: 600px;
  }
}
@media (max-width: 700px) {
  #search-container #search-wrapper #search-form {
    width: 500px;
  }
}
@media (max-width: 600px) {
  #search-container #search-wrapper #search-form {
    flex-direction: column;
    gap: 20px;
  }
  #search-container #search-wrapper #search-form .city-input {
    width: 100%;
  }
}
@media (max-width: 550px) {
  #search-container #search-wrapper #search-form {
    width: 90%;
  }
}

#company-container {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  min-height: 500px;
  border-radius: 25px;
  background-color: #FBFBFF;
  padding: 30px;
  margin-bottom: 20px;
}
#company-container #response-message {
  text-align: center;
  font-weight: 800;
  font-size: 1.2em;
}
#company-container #company-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 550px) {
  #company-container #company-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 550px) {
  #company-container {
    width: 100%;
    padding: 15px;
  }
}

.company {
  background-color: #FBFBFF;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(16, 22, 29, 0.1450980392);
  width: 350px;
  background-color: #EEEEFF;
  display: flex;
  align-items: center;
}
.company .logo {
  width: 120px;
  height: 120px;
  padding: 10px 0 10px 10px;
  box-sizing: content-box;
  flex-shrink: 0;
}
.company .logo img {
  width: 100%;
  height: auto;
}
.company .right-panel {
  width: 210px;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 10px;
}
.company .right-panel .name {
  font-weight: 800;
  font-size: 1.1em;
}
.company .right-panel .location {
  height: 40px;
  line-height: 40px;
  font-weight: 400;
}
@media (max-width: 450px) {
  .company .right-panel .location {
    display: none;
  }
}
@media (max-width: 500px) {
  .company .right-panel {
    width: 190px;
  }
}
@media (max-width: 500px) {
  .company .logo {
    width: 100px;
    height: 100px;
    padding: 5px 0 5px 5px;
  }
}
@media (max-width: 450px) {
  .company {
    width: 300px;
  }
  .company .logo {
    width: 60px;
    height: 60px;
    padding: 5px 0 5px 5px;
  }
}

.company:hover {
  background-color: #C6C6F4;
}

.entry-area {
  height: 60px;
  width: 100%;
  position: relative;
}
.entry-area input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 1.1em;
  line-height: 60px;
  padding: 0 50px 0 30px;
  background-color: #FBFBFF;
  color: #414141;
  border-radius: 10px;
  border: 2px solid #cfcfcf;
  scroll-margin-top: 100px;
}
.entry-area .label-line {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #cfcfcf;
  background-color: transparent;
  padding: 5px 15px;
  border-radius: 4px;
  transition: 0.3s ease;
}
.entry-area .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #cfcfcf;
}
.entry-area .label-line:hover {
  cursor: text;
}
.entry-area input:focus {
  border-color: #6385FF;
}
.entry-area:focus-within .icon {
  color: #6385FF;
}
.entry-area:focus-within .label-line {
  color: white !important;
  background-color: #6385FF !important;
}
.entry-area input:not(:-moz-placeholder-shown) + .label-line {
  transform: scale(0.85);
  top: 0px;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: #414141;
  background-color: #cfcfcf;
  z-index: 100;
}
.entry-area input:not(:placeholder-shown) + .label-line,
.entry-area input:focus + .label-line {
  transform: scale(0.85);
  top: 0px;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: #414141;
  background-color: #cfcfcf;
  z-index: 100;
}
.entry-area .incorrect-value {
  border-color: #FF5757;
}

#create-company-button {
  background-color: #3fe439;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 50px;
  color: #FBFBFF;
  font-weight: 800;
  border-radius: 10px;
  position: absolute;
  right: 50px;
  bottom: 80px;
}
@media (max-width: 750px) {
  #create-company-button {
    display: none;
  }
}/*# sourceMappingURL=companies.css.map */