#coins_data {
    width: 600px;
    position: relative;
    background: white;
    z-index: 3;
    left: 50%;
    transform: translate(-50%);
}

#coins_data li {
    list-style: none;
    padding: 10px;
    height: 84px;
    position: relative;
    border-bottom: 1px solid #b1b1b1;
    transition: all 0.1s ease-in;
    cursor: pointer;
}

#coins_data li:hover {
    border-bottom: 1px solid #b1b1b1;
    border-top: 1px solid #b1b1b1;
    transform: scale(1.05);
    background: white;
}

.coin_img img {
    height: 64px;
    width: 64px;
}

.coin_img {
    position: absolute;
    left: 10px;
    top: 10px;
}

.coin_name {
    text-transform: capitalize;
    position: absolute;
    display: inline-block;
    left: 86px;
    top: 52px;
    color: #8BC34A;
    font-size: 15px
}

.coin_base {
    position: absolute;
    display: inline-block;
    left: 84px;
    top: 8px;
    font-size: 38px;
    color: #4a4a4a;
}

.coin_change i {
    font-size: 22px;
    margin-right: 5px;
}

.coin_change {
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 7px;
}

.coin_price {
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 30px;
    font-size: 22px;
}

.coin_volume {
    display: inline-block;
    position: absolute;
    right: 20px;
    bottom: 4px;
    color: #888888;
}










.exchange-modal .modal-body {
    margin-top: -40px;
    width: 100%;
    position: relative;
    display: inline-block;
    overflow: hidden;
    overflow-y: auto;
}

.exchange-modal .modal-content {
    border-radius: 0px;
}

.exchange-modal .modal-header {
    top: -20px;
    padding: 5px;
    position: relative;
    height: 50px;
    background-color: #8BC34A !important;
}

.exchange-modal .modal-title {
    position: absolute;
    left: 20px;
    top: 13px;
    color: #ffffff;
}

.exchange-modal .modal-table {
    font-size: 18px;
}

.exchange-modal .table-head {
    display: flex;
    justify-content: space-around;
    margin-top: -20px;
    border-bottom: 1px solid #cecece;
    margin-bottom: 10px;
    font-weight: bold;
    color: #505050;
}

.exchange-modal .modal_row {
    display: flex;
    justify-content: space-around;
    padding-top: 3px;
    padding-bottom: 3px;
    border-bottom: 1px solid #efefef;
    transition: background 0.1s ease-in;
}

.exchange-modal .modal_row:hover {
    background: #f3f3f3;
}

.exchange-modal .col1 {
    padding-left: 10px;
    flex: 1;
}

.exchange-modal .col2 {
    flex: 1;
    text-align: center;
    font-weight: bold;
}
.exchange-modal .col2 i {
    font-size: 16px;
}

.exchange-modal .col3 {
    flex: 1;
    text-align: center;
}