﻿.annotations-canvas {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*border: 3px solid black;*/
    cursor: crosshair;
}
/* navbar */
.navbar-annotations {
    position: fixed;
    top: 75px;
    width: 100%;
    height: 56px;
    background-color: rgba(28, 28, 30, 0.25);
    padding: 10px;
}

    .navbar-annotations button {
        background-color: #8e8e93;
        border: none;
        border-radius: 18px;
        width: 36px;
        height: 36px;
        color: white;
        margin-right: 10px;
        padding: 0;
        transition-duration: 0.2s;
    }

        .navbar-annotations button:hover {
            background-color: #8e8e93;
        }

        .navbar-annotations button:focus {
            background-color: #8e8e93;
        }
.button-string {
    width: 72px !important;
    font-weight: 600;
}
.button-right-annotations {
    float: right;
}
.slider-container-annotations {
    position: fixed;
    bottom: 6px;
    left: calc(50% - 400px);
    width: 800px;
    height: 36px;
    border-radius: 18px;
    background-color: #3a3a3ce6;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/*.slider-container-glyph-annotations {
    display: inline-fl
    width: 36px;
    height: 36px;
}*/
.slider-container-inner-annotations {
    display: inline-block;
    width: 728px;
    height: 36px;
}

.slider-annotations {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 6px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin: 15px 0 15px 0;
}

    .slider-annotations:hover {
        opacity: 1;
    }

    .slider-annotations::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: white;
        cursor: pointer;
        opacity: 1;
        border: none;
        box-shadow: black 0 0 3px;
    }

    .slider-annotations::-moz-range-thumb {
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: white;
        cursor: pointer;
        opacity: 1;
        border: none;
        box-shadow: black 0 0 3px;
    }

.text-input-annotations {
    position: fixed;
    bottom: 6px;
    left: calc(50% - 250px);
    width: 500px;
    height: 36px;
    background-color: #3A3A3C;
    color: white;
    padding: 6px 18px 6px 18px;
    font-size: 1rem;
    border-radius: 24px;
    border: none;
    outline: none;
}

.interactable-annotations:hover, .interactable-annotations:focus {
    transition-duration: 0.2s;
    background-color: #8e8e93;
}
/* tools */
.toolbar-annotations {
    position: fixed;
    width: 48px;
    padding: 6px;
    background-color: #3A3A3C;
    border-radius: 24px;
    right: 6px;
    top: calc(50% - 326px);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 1);
}

    .toolbar-annotations ul {
        width: 36px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .toolbar-annotations li {
        padding: 0;
    }

li:not(:nth-last-of-type(1)) {
    margin-bottom: 6px;
}

.toolbutton {
    width: 36px;
    height: 36px;
    background-color: #636366;
    padding: 0;
    border: none;
    border-radius: 50%;
    transition-duration: 0.2s;
}

.toolbutton-selected {
    background-color: #0a84ff;
}

.picker-opener {
    position: relative;
    width: 36px;
    height: 36px;
}

.picker {
    position: absolute;
    top: 0px;
    right: 48px;
    height: 30px;
    padding: 0;
    background-color: #3A3A3C;
    border-radius: 24px;
    display: flex;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 1);
}

.picker-align {
    position: absolute;
    top: 0px;
    right: 48px;
    padding: 3px;
    background-color: #3A3A3C;
    border-radius: 20px;
    display: grid;
    grid-template-columns: auto auto auto;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 1);
}

.picker-item {
    width: 24px;
    height: 24px;
    background-color: #636366;
    border-radius: 50%;
    margin: 3px;
    transition-duration: 0.2s;
}

    .picker-item:hover {
        filter: brightness(140%);
        transform: scale(1.05);
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
    }

.glyph-color {
    position: absolute;
    top: 0px;
    right: 0px;
}

.brush-glyph {
    margin: 6px;
}

.separator {
    margin: 0 -6px 6px -6px;
    background-color: #000000;
    height: 2px;
}

.text-input {
    position: fixed;
    bottom: 100px;
    left: calc( 50% - 250px );
    width: 500px;
    height: 36px;
    background-color: #3A3A3C;
    color: white;
    padding: 6px 18px 6px 18px;
    font-size: 1rem;
    border-radius: 24px;
    border: none;
    outline: none;
}