.switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center
}

.switcher-btn {
    background-color: #fff;
    width: 97px;
    display: inline-block;
    cursor: pointer;
    padding: 2px 0px !important;
    border: 1px solid #f0f2f6;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-size: 14px !important;
}

.switcher-btn:first-child {
    -webkit-border-radius: 70px 0 0 70px;
    border-radius: 70px 0 0 70px;
}

.switcher-btn:last-child {
    -webkit-border-radius: 0 70px 70px 0;
    border-radius: 0 70px 70px 0;
}

.switcher-btn:hover {
    background: rgb(3,65,103);
    background: linear-gradient(90deg, rgba(3,65,103,1) 0%, rgba(49,176,137,1) 100%);
    border-color: transparent;
    color: #fff;
}
.switcher-btn.active{
    background: rgb(118,184,42);
    background: linear-gradient(90deg, rgba(118,184,42,1) 0%, rgba(49,176,137,1) 100%);
    border-color: transparent;
    color: #fff;
}
.currencyswitcher {
    line-height: 2.5rem;
    margin-top: 20px;
}