/**
 * Theme Name:  Jermuk
 * Author:      Bytik
 *
 * Version:     1.002
 */

/* Основні стилі для попапа ---------------------------------------------------*/
.popup {
  z-index: 9;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
  position: fixed;
  bottom: 6px;
  right: 67px;
  border-radius: 6px;
  overflow: hidden;
  transform: translateY(100%);
}
.popup.show {
  opacity: 1;
  visibility: visible;
  display: flex;
  transform: translateY(0);
}
@media (max-width: 1100px) {
  .popup {
    margin-left: 6px;
    right: 6px;
  }
}
.popup-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  font-size: 60px !important;
  color: var(--color-secondary);
  cursor: pointer;
  transition: color 0.3s ease;
  width: 55px;
}
.popup-close:hover {
  color: var(--color-primary);
}
@media (max-width: 1100px) {
  .popup-close {
    color: var(--color-menu);
  }
}
.popup-content {
  display: flex;
  flex-direction: row;
}
@media (max-width: 1100px) {
  .popup-content {
    flex-direction: column;
  }
}
.popup-content_img {
  width: 400px;
}
@media (max-width: 1100px) {
  .popup-content_img {
    width: 100%;
    height: 280px;
  }
}
.popup-content_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right;
}
.popup-content__box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  padding: 50px 30px;
  background-color: var(--color-menu);
}
@media (max-width: 1100px) {
  .popup-content__box {
    padding: 20px;
  }
}
.popup-content__box_title {
  font-family: Philosopher;
  font-weight: 700;
  font-size: 1.7rem;
}
.popup-content__box_list {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-content__box_list_item {
  font-size: 1.14rem;
  position: relative;
}
.popup-content__box_list_item::before {
  position: absolute;
  content: "";
  background-color: var(--color-secondary);
  height: 5px;
  width: 5px;
  border-radius: 5px;
  top: 4px;
  left: -10px;
}
.popup-content__box_subtitle {
  font-family: Philosopher;
  font-weight: 700;
  font-size: 1.4rem;
}
.waiter {
  padding: 20px 0px;
}
.waiter-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.waiter-wrapper_description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.waiter-wrapper_description_text {
  font-family: Philosopher;
  font-size: 1.4rem;
}
.waiter-wrapper_description_text span {
  font-weight: 700;
}
.waiter-wrapper_description_text a {
  color: var(--color-secondary);
}
.waiter-wrapper_description_list {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.waiter-wrapper_description_list_item {
  font-size: 1.14rem;
  position: relative;
}
.waiter-wrapper_description_list_item::before {
  position: absolute;
  content: "";
  background-color: var(--color-secondary);
  height: 5px;
  width: 5px;
  border-radius: 5px;
  top: 4px;
  left: -10px;
}

.copy-btn {
  background: none;
  margin-left: 10px;
}