﻿.quotes__tiny {
    width: 100%;
    font-family: Inter, Roboto, Helvetica, Arial, sans-serif;
}

.quotes__tiny-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.quotes__tiny-cell {
    padding: 15px 10px;
    font-size: 14px;
    color: #252e37;
    text-align: end;
}

.quotes__tiny-cell:first-child {
    width: 30%;
    text-align: start;
}

.quotes__tiny-cell:nth-child(2),
.quotes__tiny-cell:nth-child(3) {
    width: 25%;
}

.quotes__tiny-cell:nth-child(4) {
    width: 20%;
}

.quotes__tiny-header .quotes__tiny-cell {
    background-color: #eef4f7;
    font-weight: 700;
}

.quotes__tiny-body {
    position: relative;
    min-height: 100px;
}

.quotes__tiny-body .quotes__tiny-row:nth-child(even) {
    background-color: #f7f8f8;
}

.quotes__tiny-body .quotes__tiny-cell:not(:first-child) {
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
}

.quotes__tiny-cell.quotes__tiny-cell--increased {
    color: #68ad5c;
}

.quotes__tiny-cell.quotes__tiny-cell--decreased {
    color: #fa564d;
}

.quotes__tiny-preloader {
    content: ' ';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #6f797e;
    border-color: #6f797e transparent #6f797e transparent;
    -webkit-animation: dual-ring 1.2s linear infinite;
    animation: dual-ring 1.2s linear infinite;
}

.rtl .quotes__tiny {
    font-family: 'Vazirmatn-Regular', sans-serif;
}

@-webkit-keyframes dual-ring {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes dual-ring {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 767px) {
    .quotes__tiny-cell {
        font-size: 12px;
        padding: 10px;
    }
}

@media (max-width: 390px) {
    .quotes__tiny-cell:first-child {
        width: 40%;
    }

    .quotes__tiny-cell:nth-child(2),
    .quotes__tiny-cell:nth-child(3) {
        width: 30%;
    }

    .quotes__tiny-cell:last-child {
        display: none;
    }
}

@media (max-width: 350px) {
    .quotes__tiny {
        width: calc(100% + 40px);
        margin-inline-start: -20px;
    }
}
