/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 11 Μαϊ 2018, 4:02:21 μμ
    Author     : Αχιλλέας
*/


.bullhorn-icon {
    -webkit-animation: bullhorn-move 3s infinite; /* Safari 4+ */
    -moz-animation: bullhorn-move 3s infinite; /* Fx 5+ */
    -o-animation: bullhorn-move 3s infinite; /* Opera 12+ */
    animation: bullhorn-move 3s infinite; /* IE 10+, Fx 29+ */
    animation-timing-function: ease;
    animation-direction: alternate;
}

@-webkit-keyframes bullhorn-move {
    0%   { transform: rotate(15deg); }
    100% { transform: rotate(-35deg); }
}
@-moz-keyframes bullhorn-move {
    0%   { transform: rotate(15deg); }
    100% { transform: rotate(-35deg); }
}
@-o-keyframes bullhorn-move {
    0%   { transform: rotate(15deg); }
    100% { transform: rotate(-35deg); }
}
@keyframes bullhorn-move {
    0%   { transform: rotate(15deg); }
    100% { transform: rotate(-35deg); }
}


/* Map */
#map {
    width: 100%;
    height: 500px;
    background-color: grey;
}