.layout {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.layout__top {
  flex: 1;
}

.layout__center {
  display: flex;
  flex-direction: row;
}

.layout__grid {
  max-width: 445px;
  width: 100%;
  margin-right: 30px;
}

.layout__job-profile {
  flex: 1;
  position: relative;
}

.layout__sticky {
  overflow: auto;
}

.layout__modal {
  width: 100%;
  height: 100%;
  display: flex;
  min-height: 100vh;
  position: fixed;
  top: 0px;
  left: 0;
  padding-top: 80px;
  background: #f5f5f5;
  z-index: 1000;
  overflow: auto;
}

/* Scroll Bar */
.layout__sticky::-webkit-scrollbar {
  width: 8px;
  height: 0px;
}

.layout__sticky::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.layout__sticky::-webkit-scrollbar-thumb {
  background: #dfdfdf;
  min-height: 37px;
}

.layout__sticky::-webkit-scrollbar-thumb:hover {
  background: #1d1f20;
}

.layout__no-results {
  min-height: 50px;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  text-align: center;
  color: #8e8f8f;
}

@media screen and (max-width: 959px) {
  .layout__grid {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
}
.job-list-item {
  max-width: 445px;
  min-height: 120px;
  border-radius: 6px;
  background-color: #fff;
  margin-bottom: 10px;
  border-bottom: 5px solid #fff;
  transition: border-bottom-color ease-in 100ms, text-shadow ease-in 100ms;
  cursor: pointer;
  padding: 20px 10px 10px 30px;
  box-sizing: border-box;
}

.job-list-item:hover,
.job-list-item--selected {
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
  border-bottom: 5px solid #df1530;
}

.job-list-item__content {
  display: flex;
  flex-wrap: wrap;
}

.job-list-item__data {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex: 1 1 50%;
}

.job-list-item__icon {
  width: 18px;
  position: relative;
  top: 3px;
}

.job-list-item__title {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1f20;
  margin: 0 0 15px 0;
}

.job-list-item__text {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1f20;
  margin-left: 10px;
}

@media screen and (max-width: 959px) {
  .job-list-item {
    max-width: 100%;
  }

  .job-list-item:hover, .job-list-item--selected {
    box-shadow: none;
  }
}

.basic-select-wrapper {
  max-width: 380px;
  height: 50px;
  border-radius: 6px;
}

.basic-select-container {
  height: 100%;
}

.basic-select-wrapper .basic-select__control {
  border-color: transparent;
  height: 100%;
  border-radius: 6px;
}

.basic-select-wrapper .basic-select__control:hover,
.basic-select-wrapper .basic-select__control:focus {
  border-color: transparent;
}

.basic-select-wrapper .basic-select__placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  color: #8e8f8f;
}

.basic-select-wrapper .basic-select__indicator-separator {
  display: none;
}

.basic-select-wrapper .basic-select__indicator,
.basic-select-wrapper .basic-select__indicator:hover {
  color: #1d1f20;
}

.basic-select__menu {
  overflow: hidden;
}

.basic-select-wrapper .basic-select__value-container {
  padding: 2px 8px 2px 20px;
}

.basic-select-wrapper .basic-select__single-value {
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  color: #1d1f20;
}

.basic-select-wrapper .basic-select__option {
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  color: #1d1f20;
  transition: all 0.1s;
  position: relative;
}

.basic-select-wrapper .basic-select__option--is-focused,
.basic-select-wrapper .basic-select__option:active {
  background: #df1530;
  color: #fff;
}

.basic-select-wrapper .basic-select__option--is-focused:first-child:before,
.basic-select-wrapper .basic-select__option:first-child:active:before,
.basic-select-wrapper .basic-select__option--is-selected:first-child:before {
  background: #df1530;
  content: '';
  height: 5px;
  top: -4px;
  left: 0px;
  width: 100%;
  display: inline-block;
  position: absolute;
}

.basic-select-wrapper .basic-select__option--is-focused:last-child:before,
.basic-select-wrapper .basic-select__option:last-child:active:before,
.basic-select-wrapper .basic-select__option--is-selected:last-child:before {
  background: #df1530;
  content: '';
  height: 5px;
  bottom: -4px;
  left: 0px;
  width: 100%;
  display: inline-block;
  position: absolute;
}

.basic-select-wrapper .basic-select__option--is-disabled {
  color: rgba(29, 31, 32, 0.5);
}

.basic-select-wrapper .basic-select__option--is-selected {
  background: #df1530;
  color: #fff;
}

/* Scroll Bar */
.basic-select__menu-list::-webkit-scrollbar {
  width: 4px;
  height: 0px;
}

.basic-select__menu-list::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.basic-select__menu {
  z-index: 120;
}

.basic-select__menu-list::-webkit-scrollbar-thumb {
  background: #dfdfdf;
  min-height: 37px;
}

.basic-select__menu-list::-webkit-scrollbar-thumb:hover {
  background: #1d1f20;
}

.joblist-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 10px;
}

.joblist-toolbar__option {
  display: flex;
  align-items: center;
}

.joblist-toolbar__caption {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #a0a0a1;
  margin-right: 23px;
}

.job-list-pagination {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 30px 0 20px 0;
  align-items: center;
}

.job-list-pagination li {
  margin: 0 4px;
  list-style: none;
}

.job-list-pagination--page,
.job-list-pagination--break-link,
.job-list-pagination--prev,
.job-list-pagination--next {
  min-width: 21px;
}

.job-list-pagination--page-link,
.job-list-pagination--break-link,
.job-list-pagination--prev-link,
.job-list-pagination--next-link {
  opacity: 0.5;
  display: block;
  cursor: pointer;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  color: #1d1f20;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 5px solid transparent;
  height: 25px;
}

.job-list-pagination--page-link:hover,
.job-list-pagination--next-link,
.job-list-pagination--prev-link,
.job-list-pagination--page-link-active {
  opacity: 1;
  color: #1d1f20;
  font-weight: 800;
}

.job-list-pagination--first-link,
.job-list-pagination--prev-link {
  transform: rotate(-180deg);
  padding: 3px 0 0 0;
  border-bottom: none;
  border-top: 5px solid transparent;
}

.job-list-pagination--page-link-active {
  border-bottom: 5px solid #ff0030;
}

.job-list-pagination--page-link:focus,
.job-list-pagination--break-link:focus,
.job-list-pagination--prev-link:focus,
.job-list-pagination--next-link:focus {
  outline: none;
}

.job-list-item-content-loader {
  background: #fff;
  width: 445px;
  height: 130px;
  border-radius: 6px;
  margin-bottom: 10px;
}

@media screen and (max-width: 960px) {
  .job-list-item-content-loader,
  .job-list-item-content-loader svg {
    width: 100%;
  }
}
.button-basic {
  cursor: pointer;
  height: 50px;
  border-radius: 4px;
  border: solid 1.5px #df1530;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #1d1f20;
  transition: all ease-in 100ms;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.button-basic:hover {
  background-color: #df1530;
  color: #fff;
}

.button-basic:focus {
  outline: none;
}

.button-basic.button-basic--primary {
  color: #fff;
  background-color: #df1530;
}

.button-basic.button-basic--primary:hover .button-basic__icon,
.button-basic.button-basic--primary:focus .button-basic__icon,
.button-basic.button-basic--primary:active .button-basic__icon {
  transform: scale(1.2);
}

.button-basic__icon {
  width: 16px;
  height: 16px;
  transition: all 0.3s;
}

.button-basic svg {
  margin-right: 5px;
}

.button-basic:hover svg path,
.button-basic:focus svg path,
.button-basic:active svg path {
  fill: #fff;
}

.tag-list-item {
  font-size: 12px;
  line-height: 1.42;
  color: #fff;
  border-radius: 6px;
  background-color: #8e8f8f;
  padding: 0 10px;
  margin: 0 10px 6px 0;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.tag-list-item:hover,
.tag-list-item:focus,
.tag-list-item:active {
  background-color: #df1530;
}

.tag-list-item__label {
  padding-right: 6px;
  cursor: default;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: normal;
  color: #ffffff;
}

.tag-list-item__button {
  cursor: pointer;
  position: relative;
  width: 12px;
  height: 12px;
  display: inline-block;
}

.tag-list-item__button:after,
.tag-list-item__button:before{
  content: '';
  position: absolute;
  width: 1.5px;
  height: 13px;
  background: #fff;
  display: inline-block;
  right: 5px;
}

.tag-list-item__button:after {
  transform: rotate(45deg);
}

.tag-list-item__button:before {
  transform: rotate(-45deg);
}


.button-link {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1f20;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.3s;
}

.button-link:hover,
.button-link:focus,
.button-link:active {
  color: #df1530;
}
.tag-list {
  padding-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
}

.tag-list__block {

}

.tag-list__block--right {
  min-width: 150px;
  flex: 1;
}

.tag-list__list {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.tag-list__controls {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}

.filters-bar {
  display: flex;
  align-items: stretch;
  padding: 60px 0;
  flex-wrap: wrap;
}

.filters-bar__selects {
  display: flex;
  flex: 1;
  align-items: center;
}

.filters-bar__col {
  width: 50%;
  box-sizing: border-box;
  margin-right: 20px;
  max-width: 380px;
}

.filters-bar__buttons {
  display: flex;
  width: 280px;
  align-items: center;
  justify-content: flex-end;
}

.filters-bar__tags {
  width: 100%;
}

@media screen and (max-width: 580px) {
  .filters-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    flex-wrap: wrap;
    width: 100%;
  }

  .filters-bar__selects {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    padding: 0;
    align-items: center;
    justify-content: center;
    max-width: 320px;
  }

  .filters-bar__col {
    width: 100%;
    box-sizing: border-box;
    margin-right: 0;
    max-width: 320px;
    margin-bottom: 10px;
  }
}

.job-panel-content-loader {
  background: #fff;
  width: 625px;
  height: 400px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.job-panel {
  border-radius: 6px;
  background-color: #fff;
  padding: 0 30px 30px 30px;
}

.job-panel .job-panel__tab-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 0 30px 0;
}

.job-panel__tab {
  list-style: none;
  color: #1d1f20;
  opacity: 0.5;
  cursor: pointer;
  border-top: 5px solid #fff;
  padding: 12px 8px 0 8px;
  transition: opacity ease-in 100ms, border-top-color ease-in 100ms;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #1d1f20;
  margin-right: 25px;
}

.job-panel__tab:hover,
.job-panel__tab:focus {
  outline: none;
}

.job-panel__tab--selected {
  opacity: 1;
  border-top-color: #df1530;
}

.job-panel__tab-title {
  font-family: 'Lato', sans-serif;
  font-size: 30px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1f20;
}

.job-panel__tab-content {
  font-family: 'Lato', sans-serif;
}

.job-panel__header {
  width: 100%;
  min-height: 65px;
  border-radius: 6px;
  border: solid 1px #ff1d3c;
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
  box-sizing: border-box;
  padding: 7px 0;
}

.job-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 35px;
  margin: 7px 15px;
  flex: 0 1 25%;
}

.job-meta__icon {
  margin-right: 10px;
}

.job-meta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.job-meta__caption {
  opacity: 0.5;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1f20;
}

.job-meta__text {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1f20;
}

.job-panel__tab-content b {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1f20;
}

.job-panel__tab-content a {
  color: #df1530;
}

.job-panel__tab-content a:hover,
.job-panel__tab-content a:focus,
.job-panel__tab-content a:active {
  color: #df1530;
  text-decoration: underline;
}


.job-panel__about {
  margin-bottom: 15px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1f20;
}

.job-panel__about-caption {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1f20;
  margin-right: 5px;
}

@media screen and (max-width: 500px) {
  .job-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 35px;
    margin: 7px 15px;
    flex: 0 1 100%;
  }
}
.modal-filters {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-filters__body {
  width: 600px;
  min-width: 320px;
  padding: 30px;
  border-radius: 6px;
  background-color: #f5f5f5;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  box-sizing: border-box;
}

.modal-filters__title {
  font-family: 'Lato', sans-serif;
  font-size: 30px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1f20;
  margin-bottom: 20px;
}

.modal-filters-checkbox {
  position: relative;
  box-sizing: border-box;
}

.modal-filters-checkbox input {
  visibility: hidden;
  z-index: 2;
  box-sizing: border-box;
}

.modal-filters-checkbox__text {
  position: relative;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  color: #1d1f20;
  padding-left: 10px;
  cursor: pointer;
}

.modal-filters-checkbox__text:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: solid 1px #1d1f20;
  display: inline-block;
  left: -20px;
  top: 2px;
  box-sizing: border-box;
}

.modal-filters-checkbox__text:after {
  content: '';
  position: absolute;
  width: 9.7px;
  height: 10px;
  border-radius: 1px;
  background-color: transparent;
  display: inline-block;
  left: -17px;
  top: 5px;
  transition: all 0.3s;
  box-sizing: border-box;
}

.modal-filters-checkbox input:checked+.modal-filters-checkbox__text:after {
  background-color: #df1530;
}

.modal-filters__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.modal-filters__close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.job-modal {
  position: absolute;
  overflow-x: scroll;
  z-index: 100;
  width: 100%;
  min-height: 100%;
}

.job-modal__content {
  position: relative;
  z-index: 101;
}

.job-modal__nav {
  height: 60px;
}

.job-modal__close {
  cursor: pointer;
  position: relative;
  margin: 20px;
  display: inline-block;
}

.job-modal__overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f5f5f5;
  width: 100%;
  height: 100%;
}

.job-modal__footer {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.job-modal__back {
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #1d1f20;
  text-decoration: underline;
}

.job-modal__back:hover,
.job-modal__back:focus,
.job-modal__back:active {
  color: #df1530;
}
