@keyframes filter-option-icon-animation-checked {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}
.voip-phones {
  --filterWidth: 23.137%;
  padding-bottom: 50px;
}
.voip-phones--display-none {
  display: none !important;
}
.voip-phones--no-pricing .voip-phones__card-price-block,
.voip-phones--no-pricing .phone-card-v2__price-block {
  display: none;
}
.voip-phones__wrapper {
  padding: 0 var(--desktopContentEdges);
}
@media only screen and (min-width:  1368px ) {
  .voip-phones__wrapper {
    width: calc(var(--content-width) - -2 * var(--desktopContentEdges));
    max-width: 100%;
    margin: 0 auto;
  }
}
.voip-phones__wrapper--has-filter {
  display: flex;
}
.voip-phones__wrapper--has-filter .voip-phones__content {
  width: calc(100% - var(--filterWidth));
  padding-left: 78px;
}
.voip-phones__list-start {
  opacity: 0;
}
.voip-phones__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 32px;
  row-gap: 50px;
}
.voip-phones__list > *:not([data-device-filter]) {
  grid-column: auto / span 6;
}
.voip-phones__card {
  grid-column: auto / span 3;
  position: relative;
  border-radius: 28px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.voip-phones__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 28px;
  z-index: 0;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
  pointer-events: none;
}
.voip-phones__card:hover::before {
  box-shadow: 0 20.81px 36.418px 0 rgba(0, 0, 0, 0.25);
  z-index: 1;
  transform: scale(1.03);
}
.voip-phones__card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.voip-phones__card-img-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.voip-phones__card-img-wrap {
  position: relative;
  width: 100%;
  height: 154px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}
.voip-phones__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.voip-phones__card-img {
  height: 154px;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.voip-phones__card--no-pricing .voip-phones__card-price-block {
  display: none;
}
.voip-phones__card-expansion {
  display: flex;
  align-items: center;
  gap: 4px;
}
.voip-phones__card-expansion-items {
  display: flex;
  align-items: center;
  gap: 4px;
}
.voip-phones__card-expansion-item {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 6px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  position: relative;
}
.voip-phones__card-expansion-item:hover {
  border-color: #007db8;
}
.voip-phones__card-expansion-item:focus-visible {
  outline: 2px solid #007db8;
  outline-offset: 2px;
}
.voip-phones__card-expansion-item--active {
  border-color: #007db8;
}
.voip-phones__card-expansion-item:not(&--active) {
  opacity: 0.5;
}
.voip-phones__card-expansion-img {
  width: auto;
  height: 32px;
  align-self: stretch;
  object-fit: contain;
  pointer-events: none;
}
.voip-phones__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.voip-phones__card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.voip-phones__card-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.voip-phones__card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin: 0;
  text-align: center;
  color: #222222;
  width: 100%;
}
.voip-phones__card-title-link {
  color: #222222;
  text-decoration: none;
  transition: color 0.2s ease;
}
.voip-phones__card-title-link:hover {
  color: #007db8;
}
.voip-phones__card-description {
  font-size: 14px;
  line-height: 20px;
  color: rgba(43, 41, 38, 0.7);
  text-align: center;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.voip-phones__card-description p {
  margin: 0;
  display: inline;
}
.voip-phones__card-price-block {
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
  text-align: center;
  color: #222222;
}
.voip-phones__card-daas-price {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.voip-phones__card-daas-price-value {
  white-space: nowrap;
}
.voip-phones__card-daas-price-value::before {
  content: attr(data-prefix);
}
.voip-phones__card-daas-price-value::after {
  content: attr(data-suffix);
}
.voip-phones__card-device-price {
  font-size: 20px;
  margin: 0 -5px 10px;
}
.voip-phones__card-device-price > * {
  padding: 0 5px;
}
.voip-phones__card-device-price-value {
  font-weight: 500;
  font-style: normal;
  white-space: nowrap;
}
.voip-phones__card-device-price-value::before {
  content: attr(data-prefix);
}
.voip-phones__card-list-payment-type {
  display: none;
}
.voip-phones__card-list-price {
  text-decoration: line-through;
}
.voip-phones__card-list-price-value::before {
  content: attr(data-prefix);
}
.voip-phones__card-list-price-text {
  margin-right: 4px;
}
.voip-phones__card-list-liz-block {
  position: relative;
  font-size: 14px;
}
.voip-phones__card-liz-price {
  white-space: nowrap;
}
.voip-phones__card-liz-price::before {
  content: attr(data-prefix);
}
.voip-phones__card-liz-price::after {
  content: attr(data-suffix);
}
.voip-phones__card-liz-payment-type {
  margin-right: 6px;
}
.voip-phones__card-or {
  margin-right: 6px;
}
.voip-phones__card-wrapper--no-price .voip-phones__card-price-block {
  display: none;
}
.voip-phones__card-wrapper--no-leasing-price .voip-phones__card-liz-price,
.voip-phones__card-wrapper--no-leasing-price .voip-phones__card-or,
.voip-phones__card-wrapper--no-leasing-price .voip-phones__card-list-liz-block {
  display: none;
}
.voip-phones__card-daas-price {
  display: none;
}
.voip-phones__card-wrapper--daas .voip-phones__card-list-payment-type {
  display: inline-block;
}
.voip-phones__card-wrapper--daas .voip-phones__card-daas-price {
  display: block;
}
.voip-phones__card-wrapper--daas .voip-phones__card-device-price {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
}
.voip-phones__card-wrapper--daas .voip-phones__card-device-price > * {
  padding: 0;
}
.voip-phones__card-wrapper--daas .voip-phones__card-device-price-value {
  font-weight: normal;
}
.voip-phones__card-wrapper--daas .voip-phones__card-list-price {
  display: none;
}
.voip-phones__filter {
  flex-grow: 1;
  overflow: visible;
}
.voip-phones__filter-wrapper {
  width: var(--filterWidth);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.voip-phones__filter-sections {
  padding: 0 8px;
}
.voip-phones__filter-section-divider {
  height: 1px;
  background: #D9D9D9;
  margin: 8px 16px;
}
.voip-phones__filter-title {
  display: flex;
  font-size: 18px;
  padding: 16px;
  line-height: 16px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-radius: 24px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: none;
  background: transparent;
}
.voip-phones__filter-title-text {
  width: fit-content;
  font-weight: 500;
  letter-spacing: 0.54px;
}
.voip-phones__filter-title-icon {
  display: block;
  width: 14px;
}
@media (prefers-reduced-motion: reduce) {
  .voip-phones__filter-title-icon {
    transition: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .voip-phones__filter-title-icon {
    transition: transform 0.3s ease-in-out;
  }
}
.voip-phones__filter-title--active {
  background-color: rgba(43, 41, 38, 0.04);
}
.voip-phones__filter-title--active .voip-phones__filter-title-icon {
  transform: rotate(180deg);
}
.voip-phones__filter-body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 12px;
}
.voip-phones__filter-body--long-list .voip-phones__filter-options {
  margin-right: 8px;
  max-height: 260px;
  padding: 8px;
  overflow: auto;
  scroll-behavior: smooth;
}
.voip-phones__filter-body--long-list .voip-phones__filter-options::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(107, 105, 102, 0.1);
  border-radius: 4px;
}
.voip-phones__filter-body--long-list .voip-phones__filter-options::-webkit-scrollbar-thumb {
  border-radius: inherit;
  border-radius: 4px;
  background-color: #6b6966;
}
.voip-phones__filter-body.voip-phones__filter-body--visible .voip-phones__skip-content-wrapper {
  margin: 28px 0;
}
.voip-phones__filter-body.voip-phones__filter-body--visible .voip-phones__skip-content-wrapper span {
  display: block;
}
.voip-phones__filter-options {
  display: flex;
  flex-direction: column;
}
.voip-phones__filter-option {
  cursor: default;
  user-select: none;
  display: inline-flex;
  position: relative;
  padding: 12px;
}
.voip-phones__filter-option-wrapper {
  width: auto;
  margin-bottom: 4px;
}
.voip-phones__filter-option-wrapper--hidden {
  display: none;
}
.voip-phones__filter-option-content {
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.voip-phones__filter-option-text {
  font-size: 16px;
  line-height: 18px;
  color: #222;
  font-weight: 400;
}
.voip-phones__filter-option-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  top: 0;
}
.voip-phones__filter-option-checkbox:disabled + .voip-phones__filter-option-content .voip-phones__filter-option-icon:hover {
  border-color: #6F6F6F;
}
.voip-phones__filter-option-checkbox:checked + .voip-phones__filter-option-content .voip-phones__filter-option-icon {
  background: #007DB8;
  border: 1px solid #007DB8;
  color: #fff;
}
.voip-phones__filter-option-checkbox:checked + .voip-phones__filter-option-content .voip-phones__filter-option-icon:before {
  animation: filter-option-icon-animation-checked 0.3s ease;
}
.voip-phones__filter-option-checkbox:not(:checked) + .voip-phones__filter-option-content .voip-phones__filter-option-icon:before {
  animation: filter-option-icon-animation-checked 0.3s ease;
}
.voip-phones__filter-option-checkbox:disabled + .voip-phones__filter-option-content {
  opacity: 0.3;
  cursor: default;
}
.voip-phones__filter-option--top-level .voip-phones__filter-option-content .voip-phones__filter-option-text {
  font-weight: 700;
}
.voip-phones__filter-option-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  margin-right: 9px;
  border: 1px solid rgba(43, 41, 38, 0.5);
  flex-shrink: 0;
  position: relative;
  padding: 4px 2px;
  color: transparent;
  transition: all 0.2s ease;
}
.voip-phones__filter-option-icon:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 44px;
  height: 44px;
  background: #007DB8;
  border-radius: 50%;
  opacity: 0;
  background-color: rgba(43, 41, 38, 0.2);
  z-index: -1;
}
.voip-phones__filter-option-icon svg {
  width: 100%;
  height: 100%;
}
.voip-phones__filter-option:hover .voip-phones__filter-option-icon {
  border: 1px solid #2B2926;
}
.voip-phones__selected-categories {
  margin-top: 12px;
}
.voip-phones__selected-categories-wrapper {
  padding-top: 28px;
  display: none;
}
.voip-phones__selected-categories-text {
  font-size: 14px;
  color: rgba(43, 41, 38, 0.7);
  letter-spacing: 0.2px;
  text-transform: uppercase;
  padding: 0 24px;
}
.voip-phones__selected-categories--active {
  display: block;
}
.voip-phones__selected-categories-btn--clear {
  font-size: 16px;
  font-weight: 400;
  color: #222;
  margin-top: 12px;
  border-radius: 2px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.voip-phones__selected-categories-btn--clear-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.voip-phones__selected-category {
  display: flex;
  color: inherit;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  margin-right: 0;
  background-color: rgba(43, 41, 38, 0.04);
  border-radius: 23px;
  font-weight: 400;
  height: auto;
  padding: 13px 16px;
  margin-bottom: 8px;
  cursor: pointer;
  flex-shrink: 0;
  user-select: none;
  border: none;
}
.voip-phones__selected-category-icon {
  position: relative;
  height: 20px;
  width: 20px;
  background: none;
  margin-right: 0;
  border-radius: 2px;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #2b2926;
}
.voip-phones__selected-category-text {
  font-size: 16px;
  line-height: 20px;
  text-overflow: ellipsis;
  width: calc(100% - 30px);
  overflow: hidden;
  white-space: nowrap;
}
.voip-phones__navigation {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding: 48px 0;
}
.voip-phones__navigation-content {
  display: flex;
  gap: 8px;
}
.voip-phones__navigation-link {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 20px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.voip-phones__navigation-link:active {
  background-color: rgba(43, 41, 38, 0.1);
}
.voip-phones__navigation-link:hover,
.voip-phones__navigation-link--active {
  background-color: rgba(200, 194, 180, 0.2);
}
.voip-phones__navigation-link--hidden {
  visibility: hidden;
}
.voip-phones__navigation-link-icon {
  width: 20px;
}
.voip-phones__navigation-link--next .voip-phones__navigation-link-icon {
  transform: rotate(180deg);
}
.voip-phones__navigation-divider {
  font-weight: 500;
  font-size: 18px;
  line-height: 52px;
  width: 60px;
  text-align: center;
}
.voip-phones__no-results {
  margin-top: 30px;
}
.voip-phones__no-results-text {
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #222;
}
.voip-phones__no-results h3 {
  font-size: 32px;
}
.voip-phones__no-results p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 8px;
}
.voip-phones__no-results-icon-wrapper {
  width: 68px;
  height: 68px;
  margin-left: auto;
  margin-right: auto;
  background: #F6F5F1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 20px;
}
.voip-phones__no-results-icon {
  width: 27px;
  height: 27px;
  margin: 0;
}
.voip-phones__skip-content-wrapper {
  width: fit-content;
  text-align: left;
  border-radius: 1px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.voip-phones__skip-content-wrapper.focus-visible {
  margin: 28px 0;
}
.voip-phones__skip-content-wrapper.focus-visible span {
  display: block;
}
.voip-phones__skip-content-wrapper span {
  display: none;
  font-size: 16px;
  font-weight: 400;
  color: #066FAC;
}
.voip-phones__header-wrapper {
  display: none;
  padding-top: 28px;
}
.voip-phones__header-toggler {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}
.voip-phones__header-toggler-text {
  color: #222;
}
.voip-phones__header-toggler-icon {
  width: 16px;
  height: 16px;
  color: #666;
}
@media (prefers-reduced-motion: reduce) {
  .voip-phones__header-toggler-icon {
    transition: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .voip-phones__header-toggler-icon {
    transition: transform 0.3s ease-in-out;
  }
}
.voip-phones__header-toggler-icon svg {
  width: 100%;
  height: 100%;
}
.voip-phones__search-text {
  font-size: 14px;
  color: rgba(43, 41, 38, 0.7);
  text-transform: uppercase;
  padding: 0 16px 12px;
  letter-spacing: 0.2px;
}
.voip-phones__content--top-space {
  padding-top: 50px;
}
.voip-phones__container {
  display: flex;
  flex-direction: column;
}
.voip-phones__modal-window-content {
  background-color: #FFFFFF;
  border-radius: 40px;
  box-shadow: 0 20px 35px 0 rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 1367px) and (min-width:  1230px ) {
  .voip-phones__wrapper {
    padding: 0 36px;
  }
}

@media only screen and (max-width: 1229px) {
  .voip-phones {
    --filterWidth: 26.2%;
    padding-bottom: 60px;
  }
  .voip-phones__wrapper {
    padding: 0 29px;
  }
  .voip-phones__wrapper--has-filter .voip-phones__content {
    padding-left: 30px;
  }
  .voip-phones__list {
    gap: 40px;
  }
  .voip-phones__filter-option-text {
    font-size: 14px;
  }
  .voip-phones__content--top-space {
    padding-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .voip-phones {
    padding-bottom: 0;
  }
  .voip-phones__wrapper {
    flex-wrap: wrap;
    padding: 0;
    position: relative;
  }
  .voip-phones__wrapper--has-filter .voip-phones__content {
    width: 100%;
    padding: 48px var(--desktopContentEdges);
  }
  .voip-phones__content {
    width: 100%;
    padding: 0 var(--desktopContentEdges);
  }
  .voip-phones__list {
    grid-template-columns: 1fr;
    row-gap: 40px;
    column-gap: 0;
  }
  .voip-phones__list > *:not([data-device-filter]) {
    grid-column: auto;
  }
  .voip-phones__card {
    grid-column: auto;
  }
  .voip-phones__search-text {
    display: none;
  }
  .voip-phones__header {
    flex-wrap: wrap;
    padding: 20px 0;
    justify-content: center;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  .voip-phones__header-wrapper {
    background: #F6F5F1;
    display: block;
    padding-top: 0;
  }
  .voip-phones__header-toggler {
    margin-right: 10px;
    border-radius: 2px;
    cursor: pointer;
    flex-shrink: 0;
    user-select: none;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .voip-phones__header-toggler-icon {
    width: 14px;
    height: 8px;
    color: #222;
    margin-left: 9px;
  }
  .voip-phones__header-toggler-text {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
  .voip-phones__filter {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    position: static;
    display: none;
  }
  .voip-phones__filter-wrapper {
    width: 100%;
  }
  .voip-phones__filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
  }
  .voip-phones__filter-title-icon {
    display: block;
    width: 12px;
    height: 7px;
    color: #c9c8c7;
  }
  .voip-phones__filter-title--active {
    color: inherit;
  }
  .voip-phones__filter-title--active .voip-phones__filter-title-icon {
    color: inherit;
    transform: rotate(180deg);
  }
  .voip-phones__filter-option-wrapper {
    width: 100%;
  }
  .voip-phones.voip-phones--expanded .voip-phones__filter {
    display: block;
    top: 70px;
    z-index: 10;
    padding: 32px 19px;
    width: 100%;
  }
  .voip-phones.voip-phones--expanded .voip-phones__filter-title-icon {
    color: #222;
  }
  .voip-phones.voip-phones--expanded .voip-phones__header-toggler-icon {
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .voip-phones__header-toggler-icon {
    transition: none;
  }
}
@media only screen and (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .voip-phones__header-toggler-icon {
    transition: transform 0.3s ease-in-out;
  }
}

