/**
 * Voice Dialog - Navigation
 *
 * Copyright (c) 2019 speak2web
 */
.voice-dialog-navigation-wrapper {
    display: inline-block;
    position: relative; 
}
.voice-dialog-navigation-wrapper input { margin: 0; }
.voice-dialog-navigation-button {
    position: absolute;
    margin-left: 5px;
    top: 0;
    float: right;
    height: 30px !important;
    width: 30px !important;
    margin: 0;
    border: 0;
    padding: 0 !important;
    background: none !important;
    background-color: #FFFFFF !important;
    border-radius: 50% !important;
    font: 0/0 a !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important; 
}
.voice-dialog-navigation-mic,
.voice-dialog-navigation-mic:after,
.voice-dialog-navigation-holder,
.voice-dialog-navigation-holder:before,
.voice-dialog-navigation-holder:after {
    position: absolute;
    background: #333; 
}
/* Microphone icon */
.voice-dialog-navigation-mic {
    display: block;
    height: 25%;
    /* 8px / 32px */
    top: 9.375%;
    /* 3px / 32px */
    left: 37.5%;
    /* 12px / 32px */
    right: 37.5%;
    /* 12px / 32px */
    border-radius: 99px 99px 0 0;
    cursor: pointer;
}
.voice-dialog-navigation-mic:before {
    position: absolute;
    z-index: 1;
    content: '';
    width: 150%;
    /* 12px / 8px */
    height: 137.5%;
    /* 11px / 8px */
    top: 100%;
    /* 8px / 8px */
    left: -25%;
    /* -2px / 8px */
    background: #FFFFFF;
}
.voice-dialog-navigation-mic:after {
    z-index: 1;
    content: '';
    width: 100%;
    /* 10px / 10px */
    height: 100%;
    /* 10px / 10px */
    top: 110%;
    /* 11px / 10px */
    left: 0; 
}
.voice-dialog-navigation-mic:before,
.voice-dialog-navigation-mic:after,
.voice-dialog-navigation-holder { border-radius: 0 0 99px 99px;  }
.voice-dialog-navigation-holder {
    display: block;
    height: 40.625%;
    /* 13px / 32px */
    width: 50%;
    /* 16px / 32px */
    left: 25%;
    /* 8px / 32px */
    top: 37.5%;
    /* 12px / 32px */
}
.voice-dialog-navigation-holder:after {
    content: '';
    width: 66.666%;
    /* 8px / 16px */
    height: 18.182%;
    /* 2px / 13px */
    bottom: -30.769%;
    /* -4px / 13px */
    left: 16.667%;
    /* 2px / 16px */
}
.voice-dialog-navigation-holder:before {
    content: '';
    width: 33.333%;
    /* 4px / 16px */
    height: 27.273%;
    /* 3px / 13px */
    top: 92.308%;
    /* 12px / 13px */
    left: 33.333%;
    /* 4px / 16px */ 
}
.search-submit {
    background: none!important;
    pointer-events: none;
}
.search-submit:before {
    display: none!important;
}
.voice-dialog-navigation-button.listening{
    font-size: 0;
    background-color: red!important;
    border: 0;
    border-radius: 50% !important;
    outline: none!important;
    -webkit-animation-name: pulse;
            animation-name: pulse;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
}
@-webkit-keyframes pulse{
    0%{ -webkit-box-shadow: 0px 0px 5px 0px rgba(173,0,0,.3); box-shadow: 0px 0px 5px 0px rgba(173,0,0,.3); }
    65%{ -webkit-box-shadow: 0px 0px 5px 13px rgba(173,0,0,.3); box-shadow: 0px 0px 5px 13px rgba(173,0,0,.3); }
    90%{ -webkit-box-shadow: 0px 0px 5px 13px rgba(173,0,0,0); box-shadow: 0px 0px 5px 13px rgba(173,0,0,0); }
}
@keyframes pulse{
    0%{ -webkit-box-shadow: 0px 0px 5px 0px rgba(173,0,0,.3); box-shadow: 0px 0px 5px 0px rgba(173,0,0,.3); }
    65%{ -webkit-box-shadow: 0px 0px 5px 13px rgba(173,0,0,.3); box-shadow: 0px 0px 5px 13px rgba(173,0,0,.3); }
    90%{ -webkit-box-shadow: 0px 0px 5px 13px rgba(173,0,0,0); box-shadow: 0px 0px 5px 13px rgba(173,0,0,0); }
}
.vd-navigation-mic-band {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
.vdn-hide-element{ display: none !important; }
.vdn-response-controller{
    position: fixed;
    margin: auto;
    top: 45%;
    right: 10px;
    width: 40px;
    height: auto;
    background-color: #000000;
    border-radius: 25px;
    padding: 10px;
    z-index: 9999 !important;
}
.vdn-speaker-icon{
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    margin-bottom: 5px;
}