.vertical-align-middle {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block !important;
}

.center-contents {
    display: flex;
    display: -ms-flexbox !important;
    align-items: center;
    justify-content: center;
}

.center-contents-vertical {
    display: flex !important;
    display: -ms-flexbox;
    align-items: center;
}

.center-horizontal {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block !important;
}

.text-overflow-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid black;
    display: inline-block;
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid black;
    display: inline-block;
    transform: rotate(180deg);
}

.panel {
    border-radius: 0;
    margin-bottom: 10px;
    border: none;
}

.panel-shadow {
    box-shadow: 3px 3px 3px rgba(0,0,0,.2);
}

.p12 {
    padding: 12px;
}

.m12 {
    margin-left: 12px;
    margin-right: 12px;
}

.mt50 {
    margin-top: 50px;
}

.w50 {
    width: 50%;
}

.p15 {
    padding: 15px;
}

.no-padding {
    padding: 0px !important;
}

.col-padding-fix {
    padding-left: 6px;
    padding-right: 6px;
}

.fullsize {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.p-relative {
    position: relative;
}

.bold {
    font-weight: bold;
}

.worklog-teal {
    background-color: #00838F;
}

.button-worklog-lg {
    width: 100%;
    height: 4em;
    margin-bottom: 20px;
    background-color: #00838F;
    color: white;
    cursor: pointer;
}

.button-worklog-sm {
    width: 24%;
    height: 2.5em;
    font-size: 12px;
    background-color: rgb(120, 70, 70);
    color: white;
    cursor: pointer;
}

.button-worklog-xs {
    width: 40px;
    height: 2em;
    font-size: 13px;
    background-color: rgb(120, 70, 70);
    color: white;
    cursor: pointer;
}

a[href='#'] {
    text-decoration: none;
}

a > .button-worklog-xs {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 5px;
    padding-right: 5px;
}

.button-worklog-lg:hover,
.button-worklog-sm:hover,
.button-worklog-xs:hover {
    background-color: rgb(149, 94, 94);
}

#date-interval {
    float: left;
    position: absolute;
    left: 10%;
    bottom: 5%;
}

.dots-menu {
    cursor: pointer;
    position: relative;
    top: -40px;
}

.dots-menu .dots {
    width: 15px;
    height: 5px;
    background-image: radial-gradient(circle at center, black 2px, transparent 2px);
    background-size: 5px 5px;
    float: right;
    transform: scale(1.3);
}

.dots-menu .hitzone {
    position: absolute;
    width: 20px;
    height: 20px;
    top: -7px;
}

div[name="log-minipanel"] .dropdown-menu {
    position: absolute;
    top: -3px;
    left: 102%;
    z-index: 1000;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}


hr.dividing-line {
    border-top: 1px solid #dedede;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: -11px;
    margin-right: -11px;
}

@media (max-width: 767px) {
    div[name="log-minipanel"] .dropdown-menu {
        left: -130px;
    }

    .button-worklog-sm {
        font-size: 9px;
    }
}