.rcon-shop-product {
  padding: 0;
  border-radius: 5px;
  overflow: hidden;
}
.rcon-shop-product .image {
    width: 100%;
    padding-top: 75%; /* Соотношение сторон 4:3, можно менять */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s all;
    position: relative;
}


.rcon-shop-product .image .price {
  right: 10px;
  top: 10px;
  position: absolute;
}
.rcon-shop-product .image .title {
  background: rgba(0, 0, 0, 0.47);
  color: #FFF;
  position: absolute;
  left: 10px;
  top: 10px;
  height: 34px;
  line-height: 34px;
  padding: 0 10px;
  border-radius: 3px;
  cursor: default;
  max-width: 60%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.rcon-shop-product:hover .image {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
.rcon-shop-product .actions {
  text-align: center;
}
.rcon-shop-product .actions .btn {
  margin: 10px;
  width: calc( (100% - 40px) / 2);
}
.rcon-shop-product .actions .btn.description-btn {
  margin-left: 0;
}

.rcon-shop-product-in-detail .image {
  display: block;
  max-height: 300px;
  max-width: 50%;
}
.rcon-shop-product-in-detail .image img {
  margin: 0 auto;
  max-height: 300px;
  max-width: 100%;
  border-radius: 3px;
}
.rcon-shop-product-in-detail .form-check .form-check-input {
  top: -2px;
}

#confirmPurchaseModal .param-item {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

#confirmPurchaseModal .param-item:last-child {
    border-bottom: none;
}

#confirmPurchaseModal .noty-block.warning {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

#confirmPurchaseModal .important-warning {
    background: #f8d7da !important;
    border: 1px solid #f5c6cb !important;
    color: #721c24;
}

#confirmPurchaseModal .confirmation-question {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    color: #212529;
}

#confirmPurchaseModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}
