.short-coin {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 15px 0;
    padding: 10px;
    border: 1px solid #F6F5F6;
    border-radius: 10px;
    clear: both;
}

.short-coin__info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F6F5F6;
}

.short-coin__label {
    position: absolute;
    top: 6px;
    left: 3px;
    padding: 2px 3px;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    background-color: #FFC700;
    border-radius: 3px;
}

.short-coin__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin-right: 10px;
}

.short-coin__logo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.short-coin__name {
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #000000;
    word-break: break-word;
}

a.short-coin__name {
    text-decoration: underline;
}

a.short-coin__name:hover {
    text-decoration: none;
}

.short-coin__short-name {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #808080;
}

.short-coin__field {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.short-coin__price {
    font-size: 15px;
    line-height: 18px;
    white-space: nowrap;
}

.short-coin__price[data-before]:before {
    content: attr(data-before);
    color: #808080;
}

.short-coin__dynamic {
    display: flex;
    align-items: center;
    margin-left: 10px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.short-coin__dynamic--up:before,
.short-coin__dynamic--down:before {
    content: "◣";
    display: block;
    margin-right: 5px;
    font-size: 8px;
    line-height: 8px;
}

.short-coin__dynamic--up {
    color: #00B67F;
}

.short-coin__dynamic--up:before {
    margin-bottom: -6px;
    color: #00B67F;
    transform: rotate(135deg);
}

.short-coin__dynamic--down {
    color: #E32C13;
}

.short-coin__dynamic--down:before {
    margin-top: -6px;
    color: #E32C13;
    transform: rotate(315deg);
}

.short-coin__props {
    display: flex;
    flex-direction: column;
}

.short-coin__prop {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.short-coin__prop:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 4px;
    background-image: linear-gradient(to right, #808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
}

.short-coin__prop:not(:last-child) {
    margin-bottom: 12px;
}

.short-coin__prop-label {
    order: -1;
    margin-right: 5px;
    font-size: 14px;
    line-height: 18px;
    color: #808080;
    white-space: nowrap;
}

.short-coin__prop-value {
    order: 1;
    margin-left: 5px;
    font-size: 15px;
    line-height: 18px;
    white-space: nowrap;
}

.short-coin__prop-value[data-before]:before {
    content: attr(data-before);
    color: #808080;
}

.short-coin__prop-value--week {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100px;
    height: 35px;
}

.short-coin__week {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.short-coin__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.short-coin__button {
    width: calc(50% - 5px);
    height: 32px;
}

.short-coin__button--buy .tooltip__content {
    right: initial !important;
    left: -20px;
}

.short-coin--dark {
    background-color: #3F3C4D;
    border-color: #3F3C4D;
}

.short-coin--dark .short-coin__info {
    border-color: #5F5C6A;
}

.short-coin--dark .short-coin__name {
    color: #ffffff;
}

.short-coin--dark .short-coin__short-name {
    color: #B1B1B1;
}

.short-coin--dark .short-coin__price {
    color: #ffffff;
}

.short-coin--dark .short-coin__price:before {
    color: #B1B1B1;
}

.short-coin--dark .short-coin__dynamic--up {
    color: #33FFC1;
}

.short-coin--dark .short-coin__dynamic--up:before {
    color: #33FFC1;
}

.short-coin--dark .short-coin__dynamic--down {
    color: #FBB0A5;
}

.short-coin--dark .short-coin__dynamic--down:before {
    color: #FBB0A5;
}

.short-coin--dark .short-coin__prop:after {
    background-image: linear-gradient(to right, #B1B1B1 33%, rgba(255, 255, 255, 0) 0%);
}

.short-coin--dark .short-coin__prop-label {
    color: #B1B1B1;
}

.short-coin--dark .short-coin__prop-value {
    color: #ffffff;
}

.short-coin--dark .short-coin__prop-value:before {
    color: #B1B1B1;
}

/*** Responsive ***/

@media (min-width: 360px) {

    .short-coin {
        padding: 15px;
    }

    .short-coin__label {
        top: 11px;
        left: 8px;
    }

    .short-coin__button--buy .tooltip__content {
        left: -15px;
    }
}

@media (min-width: 768px) {

    .short-coin {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .short-coin__label {
        top: 8px;
        left: 8px;
    }

    .short-coin__info {
        margin: 0 10px 0 0;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .short-coin__logo {
        width: 50px;
        height: 50px;
    }

    .short-coin__props {
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }

    .short-coin__prop {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .short-coin__prop {
        margin: 0 8px !important;
    }

    .short-coin__prop:after {
        display: none;
    }

    .short-coin__prop-label {
        margin: 0 0 5px 0;
    }

    .short-coin__prop-label--week {
        display: none;
    }

    .short-coin__prop-value {
        margin: 0;
    }

    .short-coin__prop-value--week {
        width: 80px;
    }

    .short-coin__buttons {
        flex-shrink: 0;
        margin: 0 0 0 10px;
    }

    .short-coin__button--buy {
        width: 86px;
        padding: 0 6px;
    }

    .short-coin__button--buy .tooltip__content {
        right: 0 !important;
        left: initial;
    }

    .short-coin__button--review {
        width: 32px;
        height: 32px;
        margin-left: 10px;
        padding: 4px;
        text-indent: -9999px;
        background-origin: content-box;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M13.6696 6.17395L9.0608 1.56515C8.95708 1.45602 8.83257 1.36875 8.69461 1.30847C8.55664 1.2482 8.40801 1.21615 8.25746 1.2142C8.10692 1.21225 7.95751 1.24045 7.81803 1.29713C7.67855 1.35382 7.55183 1.43784 7.44532 1.54425C7.33881 1.65067 7.25468 1.77732 7.19787 1.91675C7.14106 2.05618 7.11273 2.20556 7.11455 2.35611C7.11637 2.50666 7.14829 2.65532 7.20844 2.79334C7.26859 2.93135 7.35576 3.05594 7.4648 3.15975L10.1892 5.87995H1.1284C0.82913 5.87995 0.542117 5.99884 0.330501 6.21045C0.118885 6.42207 0 6.70908 0 7.00835C0 7.30762 0.118885 7.59464 0.330501 7.80625C0.542117 8.01787 0.82913 8.13675 1.1284 8.13675H10.164L7.4648 10.8402C7.262 11.0535 7.15062 11.3377 7.15443 11.6321C7.15823 11.9265 7.27693 12.2077 7.48518 12.4158C7.69344 12.6238 7.97476 12.7423 8.26913 12.7458C8.56349 12.7494 8.84759 12.6377 9.0608 12.4348L13.6696 7.82595C13.7747 7.72143 13.8581 7.59707 13.9148 7.46008C13.9715 7.3231 14.0005 7.17622 14 7.02795C14.0007 7.01863 14.0007 7.00927 14 6.99995C14.0007 6.99063 14.0007 6.98128 14 6.97195C13.9999 6.67269 13.8811 6.3857 13.6696 6.17395Z' fill='%230072DB'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='14' height='14' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
        overflow: hidden;
    }
}

@media (min-width: 1024px) {

    .short-coin__info {
        flex-shrink: 0;
        width: 280px;
        margin: 0 15px 0 0;
    }

    .short-coin__logo {
        margin-right: 15px;
    }

    .short-coin__aside {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .short-coin__names {
        display: flex;
        flex-direction: column;
        margin-right: 5px;
    }

    .short-coin__short-name {
        margin: 5px 0 0;
    }

    .short-coin__field {
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        margin: 0;
    }

    .short-coin__price {
        font-weight: bold;
    }

    .short-coin__dynamic {
        margin: 5px 0 0;
    }

    .short-coin__prop-value--week {
        width: 150px;
    }
}

@media (min-width: 1280px) {

    .short-coin {
        margin: 30px 0;
    }

    .short-coin__info {
        width: 240px;
    }

    .short-coin__prop-value--week {
        width: 100px;
    }

    .short-coin__button--buy {
        width: 93px;
        padding: 0 10px;
    }

    .short-coin__button--buy .tooltip__content {
        right: initial !important;
        left: 0;
        min-width: 380px;
        margin-left: -150px;
    }
}