:root {
    --footer-height: 60px;
}

.alert-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.alert-error hr {
    border-top-color: #e4b9c0
}

#new_order {
    /*Fixes when second modal is closed, first modal scroll hides*/
    overflow-y: scroll;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: var(--footer-height);
}

.clear {
    clear: both;
    height: var(--footer-height);
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: var(--footer-height);
    line-height: var(--footer-height); /* Vertically center the text there */
    background-color: #ededed;
}

.nipple-tag {
    position: absolute;
    right: 100px;
    top: 100%;
    display: inline-block;
    color: #fff;
    z-index: 1;
    height: 20px;
    line-height: 10px;
    font-size: 14px;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    vertical-align: middle;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    padding: 0 10px 0 10px;
}

.nipple-tag::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    left: -38px;
    background: radial-gradient(circle at bottom left, transparent 50%, #343a40 0) 23px 0;
    background-size: 87% 50%;
    background-repeat: no-repeat;
}

.nipple-tag::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: -36px;
    background: radial-gradient(circle at bottom right, transparent 50%, #343a40 0) -17px 0;
    background-size: 87% 50%;
    background-repeat: no-repeat;
}

.helptext {
    font-size: 80%;
    font-weight: 400;
    color: #6c757d !important;
}