.service-basket-holder{
  background-color: var(--site-light-color);
  border-radius: 8px;
  /* margin-top: 20px; */
  justify-content: space-between;
}

.service-basket-block {
  display: none;
}

.service-basket-block.active {
  display: flex;
}

.service-basket-pick{
  max-width: 520px;
  width: 100%;
}

.empty-services .service-basket-pick {
  width: 100%;
}

.service-basket-count{
  border-left: 1px solid var(--site-bg-color-darker);
  padding: 40px;
  width: 400px;
}

.service-basket-pick-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  font-size: 14px;
  line-height: 145%;
  font-family: 'Inter';
  font-style: normal;
}

.service-basket-pick-header-title{
  display: flex;
  font-weight: 600;
  font-size: 18px;
  line-height: 125%;
  color: var(--site-dark-color);
}

.empty-services .service-basket-pick-header-title {
  font-size: 18px;
}

.service-basket-pick-header-btn{
  display: flex;
  align-items: center;
  font-weight: 400;
  color: var(--site-default-color);
  border-bottom: 1px solid transparent;
  transition: border .3s ease;
}

.service-basket-pick-header-btn button{
  padding: 0;
}

.js-remove-item:hover svg path{
  fill: var(--site-default-color);
}

.service-basket-pick-header-btn svg{
  margin-right: 10px;
  transform: translateY(2px);
}

.service-basket-pick-header-btn:hover{
  /* border-color: var(--site-default-color); */
  /* text-decoration: underline; */
}

.js-service-list{
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
}

.js-service-item{
  padding: 15px 20px;
  background-color: var(--site-bg-tetriary-color);
  color: var(--site-dark-color);
  border-radius: 4px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  margin-bottom: 5px;
}

.js-service-item:not(:last-child){
  margin-right: 5px;
}

.js-service-item button{
  padding: unset;
}

.js-service-item svg{
  margin-right: 15px;
}

.js-service-item button svg path{
  transition: fill .3s ease;
}

.js-service-item button:hover svg path{
  fill: var(--site-default-color);
}

.service-basket-count-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-family: 'Inter';
  font-style: normal;
}

.service-basket-count-total{
  font-weight: 600;
  font-size: 18px;
  line-height: 125%;
  color: var(--site-dark-color);
}

.service-basket-count-quant{
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  color: var(--site-default-color);
  background: var(--site-bg-tetriary-color);
  border-radius: 99px;
  padding: 4.5px 5px;
  margin-left: 10px;
}

.service-basket-count-description{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  color: var(--site-label-tetriary-color);
  margin-bottom: 20px;
}

.service-basket-count-btn{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  color: var(--site-dark-color);
  padding: 17px 34px;
  background-color: var(--site-bg-tetriary-color);
  border-radius: 4px;
  width: 100%;
  text-align: center;
}

.service-basket-empty-description {
  padding: 19px 0 16px;
  font-size: 16px;
  color: var(--site-label-tetriary-color);
}

.add-empty-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  padding: 10px 21px 9px;
  border: 1px solid var(--site-default-color);
  font-size: 16px;
  background-color: var(--site-light-color);
  color: var(--site-default-color);
  cursor: pointer;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
  min-width: 165px;
}

.add-empty-service:hover{
  background-color: var(--site-default-color);
  color: var(--site-light-color);
}

@media(max-width: 1240px){
  .service-basket-count{
    width: 320px;
  }

  .service-basket-pick{
    width: calc(100% - 320px);
  }
}

@media(max-width: 860px){
  .service-basket-holder{
    flex-direction: column;
    margin-bottom: 80px;
  }

  .service-basket-pick,
  .service-basket-count{
    width: 100%;
    border: unset;
    padding: 20px 15px;
  }

  .service-basket-pick{
    padding: 20px 15px 15px 15px;
  }

  .service-basket-pick{
    border-bottom: 2px solid var(--site-bg-color-darker);
  }

  .service-basket-pick-header{
    border: unset;
    padding-bottom: unset;
  }

  .service-basket-pick-header-title{
    font-size: 16px;
    line-height: 125%;
  }

  .js-service-item{
    font-size: 14px;
    line-height: 145%;
  }

  .service-basket-count-header,
  .service-basket-count-description{
    margin-bottom: 10px;
  }

  .service-basket-count-total{
    font-size: 16px;
  }
}
