#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: 0px;
    background: #1e2b37 linear-gradient(180deg, #404b55, #1e2b37) repeat-x !important;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 999;
    right: 0;
    top: 65px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

.error {
    color: #e03737;
    font-size: 13px;
}

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

.ip-dropdown-content {
    display: none;
    position: absolute;
    background: #1e2b37 linear-gradient(180deg, #404b55, #1e2b37) repeat-x !important;
    min-width: 160px;
    padding: 12px 16px;
    z-index: 1;
    border-radius: 0.25rem
}

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

.ip-dropdown-content a {
    text-decoration: none !important;
}
.ip-text-green{
    color: #18832e;
}
.ip-text-orange{
    color: #f69815;
}