/* (A) RESPONSIVE IMAGE */
.himg { width: 100%; }
.hwrap { max-width: 500px; } /* optional */
 
/* (B) POSITION CAPTION */
.hwrap { position: relative; }
.hcap {
  /* (B1) PLACE AT BOTTOM */
  position: absolute; bottom: 0; left: 0;
 
  /* (B2) DIMENSIONS + COLORS */
  width: 100%; padding: 10px;
  color: #fff; background: rgba(0, 0, 0, 0.5);
}

/* (C) ONLY SHOW CAPTION ON HOVER */
.hcap {
  visibility: none; opacity: 0;
  transition: opacity 0.3s;
}
.hwrap:hover .hcap{
  visibility: visible; opacity: 1;
}

.t-descr_xxs {
    font-size: 18px;
}

@media screen and (max-width: 1200px) {
    .t-descr_xxs {
        font-size: 16px;
    }
}

.t-text_xs {
    font-size: 16px;
}

.aroma-block {
    margin-bottom: 40px;
    max-width: 45%;
}

@media screen and (max-width: 960px) {
    .aroma-block {
        min-width: 47% !important;
    }
}

@media screen and (max-width: 640px) {
    .aroma-block {
        min-width: 74% !important;
    }
}

.aroma-bgimg {
    border-radius: 10px;
    box-shadow: #777 5px 5px 4px 0px;
}

.aroma-text {
    text-align: justify;
    white-space: pre-line;
    color: #251f1f;
    font-size: 14px;
}

.aroma-block-container {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 960px) {
    .aroma-block-container {
        flex-wrap: unset;
    }
}

.aroma_circle_new {
    position: absolute;
    z-index: 3;
    right: 5px;
    top: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 12px;
    background-color: #cc0808;
    color: white;
    border: 1px solid #5a3535;
    box-shadow: #534848 0px 0px 20px 2px;
    text-align: center;
    font-family: 'Open Sans', Arial, sans-serif;
}

.t-store__card__bgimg,.t-store__card__bgimg_second,.t-store__card__img {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .1s linear;
    z-index: 2;
    box-shadow: #777 5px 5px 4px 0px;
}
