#expander {
    display: block;
    position: absolute;
    top: 26px;
    left: 0;
	transition: background-color 0.25s, border 0.25s, color 0.25s;
	background-color: #141414;
    border: 2px solid #f07224;
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
    line-height: 15px;
    color: #f07224;
}

#expander:hover {
	transition: background-color 0.25s, border 0.25s, color 0.25s;
    background-color: #b34d26;
    border: 2px solid #141414;
	color: #141414;
}

#expander:active {
	transition: color 0s;
    color: #ccc;
}

@media(min-width:200px) {
    #expander {
        padding: 10px;
        font-size: 15px;
        line-height: 15px;
    }
}

@media(min-width:400px) {
    #expander {
        padding: 15px;
        font-size: 20px;
        line-height: 20px;
    }
}

@media(min-width:450px) {
    #expander {
        padding: 15px;
        font-size: 25px;
        line-height: 25px;
    }
}

@media(min-width:500px) {
    #expander {
        padding: 17px;
        font-size: 30px;
        line-height: 30px;
    }
}

@media(min-width:1100px) {
    #expander {
        display: none;
    }
}