.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000CC;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: all .5s ease;
}

#get-bell.popup--active {
  z-index: 11;
}

.popup--active {
  opacity: 1;
  visibility: visible;
}

.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}

.popup__content {
  background-color: #fff;
  max-width: 1130px;
  width: 100%;
  padding: 40px;
  padding-top: 65px;
  padding-bottom: 50px;
  border-radius: 5px;
  position: relative;
  transform: translateY(-100%);
  transition: all .5s ease;
}

.popup__content-normal {
  max-width: 700px;
  width: 100%;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 35px;
  padding-bottom: 40px;
  background: var(--gray);
  border-radius: 10px;
  transform: translateY(-100%);
  transition: all .5s ease;
}

.popup__content-catalog {
  max-width: 1130px;
  width: 100%;
  background: var(--dark-gray);
  border-radius: 5px;
  padding: 30px;
  padding-bottom: 50px;
  transform: translateY(-200%);
  color: var(--white);
  transition: all .7s ease;
  max-height: 700px;
  overflow-y: auto;
}

.popup__content-catalog::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  border-radius: 5px;
}

.popup__content-catalog::-webkit-scrollbar-thumb {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 5px;
}

.popup__content-catalog::-webkit-scrollbar-track {
  height: 4px;
  background: var(--text);
  border-radius: 5px;
}

.popup--active .popup__content,
.popup--active .popup__content-normal,
.popup--active .popup__content-catalog {
  transform: translateY(0);
}

.popup-form__title {
  text-align: center;
  color: var(--white);
}

.popup-form__text {
  text-align: center;
  max-width: 430px;
  margin: 0 auto;
  margin-top: 25px;
  color: var(--text);
}

.popup-form__box {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
}

.popup-form__box .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 10px;
}

.popup__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

.popup__close-normal {
  width: 40px;
  height: 40px;
  right: -50px;
  top: -54px;
}

.popup-form__btn {
  margin-top: 30px !important;
}

/* catalog popup */

.popup-top {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.popup-top__left,
.popup-slider {
  max-width: 428px;
  width: 100%;
}

.popup-slider {
  position: relative;
}

.popup-slider .slick-dots {
  display: none !important;
}

.popup-slider__item {
  width: 428px;
  height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--gray);
}

#product-popup .popup-slider__item {
  width: 428px;
  height: 272px;
}

.popup-slider__img {
  width: 100%;
  height: auto;
}

.popup-slider__img {
  width: 287px;
  height: auto;
}

.popup-info {
  max-width: 520px;
  width: 100%;
}

.popup-info__table {
  display: flex;
  flex-direction: column;
}

.popup-info__table-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  border-bottom: 1px solid #2D2D2D;
  padding-top: 5px;
  padding-bottom: 5px;
}

.popup-info__ch-name {
  color: var(--text);
}

.popup__catalog-btn {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 15px;
  width: 100%;
}

.popup-bottom {
  margin-top: 60px;
}

.popup-bottom__tabs-box {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.popup__catalog-btn--mobile {
  display: none;
}

.popup-bottom__tab {
  width: max-content;
  padding: 7px 25px;
  border: 1px solid var(--gray);
  background: var(--dark-gray);
  border-radius: 20px;
  cursor: pointer;
  transition: all .3s ease;
}

.popup-bottom__tab--active {
  color: var(--black);
  border-color: var(--yellow);
  background: var(--yellow);
}

.popup-bottom__accordeon-box {
  margin-top: 35px;
}

.popup-bottom__table-title {
  position: sticky;
  top: 0;
  color: var(--text);
  text-align: left;
  min-width: 100px;
  padding-bottom: 14px;
  padding-left: 8px;
  padding-right: 8px;
  background: var(--dark-gray);
}

.popup-bottom__table-title:first-child {
  padding-left: 0;
}

.popup-bottom__table-ch-val {
  border-right: 1px solid var(--gray);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 8px;
  padding-right: 8px;
}

.popup-bottom__table-ch-val:first-child {
  padding-left: 0;
}

.popup-bottom__table-ch-val:last-child {
  border-right: 0;
}

#product-popup .popup-bottom__table-title {
	border-right: 1px solid var(--gray);
	padding-top: 5px;
	padding-bottom: 5px;
}

#product-popup thead tr {
  border-bottom: 1px solid var(--gray);
}

#product-popup .popup-bottom__table-title:last-child {
	border-right: 0;
}

.popup-bottom__table-item {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.popup-bottom__table {
  width: 1066px;
  min-width: 1066px;
}

.popup-bottom__table-wrapper {
  overflow: auto;
  height: 332px;
}

.popup-bottom__accordeon {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}

.popup-bottom__accordeon--active {
  visibility: visible;
  max-height: 3000px;
  opacity: 1;
}

/* Стили для скролла */
.popup-bottom__table-wrapper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  border-radius: 5px;
}

.popup-bottom__table-wrapper::-webkit-scrollbar-thumb {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 5px;
}

.popup-bottom__table-wrapper::-webkit-scrollbar-track {
  height: 4px;
  background: var(--text);
  border-radius: 5px;
}

@media (max-width: 1150px) {

  .popup__content-catalog {
    max-width: 668px;
  }

  .popup-top__left,
  .popup-slider {
    max-width: 242px;
  }

  #product-popup .popup-slider__item {
    width: 242px;
    height: 190px;
  }

  .popup-slider__item {
    height: 208px;
  }

  .popup-slider__img {
    width: 206px;
  }

  .popup-info {
    max-width: 346px;
  }

  .popup-bottom {
    margin-top: 50px;
  }

  .popup__catalog-btn {
    margin-top: 20px;
  }

  .popup-bottom__accordeon-box {
    margin-top: 20px;
  }

  .popup-bottom__table-wrapper {
    height: 368px;
  }

  .popup-bottom__table {
    width: 1054px;
    min-width: 1054px;
  }

  .popup-top {
    gap: 20px;
  }
}

@media (max-width: 1140px) {
  .popup__content {
    max-width: 668px;
  }

  .popup__ch-title {
    margin-top: 30px;
  }

  .popup-table {
    margin-top: 15px;
  }

  .catalog-popup__btn {
    max-width: 100%;
  }

  .popup__desk-title {
    margin-top: 30px;
  }

  .popup__content-normal {
    max-width: 548px;
    padding-left: 84px;
    padding-right: 84px;
    padding-bottom: 45px;
  }

  .popup-form__box {
    margin-top: 30px;
  }

  .popup-form__btn {
    margin-top: 25px !important;
  }

  .popup__close-normal {
    width: 40px;
    height: 40px;
    right: -50px;
    top: -54px;
  }
}

@media (max-width: 680px) {

  .popup__content {
    padding: 20px;
    padding-top: 50px;
    padding-bottom: 30px;
    height: 644px;
    overflow-y: auto;
  }

  .popup__catalog-btn--desk {
    display: none;
  }

  .popup__catalog-btn--mobile {
    display: flex;
  }

  .popup__top {
    flex-direction: column-reverse;
  }

  .popup-slider {
    max-width: inherit;
    display: flex;
    flex-direction: column;
  }

  .popup-slider .slick-dots {
    margin-top: 25px;
  }

  .popup-slider__item {
    display: flex;
    justify-content: center;
  }

  .popup__title {
    text-align: center;
  }

  .popup__ch-title {
    display: none;
  }

  .popup-table {
    margin-top: 0;
    max-height: 186px;
    overflow-y: auto;
    display: none;
  }

  .popup__desk-text {
    margin-top: 0;
    display: none;
    max-height: 186px;
    overflow-y: auto;
  }

  .popup__desk-title {
    display: none;
  }

  .tab--active {
    display: grid;
  }

  .mobile-popup-tabs {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
  }

  .mobile-popup-tabs__btn {
    max-width: 100%;
    width: 100%;
    padding: 10px 15px;
    border-radius: 20px;
    background: var(--green);
    color: #fff;
    border: 0;
    transition: all .3s ease;
  }

  .mobile-popup-tabs__btn--active {
    background: var(--main);
  }

  .popup__close {
    width: 15px;
    height: 15px;
    top: 20px;
    right: 20px;
  }

  .mobile-popup-box {
    margin-top: 25px;
  }

  .popup__content-normal {
    max-width: 338px;
    padding-left: 39px;
    padding-right: 39px;
    padding-top: 30px;
    padding-bottom: 40px;
    height: initial;
    overflow: inherit;
  }

  .popup-form__box {
    margin-top: 20px;
  }

  .popup__close-normal {
    width: 30px;
    height: 30px;
    right: 0;
    top: -43px;
  }

  .popup-top {
    flex-direction: column;
  }

  .popup-info {
    max-width: 100%;
  }

  .popup-top__left,
  .popup-slider {
    max-width: 500px;
  }

  .popup-top__left {
    margin: 0 auto;
  }

  .popup__content-catalog {
    max-width: 500px;
    padding: 45px 20px;
    max-height: 620px;
    overflow: auto;
  }

  .popup-bottom__table-wrapper {
    height: 238px;
  }

  .popup-bottom {
    margin-top: 40px;
  }

  .popup-slider__item {
    height: 160px;
  }

  #product-popup .popup-slider__item {
    width: 100%;
    height: 140px;
  }
}