#ts_currency_inline {
  display: inline-block;
  padding-top: 1.4375rem;
  padding-bottom: 1.4375rem;
  padding-left: 15px;
  vertical-align: middle;
  text-align: left;
}

.ts-currency__form {
  position: relative;

  display: inline-block;
  margin: 0;

  vertical-align: top;
}

.ts-currency__current {
  display: inline-block;
  height: 1.5rem;
  color: #007fff;
  font-size: 0.875rem;
  line-height: 1.5rem;
  white-space: nowrap;
  cursor: pointer;
}

.ts-currency__single {
  cursor: default;
}

.ts-currency__cur-prefix {
  display: inline-block;

  vertical-align: baseline;
  color: inherit;
}

.ts-currency__cur-text {
  vertical-align: middle;
  color: inherit;

  border-bottom: 1px dotted;
} /*Блок текущей валюты*/

.ts-currency__cur-prefix ~ .ts-currency__cur-text {
  vertical-align: baseline;
}

.ts-currency__list-wrap {
  position: absolute;
  top: 30px;
  right: -23px;
  z-index: 10;
  overflow: visible;
}



.ts-currency__list {
  position: relative;
  display: none;
  overflow: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 1rem;
  padding: 0.5rem 0;

  font-size: 0.875rem;
  color: #007fff;

  background-color: #ffffff;
  -webkit-box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.25);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.25);

  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
}

.ts-currency__list::before,
.ts-currency__list::after {
  content: '';
  position: absolute;
  right: 1.375rem;
  display: block;
  width: 0;
  height: 0;
  border-right: 0.875rem solid transparent;
  border-left: 0.875rem solid transparent;
}

.ts-currency__list::before {
  top: -0.875rem;
  border-bottom: 0.875rem solid #dddddd;
}

.ts-currency__list::after {
  top: -webkit-calc( 1px - 0.875rem );
  top: calc( 1px - 0.875rem );
  border-bottom: 0.875rem solid #ffffff;
}

.ts-currency__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  padding: 11px 1.25rem;
  white-space: nowrap;
  cursor: pointer;
} /*Блок одной валюты*/

.ts-currency__current.active ~ .ts-currency__list-wrap .ts-currency__list {
  display: block;

  -webkit-transform-origin: calc( 100% - 35px) -14px;
  -moz-transform-origin: calc( 100% - 35px) -14px;
  -ms-transform-origin: calc( 100% - 35px) -14px;
  -o-transform-origin: calc( 100% - 35px) -14px;
  transform-origin: calc( 100% - 35px) -14px;

  -webkit-animation: ts-dropdown_opened_animation 0.3s ease-in-out 1;
  -o-animation: ts-dropdown_opened_animation 0.3s ease-in-out 1;
  animation: ts-dropdown_opened_animation 0.3s ease-in-out 1;
}

.ts-currency__item:hover {
  background-color: #e0f0ff;
}

.ts-currency__item-name {
  margin-right: 1.25rem;
  text-transform: capitalize;
  text-decoration: none;
} /*Название валюты*/
