.personList {
   width: 100%;
   max-width: 1410px;
   margin: 0 auto;
}

.person-list__main-window {
   padding: 0 26px;
}

.person-list__main-window h1 {
   margin-bottom: 36px;
}

.person-list__wrapper {
   display: flex;
}

.person-list__filter {
   flex-direction: column;
   width: 100%;
   max-width: 320px;
   margin-right: 15px;
}

.person-list__content {
   width: 100%;
   margin-left: 15px;
}

.person-list__filter-wrapper {
   margin-bottom: 20px;
   position: relative;
}

.person-list__filter-wrapper h3 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 12px;
   cursor: pointer;
}


.person-list__radio-wrapper {
   display: flex;
   flex-direction: column;
}

.person-list__radio-label input {
   opacity: 0;
   position: absolute;
   z-index: -1;
   width: 0;
   height: 0;
}

.person-list__radio-label div {
   position: relative;
   font-size: 16px;
   line-height: 18px;
   color: #454545;
   padding-left: 26px;
}

.person-list__radio-label {
   margin-bottom: 12px;
   cursor: pointer;
}

.person-list__radio-label div::after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 20.5px;
   height: 20.5px;
   border-radius: 50%;
   border: 2px solid #ddd;
}

.person-list__radio-label input:checked+div::after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 20.5px;
   height: 20.5px;
   border-radius: 50%;
   border: 2px solid #01B1FE;
}

.person-list__radio-label input:checked+div::before {
   content: '';
   position: absolute;
   left: 4px;
   top: 4px;
   width: 12.5px;
   height: 12.5px;
   border-radius: 50%;
   background: #01B1FE;
}

.person-list__checkbox-wrapper {
   display: flex;
   flex-direction: column;
   max-height: 320px;
   overflow: auto;
   direction: ltr;
   scrollbar-color: #ccc #fff;
   scrollbar-width: thin;
}

.person-list__checkbox-wrapper::-webkit-scrollbar {
   width: 5px;
}

.person-list__checkbox-wrapper::-webkit-scrollbar-track {
   background-color: rgba(255, 255, 255, 0.3);
}

.person-list__checkbox-wrapper::-webkit-scrollbar-thumb {
   background-clip: content-box;
   background-color: #ccc;
}

.person-list__checkbox-wrapper input {
   opacity: 0;
   position: absolute;
   z-index: -1;
   width: 0;
   height: 0;
}

.person-list__checkbox-wrapper label {
   margin-bottom: 12px;
   cursor: pointer;
}

.person-list__checkbox-wrapper span {
   position: relative;
   font-size: 16px;
   line-height: 22px;
   color: #454545;
   padding-left: 26px;
}

.person-list__checkbox-wrapper span::after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 20px;
   height: 20px;
   border-radius: 4px;
   border: 2px solid #ddd;
}

.person-list__checkbox-wrapper input:checked+span::after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 20px;
   height: 20px;
   border-radius: 4px;
   border: 2px solid #01B1FE;
   background: #01B1FE;
}

.person-list__checkbox-wrapper input:checked+span::before {
   content: '';
   border-right: 2px solid #fff;
   border-bottom: 2px solid #fff;
   position: absolute;
   -webkit-transform: rotate(45deg);
   transform: rotate(45deg);
   width: 4px;
   height: 10px;
   top: 4px;
   left: 8px;
   z-index: 2;
}

.person-list__range-wrapper {
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.person-list__range-input {
   width: calc(50% - 8px);
   height: 36px;
   border: 1px solid #ddd;
   color: #454545;
   border-radius: 5px;
   padding: 0 12px;
}

.person-list__range-input::placeholder {
   color: #999;
}

.person-list__sort {
   display: flex;
   align-items: center;
   margin-bottom: 22px;
}

.person-list__sort span {
   font-size: 16px;
   line-height: 18px;
   color: #454545;
   margin-right: 15px;
}

.person-list__sort-btn {
   border: none;
   background: none;
   font-size: 16px;
   line-height: 18px;
   color: #454545;
   margin-right: 12px;
   position: relative;
   transition: .2s;
}

.person-list__sort-btn:hover {
   opacity: .6;
}

.person-list__sort-btn::after {
   content: '';
   position: absolute;
   bottom: -6px;
   left: 0;
   height: 2px;
   width: 100%;
   background: #ddd;
}

.person-list__sort-btn--active::after {
   background: #01B1FE;
}

.person-list__card {
   display: flex;
   background: #F6F6F4;
   border-radius: 16px;
   margin-bottom: 22px;
   box-shadow: 2px 0 15px 0 rgb(0 0 0 / 15%);
   width: 100%;
}

.person-list__card-info {
   display: flex;
   padding: 28px;
   width: 100%;
   background: #fff;
   border-radius: 16px;
}

.person-list__card-info-left {
   display: flex;
   flex-direction: column;
   width: 100%;
   max-width: 140px;
   margin-right: 15px;
   justify-content: space-between;
}

.person-list__card-avatar {
   width: 140px;
   height: 140px;
   border-radius: 50%;
   margin-bottom: 12px;
}

.person-list__card-avatar img {
   width: 140px;
   height: 140px;
   border-radius: 50%;
   object-fit: cover;
}

.person-list__card-rating-wrap {
   display: flex;
   margin-bottom: 12px;
   text-align: center;
   width: 100%;
}

.person-list__card-rating-wrap i {
   margin-top: 6px;
   margin-right: 6px;
}

.person-list__card-rating {
   font-size: 14px;
   line-height: 22px;
   color: #454545;
}

.person-list__card-info-right {
   display: flex;
   flex-direction: column;
   width: 100%;
   margin-left: 15px;
}

.person-list__card-btn {
   display: flex;
   justify-content: center;
   align-items: center;
   color: #fff !important;
   border-radius: 8px;
   background: #20DF7F;
   height: 36px;
   width: 100%;
   cursor: pointer;
   font-size: 14px;
   font-weight: 700;
   transition: .2s;
}

.person-list__card-btn.person-list__card-btn-cbt {
   background: #5BC5D0;
}

.person-list__card-btn:hover {
   opacity: .6;
}

.person-list__card-role {
   font-size: 14px;
   line-height: 18px;
   color: #454545;
   margin-bottom: 12px;
}

.person-list__card-name {
   display: flex;
   font-size: 22px;
   line-height: 24px;
   color: #454545;
   font-weight: 700;
   margin-bottom: 28px;
   transition: .2s;
}

.person-list__card-name:hover {
   color: #454545;
   opacity: .6;
}

.person-list__card-item {
   display: flex;
   align-items: center;
   margin-bottom: 12px;
}

.person-list__card-item span {
   font-size: 14px;
   line-height: 16px;
   color: #999;
   margin-right: 8px;
   white-space: nowrap;
}

.person-list__card-item div {
   font-size: 14px;
   line-height: 16px;
   color: #454545;
   font-weight: 700;
   white-space: nowrap;
}

.person-list__card-favorite i {
   font-size: 27px;
   cursor: pointer;
}

.person-list__card-favorite .fa-heart {
   color: #FE6F61;
}

.person-list__card-favorite .fa-star {
   color: #ffc21d;
}

.person-list__card-video {
   padding: 28px;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   max-width: 380px;
}

.person-list__card-video iframe {
   width: 100%;
   height: 100%;
   border: none;
   border-radius: 8px;
}

.person-list__filter-search-mobile {
   display: none;
   border: none;
   background: none;
   font-size: 18px;
   line-height: 22px;
   font-weight: 700;
   justify-content: center;
   align-items: center;
   height: 40px;
   margin-bottom: 22px;
   border-radius: 8px;
   background: #007EFF;
   color: #fff;
   max-width: 128px;
   padding: 0;
   transition: .2s;
}

.person-list__filter-search-mobile:hover {
   opacity: .6;
}

.person-list__filter--active {
   display: flex !important;
}

.person-list__filter-wrapper .fa-chevron-down {
   transition: .6s;
}

.arrow-active {
   transform: rotate(180deg);
}

.person-list__card-btn--more {
   font-size: 16px;
   line-height: 20px;
   font-weight: 700;
   border: none;
   margin: 0 auto;
   height: 46px;
   margin-top: 32px;
}

/* Chrome, Safari, Edge, Opera */
.person-list__range-wrapper input::-webkit-outer-spin-button,
.person-list__range-wrapper input::-webkit-inner-spin-button {
   -webkit-appearance: none;
   margin: 0;
}

/* Firefox */
.person-list__range-wrapper input[type=number] {
   -moz-appearance: textfield;
}

.person-list__spinner-wrap {
   display: none;
   justify-content: center;
   align-items: center;
   position: relative;
   width: 100%;
   height: 42px;
   background: #20DF7F;
}

.person-list__spinner {
   background: #01B1FE;
   background: -webkit-linear-gradient(left, #01B1FE 10%, rgba(255, 255, 255, 0) 42%);
   font-size: 10px;
   text-indent: -9999em;
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background: #ffffff;
   background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
   background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
   background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
   background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
   background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
   position: relative;
   -webkit-animation: load3 1.4s infinite linear;
   animation: load3 1.4s infinite linear;
   -webkit-transform: translateZ(0);
   -ms-transform: translateZ(0);
   transform: translateZ(0);
}

.person-list__spinner::after {
   background: #20DF7F;
   width: 75%;
   height: 75%;
   border-radius: 50%;
   content: '';
   margin: auto;
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
}

.person-list__spinner::before {
   width: 50%;
   height: 50%;
   background: #01B1FE;
   border-radius: 100% 0 0 0;
   position: absolute;
   top: 0;
   left: 0;
   content: '';
}

.person-list__main-spinner-wrap {
   display: flex;
   justify-content: center;
   align-items: center;
   justify-content: center;
   position: relative;
   width: 100%;
   height: 16rem;
}

.person-list__main-spinner {
   background: #01B1FE;
   background: -webkit-linear-gradient(left, #01B1FE 10%, rgba(255, 255, 255, 0) 42%);
   font-size: 10px;
   text-indent: -9999em;
   width: 11rem;
   height: 11rem;
   border-radius: 50%;
   background: #ffffff;
   background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
   background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
   background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
   background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
   background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
   position: relative;
   -webkit-animation: load3 1.4s infinite linear;
   animation: load3 1.4s infinite linear;
   -webkit-transform: translateZ(0);
   -ms-transform: translateZ(0);
   transform: translateZ(0);
}

.person-list__main-spinner::after {
   background: #f9f9f9;
   width: 75%;
   height: 75%;
   border-radius: 50%;
   content: '';
   margin: auto;
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
}

.person-list__main-spinner::before {
   width: 50%;
   height: 50%;
   background: #01B1FE;
   border-radius: 100% 0 0 0;
   position: absolute;
   top: 0;
   left: 0;
   content: '';
}

.person-list__empty {
   display: none;
   font-size: 24px;
   line-height: 28px;
   color: #454545;
   font-weight: 700;
   text-align: center;
   margin: 60px 0;
}

.label-disabled {
   opacity: .6;
}

.person-list__empty-wrap {
   flex-direction: column;
}

.modal-backdrop.show {
   opacity: .7;
}


@media (max-width: 1300px) {
   .person-list__card-video {
      max-width: 340px;
   }
}

@media (max-width: 1200px) {
   .person-list__main-window {
      padding: 0 16px;
   }

   .person-list__filter {
      display: none;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-right: 0;
      max-width: 100%;
      margin-bottom: 32px;
   }

   .person-list__content {
      margin-left: 0;
   }

   .person-list__filter-search-mobile {
      display: flex;
   }

   .person-list__wrapper {
      flex-direction: column;
   }

   .person-list__filter-wrapper {
      width: calc(50% - 12px);
      margin-bottom: 12px;
   }

   .person-list__main-window h1 {
      margin-bottom: 22px;
   }
}

@media (max-width: 767px) {
   .person-list__card-video {
      display: none;
   }

   .person-list__filter-search-mobile:hover {
      opacity: 1;
   }
}

@media (max-width: 576px) {
   .person-list__filter-wrapper {
      width: 100%;
   }

   .person-list__filter {
      flex-direction: column;
   }

   .person-list__sort {
      flex-direction: column;
      align-items: flex-start;
   }

   .person-list__sort span {
      margin-bottom: 12px;
      font-weight: 700;
   }

   .person-list__sort-btn {
      margin-bottom: 12px;
      padding: 0;
   }

   .person-list__card-info {
      flex-direction: column;
      position: relative;
      padding: 16px;
   }

   .person-list__card-favorite {
      position: absolute;
      right: 16px;
      top: 16px;
   }

   .person-list__card-info-left {
      max-width: 100%;
      margin-bottom: 22px;
      margin-right: 0;
      align-items: center;
   }

   .person-list__card-rating-wrap {
      width: auto;
   }

   .person-list__card-info-right {
      margin-left: 0;
      padding-top: 16px;
      border-top: 2px solid #eee;
   }

   .person-list__card-name {
      font-size: 18px;
      line-height: 20px;
      margin-bottom: 16px;
   }

   .person-list__card {
      margin-bottom: 22px;
   }

   .person-list__radio-wrapper {
      display: none;
   }

   .person-list__checkbox-wrapper {
      display: none;
   }
}