#container {
    width: 500px;
    margin: auto !important;
    display: block;
    height: 500px;
    position: relative;
    list-style-type: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.card {
    display: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    color: #fff;
    padding: 20px;
    width: 360px;
    height: 360px;
    top: 50px;
    left: 50px;
    position: absolute;
    cursor: hand;
}
.rotate-left {
    transform: rotate(30deg) scale(0.8);
    transition: 1s;
    margin-left: 400px;
    cursor: e-resize;
    opacity: 0;
    z-index: 10;
}
.rotate-right {
    transform: rotate(-30deg) scale(0.8);
    transition: 1s;
    opacity: 0;
    margin-left: -400px;
    cursor: w-resize;
    z-index: 10;
}
.icon
    {
    background: #222;
    width: 340px;
    height: 340px;
    display: block;
    margin-top: 10px;
    margin-left: 10px;
    background-size: auto 100% !important;
    background-position: center;
    background-repeat: no-repeat;
}
.like {
    border-radius: 5px;
    padding: 5px 10px;
    border: 3px solid white;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    position: absolute;
    top: 50px;
    right: 40px;
    text-shadow: none;
}
.dislike {
    border-radius: 5px;
    padding: 5px 10px;
    border: 3px solid white;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    position: absolute;
    top: 50px;
    left: 40px;
    text-shadow: none;
}
    
.result {
    text-align: center;
    font-size: 40px;
}
    
.description {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-weight: 70;
    font-size: 120%;
    letter-spacing: 1px;
    color: black;
    text-shadow: none;
    background-color: white;
  "
}

.message {
    position: absolute;
    text-align: center;
    top: 10%;
    left: 40%;
    font-size: 300%;
    font-weight: 75;
    color: darkgray;
    }
    
.indicator {
    color: darkgray;
    position: absolute;
    font-size: 200%;
    font-weight: 75;
    
}
    
.indicator-left {
    transform: rotate(-90deg);
    top: 25%
        
}
.indicator-right {
    transform: rotate(90deg);
    top: 26%;
    right: 0;
}

.speech-bubble {
    position: relative;
    padding: 15px;
    margin: 1em 0 3em;
    background: #ffffff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
	border-radius: .7em;
    color: darkgray;

}

.speech-bubble:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #ffffff transparent;
    display: block;
    width: 0;
}
   
.speech-bubble-container {
    margin-left: 3em;
    margin-right: 3em;
    display: none;
}
