@charset "UTF-8";
:root {
  --primary-color: #ffab00; /* رنگ اصلی */
  --secondary-color: #e69a00; /* رنگ ثانویه، برای حالت‌هاور */
  --background-color: #ffffff; /* رنگ پس‌زمینه باز شده */
  --text-color: #333333; /* رنگ متن */
  --positive-change-color: green; /* رنگ مثبت تغییر قیمت */
  --negative-change-color: red; /* رنگ منفی تغییر قیمت */
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.price-list-container {
  position: fixed;
  left: 10px;
  top: 20%;
  height: 60%;
  background-color: var(--primary-color); /* استفاده از رنگ اصلی */
  transition: all 0.7s ease;
  width: 3px;
  overflow: hidden;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  z-index: 1000;
}
@media screen and (max-width:768px){
	.price-list-container {
	max-height:300px
	}
}
.price-list-container .container-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  padding-top: 1.2rem;
}
.price-list-container .container-header span {
  font-weight: 900;
  padding-right: 0.25rem;
}
.price-list-container .container-header #refreshBtn {
  font-size: 1.5rem;
  padding: 0.25rem 0.5rem;
  margin: 0;
}

.price-list-content {
  padding: 1rem 0.5rem;
  display: none;
}

.price-list-container.open {
  width: 250px;
  background-color: var(--background-color); /* پس‌زمینه باز شده */
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
}

.price-list-button {
  position: fixed;
  left: 11px;
  top: 20%;
  background-color: var(--primary-color); /* استفاده از رنگ اصلی */
  color: white;
  border: none;
  padding: 5px 15px;
  cursor: pointer;
  z-index: 1000;
  width: 31px; /* عرض اولیه */
  height: 31px; /* ارتفاع اولیه */
  white-space: nowrap;
  border-radius: 13px 50% 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "remixicon" !important;
  transition: width 0.4s ease-in, height 0.4s ease-in, background-color 0.4s ease-in; /* اضافه کردن انیمیشن برای عرض و ارتفاع */
}
.price-list-button::after {
  position: absolute;
  content: "\ef3e";
  top: 3px;
  left: 6px;
}
.price-list-button:hover {
  border-radius: 13px 13px 13px 0;
}
.price-list-button:hover::after {
  display: none;
}

.price-list-button p {
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-weight: 700;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(-10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.price-list-button:hover p {
  opacity: 1;
  transform: translateX(0);
}

.price-list-button:hover {
  background-color: var(--primary-color); /* استفاده از رنگ ثانویه برای حالت هاور */
  width: 20%; /* عرض دکمه در حالت هاور */
  height: auto; /* ارتفاع دکمه در حالت هاور */
}
@media screen and (min-width: 768px) {
  .price-list-button:hover {
    width: 11%;
  }
}
@media screen and (min-width: 992px) {
  .price-list-button:hover {
    width: 9%;
  }
}
@media screen and (min-width: 1200px) {
  .price-list-button:hover {
    width: 7%;
  }
}

.close-button {
  position: absolute;
  right: 9px;
  top: 0;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: #000; /* رنگ بستن */
}

.price-item {
  margin-bottom: 15px;
  padding: 10px;
  background-color: white;
  color: var(--text-color); /* رنگ متن */
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.price-item h4 {
  width: 100%;
  font-size: 1.3rem;
  background-color: #fff;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-item h4:hover {
  transform: scale(1.02);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.price-item p {
  width: 100%;
  background-color: #fff;
  padding: 6px;
  margin-bottom: 12px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
}
.price-item p span {
  font-weight: 800;
  padding-right: 0.25rem;
}
.price-item p:hover {
  border-radius: 15px;
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.price-change.positive {
  color: var(--positive-change-color); /* رنگ تغییر مثبت */
}

.price-change.negative {
  color: var(--negative-change-color); /* رنگ تغییر منفی */
}

.refreshBtnRotate {
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}/*# sourceMappingURL=tgju.css.map */