/* Genel sıfırlama ve kutu modeli */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#currency {
    max-width: 650px !important;
    margin: 20px auto;
    overflow: hidden;
}
.currency {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  background-color: transparent;
  border: 0px solid #e0e0e0;
  border-radius: 5px;
  padding: 10px;
  box-shadow: none;
  width: auto !important;
  border-color: #000 !important;
  max-width: 650px !important;
}

.currency .item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px;
    border-right: 1px solid #e0e0e0;
    min-width: 0;
}

.currency .item:last-child {
    border-right: none;
}

.themeicon.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-right: 8px;
}

.themeicon svg {
    width: 100%;
    height: 100%;
}

.themeicon-up svg {
    fill: #2e7d32;
}

.themeicon-down svg {
    fill: #d32f2f;
}

.currency .info {
    flex: 1;
}

.currency .top {
    display: flex;
    align-items: center;
    margin-bottom: -10px;
}

.currency .title {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-right: 5px;
}

.currency .value {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.currency.clone {
    display: none;
}

@media (max-width: 768px) {
    .currency {
        flex-wrap: wrap;
    }
    .currency .item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    .currency .item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .currency .item {
        flex: 0 0 50%;
        border-bottom: 1px solid #e0e0e0;
    }
    .currency .item:last-child {
        border-bottom: none;
    }
}
.ortakurlar .currency {
  margin-left: auto !important;
  margin-right:  auto !important;
}
.ortakurlar {
  background: #ececec !important;
}