/* shared.css -- classes shared by 2+ popups */

input.textdata {
	width: 80%;
	padding: 8px;
    font-family: "Open Sans", "IBM Plex Sans", sans-serif;
	font-weight: bold;
}

center.halfspacer {
    margin-top: 16px;
    margin-bottom: 16px;
}

div.popup-textedit {
}

button.label-selector-label {
    padding: 7px;
    border-radius: 4px;
    outline: none;
	font-weight: bold;
    color: black;
    border: 1px solid darkgray;
    background-color: white;
    margin-bottom: 10px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

button.label-selector-label.label-selector-selected {
    background-color: gold;
    border: 1px solid black;
}

button.label-selector-label:hover {
    background-color: deepskyblue;
}

img.label-selector-symbol {
    height: 20px;
    margin-right: 8px;
}

img.label-symbol {
    height: 20px;
    border: 4px solid white;
    border-radius: 4px;
    margin-right: 0px;
}

img.label-symbol:hover {
    background-color: deepskyblue;
    border: 4px solid deepskyblue;
    border-radius: 4px;
}

img.label-symbol.selected-label {
    background-color: gold;
    border: 4px solid gold;
    border-radius: 4px;
}

button.rect-xl-flat {
    width: 56px;
    height: 36px;
}

img.rect-xl-flat {
    width: 50px;
    height: 32px;
}

div.aligned {
    display: flex;
    align-items: center;
    justify-content: center;
}

button.color-picker {
    width: 30px;
    height: 30px;
    border: 1px solid black;
    border-radius: 4px;
    margin-left: 3px;
    margin-right: 3px;
    margin-top: 12px;
    margin-bottom: 0px;
    padding: 0px;
    position: relative;
}

img.dot {
    width: 9px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@media only screen and (max-width: 1024px) {
    button.color-picker {
        margin-left: 4px;
        margin-right: 4px;
        margin-top: 16px;
        margin-bottom: 0px;
    }
}

button.color-picker:hover {
    border: 2px solid black;
}
