/*  SECTIONS  */
.section {
    clear: both;
    padding: 0px;
    margin: 0px;
}

/*  COLUMN SETUP  */
.tw-col {
    display: block;
    float:left;
    margin: 1% 0 1% 1.6%;
}
.tw-col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }


/*  GRID OF TWELVE  */
.span_12_of_12 {
    width: 100%;
}

.span_11_of_12 {
    width: 91.53%;
}
.span_10_of_12 {
    width: 83.06%;
}

.span_9_of_12 {
    width: 74.6%;
}

.span_8_of_12 {
    width: 66.13%;
}

.span_7_of_12 {
    width: 57.66%;
}

.span_6_of_12 {
    width: 49.2%;
}

.span_5_of_12 {
    width: 40.73%;
}

.span_4_of_12 {
    width: 32.26%;
}

.span_3_of_12 {
    width: 23.8%;
}

.span_2_of_12 {
    width: 15.33%;
}

.span_1_of_12 {
    width: 6.866%;
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
    .tw-col {  margin: 1% 0 1% 0%; }

    .span_1_of_12, .span_2_of_12, .span_3_of_12, .span_4_of_12, .span_5_of_12, .span_6_of_12, .span_7_of_12, .span_8_of_12, .span_9_of_12, .span_10_of_12, .span_11_of_12, .span_12_of_12 {
        width: 100%; 
    }
}


/* Header Reactions */
.tw-reactions{
    display: flex;
    margin: 24px -10px 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.tw-reactions .react-item{
    max-width: 50px;
    margin: 0 10px;
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.tw-reactions .react-item:hover{
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
}
.tw-reactions span{
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    display: block;
    margin-top: 10px;
    font-weight: 600;
    opacity: 0;
}
.tw-reactions .reacted span,
.tw-reactions .react-item:hover > span{
    opacity: 1;
}
.tw-reactions .reacted span,
.tw-reactions .react-item:hover > span,
.react-message{
    -webkit-transition: opacity 0.15s ease;
    -moz-transition: opacity 0.15s ease;
    -o-transition: opacity 0.15s ease;
    -ms-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
}


/* Reaction Vote */
.tw-reaction-vote{
    position: relative;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.react-graph span{
    position: absolute;
    bottom: 100%;
    width: 100%;
    padding-bottom: 3px;
}
.react-item:not([data-count="0"]) .react-graph span{
    opacity: 1;    
}
.react-graph{
    position: relative;
    height: 100px;
    margin-bottom: 15px;
}
.graph-info{
    overflow: visible !important;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #f0f0f0;
}
.messaged>.react-item,
.messaged>.react-item img,
.react-message{
    opacity: 0;
    visibility: hidden;
}
.react-message{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.messaged>.react-message,
.messaged>.react-message img{
    opacity: 1;
    visibility: visible;
}
.react-message img{
    display: block;
    margin: auto auto 10px;
    max-width: 50px;
}
.react-message h5{
    margin: 0 auto auto;
    width: 100%;
    text-align: center;
}
/* Reaction Overlay */
.react-overlay{
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 25px;

    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    -ms-transition: all 0.15s ease;
    transition: all 0.15s ease;
}
@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.tw-reactions .react-item.already-reacted img{
    -webkit-animation-name: tada;
    animation-name: tada;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


/* Reaction Blog Style */

.reaction-title{
    margin-bottom: 30px;
}
.reaction-title img{
    max-width: 50px;
    margin-right: 15px;
}
.tw-entry-media{
    margin-bottom: 20px;
}
.tw-reaction .tw-entry-title{
    font-size: 18px;
    line-height: 1.4em;
    margin-bottom: 20px;
}
.tw-reaction .tw-entry-post{
    position: relative;
}