.rating{
    width: 100%;
    height: 200px;
}
.rating ul{
    margin: 5px;
    height: 200px;
    text-align: center;

}
.rating ul li{
    padding:8px;
    margin: 5px;
    float: left;
    height: 100px;
    width: 150px;
    display: block;
    text-align: center;
}

.rating a{
    text-decoration: none;
    display: inline-block;
    text-shadow: 1px 1px 1px white,
    1px -1px 1px white,
    -1px 1px 1px white,
    -1px -1px 1px white;
    color: steelblue;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.rating ul li:hover{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    text-shadow: 0 0 0 #333;

    background: rgba(76,181,255,0.18);
}
.rating-item li {
    font-weight: normal;
    cursor: pointer;
    text-shadow: 0 0 15px #999;
    color: transparent;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#map {
    height: 400px;
    margin: 0 0 35px 0;
}
.spinner {
    width: 40px;
    height: 40px;

    position: relative;
    margin: 10px auto;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #4cb5ff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    -o-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1s;
    -moz-animation-delay: -1s;
    -o-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0);
        -moz-transform: scale(0.0);
        -ms-transform: scale(0.0);
        -o-transform: scale(0.0);
        transform: scale(0.0);
    } 50% {
          -webkit-transform: scale(1.0);
          -moz-transform: scale(1.0);
          -ms-transform: scale(1.0);
          -o-transform: scale(1.0);
          transform: scale(1.0);
      }
}
