@charset "utf-8";

.currency-selector { position: relative; float: left; margin: 15px 10px; color: rgb(255, 255, 255); font-size: 16px; line-height: 16px; font-weight: 700; text-transform: uppercase; font-family: "Roboto Condensed", sans-serif; background: rgb(26, 29, 15); border: 1px solid rgb(217, 166, 15); width: 81px; display: inline-block; border-radius: 4px; padding: 0px; box-sizing: border-box; max-height: 38px; transition: 0.2s; overflow: hidden; z-index: 2; }

.currency-selector.active { max-height: 200px; }

.currency-selector.active::after { transform: rotate(180deg); margin-top: -4px; }

.currency-selector::after { display: block; content: ""; position: absolute; width: 0px; height: 0px; border-width: 4px; border-style: solid; border-color: rgb(217, 166, 15) transparent transparent; right: 10px; top: 16px; transition: 0.2s; }

.currency-selector__item { position: relative; display: flex; align-items: center; justify-content: flex-start; padding: 10px 0px 10px 21px; border-bottom: 1px solid rgba(216, 216, 216, 0.2); flex-shrink: 0; cursor: pointer; order: 2; }

.currency-selector__item:nth-last-child(1) { border-bottom: 0px; }

.currency-selector__item:hover { background-color: rgb(68, 68, 68); }

.currency-selector__item.active { order: 1; }