* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.overlay-circle path {
    stroke: rgba(0, 0, 255, .5);
    stroke-width: 5px;
    fill: rgba(0, 0, 255, .4);
}

.leaflet-popup-content-wrapper {
    background-color: #2e2e2e;
    color: #fff;
}

.leaflet-popup-tip {
    border-top: 10px solid #2e2e2e;
}

.leaflet-popup-content-wrapper a {
    color: #55acee;
}

.leaflet-popup-close-button {
    display: none;
}

.leaflet-popup .left {
    float: left;
}

.leaflet-popup .left img {
    border-radius: 4px;
}

.leaflet-popup .right {
    margin-left: 60px;
}

.leaflet-popup-content {
    width: 400px !important;
}

.name {
    font-size: 1.1rem;
    font-weight: 500;
}

.handle {
    font-size: .8rem;
    opacity: .75;
}

.tweet {
    word-break: break-all;
}


/*loader*/

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .75);
    opacity: 1;
    -webkit-transition: opacity 2s;
    -moz-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
}

.loader-text {
    position: relative;
    overflow: hidden;
    top: 35%;
    text-align: center;
    font-weight: 500;
    font-size: 2rem;
    opacity: .85;
}

.loader {
    position: relative;
    margin: -70px auto 0 auto;
    width: 140px;
    height: 140px;
    overflow: hidden;
    top: 50%;
}

.loader div {
    height: 100%;
}

.loader,
.loader div {
    border-radius: 50%;
    padding: 8px;
    border: 2px solid transparent;
    -webkit-animation: rotate linear 3s infinite;
    animation: rotate linear 3s infinite;
    border-top-color: rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(0, 0, 255, 0.5);
}
