body {
    font-family: 'Roboto';
    text-align: center;
    overflow: hidden;

}

h1 {
    font-size: 50px;
    margin: 0.2em;
}

h2 {
    margin: 1em 0 0.25em;
}


#container{
	position: absolute;
	left: 20px;
	top: 20px;
	bottom: 6em;
	right: 20px;
	border: 5px solid black;
	cursor: default;
	overflow: hidden;
}

.main {
    opacity: 100%;
}

.main.disabled {
    opacity: 50%;
}

.info-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.info-wrapper.disabled {
    display: none;
}

.info {
    display: block;
    justify-content: center;
    width: 65%;
    z-index: 100;
    background: #fff;
    border-radius: 5px;
    border: 2px solid black;
    padding: 1rem;

}

.info-close {
    position: relative;
    float: right;
}

.info-close:hover {
    cursor: pointer;
}


/* .info .active {
    display: none;
} */

#colors {
    background-color: rgba(0, 0, 0, 0.75);
    color: rgb(250, 250, 250);
    text-align: center;
    vertical-align: middle;
    line-height: 0;
    width: 16em;
    height: 4em;
    padding: 5px;
    position: absolute;
    bottom: 0.5em;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
}

.color {
    display: block;
    width: 2em;
    height: 2em;
    cursor: pointer;
    margin: 0px;
    padding: 0px; 
}

.open {
    position: absolute;
    left: 8em;
    bottom: 1em;    
}

.open:hover {
    cursor: pointer;
}

.open img {
    height: 42px;
    width: auto;
}

.users-div {
    position: absolute;
    left: 1em;
    bottom: 1em;
}


.users {
    display: inline-block;
    position: relative;
    padding: 0.6em;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 0.2em;
    font-size: 1.3em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.users::before, 
.users::after {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.users::before {
    display: block;
    content: "\f007";
    font-family: "FontAwesome";
    transform-origin: top center;
}

.users::after {
    font-family: Arial;
    font-size: 0.7em;
    font-weight: 700;
    position: absolute;
    top: -15px;
    right: -15px;
    padding: 5px 8px;
    line-height: 100%;
    border: 2px #fff solid;
    border-radius: 60px;
    background: black;
    opacity: 0;
    content: attr(data-count);
    opacity: 0;
    transform: scale(0.5);
    transition: transform, opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.users.notify::before {
    animation: ring 1.5s ease;
}

.users.show-count::after {
    transform: scale(1);
    opacity: 1;
}

@keyframes ring {
    0% {
        transform: rotate(35deg);
    }
    12.5% {
        transform: rotate(-30deg);
    }
    25% {
        transform: rotate(25deg);
    }
    37.5% {
        transform: rotate(-20deg);
    }
    50% {
        transform: rotate(15deg);
    }
    62.5% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.position-div {
    position: absolute;
    right: 1em;
    bottom: 1em;
}

.position {
    background-color: rgba(0, 0, 0, 0.75);
    color: rgb(250, 250, 250);
    text-align: center;
    vertical-align: middle;
    line-height: 42px;
    width: auto;
    height: 42px;
    border-radius: 21px;
    padding: 0px 1.5em;
    white-space: nowrap;
}

@media only screen and (max-width: 600px) {
    
    /* .open {
        top: 1em;
    }

    .users-div {
        top: 1em;
    }

    .position-div {
        top: 0.2em;
    } */

    #colors {
        top: 1em;
    }

    #container {
        top: 6em;
        bottom: 4.5em;
    }
}

#spinner {
    visibility: hidden;
    width: 70px;
    height: 70px;
  
    border: 7px solid #f3f3f3;
    border-top:10px solid black;
    border-radius: 100%;
  
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right: 0;
    margin: auto;
  
    animation: spin 1s infinite linear;
}
  
@keyframes spin {
    from {
        transform: rotate(0deg);
    } to {
        transform: rotate(360deg);
    }
}

#spinner.show {
    visibility: visible;
}
