/** exchange-section **/
.exchange-block {
  /* margin-bottom: 30px; */
}

.exchange-block-one table {
  width: 100%;
}

.exchange-block-one table tbody,
.exchange-block-one table tr td,
.exchange-block-one table tfoot,
.exchange-block-one table,
.exchange-block-one table th,
.exchange-block-one table thead,
.exchange-block-one table tr {
  border: none;
  vertical-align: middle;
  font-size: 12.5px;
}

.exchange-section {
  position: relative;
  background: #F6F6F6;
}

.exchange-block-one {
  overflow: hidden;
  border-radius: 10px;
}

.exchange-block-one .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.exchange-block-one .inner-box h5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  background: var(--theme-color);
  color: #fff;
  padding: 10px 0px;
}

.exchange-block-one.red .inner-box h5 {
  background: rgba(235, 41, 44, 0.10);
}

.exchange-block-one .inner-box h5 i {
  position: relative;
  color: rgba(75, 205, 95, 1);
  margin-left: 3px;
}

.exchange-block-one.red .inner-box h5 i {
  color: rgba(235, 41, 44, 1);
}

.exchange-block-one .inner-box .flag {
  position: relative;
  display: inline-block;
  width: 70px;
  border-radius: 50%;
  margin: 34px 0px;
}

.exchange-block-one .inner-box .flag img {
  width: 100%;
  border-radius: 50%;
}

.exchange-block-one .inner-box .lower-box li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  font-size: 14px;
  line-height: 28px;
  color: #676767;
}

.exchange-block-one .inner-box .lower-box li a {
  width: 100%;
  color: black;
}

.exchange-block-one .inner-box .lower-box li a span {
  margin: 0 5px;
}

.exchange-block-one .inner-box .lower-box li a span i {
  color: var(--theme-color);
}

.exchange-block-one .inner-box .lower-box li a:hover {
  color: var(--theme-color);
}

.exchange-block-one .inner-box .lower-box li:nth-child(odd) {
  background: #F7F7F9;
}

.exchange-block-one .inner-box .lower-box li:nth-child(1) span:nth-child(1),
.exchange-block-one .inner-box .lower-box li:nth-child(2) span:nth-child(1),
.exchange-block-one .inner-box .lower-box li:nth-child(3) span:nth-child(1) {
  white-space: nowrap;
  font-weight: bolder;
}

.exchange-block-one .inner-box .lower-box li.download_pdf {
  font-size: 15px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  padding: 15px 0;
}

.exchange-block-one .coor_text {
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 900;
}

.exchange-block-one .exchange-table {
  margin-top: 20px;
}

.exchange-block-one .exchange-table table>:not(caption)>*>* {
  padding: .35rem .4rem;
  border: 1px dashed #e6e9eb;
  font-size: 13.5px;
}

.exchange-block-one .exchange-table table tbody tr th,
.exchange-block-one .exchange-table table thead tr th {
  padding: .20rem .4rem;
  font-size: 14.5px;
  background-color: #bfc0c0;
}


.exchange-section .tab-btns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exchange-section .tab-btns li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  font-family: var(--title-font);
  font-weight: 700;
  color: #222;
  background: #fff;
  padding: 10px 25px;
  cursor: pointer;
  z-index: 1;
  margin-right: 10px;
  transition: all 500ms ease;
}

.exchange-section .tab-btns li:last-child {
  margin: 0px !important;
}

.exchange-section .tab-btns li.active-btn {
  color: #fff;
}

.exchange-section .tab-btns li:before {
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0;
  z-index: -1;
  transition: all 500ms ease;
}

.exchange-section .tab-btns li.active-btn:before {
  opacity: 1;
}

.exchange-section .tab-btns li:after {
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 19px;
  height: 8px;
  left: 50%;
  margin-left: -10px;
  bottom: -8px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
  opacity: 0;
  transition: all 500ms ease;
}

.exchange-section .tab-btns li.active-btn:after {
  opacity: 1;
}



/** RTL **/


.rtl .exchange-section .tab-btns li {
  margin-right: 0px;
  margin-left: 10px;
}


/** responsive-css **/

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .exchange-section {
    padding: 70px 0px 40px 0px;
  }
}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {
  .exchange-section .tab-btns li {
    font-size: 13px;
    padding: 15px;
  }
}