.title__post{
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: bold;
    color: #58555E;
    text-align: center;
}

.row{
    /* padding: 0 5px; */
}

.post__react{
    padding-top: 15px;
    color: #58555e91;
}

.post__about{
    color: #58555e91;
}



.post__title{
    padding-top: 10px;
    font-size: 26px;
    line-height: 2rem;

    /* new */
    text-align: left;
}

.post__title a{
    color: #58555E;
}

.post__title a:hover{
    color: #000;
}

.post__tag__item{
    border: 1px solid #000000;
    border-radius: 7px;
    padding: 2px 7px;
    font-size: 14px;
    color: #000;
    background-color: #6823d009;
    margin-right: 5px;
}
.post__tag__item:hover{
    background-color: #000000e8;
    color: #fff;
}

.post__description a{
    color: #58555E;
    font-size: 18px;
}

.img__post{
    border-radius: 15px;
}

.react__{
    margin-right: 30px;
}

.react__ i{
    margin-right: 3px;
}

.post__tag{
    padding-top: 10px;
}

.post__content{
    padding-left: 0;
}

.post__card::after{
    display: block;
    content: '';
    height: 1px;
    width: 100%;
    margin: 20px auto 10px;
    background: #5b34631a;
}

.post__pin{
    margin-left: 10px;
}

.fix__react{
    left: 40% !important;
    bottom: 120% !important;
}

@media (min-width: 768px) {
    .post__content{
        padding-left: 20px;;
    }

    .post__tag{
        padding-top: 1px;
    }
}

.loading-center {
    width: 50px;
    height: 50px;
    /* CENTER */
    margin: 10px auto;
    display: none;
}

/* LOADING SVG */

.loading__ {
    width: 40px;
    height: 40px;
    animation: rotate 1s linear infinite;
}

.no__post{
    color: black;
    font-size: 18px;
    text-align: center;
    margin: 10px auto;
    width: 300px;
    padding: 10px;
    background: rgba(224, 224, 224, 0.712);
    border-radius: 10px;
    display: none;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading__ .loading__circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 4px;
    stroke: #8F13D2;
    stroke-linecap: round;
    transform: translate(5px, 5px);
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: animate 2s linear infinite;
}

@keyframes animate {
    0%,
    100% {
        stroke-dashoffset: 100;
    }
    50% {
        stroke-dashoffset: 0;
    }
    50.1% {
        stroke-dashoffset: 200;
    }
}

.mt-1{
    margin-top: 10px !important;
}

.mt-2{
    margin-top: 20px !important;
}

.mt-3{
    margin-top: 30px !important;
}

.mt-4{
    margin-top: 40px !important;
}

.mt-5{
    margin-top: 50px !important;
}