.currencies-wrapper {
  margin-bottom: 50px;
}

.ui-datepicker-next {
  width: 40px;
  height: 40px;
  display: block;
  background: url(../img/arrow-next-yellow.svg) no-repeat;
  position: absolute;
  right: -27px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.ui-datepicker-next.ui-state-disabled {
  cursor: initial;
}

.ui-datepicker-prev {
  width: 40px;
  height: 40px;
  display: block;
  background: url(../img/arrow-prev-yellow.svg) no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -48px;
  cursor: pointer;
}

.ui-datepicker-header {
  position: relative;
}

.ui-icon-circle-triangle-w, .ui-icon-circle-triangle-e {
  display: none;
}

.ui-datepicker-title {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 0 0;
  margin-bottom: 40px;
}

.ui-datepicker-month {
  background-color: #fff;
  padding: 0.5em;
  display: block;
  cursor: pointer;
  height: 50px;
  line-height: 30px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  outline: none;
  border: none;
  border-bottom: 1px solid #f1ecf6;
  position: relative;
  flex: 2;
  font-size: 14px;
  color: #a0a0a0;
  margin-right: 15px;
}

.ui-datepicker-year {
  background-color: #fff;
  padding: 0.5em;
  display: block;
  cursor: pointer;
  height: 50px;
  line-height: 30px;
  outline: none;
  border: none;
  border-bottom: 1px solid #f1ecf6;
  position: relative;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  flex: 1;
  font-size: 14px;
  color: #a0a0a0;
}

.calendar {
  background-color: #2e2c70;
  width: 485px;
  height: 420px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 42px 42px 42px 0;
  position: relative;
  margin-right: 30px;
}
.calendar:before {
  content: "";
  width: 1500px;
  height: 100%;
  display: block;
  background-color: #2e2c70;
  position: absolute;
  right: 100%;
  top: 0;
}
@media all and (max-width: 1024px) {
  .calendar {
    width: 50%;
  }
}

.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
}

.ui-state-default {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.ui-datepicker-calendar th {
  color: #fff;
  font-weight: 300;
}

.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
  padding: 7px;
}

.ui-datepicker-today {
  border: 2px solid #f9a018;
}

.ui-state-disabled {
  opacity: 0.3;
}

.currencies__table {
  width: 700px;
}
@media all and (max-width: 1024px) {
  .currencies__table {
    width: 50%;
  }
}
.currencies__table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0 80px;
  position: relative;
}
.currencies__table table tr:nth-child(2n) {
  background-color: #f1ecf6;
}
@media all and (min-width: 525px) {
  .currencies__table table tr:nth-child(2n):before {
    content: "";
    display: block;
    height: 45px;
    background-color: #f1ecf6;
    width: 1500px;
    position: absolute;
    left: -1500px;
    z-index: -1;
  }
}
@media all and (min-width: 525px) {
  .currencies__table table tr:nth-child(2n+1):before {
    content: "";
    display: block;
    height: 45px;
    background-color: transparent;
    width: 1500px;
    position: absolute;
    left: -1500px;
    z-index: -1;
  }
}
.currencies__table table tr td:first-child {
  font-weight: 500;
}
.currencies__table table td {
  padding: 13px 20px 13px 0;
  color: #515050;
  font-size: 14px;
  text-align: right;
  white-space: nowrap;
}

.currencies__show-more {
  height: 50px;
  width: 100%;
  line-height: 50px;
  background-color: #f9a018;
  float: right;
  text-align: center;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  margin: 25px 0;
}

.inactive {
  opacity: 0.4;
  cursor: initial;
}

@media all and (max-width: 920px) {
  .currencies-wrapper {
    flex-direction: column;
  }

  .ui-datepicker-calendar {
    display: none;
  }

  .calendar {
    width: 100%;
    height: initial;
    padding-bottom: 0;
    padding-left: 50px;
  }

  .currencies__table {
    width: 100%;
  }
  .currencies__table table td {
    text-align: left;
  }

  .currencies__show-more {
    width: 100%;
  }
}
@media all and (max-width: 525px) {
  .currencies__table {
    width: calc(100% + 50px);
    margin-left: -25px;
  }

  .currencies__table table td {
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    position: relative;
    z-index: 20;
  }

  .calendar {
    margin-bottom: 50px;
  }

  .currencies__show-more {
    margin-right: 25px;
    margin-left: 25px;
    width: calc(100% - 50px);
  }
}

/*# sourceMappingURL=currency-page.css.map */
