.currency-converter {
    display: flex;
}

.currency-converter .widget {
    display: none;
}

.currency-converter .currency-converter-replacement {
	border: 2px solid #e65928;
	border-radius: 5px;
	margin-left: 15px;
    position: relative;
    cursor: pointer;
}

.currency-converter .currency-converter-replacement.active {
    border: 0 0 5px 5px;
}

.currency-converter .currency-converter-replacement .current {
	height: 26px;
	line-height: 26px;
	position: relative;
	padding: 0 20px 0 10px;
}

.currency-converter .currency-converter-replacement .current .text .symbol,
.currency-converter .currency-converter-replacement .current .text .code {
	color: #e65928; 
}

.currency-converter .currency-converter-replacement .current .icon {
    width: 10px;
    height: 6px;
    position: absolute;
    display: block;
    top: 50%;
	margin-top: -3px;
    right: 5px;
	font-size: 0;
	line-height: 0;
}

.currency-converter .currency-converter-replacement .current .icon svg {
	display: block;	
}

.currency-converter .currency-converter-replacement ul {
    position: absolute;
    border: 2px solid #e65928;
    border-top: none;
    border-radius: 0 0 5px 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    left: -2px;
    right: -2px;
    top: calc(100% - 1px);
    background-color: #fff;
    z-index: 100;
    display: none;
}

.currency-converter .currency-converter-replacement.active ul {
    display: block;
}

.currency-converter .currency-converter-replacement ul li {
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    text-align: left;
}

.currency-converter .currency-converter-replacement ul li:hover span {
    color: #e65928;
}

.woocommerce-store-notice.demo_store {
    display: none;
}

@media only screen and (max-width: 991px) {
    .currency-converter .currency-converter-replacement .current .text,
    .currency-converter .currency-converter-replacement ul li {
        text-align: center;
    }

    .currency-converter .currency-converter-replacement .current .text .code,
    .currency-converter .currency-converter-replacement ul li .code {
        display: none;
    }
}

@media only screen and (max-width: 420px) {
    .currency-converter .currency-converter-replacement {
        margin-left: 5px;
    }
}