.div-large {
    display: none;
}

@media screen and (min-width: 600px) {
    .div-small {
        display: none;
    }
    .div-large {
        display: block;
    }
}

.div-large-alt {
    display: none;
}

@media screen and (min-width: 1280px) {
    .div-small-alt {
        display: none;
    }
    .div-large-alt {
        display: block;
    }
}

.no-wrap {
    white-space: nowrap;
}

.menu-invert {
    color: #37b37f !important;
}


/* CSS alert */
.alert {
    padding: 20px;
    background-color: #ffd730;
    color: white;
    margin-bottom: 15px;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}