.col-lg-9.order-is-first {
  max-width: 100%;
  overflow: hidden;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, .3) 5px 5px 20px;
  border-radius: 10px;
  height: 300px;
  overflow: hidden;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(50px) scale(.9);
  transition: opacity .6s, transform .6s;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: rgba(0, 0, 0, .4) 10px 10px 30px;
}

.product-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center;
  border-radius: 3px 3px 0 0;
}

.product-name {
  position: absolute;
  top: 10px;
  width: 100%;
  background: #212d47eb;
}

.product-name p {
  margin: 0;
  padding: 5px 10px;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: #212d47;
}

.description {
  flex: 0 1 auto;
  max-height: 80px;
  overflow: hidden;
  font-size: 14px;
  color: #5a6a8c;
  line-height: 20px;
  margin-bottom: 10px;
  white-space: normal;
}

.price-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 5px;
}

.price-stats .price {
  background: #3fb358;
  padding: 3px 10px;
  color: #fff;
  border-radius: 2px;
}

.price-stats .sales {
  background: #5A6A8C;
  padding: 3px 10px;
  color: #fff;
  border-radius: 2px;
}

.price-stats .sales.bx.bx-like::before {
  margin-right: 5px;
}

.product-card:hover .product-name {
  background: rgba(0, 0, 0, 0);
}

/* Адаптивность для обычных карточек */
@media (max-width: 991.99px) {
  .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
    /* Отступы для предотвращения выхода за край */
  }
}

@media (max-width: 576px) {
  .product-card {
    height: auto;
    /* Адаптивная высота */
    min-height: 250px;
    /* Минимальная высота для читаемости */
  }

  .product-info {
    min-height: 100px;
  }
}

.product-block {
  position: relative;
  margin: -30px;
  margin-bottom: 30px;
  border-bottom: 1px solid RGB(227, 228, 232);
  background: linear-gradient(to bottom, #6a9bb1 0%, #60acae 44%, #8ba7c3 100%);
  border-radius: 1px;
  color: #FFF;
  overflow: hidden;
}

.product-block .product-bg {
  position: absolute;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  background-size: 100% auto;
  left: -10px;
  top: -10px;
  filter: blur(4px);
}

.product-block .product-content {
  position: relative;
  background: rgba(0, 0, 0, 0.45);
  padding: 40px 15px;
}

.product-block .product-content h2 {
  font-size: 30px;
  display: block;
  width: calc(100% - 200px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.product-block .product-content span b {
  line-height: 23px;
  padding: 3px 10px;
  color: RGB(255, 255, 255);
  border-radius: 2px;
}

.product-block .product-content span .price {
  background: #3fb358;
  margin-right: 10px;
}

.product-block .product-content span .count {
  background: #4196da;
}

.product-block .product-content button {
  position: absolute;
  right: 15px;
  top: 40px;
  height: 65px;
  width: 190px;
  font-size: 18px;
  background: rgba(65, 150, 218, 0.58);
}

.buy-product-key-info {
  margin: 15px 0 0 0;
  padding: 15px;
  /*background: #fbfbfb;*/
  border: 1px solid #DDD;
  border-radius: 15px;
}

.buy-product-key-info p:last-child {
  margin: 0;
}

.product-card-detailed__image {
  flex: 1 1 300px;
  max-width: 300px;
}

.product-card-detailed__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.product-card-detailed__image a img {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.product-card-detailed__image a:hover img {
  transform: scale(1.05);
}

.product-card-detailed__info {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card-detailed__title {
  font-size: 24px;
  font-weight: bold;
  color: #d2e0f5;
}

.product-card-detailed__id {
  font-size: 15px;
  font-weight: bold;
  color: #5c5c5c;
}

.product-card-detailed__price,
.product-card-detailed__stock {
  font-size: 18px;
  color: #5A6980;
}

.product-card-detailed__price a {
  color: #0c7ab0;
}

.product-card-detailed__confirm {
  font-size: 15px;
  color: #bf3f3f;
  margin-bottom: 0;
}

.product-card-detailed__li {
  font-size: 12px;
  color: #bf3f3f;
}

.product-card-detailed__li li a {
  color: #0c7ab0;
}

.product-card-detailed__buy-btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 16px;
  background: #2E3C5A;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card-detailed__buy-btn:hover {
  background: #26334E;
}

.product-card-detailed__conf-btn {
  padding: 10px 20px;
  font-size: 16px;
  background: #283758;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card-detailed__conf-btn:hover {
  background: #364b77
}

.product-card-detailed__conf-second-btn {
  padding: 10px 20px;
  font-size: 16px;
  background: #a70d0d;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card-detailed__conf-second-btn:hover {
  background: #e01616
}

.product-card-detailed__dispute-btn {
  padding: 10px 20px;
  font-size: 16px;
  background: #702020;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card-detailed__dispute-btn:hover {
  background: #832626;
}

.product-card-detailed__dispute-cancel-btn {
  padding: 10px 20px;
  font-size: 16px;
  background: #85807c;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card-detailed__dispute-cancel-btn:hover {
  background: #aca7a3;
}

.product-card-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 8px;
  padding: 20px;
  background: #18233A;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  overflow: hidden;
}

.product-card-detailed__description {
  flex: 1 1 100%;
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.product-card-detailed__description h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #5A6980;
  width: 100%;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: hidden;
}

.product-card-detailed__description p {
  font-size: 16px;
  color: #b7bcc3;
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: hidden;
}

.categories-block {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
}

.categories-block__header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #3b3c3e;
}

.categories-block__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-block__item {
  margin-bottom: 5px;
}

.categories-block__item a {
  text-decoration: none;
  color: #007bff;
  font-size: 14px;
}

.categories-block__item.active a {
  font-weight: bold;
  color: #000;
}

.category-list ul {
  display: none;
  margin-left: 15px;
  list-style: none;
}

.category-list li {
  cursor: pointer;
  margin-bottom: 5px;
}

.category-list .active>ul {
  display: block;
}

.category-list a {
  text-decoration: none;
  color: #333;
}

.category-list li.active>a {
  font-weight: bold;
  color: #007bff;
}

label.form-label {
  position: static !important;
  font-size: 1em !important;
}

.d-none {
  display: none;
}

#fileInfo {
  font-size: 14px;
  margin-top: 15px;
}

#imagePreview img {
  width: auto !important;
  max-width: 200px;
  max-height: 150px;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 5px;
}

.form-group {
  margin-bottom: 20px;
}

.btnns {
  cursor: pointer;
  padding: 10px 20px;
  background-color: #407bff21;
  color: #fff;
  border: 2px solid #22355A;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btnns:hover {
  background-color: #293e66;
  transform: scale(1.05);
}

.seller-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.message-button {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 10px;
  background-color: #2a4378;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.message-button:hover {
  background-color: #0056b3;
  text-decoration: underline;
}

.product-seller-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.product-seller-info a {
  color: #afae87;
}

.product-card-with-seller {
  display: flex;
  align-items: flex-start;
}

.product-card-with-seller .product-seller-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.product-card-with-seller .seller-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
}

.btn-reviews {
  background: orange;
  cursor: pointer;
  font-weight: 500 !important;
  font-family: inherit;
  border-radius: 12px;
  border: unset;
  white-space: nowrap;
}

.btn-reviews:hover {
  background: rgb(233, 188, 104);
}

#smiley-btn {
  position: absolute;
  right: 135px;
  /* top: 50%;
  transform: translateY(-50%);*/
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  opacity: 40%;
  background: none;
  border: none;
}

.smiley-picker {
  position: absolute;
  bottom: 40px;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  background-color: #212D47;
  border: 1px solid #3f4f72;
  padding: 10px;
  width: 200px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.smiley-picker.hidden {
  display: none;
}

.smiley-picker span {
  font-size: 24px;
  margin: 5px;
  cursor: pointer;
}

.product-card-detailed__comment {
  margin-top: 20px;
  padding: 15px;
  background: #18233A;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.product-card-detailed__comment h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #5A6977;
}

.comment-list {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 15px;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

.comment-placeholder {
  text-align: center;
  color: #888;
  font-size: 14px;
  padding: 10px 0;
}

.comment-placeholder p {
  text-align: center;
  color: #888;
  font-size: 14px;
  padding: 10px 0;
}

.comment-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  position: relative;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
  overflow: hidden;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
  background: #212D47;
  border: 1px solid #313e5a;
  border-radius: 10px;
  padding: 10px 15px;
  position: relative;
}

.comment-content p {
  font-size: 14px;
  color: #d9dfe9;
  line-height: 1.4;
}

.comment-username {
  font-weight: bold;
  color: #6888bb;
  display: block;
  margin-bottom: 5px;
}

.comment-text {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.comment-delete {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #ff5b5b;
  font-size: 18px;
  cursor: pointer;
}

.comment-delete:hover {
  color: #ff0000;
}

.comment-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.comment-textarea {
  flex: 1;
  min-height: 40px;
  padding: 10px;
  /*border: 1px solid #ccc;*/
  background: #212D47;
  color: #e0eff9;
  border-radius: 10px;
  resize: none;
}

.btn-submit {
  background: #4196da;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 20px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #357ab8;
}

/*NEW-----------------------------------------------------------------------------------*/
.menu-toggle {
  display: none;
}

.menu-togglemain {
  display: none;
}

.add-style {

  display: none;
}

@media (max-width: 980px) {
  .add-style {

    display: block;
  }


  .product-card div {
    /*padding-top: 36.25%;*/
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 50%;
    left: 0;
    width: 40px;
    height: 40px;
    z-index: 1000;
    cursor: pointer;
    transform: translateY(-50%);
    background-color: #212D47;
    border-radius: 0 10px 10px 0;
    padding: 6px 0px 0px 7px;
  }

  .menu-togglemain {
    display: block;
    position: fixed;
    top: 50%;
    left: calc(100% - 40px);
    width: 40px;
    height: 40px;
    z-index: 1000;
    cursor: pointer;
    transform: translateY(-50%);
    background-color: #212D47;
    border-radius: 10px 0 0 10px;
    padding: 6px 0px 0px 7px;
  }

  .menu-togglemain .close-icon {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .bgclr-red {
    background-color: red;
    border-radius: 0 10px 10px 0;
  }

  .bgclr-green {
    background-color: red;
    border-radius: 10px 0 0 10px;
  }

  .sidebar_left {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 290px;
    height: 100%;
    background: #18233A;
    z-index: 999;
    padding: 30px;
    box-shadow: 0 25px 65px rgba(224, 221, 240, .45);
    transition: transform 0.3s ease;
    transform: translateX(-100%);
  }

  .menu {
    display: none;
    position: fixed;
    top: 0;
    left: calc(100% - 250px);
    width: 250px;
    height: 100%;
    background: #18233A;
    z-index: 999;
    padding: 30px;
    box-shadow: 0 25px 65px rgba(224, 221, 240, .45);
    transition: transform 0.3s ease;
    transform: translateX(-100%);
  }

  .sidebar_left.active {
    transform: translateX(0);
    display: block;
  }

  .menu.active {
    transform: translateX(0);
    display: block;
  }

  .sidebar_left a {
    margin-bottom: 2px;
    padding: 2px 2px;
  }

  .vertical-navigation li a {
    line-height: 20px;
    padding: 1px 1px;
    padding-right: 1px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    text-transform: lowercase;
    border-radius: 50px;
    background: #212D47;
    color: #828282;
    transition: 0.2s;
    align-items: center;
    justify-content: space-between;
  }

  .vertical-navigation li.active a {
    color: white;
    font-weight: 600;
    padding: 1px 10px 1px 10px;
    background: #394350;
  }

  .btn_add_goods {
    font-size: 12px;
  }

  .btn_add_goods:hover {
    color: #3a507e;
    font-size: 12px;
  }

  .btns_blocked {
    display: block;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px auto;
  width: 100%;
}

#pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  position: relative;
}

.pagination a {
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  color: #2A3855;
  text-decoration: none;
  border: 1px solid #87c6f3;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: #2A3855;
  color: #fff;
  border-color: #2A3855;
}

#goods_market {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#goods_market .col-lg-4 {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
}

@media (max-width: 991.99px) {
  #goods_market .col-lg-4 {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  #goods_market .col-lg-4 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.image_big_gallery img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.gallery-rectangle .gallery-thumbs,
.gallery-rectangle .gallery-content {
  max-height: 546px !important;
}

.gallery-rectangle .gallery-thumbs {
  max-width: 255px !important;
}

.gallery-main {
  margin: 0 !important;
}

.gallery .gallery-main {
  width: 100%;
  max-width: 728px;
  width: 728px;
  margin-right: 20px;
  background: none;
  border-radius: 4px;
}

.gallery .gallery-main:hover .file-information {
  display: none;
}

.gallery {
  width: 100%;
  margin-top: 10px;
}

.gallery .gallery-content {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  max-height: 605px;
  position: relative;
}

.gallery .gallery-main img {

  width: 100%;
  border-radius: 4px;
}

@media screen and (max-width: 600px) {

  .image_big_gallery {
    height: auto;
  }

  .gallery-main {
    margin: 0 !important;
  }

  .gallery-thumbs {
    display: none;
  }

}

.gallery .gallery-thumbs {
  width: 100%;
  max-height: 520px;
  height: 100%;
  padding-left: 10px;
  overflow-y: auto;
  overflow-x: hidden;
}

.gallery .gallery-thumbs .gallery-thumbs__image {
  margin-bottom: 15px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.gallery .gallery-thumbs .gallery-thumbs__image img {
  width: 100%;
  display: block;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s ease-in-out;
}

.gallery .gallery-thumbs .gallery-thumbs__image img:hover {
  opacity: 0.75;
}

.gallery .gallery-thumbs .gallery-thumbs__image .active {
  filter: opacity(20%) brightness(50%);
}

.gallery .gallery-thumbs .gallery-thumbs__image .active:hover {
  opacity: 1;
}

.gallery .gallery-thumbs::-webkit-scrollbar-thumb {
  background: #2173d9;
  border-radius: 3px;
}

.gallery .gallery-thumbs::-webkit-scrollbar {
  width: 6px;
  background: rgba(33, 115, 217, 0.1);
  border-radius: 3px;
}

.gallery-rectangle .gallery-thumbs {
  max-width: 170px;
}

.gallery-rectangle .gallery-thumbs,
.gallery-rectangle .gallery-content {
  height: auto !important;
}

.gallery {
  margin-top: 20px;
  margin-bottom: 20px;
}

.gallery #full-photo {
  cursor: zoom-in;
  position: relative;
  max-width: 730px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery #gallery-nums {
  display: hidden;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  top: 10px;
  left: 10px;
  color: white;
  padding: 5px 10px;
  box-sizing: border-box;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  min-height: 30px;
}

.gallery #gallery-nums:empty {
  display: none;
}

.gallery .file-information {
  top: 50px;
}

.gallery .gallery-content {
  display: -ms-flexbox;
  display: flex;
  max-height: 605px;
  position: relative;
}

.gallery .image_big_gallery {
  position: relative;
  height: 100%;
}

.gallery .image_big_gallery .carousel_next,
.gallery .image_big_gallery .carousel_prev,
.gallery .image_big_gallery .next,
.gallery .image_big_gallery .prev,
.gallery .image_big_gallery .zoom-next,
.gallery .image_big_gallery .zoom-prev {
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  width: 28%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.gallery .image_big_gallery .carousel_next:before,
.gallery .image_big_gallery .carousel_prev:before,
.gallery .image_big_gallery .next:before,
.gallery .image_big_gallery .prev:before,
.gallery .image_big_gallery .zoom-next:before,
.gallery .image_big_gallery .zoom-prev:before {
  content: "";
  width: 40px;
  height: 35px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  z-index: 1000;
  background: #ff0;
  position: absolute;
  display: block;
  background: url("../../../img/next.svg") no-repeat;
  background-position: center;
  background-size: 35px;
  transform: scale(0.86);
  opacity: 0.7;
}

.gallery .image_big_gallery .carousel_next:hover:before,
.gallery .image_big_gallery .carousel_prev:hover:before,
.gallery .image_big_gallery .next:hover:before,
.gallery .image_big_gallery .prev:hover:before,
.gallery .image_big_gallery .zoom-next:hover:before,
.gallery .image_big_gallery .zoom-prev:hover:before {
  transform: scale(1);
  opacity: 1;
}

.gallery .image_big_gallery .carousel_prev,
.gallery .image_big_gallery .prev,
.gallery .image_big_gallery .zoom-prev {
  left: 0;
  transform: rotate(180deg);
}

.gallery-rectangle #full-photo {
  position: relative;
  max-width: 730px;
  width: 100%;
  object-fit: contain;
  height: auto;
}

/*li {
  list-style-type: none;
}*/

.all_imgs img {
  margin: 10px 0;
}

#zoomed-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  display: none;
}

#zoomed-image {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
  width: 1000px;
  height: 600px;
}

#zoomed-image img {
  width: 100%;
  height: 100%;
}

.modal1 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  overflow: auto;
}

.modal1.fade1.show {
  display: block;
}

.modal-dialog1 {
  position: relative;
  width: auto;
  max-width: 600px;
  margin: 30px auto;
}

.modal-content1 {
  position: relative;
  background-color: #212D47;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  padding-bottom: 15px;
}

.modal-header1 {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal_head1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex_modal_head1 {
  display: flex;
  flex-direction: column;
}

.line_title {
  display: flex;
  margin-top: 5px;
}

.line_purse1,
.line_purse {
  display: inline-block;
  height: 2px;
  background-color: #259f9f;
}

.line_purse1 {
  width: 20px;
  margin-right: 5px;
}

.line_purse {
  width: 50px;
}

.close1 {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 26px;
  font-weight: 100;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: none;
  border: none;
  color: #32dfe9;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close1:hover {
  color: #ff0000;
}

.modal-body1 {
  padding: 15px;
}

.btns_blocked {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.report_btn_blocked {
  padding: 5px 10px;
  background-color: #dc3545;
  color: white;
  border-radius: 3px;
  cursor: pointer;
}

.report_btn_blocked i {
  margin-right: 5px;
}

.advert_btn_blocked {
  padding: 5px 10px;
  background-color: #358fdc;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  border: none;
}

.advert_btn_blocked i {
  margin-right: 5px;
}

.advert_btn_blocked:hover {
  background-color: #449ae6;
}

.bx-trash {
  color: #d3ddf1;
}

.amodbuy {
  color: #8ac3ed;
}

/*# sourceMappingURL=primary.css.map */