.dropdown,
.dropdown2 {
    position: relative;
}

.dropdown-toggle,
.dropdown-menu2 {
    cursor: pointer;
}

.dropdown-menu,
.dropdown-menu2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    padding: 4px 6px;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #fff;
    text-align: left;
    list-style: none;
    background: #33334D;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 10px;
    min-width: 140px;
}

.dropdown-item {
    display: flex;
    width: 100%;
    padding: 2px 10px;
    clear: both;
    font-weight: 400;
    color: #fff !important;
    text-align: inherit;
    white-space: nowrap;
    border: 0;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    background: #33334D !important;
    background-color: #33334D !important;
    margin-bottom: 10px;
}

.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #141523 !important;
}

.device-dropdown button {
    background: #141523;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 1.5px solid #292b43;
}

.device-dropdown .dropdown-menu {
    background: #33334d;
}

.device-dropdown .dropdown-menu .dropdown-item {
    color: #fff;
    font-size: 14px;
    margin-bottom: 6px;
}

.device-dropdown .dropdown-menu .dropdown-item:hover {
    background: #222336;
}

.coins-dropdown .dropdown-menu {
    background: #33334d;
}

.coins-dropdown .dropdown-menu .dropdown-item {
    font-size: 12px;
}

.coins-dropdown .dropdown-menu .dropdown-item,
.coins-dropdown .dropdown-menu .dropdown-item:hover {
    color: #fff;
    background: #33334d !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 19px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111923;
    transition: .1s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #33334D;
    transition: .1s;
}

#checkbox-usdt:checked+.slider {
    background-color: #1EBE73;
}

#checkbox-usdt:focus+.slider {
    box-shadow: 0 0 1px #1EBE73;
}

#checkbox-usdt:checked+.slider:before {
    transform: translateX(20px);
    background-color: #fff;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}