.dropbtn {
	width: 60px;
    height: 46px;
    margin: 2px;
    background: linear-gradient(to bottom, #232323 50%, #171717 50%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.dropdown {
    position: relative;
    display: inline-block;
    top: 0;
}

.dropdown-content {
    display: none;
    right: 40px;
    float: right;
    text-align: right;
    padding: 0;
    position: fixed;
    top: 10px;
    z-index: 100;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropbtn:hover {
	background: linear-gradient(to bottom, #D42B2B 50%, #D11A1A 50%);
}
