.threew_deal_block {
    position: relative;
    margin-top: -50px;
    margin-bottom: 1rem;
}

/* chromebook screens */
@media (min-width: 1024px) {
    .threew_deal_block {
        position: absolute;
        top: -190px;
        right: 50px;
    }
}
/* big screens */
@media (min-width: 1285px) {
    .threew_deal_block {
        right: 100px;
    }
}

.threew_deal_block .deal_block-holder {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background-image: url('../images/drop-colored.svg');
    background-size: 200px 215px;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
}

@media (max-width: 576px) {
    .threew_deal_block .deal_block-holder {
        transform: scale(.9);
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .threew_deal_block .deal_block-holder {
        transform: scale(.8);
    }
}

.threew_deal_block .deal_block-holder .content p {
    margin: 0;
}

.threew_deal_block .deal_block-holder .content .discount,
.threew_deal_block .deal_block-holder .content .datetime {
    color: var(--w3-aubergine);
}

.threew_deal_block .deal_block-holder .content .discount {
    font-size: 20px;
    font-family: var(--w3-font-family-headings) !important;
}

.threew_deal_block .deal_block-holder .content .title {
    color: var(--w3-primary-color);
    font-size: 27px;
    font-weight: 700;
    font-family: var(--w3-font-family-headings) !important;
    position: relative;
    line-height: 1.3;
}

.threew_deal_block .deal_block-holder .content .datetime {
    font-size: 1rem;
    font-weight: 500;
    width: 90%;
    margin: auto;
    margin-top: 5px;
}

.threew_deal_block .deal_block-holder .content .title::after {
    content: '';
    width: 80%;
    display: block;
    margin: auto;
    border-bottom: 1px solid var(--w3-primary-color);
}