/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

/* header */
h1 {
    color: #55acee;
    text-align: center;
}

/* header/copyright link */
.link {
    text-decoration: none;
    color: #55acee;
    border-bottom: 2px dotted #55acee;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    cursor: url(http://cur.cursors-4u.net/symbols/sym-1/sym46.cur), auto;
}

.link:hover {
    color: #2ecc71;
    border-bottom: 2px dotted #2ecc71;
}


/* start da css for da buttons */
.button {
    border-radius: 5px;
    padding: 5px 14px;
    font-size: 13px;
    text-decoration: none;
    color: #fff;
    position: relative;
    display: inline-block;
}

.button:active {
    transform: translate(0px, 5px);
    -webkit-transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px;
}

.blue {
    background-color: #2f6fbf;
    box-shadow: 0px 5px 0px 0px #3C93D5;
    color: #FFF;
}

.blue:hover {
    background-color: #6FC6FF;
    color: #FFF;
}

.blue:active {
    transform: translate(0px, 5px);
    -webkit-transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px;
}

.green {
    background-color: #2ecc71;
    color: #f0f0f0;
    box-shadow: 0px 5px 0px 0px #15B358;
}

.green:hover {
    color: #f0f8ff;
    background-color: #48E68B;
}

.green:active {
    transform: translate(0px, 5px);
    -webkit-transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px;
}


.brown {
    background-color: #C19A6B;
    color: #f0f0f0;
    box-shadow: 0px 5px 0px 0px #964B00;
}

.brown:hover {
    color: #f0f8ff;
    background-color: #C3B091;
}

.brown:active {
    transform: translate(0px, 5px);
    -webkit-transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px;
}

.red {
    background-color: #e74c3c;
    color: #f0f0f0;
    box-shadow: 0px 5px 0px 0px #CE3323;
}

.red:hover {
    color: #f0f8ff;
    background-color: #FF6656;
}

.red:active {
    transform: translate(0px, 5px);
    -webkit-transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px;
}

.purple {
    background-color: #9b59b6;
    color: #f0f0f0;
    box-shadow: 0px 5px 0px 0px #82409D;
}

.purple:hover {
    color: #f9f2f4;
    background-color: #B573D0;
}

.purple:active {
    transform: translate(0px, 5px);
    -webkit-transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px;
}

.orange {
    background-color: #e67e22;
    color: #f0f0f0;
    box-shadow: 0px 5px 0px 0px #CD6509;
}

.orange:hover {
    color: #f9f2f4;
    background-color: #FF983C;
}

.orange:active {
    transform: translate(0px, 5px);
    -webkit-transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px;
}

.yellow {
    background-color: #f1c40f;
    box-shadow: 0px 5px 0px 0px #D8AB00;
}

.yellow:hover {
    background-color: #FFDE29;
}

.red-tooltip + .tooltip > .tooltip-inner {
    background-color: #e74c3c;
}

.red-tooltip + .tooltip > .tooltip-arrow {
    border-bottom-color: #e74c3c;
}

.purple-tooltip + .tooltip > .tooltip-inner {
    background-color: #9b59b6;
}

.purple-tooltip + .tooltip > .tooltip-arrow {
    border-bottom-color: #9b59b6;
}