body,html{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #101010 !important;
    padding-top: 50px;
}

.highlight {
    color: #00a379;
}

.strongHighlight {
    font-weight: 900px;
}

div.container {
    position: relative;
    z-index: 2;
}

.logoContainer > logoTextMain#collab {
    left: 7px;
}

span#providedBy{
    font-size: 15px;
    position: fixed;
    bottom: 0;
    right: 0;
    background: #222222;
    border-radius: 5px;
    padding: 5px;
    z-index: 2;
}

.vis-network:focus {
    outline: none;
}

.searchbar{
    margin-top: 10px;
    margin-bottom: auto;
    height: 60px;
    background-color: #222;
    border-radius: 30px;
    padding: 10px;
    pointer-events: all;
}

.searchbar-static{
    margin-bottom: auto;
    margin-top: 5%;
    height: 60px;
    border-radius: 30px;
}

span.welcome {
    font-size: 50px;
}

span#collab {
    position: relative;
    left: 2px;
}

span#gs {
    position: relative;
    left: -8px;
}

.searchbar-static #spinner {
    top: 13px;
    background-size: 30px 30px;
}

.searchbar-static > .vinyl {
    width: 30px;
    height: 30px;
}

.logoText {
    font-family: 'Big Shoulders Text', cursive;
    font-size: 35px;
    text-shadow:0 0 5px #00bc8c;
    margin-top: 10px;
}

.logoTextMain {
    font-size: 30px;
    left: 7px;
}

span.logoTextMain#gs {
    left: -4px;
}

.collabogsLogo {
    position: fixed;
    left: 44%;
    top: 0;
    transition: left 0.4s linear;
    pointer-events: none;
}

.collabogsLogo:hover {
    left: 37%;
    transition: left 0.4s linear;
}

.search_input{
    font-size: 20px;
    color: white;
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    caret-color:transparent;
    line-height: 40px;
    transition: width 0.4s linear, padding-left 0.4s linear;
}

#searchWrapperMobile:hover > input.search_input {
    color: #444444;
}

#searchWrapperMobile:hover > input.search_input::placeholder {
    color: #999999;
}
#searchWrapperMobile:hover > input.search_input:-webkit-autofill {
    -webkit-text-fill-color: #444444;
}
#searchWrapperMobile:hover > input.search_input:disabled {
    background-color: #ebebeb;
    color: #aaaaaa;
}
#searchWrapperMobile:hover > input.search_input:-webkit-autofill:disabled {
    -webkit-text-fill-color: darkgray;
    -webkit-box-shadow: 0 0 0 30px #222222 inset !important;
}
input.search_input:-webkit-autofill:disabled {
    -webkit-box-shadow: 0 0 0 30px #222222 inset !important;
    -webkit-text-fill-color: darkgray;
}

/*
input.search_input,
input.search_input::placeholder {
    color:#FFFFFF;
}
 */

input.search_input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #222222 inset !important;
    -webkit-text-fill-color: #FFFFFF;
}

input.search_input:-webkit-autofill:hover,
input.search_input:-webkit-autofill:focus,
input.search_input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #222222 inset !important;
    -webkit-text-fill-color: #FFFFFF;
}

input.search_input:disabled, input.search_input[readonly] {
    background-color: #222222;
    color: darkgray;
}

.disabled{
    color: darkgray;
}

.searchbar:hover > .search_ready{
    width: 210px;
    caret-color: white;
    padding-left: 10px;
    transition: width 0.4s linear, padding-left 0.4s linear;
}

.search_icon, .thanks_icon{
    height: 40px;
    width: 40px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color:white;
}

div#menzo {
    position: absolute;
    top: 0;
    overflow-y: auto;
    z-index: 2;
    max-width: 266px;
    max-height: 100%;
}

.list-group-item {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 5px;
}

div#nodeListWrapper {
    height: 100%;
}

a.artistLink:hover {
    text-decoration: none;
}

img.nodeDOMimg {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

canvas#space {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 0;
}

div#network {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.vinyl{
    width: 60px;
    height: 60px;
}

.ready {
    background-image: url("../img/vinyl/vinyl-green.svg");
    background-size: 60px 60px;

    position: relative;
    vertical-align: middle;
    text-align: center;
    padding-top: 40%;
}

a.search_icon:hover {
    text-decoration: none;
    color: white;
}

.busy {
    content:url("../img/vinyl/vinyl-red.svg");
}

.waiting {
    content:url("../img/vinyl/vinyl-yellow.svg");
}

.spinner {

    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}


/*********** COUNTDOWN *************/

#countdown-number {
    color: white;
    display: inline-block;
    line-height: 40px;
}

svg#countdown-progress {
    display: none;
    position: absolute;
    margin-top: -63px;
    margin-left: -3px;
    width: 66px;
    height: 66px;
    transform: rotateY(-180deg) rotateZ(-90deg);
}

svg#countdown-progress circle {
    stroke-dasharray: 198px;
    stroke-dashoffset: 0px;
    stroke-linecap: round;
    stroke-width: 4px;
    stroke: yellow;
    fill: none;
    animation: countdown 60s linear infinite forwards;
}

@keyframes countdown {
    from {
        stroke-dashoffset: 0px;
    }
    to {
        stroke-dashoffset: 198px;
    }
}

.nodeOptions {
    visibility: hidden;
}

/************** NODE OPTION ICONS ******************/
.fa-crosshairs, .fa-times-circle, .fa-share {
    font-size: 20px;
}
.fa-crosshairs:hover, .fa-times-circle:hover, .fa-share:hover {
    color: #00a379;
}

span.icons-wrapper {
    visibility: hidden;
}

/********************* MENU ********************
************************************************/
.floating-menu {
    border-radius: 100px;
    z-index: 999;
    padding-top: 0px;
    /*padding-bottom: 10px;*/
    right: 35px;
    position: fixed;
    display: inline-block;
    top: 290px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.floating-menu-home {
    border-radius: 100px;
    z-index: 999;
    padding-top: 0px;
    right: 35px;
    position: relative;
    display: inline-block;
    /*top: 250px;*/
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.main-menu {
    margin: 0;
    padding-left: 0;
    list-style: none;
    background-color: #222;
    border-radius: 45px;
}

.main-menu li a {
    display: block;
    padding: 10px;
    color: #fff;
    border-radius: 50px;
    position: relative;
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

.main-menu li a:hover {
    background: rgba(244, 244, 244, .3)
}

.menu-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: -1;
    top: 0;
    left: 0;
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s
}

.ripple {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0)
}

.ripple:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity 1s
}

.ripple:active:after {
    transform: scale(0, 0);
    opacity: .2;
    transition: 0s
}

.vinyl-share::before {
    content: url('../img/vinyl/vinyl-share.svg');
}

.vinyl-delete::before{
    content: url('../img/vinyl/vinyl-delete.svg');
}

.vinyl-screenshot::before {
    content: url('../img/vinyl/vinyl-screenshot.svg');
}

.vinyl-map::before{
    content: url('../img/vinyl/vinyl-map.svg');
}

.vinyl-show::before {
    content: url('../img/vinyl/vinyl-show.svg');
}

.vinyl-fit::before{
    content: url('../img/vinyl/vinyl-fit.svg');
}

.vinyl-help::before{
    content: url('../img/vinyl/vinyl-help.svg');
}

.vinyl-home::before {
    content: url('../img/vinyl/vinyl-home.svg');
}

#loadingOverlay {
    background: #000000;
    color: #666666;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1111;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    padding-left: 50%;
    opacity: .80;
}

#loadingTable {
    border:0;
    position:relative;
    left:-140px;
    top: -33px;
}

#modalHelp {
    /*display: block !important; */
    max-height: 90%;
    overflow-y: auto;
}

#modalHelpDialog {
    max-width: 900px;
}

#modalHelpBody {
    overflow-y: initial !important
}

#modalHelpHeader {
    background-color: #1b4f72;
}

.mainFooter {
    bottom: 0;
    width: 100%;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.faqFooter {
    position: fixed;
    bottom: -16px;
    width: 100%;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

#helpMap {
    position:relative;
    height:281px;
    width:450px;
    margin:0 auto;
}

#helpMap img {
    position:absolute;
    left:0;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}
#helpMap img.bottom {
    opacity: 0;
}

#helpMap:hover > img.bottom {
    opacity: 1;
    transition: opacity 0.4s linear;
}

#helpMap:hover > img.top {
    opacity: 0;
    transition: opacity 0.4s linear;
}
a:hover, button.btn.btn-link.collapsed:hover {
    color: #abdde5;
}

.langSwitch {
    position: relative;
    top: 7px;
    margin-right: 40px;
}

.langSwitch > a > img {
    padding: 5px;
}

.googleBadge  {
    position: absolute;
    float: left;
    width: 32%;
    top: 15%;
    left: 30%;
}

@media only screen and (min-width: 288px) {
    .googleBadge  {
        position: absolute;
        float: left;
        width: 36%;
        top: 18%;
        left: 46%;
    }   
}

@media only screen and (min-width: 414px) {
    .googleBadge  {
        position: absolute;
        float: left;
        width: 33%;
        top: 18%;
        left: 37%;
    }   
}


@media only screen and (min-width: 496px) {
    .googleBadge  {
        position: absolute;
        float: left;
        width: 25%;
        top: 18%;
        left: 25%;
    }   
}

@media only screen and (min-width: 760px) {
    .googleBadge  {
        position: absolute;
        float: left;
        width: 19%;
        top: 18%;
        left: 19%;
    }   
}



@media only screen and (min-width: 992px) {
    .googleBadge  {
        position: absolute;
        float: left;
        width: 12%;
        top: 20%;
        left: 13%;
    }   
}
