﻿.actortimepicker
{
    position: relative;
    border: 1px solid #ccc;
    background: #fff;
    display: inline-block;
}

.actortimepicker *
{
    outline: none !important;
}

div.actortimepicker,
div.actortimepicker > div.main
{
    border-radius: 4px;
}
.picker-container{
    display: flex;
    align-items: center;
}
    .picker-container button {
        background: #eee;
    }
.picker-inner-container {
    display: flex;
    flex-direction: column;
    
}

.picker-row {
    display: flex;
    justify-content: center;
}

.picker-column {
    margin: 0 5px;
}


.actortimepicker div.main
{
    overflow: hidden;
}

.actortimepicker input[type=text]
{
    width: 80px;
}

.actortimepicker input[type=text],
.actortimepicker button
{
    border: none;
    box-shadow: none;
}

.actortimepicker .picker-column
{
    vertical-align: middle;
}

.actortimepicker input[type=text],
.actortimepicker button
{
    outline: none;
}

.actortimepicker button.toggler
{
    background: url("img/clock.svg?v1113") transparent no-repeat;
    background-size: 18px auto;
    border: none;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    margin-left: 6px;
    margin-right: 2px;
}

.actortimepicker .popup {
    display: none;
    position: relative;
    left: 0;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    padding: 0.3em;
    text-align: center;
}

.actortimepicker .popup button
{
    width: 2em;
    height: 2em;
    color: #fff;
}

.actortimepicker .popup .picker-column
{
    padding: 0.2em;
    cursor: pointer;
}

.actortimepicker.expanded .popup,
.actortimepicker.expanded .overlay
{
    display: block;
}

.actortimepicker .popup .picker-column
{
    vertical-align: top;
}

.actortimepicker .popup .picker-column
{
    width: 39px;
}

.actortimepicker .popup > div.selected,
.actortimepicker .popup > div:hover
{
    background: #ccc;
}

.actortimepicker .overlay
{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
}
