.ts-currency__form {
  position: relative;

  display: inline-block;
  margin: 0;

  vertical-align: top;
}

.ts-currency__current {
  display: inline-block;
  margin: 0 0 12px;

  font-weight: bold;
  vertical-align: middle;
  color: #265cff;
  white-space: nowrap;

  cursor: pointer;
}

.ts-currency__current:after {
  content: '\25BC';

  padding-left: 5px;

  font-size: 13px;
  vertical-align: middle;
  color: #999999;
}

.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__current:hover,
.ts-currency__current.active {
  color: #ff4000;
}

.ts-currency__current:hover:after,
.ts-currency__current.active:after {
  color: inherit;
}

.ts-currency__current.active:after {
  content: '\25B2';
}

.ts-currency__list-wrap {
  position: absolute;
  left: 50%;
  z-index: 10;

  min-width: 100%;
  overflow: visible;
}

html.opera .ts-currency__list-wrap {
  top: 100%;

  margin-top: 5px;
}

.ts-currency__list {
  position: relative;
  left: -50%;

  display: none;
  padding: 5px 0;
  overflow: visible;

  background: #ffffff;
  border: 1px solid #dddddd;
  -webkit-box-shadow: 0 10px 20px rgba(102,102,102,0.65);
  -moz-box-shadow: 0 10px 20px rgba(102,102,102,0.65);
  box-shadow: 0 10px 20px rgba(102,102,102,0.65);
}

.ts-currency__list:before,
.ts-currency__list:after {
  content: ' ';
  position: absolute;
  left: 50%;

  display: block;
  width: 0;
  height: 0;
  margin-left: -12px;

  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}

.ts-currency__list:before {
  top: -12px;

  border-bottom: 12px solid #dddddd;
}

.ts-currency__list:after {
  top: -11px;

  border-bottom: 12px solid #ffffff;
}

.ts-currency__item {
  display: block;
  min-height: 16px;
  margin: 0;
  padding: 5px 27px;
  overflow: hidden;

  white-space: nowrap;

  cursor: pointer;
} /*Блок одной валюты*/

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

.ts-currency__item-name {
  font-size: 14px;
  color: #265cff;
  text-decoration: none;

  border-bottom: 1px dotted;
} /*Название валюты*/
