﻿.watoolbar {
    position: fixed;
    z-index: 999999999999;
    justify-content: center;
    background: #FFF;
    align-items: center;
    display: none;
}

.watoolbar.active {
    display: flex;
}

.watoolbar[data-pos="1"] {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    border-radius: 0 0 6px 6px;
}

.watoolbar[data-pos="2"] {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    border-radius: 6px 6px 0 0;
}

.watoolbar[data-pos="3"] {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    border-radius: 0 6px 6px 0;
}

.watoolbar[data-pos="4"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    border-radius: 0 0 6px 6px;
}

.wa-selected, .wa-selected-section, .wa-selected-multi {
    position: absolute;
    border: 2px solid #00d2d3;
    animation: borderPulse 4000ms infinite ease-out;
    border-radius: 4px;
    pointer-events: none;
    z-index: 999999999999;
}

.wa-selected-section {
    border: 2px solid #f9ca24 !important;
    animation: borderPulseY 4000ms infinite ease-out;
}

.wat-button, .wat-button-s {
    width: 38px;
    height: 38px;
    color: #BBB;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    margin: 4px;
    border-radius: 6px;
    cursor: pointer;
}

.wat-button:hover, .wat-button-s:hover {
    background: #EEE;
}

.wat-button.active {
    color: #61c7cd;
}

.wat-button-s {
    font-size: 18px;
    transform: rotate(-90deg);
}

.wasubtitle {
    font-size: 50px;
    position: fixed;
    bottom: 20px;
    left: 0px;
    right: 0px;
    text-align: center;
    pointer-events: none;
    z-index: 999999999999;
    text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF;
    padding: 10px;
    background: rgba(0,0,0,.1);
    text-transform: capitalize;
}

@keyframes borderPulse {
    5% {
            box-shadow: inset 0px 0px 0px 5px rgba(0, 210, 211,.4), 0px 0px 0px 0px rgba(0, 210, 211,1);
        }

        15% {
            box-shadow: inset 0px 0px 0px 3px rgba(33, 254, 255,.2), 0px 0px 0px 10px rgba(0, 210, 211,0);
        }
    }

    @keyframes borderPulseY {
        5% {
            box-shadow: inset 0px 0px 0px 5px rgba(249, 202, 36,.4), 0px 0px 0px 0px rgba(249, 202, 36,1);
        }

        15% {
            box-shadow: inset 0px 0px 0px 3px rgba(251, 220, 110,.2), 0px 0px 0px 10px rgba(249, 202, 36,0);
        }
    }