video {
    flex: 0 1 100%;
    object-fit: fill; /* over-ride "object-fit: contain" only for webkit as it doesn't honour the ratio */
    overflow-clip-margin: 1em;
    overflow: hidden;
}

#map {
    min-height: 600px;
}

.cima-video {
    width: 600px;
    height: 400px;
}

@media only screen and (max-device-width: 480px) {
    /* define mobile specific styles come here */
    .cima-video {
        width: 100%;
        height: 100%;
    }
}

.marker {
    background-color: green;
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}


.blob {
    border-radius: 50%;
    margin: 10px;

    height: 30px;
    width: 30px;
    cursor: pointer;
}

@keyframes pulse-black {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.blob.white {
    background: white;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.blob.red {
    background: rgba(255, 82, 82, 1);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}

.blob.green {
    background: rgba(51, 217, 178, 1);
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}


.recording-circle {
    opacity: 0.1;
    border-radius: 50%;
    margin: 10px;
    height: 10px;
    width: 10px;
    cursor: pointer;
    background: rgba(255, 82, 82, 1);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
    animation: pulse-red 2s infinite;
}

.float-to-top {
    position: fixed;
    cursor: pointer;
    z-index: 100;
    bottom: 16px;
    right: 16px;
    opacity: 1;
    transition: transform 0.5s;
    flex: 1;
}
