.company {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
		padding-top: 30px;
}
.company__header {
    display: flex;
		vertical-align: middle;
    width: 90%;
    cursor: default;
		position: sticky;
		top: 0;
		z-index: 15;
		padding: 0;
    background-color: #fff;
		margin-bottom: 30px;
		border-radius: 10px;
		overflow: hidden;
}
.company__header img {
  max-width: 100%;
	display: block;
}
.company__logo {
    min-width: 40px;
    max-height: 90px;
    margin: 0 13px;
    flex: none;
    max-width: 35%;
    height: auto;
		vertical-align: middle;
}
.company__name {
    font: 500 20px 'Lato', sans-serif;
    color: black;
    margin-left: 10px;
}

.company__name:hover {
    cursor: pointer;
}
.company__description {
	margin-left: 20px;
	font-size: 14px;
	color: #000;
}

.company__arrow-back {
    cursor: pointer;
    vertical-align: middle;
    margin-top: -3px;
}
.description.center {
  width: 90%;
  text-align: center;
}

.popup__input-container {
  max-height: 65vh;
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 5px;
  width: calc(100% - 40px);
  margin-bottom: 20px;
}
.popup__input-container::-webkit-scrollbar-thumb {
	border: 2px solid white;
	background-color: #ccc;
}
.popup__input-container::-webkit-scrollbar {
	-webkit-appearance: none;
}
.popup__input-container::-webkit-scrollbar:horizontal {
	height: 7px;
}
.popup__input-container::-webkit-scrollbar:vertical {
	width: 10px;
}
.popup__input-container::-webkit-scrollbar-thumb {
	border-radius: 6px;
	background-color: rgba(0, 0, 0, .3);
}
.popup__categories {
  width: 100%;
  box-sizing: border-box;
}
.popup__categories.popup__sub-categories {
  padding-left: 20px;
}
.popup__categories label {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
}
.popup__categories label input[type="checkbox"] {
  background: #fff!important;
  border: 1px solid #d9d9d9;
  width: 20px;
  height: 20px;
}
.popup__categories label span {
  margin-left: 10px;
  font: bold 11px Lato, sans-serif;
  text-transform: uppercase;
  color: #121212;
}

@media (min-width: 700px) {
    .company__header {
        width: 580px;
   }
}
@media (max-width: 980px) {
    .company__header.sticky {
      position: sticky;
      top: 0;
      background-color: #fff;
   }
  .header {
    height: 25px;
  } 
}

a {
    text-decoration: none;
}