.gift-card-block {
    width: 100px;
    height: 250px;
    max-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    position: relative;
    font-size: 12px;
}

.gift-card-block .gift-image, .gift-card-block .gift-lock, .gift-card-block .gift-select {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.gift-lock {
    background-color: rgba(0, 0, 0, 0.25);
}

.gift-select {
    background-color: rgba(0, 140, 58, 0.5);
}

.gift-select span {
    word-spacing: 100px;
    text-align: center;
}

.gift-lock span {
    text-align: center;
}

.gift-card-block .gift-lock, .gift-card-block .gift-select {
    position: absolute;
    top: 0;
    color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    display: none;
}

.gift-card-block.gift-locked .gift-partner-title,
.gift-card-block.gift-locked .gift-product-title,
.gift-card-block.gift-locked .gift-weight {
    opacity: 50%;
}

.gift-card-block.gift-selected .gift-select,
.gift-card-block.gift-locked .gift-lock,
.gift-card-block.gift-unabled .gift-lock {
    display: flex;
}

.gift-card-block.gift-unabled .gift-lock span {
    display: none;
}

.gift-card-block .gift-sum,
.gift-card-block .gift-partner-title {
    font-weight: bold;
}

.gift-card-block .gift-weight {
    color: rgba(153, 153, 153, 1)
}

.gift-card-block .gift-btn {
    height: 37px;
    min-height: 37px;
}

.gift-card-block .gift-product-title {
    flex-grow: 1;
    word-wrap: break-word;
    overflow-y: auto;
}

.gift-card-block .gift-btn {
    font-size: 14px;
    border-radius: 6px;
    background-color: white;
    color: rgba(0, 140, 58, 1);
}

.gift-card-block.gift-locked .gift-btn, .gift-card-block.gift-unabled .gift-btn {
    background-color: white;
    color: rgba(190, 190, 190, 1);
    pointer-events: none;
}

.gift-card-block.gift-selected .gift-btn {
    background-color: rgba(0, 140, 58, 1);
    color: white;
}

.gift-card-block.gift-selected .gift-btn::after {
    visibility: visible;
    position: absolute;
    content: "Отменить";
    background-color: rgba(0, 140, 58, 1);
    z-index: 100;
    left: 17px;
}

.gift-product-title {
    font-size: 12px;
}
