.main-area {
    direction: rtl;
    justify-content: right;
    display: flex;
    position: relative;
}
.main-date {
    padding: 10px;
    position: relative;
}
.main-date::before{
    content: '';
    width: 7px;
    height: 100%;
    border-radius: 5px;
    background-color: #D9D9D9;
    z-index: 0;
    position: absolute;
    right: 59px;
}
.date-area {
    padding: 10px 0;
    z-index: 10;
    position: relative;
    display: flex;
    align-items: start;
    gap: 15px;
}
.date-area .date {
    font-size: 16px;
    padding-top: 2px;
    max-width: 25px;
}
.dot-main{
    background-color: #D9D9D9;
    padding: 7px;
    border-radius: 50%;
    width: fit-content;
    height: fit-content;
}
.dot-min {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #37aa9c;
    transition: 0.3s;
    border: 2px solid #fff;
}
.date-area .tx-area {
    align-items: start;
    padding-top: 12px;
}
.date-area .tx-area .title {
    display: flex;
    gap: 10px;
    padding-bottom: 10px
}
.date-area .tx-area .title img {
    filter: grayscale(1);
    opacity: 0.2;
    transition: 0.3s;
    margin-top: -5px;
}
.date-area .tx-area .title i {
    filter: grayscale(1);
    opacity: 0.2;
    transition: 0.3s;
    margin-top: -5px;
}
.date-area .tx-area h6 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2em;
}
.date-area .tx-area p {
    color: ;
}
.date-area:hover .dot-min {
    background-color: ;
}
.date-area:hover p {
    color: ;
}
.date-area:hover .date {
    color: ;
}
.date-area:hover .title img {
    filter: grayscale(0);
    opacity: 1;
}
.date-area:hover .title i {
    filter: grayscale(0);
    opacity: 1;
}
@media only screen and (max-width: 600px) {
.date-area .tx-area h6 {
    font-size: 16px;
  }
}