/****************************************************************************
** Text Input Drop Down Arrow
*****************************************************************************/

input::-webkit-calendar-picker-indicator
{
background-color: transparent;
background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="10" height="5"><path fill="%23ADADAD" d="m 0,0 10,0 -5,5 z" /></svg>');
background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="3" height="14"><circle cx="1.5" cy="12.5" r="1.5" fill="%23ADADAD" /><circle cx="1.5" cy="7" r="1.5" fill="%23ADADAD" /><circle cx="1.5" cy="1.5" r="1.5" fill="%23ADADAD" /></svg>');
background-origin: content-box;
background-position: center center;
background-repeat: no-repeat;
background-size: contains;
border-width: thin;
color: transparent;
display: block;
opacity: 1;
/*
height: 10px;
width: 10px;
*/
padding: 5px;
margin: 0;
overflow: visible;
transform: translateX(7px);

-webkit-transition: all 0.25s linear;
   -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
     -o-transition: all 0.25s linear;
        transition: all 0.25s linear;
}

input:hover::-webkit-calendar-picker-indicator
{
background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="10" height="5"><path fill="%233A8BE9" d="m 0,0 10,0 -5,5 z" /></svg>');
background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="3" height="14"><circle cx="1.5" cy="12.5" r="1.5" fill="%233A8BE9" /><circle cx="1.5" cy="7" r="1.5" fill="%233A8BE9" /><circle cx="1.5" cy="1.5" r="1.5" fill="%233A8BE9" /></svg>');
}
