.exchanger-bitcoin-table {
    margin: 0;
    position:absolute;
    overflow: hidden;
    left: 9%;
    top: 265px;
    width: 182px;
    padding:0;
    font-size:13px;
    line-height: 24px;
    color: rgb(0, 0, 0);
    /*-moz-box-shadow: 0px 0px 219px 24px rgba(43,154,173,1);*/
    /*box-shadow: 0px 9px 40px -4px rgba(65,142,205,1);*/
    border-radius: 5px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

h2.bitcoin-table-header {
    font-size: 17px;
    margin-bottom: 10px;
    margin-top: 2px;
    text-align: center;
    font-weight: 600;
    /*color: #FFF;*/
}

div.bitcoin-table-back {
    /*position:absolute;*/
    z-index: 0;
    left:-4px;
    -webkit-border-bottom-right-radius: 12px;
    -webkit-border-bottom-left-radius: 12px;
    -moz-border-radius-bottomright: 12px;
    -moz-border-radius-bottomleft: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    height: 240px;
    width: 185px;
    padding-top: 6px;
}

div.bitcoin-table-table {
    display: table;
    border-radius: 10px;
    width : 185px;
}

.bitcoin-table-h .bitcoin-table-cell {
    background-color: rgba(255,255,255,0.7);
}

.bitcoin-table-u {
    /*margin-top:9px;*/
    /*margin-bottom:9px;*/
}

.bitcoin-table-l {
    margin-top:12px;
}

.bitcoin-table-cell {
    border-radius: 5px;
    display: inline-block;
    vertical-align: bottom;
    margin : 2px;
    max-height: 24px;
    background-color: rgba(255,255,255,0.54);
    text-overflow: ellipsis;
    white-space: nowrap; /* Запрещаем перенос строк */
    overflow: hidden; /* Обрезаем все, что не помещается в область */
}

.bitcoin-table-e { /* email */
    width:  80px;
}

.bitcoin-table-p { /* points */
    width : 80px;
}

.bitcoin-table-r, .bitcoin-table-rw {
    margin-left:6px;
    display: inline-block;
    text-align: center;
    max-height: 24px;
    height: 24px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.rate_up {
    color: #08a287;
}
.rate_down {
    color: #f60;
}
.upcolor-chrome, .upcolor-ff {
    animation: 1s ease 0s normal none 1 running upmove;
}
.downcolor-chrome, .downcolor-ff {
    animation: 1s ease 0s normal none 1 running downmove;
}
.icon-arrow-up {
    color: #08af94;
    font-style: normal;
}
.icon-arrow-down {
    color: #af2700;
    font-style: normal;
}
.downcolor-chrome .icon-arrow-down, .downcolor-ff .icon-arrow-down, .upcolor-chrome .icon-arrow-up, .upcolor-ff .icon-arrow-up {
    color: transparent;
    position: relative;
}
.downcolor-chrome .icon-arrow-down::after, .downcolor-ff .icon-arrow-down::after {
    animation: 1s ease 0s normal none 1 running arrowdown;
    color: #9c1b00;
    content: url("../images/arr-down.svg");
    display: block;
    height: 18px;
    left: -3px;
    position: absolute;
    top: -5px;
    width: 14px;
}
.upcolor-chrome .icon-arrow-up::after, .upcolor-ff .icon-arrow-up::after {
    animation: 1s ease 0s normal none 1 running arrowup;
    color: #089c80;
    content: url("../images/arr-up.svg");
    display: block;
    height: 18px;
    left: -3px;
    position: absolute;
    top: 5px;
    width: 14px;
}
@keyframes downmove {
    0% {
        background-color: #ffe8d6;
    }
    50% {
        background-color: #ffe8d6;
    }
    100% {
        background-color: transparent;
    }
}
@keyframes upmove {
    0% {
        background-color: #c0ecda;
    }
    50% {
        background-color: #c0ecda;
    }
    100% {
        background-color: transparent;
    }
}

@keyframes arrowup {
    0% {
        top: 5px;
    }
    100% {
        top: 0;
    }
}
@keyframes arrowdown {
    0% {
        top: -5px;
    }
    100% {
        top: 0;
    }
}