@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,600);

.promos {
    max-width: 1140px;
    margin: 0 auto;
}

.promo {
    margin: 1em .5em 1.625em;
    padding: .25em 0 2em;
    background: #0F1012;
    font-weight: 400;
    line-height: 1.625;
    color: #f9f9f9;
    text-align: center;
    border: solid 1px #FFF;
}

.promo h4 {
    margin: .25em 0 0;
    font-size: 170%;
    font-weight: normal;
}
.promo .features {
    margin: 0;
    padding: 0;
    list-style-type: none;
    color: #999999;
}
.promo li {
    padding: .25em 0;
}
.promo .brief {
    color: #f9f9f9;
}
.promo .price {
    margin: .5em 0;
    padding: .25em 0;
    background: #292b2e;
    font-size: 250%;
    color: #f9f9f9;
}
.promo .buy {
    margin: 1em 0 0;
}
.promo button {
    padding: 1em 3.25em;
    border: none;
    border-radius: 40px;
    background: #292b2e;
    color: #f9f9f9;
    cursor: pointer;
}
.promo button:hover {
    background: #27282b;
}

.scale button {
    background: #64AAA4;
}
.scale button:hover {
    background: #4e8d88;
}
@media (min-width: 767px) {
    .scale {
        transform: scale(1.2);
        box-shadow: 0 0 4px 1px rgba(20, 20, 20, 0.8);
    }
    .scale .price {
        color: #64AAA4;
    }
}

.tags {
    display: inline-block;
    padding-top: 10px;
}

.tags span {
    background:#222;
    list-style: none;
    text-decoration: none;
    padding: 5px 10px 5px 10px;
    font-size: 60%;
}

.tags span:hover {
    background:#555;
    text-decoration: none;
    cursor: default;
}

.smiley, .neutral, .sad {
    height: 40px;
    width: 40px;
    border: 1px solid #FFF;
    border-radius: 50%;
    position: relative;
}

.smiley:before, .neutral:before, .sad:before {
    content: "";
    height: 3px;
    width: 3px;
    border-radius: 50%;
    position: absolute;
    background: #FFF;
    left: 10px;
    top: 10px;
}

.smiley:after, .neutral:after, .sad:after {
    content: "";
    height: 3px;
    width: 3px;
    border-radius: 50%;
    position: absolute;
    background: #FFF;
    right: 10px;
    top: 10px;
}

.smiley span {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border-bottom: 1px solid #FFF;
    position: absolute;
    bottom: 7px;
    left: 9px;
}

.neutral span {
    height: 20px;
    width: 20px;
    border-bottom: 1px solid #FFF;
    position: absolute;
    bottom: 10px;
    left: 9px;
}

.sad span {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border-top: 1px solid #FFF;
    position: absolute;
    bottom: -7px;
    left: 9px;
}

.label {
    float: right;
    border-radius: 0 !important;
}

.spin {
    visibility: hidden;
    cursor: pointer;
    float: left;
    font-size: 200%;
    color: #357ebd;
}

.spin:hover {
    -webkit-animation: spin .5s linear;
    -moz-animation: spin .5s linear;
    -o-animation: spin .5s linear;
    animation: spin .5s linear;
    cursor: pointer;
    color: #357ebd;
}

@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(180deg); }
}

@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(180deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(180deg); }
}