.stp-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}
.stp-modal.opened {
    display: flex;
}
.stp-modal__inner {
    position: relative;
    max-width: 580px;
    background: #212121;
    border: 1px solid #2E2E2E;
    border-radius: 15px;
    padding: 40px;
    z-index: 11;
    box-shadow: 0 30px 100px 0 black;
}
.stp-modal__close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    background: url('../img/close-btn.svg');
    height: 21px;
    width: 21px;
    cursor: pointer;
}
.stp-modal__content {
    display: flex;
    gap: 40px;
}
.stp-modal__content-col {
    width: 235px;
}
.stp-modal__group {
    font-size: 14px;
    line-height: 16px;
    color: #5A5A5A;
    display: block;
    margin-bottom: 15px;
}
.stp-modal__title {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}
.stp-modal__desc {
    background: #1A1A1A;
    border: 1px solid #1A1A1A;
    border-radius: 15px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 15px;
}
.stp-modal__rarity {
    font-weight: 700;
}
.stp-modal__rarity-desc {
    color: #4D4D4D;
}
.stp-modal__sell {
    background: #1A1A1A;
    border: 1px solid #1A1A1A;
    border-radius: 15px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.stp-modal__details {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.stp-modal__price {
    font-weight: 700;
}
.stp-modal__price-desc {
    color: #4D4D4D;
}
