﻿.loader {
    position: fixed;
    top: 50%;
    left: 40%;
    margin-left: 10%;
    transform: translate3d(-50%, -50%, 0);
}

.loaderdot {
    width: 24px;
    height: 24px;
    background: #ff8d00;
    border-radius: 100%;
    display: inline-block;
    opacity: 0;
    -webkit-animation: slide 1s ease 0.5s both infinite;
    -moz-animation: slide 1s ease 0.5s both infinite;
    -o-animation: slide 1s ease 0.5s both infinite;
    animation: slide 1s ease 0.5s both infinite;
}

    .loaderdot:nth-child(1) {
        animation-delay: 0.0s;
        background: #ff8d00;
    }

    .loaderdot:nth-child(2) {
        animation-delay: 0.1s;
        background: #fd9616;
    }

    .loaderdot:nth-child(3) {
        animation-delay: 0.2s;
        background: #fda805;
    }

    .loaderdot:nth-child(4) {
        animation-delay: 0.3s;
        background: #ffb402;
    }

    .loaderdot:nth-child(5) {
        animation-delay: 0.4s;
        background: #fbbe00;
    }

@-moz-keyframes slide {
    0% {
        transform: scale(1);
    }

    50% {
        opacity: 1.0;
        transform: scale(1.7);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes slide {
    0% {
        transform: scale(1);
    }

    50% {
        opacity: 1.0;
        transform: scale(1.7);
    }

    100% {
        transform: scale(1);
    }
}

@-o-keyframes slide {
    0% {
        transform: scale(1);
    }

    50% {
        opacity: 1.0;
        transform: scale(1.7);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slide {
    0% {
        transform: scale(1);
    }

    50% {
        opacity: 1.0;
        transform: scale(1.7);
    }

    100% {
        transform: scale(1);
    }
}

.map-canvas {
    width: 100%;
    height: 400px;
}

.text-shortened {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: inherit;
}
