.not-enought-count {
    position: absolute;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-enought-count::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 45%;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
    clip-path: polygon(
            50% 0%,
            100% 0%,
            100% 100%,
            50% 100%
    );

}
.not-enought-count__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);

}
.not-enought-count__content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    max-width: 347px;
    width: 100%;
    box-shadow: 2px 8px 32px 0px #0000001F;
    z-index: 1;
    text-align: left;
}

.not-enought-count__close {
    display: none!important;
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;

    width:14px;

}
.not-enought-count__text{
    margin-right: 8px;
}
.not-enought-count__text p {
    margin: 0;
    color: #3E3E3E;
    font-family: var(--inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 16px;
}

.not-enought-count__order-btn {
    margin-top: 16px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: var(--inter);
    background: var(--green);
    padding: 17px 24px;
    border-radius: 14px;
    text-align: center;
    transition: 200ms ease all;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    transition: 300ms all ease;
}

.not-enought-count__order-btn:hover {
    background: #2BAB33;
}
.line{
    background: rgba(230, 230, 230, 1);

    height: 1px;

}
.not-enought-count__text p:nth-child(1) {
    font-family: var(--inter);
    font-weight: bold;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 16px;
}

.product-thumbs__title-and-labels{
    height: 110px;
}

.product-label.shield{
    text-align: center;
    padding: 0px;
    font-size: 12px!important;
    min-width: 100px;
    border-radius: 4px;
    width: 100px;
    height: 15px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    
}
.product-labels.shields{
    top:20px;
    left: 10px;
}
.product-labels.shields{
    top:10px;
}
@media (max-width: 768px) {

    .product-label.shield{
        border-radius: 4px;
        padding: 4px;
    }
}