/* Copyright (c) 2017, erikrahtjen. All rights reserved. Use of this source code
   is governed by a BSD-style license that can be found in the LICENSE file. */
@import url(https://fonts.googleapis.com/css?family=Roboto);
@import url(https://fonts.googleapis.com/css?family=Material+Icons);
@import url(https://fonts.googleapis.com/css?family=Lato&display=swap);

body {
    margin: 0px;
	color: #666666;
	margin: 0;
    font-family: Lato, 'roboto','Raleway' , HelveticaNeue, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#snaps_capella_control {
    bottom: 65px !important;
    right: 50px !important;
}

.loading-indicator {
    height: 250px;
    width: 250px;
    margin: 160px auto;
    animation-name: stretch;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running;
}

.loading-indicator img {
    padding: 10px;
    height: inherit;
    width: inherit;
}

@keyframes stretch {
    0% {
        transform: scale(.3);
        background-color: #2bb673;
        border-radius: 100%;
    }
    50% {
        background-color: #2bb673;
    }
    100% {
        transform: scale(1.5);
        background-color: #2bb673;
    }
}

::selection {
    color: white;
    background-color: #2bb673;
}