/**************************************************************************************/
/********************************************  CHECKBOXES AND RADIO BUTTONS ***********/
/**************************************************************************************/

input[type=checkbox], input[type=radio] {
    opacity: 0;
    height: 0;
    width: 0;
    position: absolute;
}

.tbits-radio input[type=radio]:checked + label:after, .tbits-checkbox input[type=checkbox]:checked + label:after {
    opacity: 1;
}

.tbits-radio, .tbits-checkbox {
    width: 20px;
    position: relative;
}

.tbits-checkbox input[type="checkbox"]:focus + .control-label {
    border-color: #00ba95;
    -webkit-box-shadow: 0 0 5px #cccccc;
    -moz-box-shadow: 0 0 5px #cccccc;
    box-shadow: 0 0 5px #cccccc;
}

.tbits-radio label {
    cursor: pointer;
    position: absolute;
    width: 17px;
    height: 17px;
    top: 0;
    left: 0;
    background: white;
    border: 1px solid #cccccc;

    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.tbits-radio label:after {
    opacity: 0;
    content: '';
    position: absolute;
    top: 4px;
    left: 3px;
    width: 9px;
    height: 5px;

    border: 2px solid #00ba95;
    border-top: none;
    border-right: none;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.tbits-checkbox label {
    cursor: pointer;
    position: absolute;
    width: 17px;
    height: 17px;
    top: 0;
    left: 0;
    background: white;
    border: 1px solid #cccccc;
}

.tbits-checkbox label:after {
    opacity: 0;
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 9px;
    height: 6px;
    border: 2px solid #00ba95;
    border-top: none;
    border-right: none;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.tbits-checkbox input[type=checkbox]:checked + label, .tbits-radio input[type=radio]:checked + label {
    border: 1px solid #00ba95;
}

/*****************************************************************************/
/***********************************  BUTTONS  *******************************/
/*****************************************************************************/
.tbits-app-share-button.active svg {
    opacity: 0.5;
}

.tbits-app-share-button {
    display: inline-block;
    margin: 5px;
}

.tbits-app-share-button.active {
    opacity: 0.5 !important;
}

.tbits-app-share-button svg {
    fill: #fff;
    transition: fill 0.3s ease;
}

.tbits-app-share-button:hover svg {
    fill: #999999;
    transition: fill 0.3s ease;
}

.close-btn {
    background: #fff url(/static/icons/close-button.png) no-repeat center;
    position: absolute;
    top: 2px;
    right: 2px;
    opacity: 0.3;
    cursor: pointer;
    display: block;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.5s cubic-bezier(.27, 1.64, .32, .95);
    -moz-transition: 0.5s cubic-bezier(.27, 1.64, .32, .95);
    transition: 0.5s cubic-bezier(.27, 1.64, .32, .95);
}

.close-btn:hover {
    opacity: 1;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    border-radius: 50%;
    border-color: rgba(0, 0, 0, 1);
}

.tbits-btn-bg {
    display: inline-block;
    height: 35px;
    width: 245px;
    max-width: 100%;
    margin: auto;
    text-decoration: none;
}

.tbits-btn-bg:hover {
    cursor: hand;
}

.tbits-btn, a.tbits-btn {
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 35px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    color: white;
    text-align: center;
    height: 30px;
    width: 100%;
}

.tbits-btn:hover {
    height: 32px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.tbits-text-option {
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 35px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    text-align: center;
    width: 100%;
    height: 100%;
    padding-bottom: 6px;
    margin: auto;
    transition: 0.3s ease all;
}

.tbits-text-option > div {
    cursor: pointer;
    padding: 0px 10px;
    transition: 0.3s ease all;
}

.tbits-text-option .tbits-radio, .tbits-text-option .tbits-checkbox {
    width: 100%;
}

.tbits-text-option .tbits-radio .control-label, .tbits-text-option .tbits-checkbox .control-label {
    margin: 8px 8px 8px 0px;
}

.tbits-text-option:hover > div {
    padding-bottom: 4px;
}

.tbits-text-option:hover {
    padding-bottom: 2px;
}

.tbits-image-option {
    -webkit-box-shadow: 0 0 5px 0 #ccc;
    -moz-box-shadow: 0 0 5px 0 #ccc;
    box-shadow: 0 0 5px 0 #ccc;
    vertical-align: top;
    width: 250px;
    margin: 6px;
    display: inline-block;
    position: relative;
}

.tbits-image-option > div {
    min-height: 310px;
    padding: 0px 0px;
}

.tbits-image-option-sm {
    width: 90%;
    margin: 6px auto;
}

.tbits-image-option-sm > div {
    min-height: 70px;
}

.tbits-image-option:hover {
    box-shadow: 0 0 8px #9D9D9D;
}

.tbits-image-option:hover > div {
    min-height: 314px;
}

.tbits-image-option-sm:hover > div {
    min-height: 74px;
}

.tbits-image-container {
    height: 230px;
    width: 250px;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin: 0 auto;
}

.tbits-image-label {
    font-size: 15px;
    /*white-space: nowrap;*/
    margin: 0;
    padding: 8px 5px;
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    font-weight: bold;
    text-align: center;
}

.tbits-image {
    width: 100%;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.tbits-image-option:hover .tbits-image {
    -webkit-transform: translateY(0px) scale(1.1);
    -moz-transform: translateY(0px) scale(1.1);
    transform: translateY(0px) scale(1.1);
    opacity: 0.7;
}

.tbits-btn:active {
    height: 35px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.tbits-btn a:hover {
    color: #ffffff
}

.tbits-fb-btn-bg {
    background: #343768;
}

.tbits-fb-btn {
    background: #394d7b;
}

.poll-result-btn-bg {
    display: inline-block;
    height: 35px;
    width: 100%;
    text-decoration: none;
}

.poll-result-btn {
    letter-spacing: 0.5px;
    cursor: default;
    line-height: 35px;
    font-family: 'Open Sans', sans-serif;
    font-weight: lighter;
    font-size: 1em;
    color: white;
    text-align: center;
    height: 30px;
    width: 100%;
}

.fb-blue-btn {
    cursor: pointer;
    display: block;
    background: #394986;
    height: 33px;
}

.fb-blue-btn-fixed {
    display: inline-block;
    width: 250px
}

.fb-blue-btn > div {
    vertical-align: middle;
    display: block;
    background: #3b5998;
    width: 100%;
    font-weight: bold;
    color: white;
    line-height: 30px;
    height: 28px;
    font-size: 14px;
    text-transform: uppercase;
}

.image-upload-control-btn {
    width: 250px;
    display: inline-block;
    margin: 0 7px;
}

.tbits-navigation-btn {
    cursor: pointer;
    vertical-align: middle;
    line-height: 30px;
    height: 28px;
    background: #C4C4C8;
    text-transform: uppercase;
    font-weight: bold;
}

.contest-vote-btn {
    vertical-align: middle;
    display: block;
    background: #3b5998;
    width: 100%;
    font-weight: bold;
    color: white;
    line-height: 30px;
    height: 28px;
    font-size: 14px;
    text-transform: uppercase;
}

.tbits-btn-bg > a.tbits-btn {
    color: white;
}

.btn-pricing {
    padding: 10px 20px;
    margin-top: 10px;
    font-weight: 300;
}

.tbits-standard-btn {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.tbits-standard-btn:hover {
    height: 30px;
}

.tbits-standard-btn:active {
    height: 33px;
}

/**************************************************************************************/
/********************************************  ICONS  *********************************/
/**************************************************************************************/

.campaign-instagram-icon {
    display: inline-block;
}

.campaign-instagram-icon img {
    margin: -5px 0 0 1px;
}

.twitter-icon-svg-outer {
    display: inline-block;
    padding-top: 10px;
    vertical-align: middle;
}

.twitter-icon-svg {
    width: 17px;
    height: 17px;
    color: rgb(13, 167, 215);
    margin-top: -15px;
}

/* Backgrounds */

.valid-filled {
    background: url(/static/icons/valid-checkmark-icon.png) no-repeat 95% white;
}

.invalid-filled {
    background: url(/static/icons/invalid-cross-icon.png) no-repeat 95% white;
}

.tbits-dropdown {
    background: url(/static/icons/arrow-dropdown.png) no-repeat 95% white;
}

/* ecard */

.tbits-ecard-finish-controls a {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    text-align: center;
    padding: 5px 0 5px 0;
    color: #fff;
    margin: 5px;
}

.tbits-ecard-share-text {
    font-size: 14px;
    font-weight: bolder;
    text-transform: uppercase;
    color: #444444;
}

.tbits-ecard-stamp {
    background: url('/static/icons/stamp.png') no-repeat center;
    background-size: contain;
    width: 80px;
    height: 80px;
    position: relative;
    margin-top: 8px;
    margin-right: -5px;
}

.tbits-ecard-finish-controls a:hover {
    color: #fff
}

.tbits-ecard-body {
    background-color: #F4F4F2;
    display: block;
    text-decoration: none;
    color: #555;
    margin: 10px 0;
    padding: 20px;
}

.ecard-canvas {
    overflow: auto;
}

.ecard-canvas img {
    max-height: 100%;
    max-width: 100%;

}

.tbits-ecard-carousel {
    height: 369px;
    overflow: hidden;
}

.tbits-carousel-image {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ecard-stamp-certified {
    position: absolute;
    left: -30px;
    top: -5px;
    z-index: 5;
}

.ecard-author-img {
    padding: 15px;
    height: 80px;
    width: 80px;
}

.ecard-start-btn {
    width: 30px;
    height: 30px;
    color: #fff;
    float: left;
}

.ecard-edit-div {
    position: absolute;
    z-index: 2001;
    top: 0;
    display: none;
}

@media (max-width: 767px) {
    .tbits-ecard-body {
        padding: 15px;
    }

    .tbits-ecard-stamp {
        width: 10vw;
        height: 10vw;
    }

    .ecard-author-img {
        padding: 2vw;
    }

    #myCarousel, #myCarousel .carousel-inner, #myCarousel .tbits-carousel-item {
        width: 40vw;
        height: 40vw;
    }
}

/**************************************************************************************/
/********************************************  QUIZ  **********************************/
/**************************************************************************************/

.tbits-share-result {
    font-size: 14px;
    font-weight: bolder;
    text-transform: uppercase;
    color: #444444;
}

.quiz-question-description {
    margin: 10px 0;
    font-weight: lighter;
    text-align: center;
}

.quiz-option {
    text-align: left;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin: 4px 0;
    border-radius: 5px;
    box-shadow: 1px 1px 3px #ccc;
    background: white;
    transition: 0.11s all ease-out;
}

.email {
    transition: 0.3s all ease-out;
    padding: 20px 10px;
    margin: 0 10px;
}

.question {
    transition: 0.3s all ease-out;
    padding-bottom: 20px;
}

.quiz-option input {
    font-size: 30px;
}

.quiz-option:hover {
    opacity: 0.9;
    box-shadow: 0 0 2px #ccc;
    background: #5d5d5d;
    color: white;
    transition: 0.11s all ease-out;
}

.quiz-results {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 10px;
}

.quiz-result-count {
    padding-right: 20px;
    padding-left: 10px;
    font-size: large;
}

.poll-throbber-container {
    width: 100%;
    text-align: center;
    padding: 20px;
}

.poll-modal {
    margin-left: 150px;
    margin-top: 100px
}

.header-text {
    width: auto;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

.header-text .tbits-main-question {
    font-weight: 700;
    font-size: 26px;
    line-height: 40px;
    width: 100%;
    height: 50px;
    display: inline;
}

.tbits-main-question-container {
    text-align: center;
    padding: 0 10px 40px 10px;
}

.tbits-result {
    margin-bottom: 40px;
}

.tbits-personality-result-description {
    text-align: left;
    color: #444;
    padding: 0 20px;
}

.tbits-personality-result-description p {
    font-family: 'Open Sans', sans-serif;
    font-weight: lighter;
    font-size: 14px;
    vertical-align: middle;
    line-height: 1.9;
    color: #444444;
}

.preview-content {
    position: relative;
    background: white;
    margin-bottom: 40px;
    -webkit-box-shadow: 0 0 5px 0 #ccc;
    -moz-box-shadow: 0 0 5px 0 #ccc;
    box-shadow: 0 0 5px 0 #ccc;
}

.preview-content:hover {
    box-shadow: 0 0 8px #9D9D9D;
    transition: 0.2s ease all;
}

.preview-image {
    padding: 35px;
    border: 0;
}

.contest-navigation {
    display: inline-block;
    width: 100%;
    height: 33px;
    background-color: #B7B7BB;
    color: white;
    padding: 0;
}

/**************************************************************************************/
/********************************************  CONTEST  *******************************/
/**************************************************************************************/

.contest-navigation-btn {
    cursor: pointer;
    vertical-align: middle;
    line-height: 30px;
    height: 28px;
    background: #C4C4C8;
    text-transform: uppercase;
    font-weight: bold;
}

#video-player {
    width: 100%;
    height: 100%;
}

.details-caption {
    padding: 10px 0 0;
    overflow-wrap: break-word;
}

.contest-author {
    padding: 10px 0 0;
    text-align: left;
    height: 50px;
    display: table;
    position: relative;
    width: 100%;
}

.contest-author a {
    color: #999;
}

.author-name a {
    color: #444444;
}

.contest-btn {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.contest-btn:hover {
    height: 30px;
}

.contest-btn:active {
    height: 33px;
}

.profile-name {
    height: 48px;
    padding: 1px 5px;
    display: table-cell;
    vertical-align: middle;
    font-size: smaller;
}

.vote-controls {
    width: 100%;
    overflow: hidden;
    background: #eee;
    text-align: center;
}

.image-upload-back-top {
    display: none;
}

.image-upload-box {
    font-weight: bold;
}

.image-upload-form-padding {
    padding: 15px 35px 35px
}

.author-name {
    font-weight: bold;
    font-size: 16px;
    color: #444444;
}

.author-screen-name {
    font-weight: lighter;
    font-size: 14px;
    color: #777;
}

.spotify-widget {
    background: #000000;
    height: 80px;
    width: 100%;
    background: url('/static/icons/play-overlay.png') center no-repeat;
    cursor: pointer;
    overflow: hidden;
}

@media screen and (max-width: 770px) {

    .image-upload-form-padding {
        padding: 15px 20px 35px
    }

    .image-upload-control-btn {
        margin: 0;
    }

    .image-upload-box {
        text-align: center;
    }

    .image-upload-back-bottom {
        display: none;
    }

    .image-upload-back-top {
        display: inline-block;
        margin: 0 0 25px;
    }
}

.confirm-title {
    margin-bottom: 15px;
}

.confirm-title span {
    font-weight: 700;
}

.vote-counter {
    padding-top: 10px;
    margin: 0 3px;
    color: #3b5998;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.tbits-btn .tbits-checkbox .control-label, .tbits-btn .tbits-radio .control-label {
    top: 7px;
    left: 8px
}

#drop-zone {
    border: 2px dashed #bbb;
    border-radius: 5px;
    padding-top: 60px;
    text-align: center;
    color: #bbb;
    height: 140px;
    width: 50%;
}

.mark {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    font-size: 28px;
    text-align: center;
    display: inline-block;
    padding-top: 2px;
    margin: 2px;
}

.mark-approved {
    color: white;
    background-color: rgb(80, 179, 223);
}

/**************************************************************************************/
/********************************************  BUNDLE  ********************************/
/**************************************************************************************/

.campaign-item {
    width: 181px;
    height: 181px;
    padding: 3px;
    margin: 3px 9px 3px 9px;
    display: inline-block;
    position: relative;
    font-size: 1em;
    -webkit-perspective: 600px;
    -moz-perspective: 600px;
}

/* -- make sure to declare a default for every property that you want animated -- */
/* -- general styles, including Y axis rotation -- */
.campaign-item .front {
    float: none;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 900;
    width: inherit;
    height: inherit;
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px #777;
    -moz-box-shadow: 0 0 5px #777;
    box-shadow: 0 0 5px #777;

    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;

    -moz-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform-style: preserve-3d;
    -moz-backface-visibility: hidden;

    /* -- transition is the magic sauce for animation -- */
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.campaign-item.flip .front {
    z-index: 900;
    border-color: #eee;
    background: #ddd;

    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);

    -webkit-box-shadow: 0 0 5px #777;
    -moz-box-shadow: 0 0 5px #777;
    box-shadow: 0 0 5px #777;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.campaign-item .back {
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 800;
    width: inherit;
    height: inherit;
    background: #fff;
    overflow: hidden;
    -webkit-transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;

    -moz-transform: rotateY(-180deg);
    -moz-transform-style: preserve-3d;
    -moz-backface-visibility: hidden;

    /* -- transition is the magic sauce for animation -- */
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.campaign-item.flip .back {
    z-index: 1000;
    background: #fff;

    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);

    -webkit-box-shadow: 0 0 5px #777;
    -moz-box-shadow: 0 0 5px #777;
    box-shadow: 0 0 5px #777;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

a.campaign-item {
    text-decoration: none;
    color: #555;
}

/**************************************************************************************/
/********************************************  GENERAL  *******************************/
/**************************************************************************************/

.countdown-timer {
    margin-bottom: 35px;
    display: none;
    text-align: center;
}

.countdown-timer .countdown-clock div {
    height: 150px;
    width: 80px;
}

.countdown-timer .countdown-clock #hours {
    margin-left: 10px;
    margin-right: 5px;
}

.countdown-timer .countdown-clock #minutes {
    margin-left: 5px;
    margin-right: 10px;
}

.countdown-timer div, .countdown-timer p {
    display: inline-block;
}

.tbits-carousel-caption {
    text-align: left;
    opacity: 0.9;
    width: 100%;
    color: #000;
    padding: 5px;
}

.promo-submit {
    margin: 5px 10px;
}

.photo-inner-image {
    max-height: 100%;
    max-width: 100%;
}

.tbits-app-share-text {
    font-size: 14px;
    font-weight: bolder;
    text-transform: uppercase;
    color: #444444;
}

.tbits-app-share-buttons-text {
    color: white;
    font-size: 20px;
    margin-top: -35px;
    font-weight: bold !important;
    display: block;
}

.share-link-copied {
    display: none;
}

.btn-share-link.active .share-link-copied {
    display: block;
    color: #666;
    margin-top: -30px !important;
    padding: 0px 10px;
}

.btn-share-link.active {
    width: auto;
}

.btn-share-link.active > span {
    width: auto;
    opacity: 0.2;
}

.tbits-app-share-controls a {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    text-align: center;
    padding: 5px 0 5px 0;
    color: #fff;
}

#grey-wall {
    width: 100%;
    height: 10000px;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ccc;
    opacity: 0.8;
    z-index: 5;
    display: none;
}

#app-share-bar {
    margin: 10px 0;
}

.tbits-app-content-description h1, .tbits-app-content-description h2, .tbits-app-content-description h3 {
    margin-top: 35px;
    margin-bottom: 10px;
    padding-bottom: 8px;
}

.tbits-app-content-description p {
    color: #444444;
    font-size: 1.1em;
    font-weight: lighter;
    line-height: 1.9em;

}

.tbits-app-pagination {
    text-align: center;
    padding-top: 40px;
}

.tbits-app-pagination > div, .tbits-app-pagination a {
    display: inline-block;
    width: 45px;
    height: 33px;
    vertical-align: middle;
    line-height: 28px;
}

.tbits-app-pagination .tbits-app-pagination-range {
    width: 90px;
    font-size: 16px;

}

.content-grad {
    background: #dfdfdf; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, rgba(243, 243, 243, 0), rgb(243, 243, 243), rgb(243, 243, 243), rgba(243, 243, 243, 0)); /*Safari 5.1-6*/
    background: -moz-linear-gradient(right, rgba(243, 243, 243, 0), rgb(243, 243, 243), rgb(243, 243, 243), rgba(243, 243, 243, 0)); /*Fx 3.6-15*/
    background: linear-gradient(to right, rgba(243, 243, 243, 0), rgb(243, 243, 243), rgb(243, 243, 243), rgba(243, 243, 243, 0)); /*Standard*/
}

hr {
    margin-top: 0;
    margin-bottom: 10px;
}

.tbits-app-primary-color {
    color: #00ba95;
}

.contest-vote-form {
    background: #fff;
    padding-bottom: 10px;
}

.tinfoil-modal {
    display: none;
    text-align: center;
    margin: 0 auto;
    padding: 25px;
    position: fixed;
    width: 400px;
    max-width: 95%;
    height: 320px;
    top: 100px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    border-radius: 3px;
    overflow: hidden;
    z-index: 5;
}

.tinfoil-inner-modal {
    align-items: center;
    /*padding: 20px;*/
    /*border: 1px solid;*/
    /*border-radius: 3px;*/
    height: auto;
}

.tinfoil-overlay {
    display: none;
    position: fixed;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.tinfoil-modal h4 {
    color: #4c4c4c;
}

.tinfoil-modal p {
    overflow: auto;
    width: auto;
    height: auto;
    color: #605959;
    font-size: 12pt;
}

.learn-more-dropdown {
    padding-top: 10px;
    display: none;
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    height: 0;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

.photopoll-share-bg {
    position: absolute;
    left: 0;
    height: 33px;
    width: 85px;
    background-color: #B7B7BB
}

.photopoll-share {
    font-weight: bold;
    color: white;
    vertical-align: middle;
    line-height: 30px;
    height: 28px;
    width: 100%;
    background-color: #C4C4C8;
}

.photopoll-share-fb-bg {
    position: absolute;
    left: 85px;
    height: 33px;
    width: 55px;
    background-color: #394986
}

.photopoll-share-fb {
    height: 28px;
    width: 100%;
    background-color: #3b5998;
}

.photopoll-share-twitter-bg {
    position: absolute;
    left: 140px;
    height: 33px;
    width: 55px;
    background-color: #4089b9;
}

.photopoll-share-twitter {
    height: 28px;
    width: 100%;
    background-color: #55acee;
}

.photopoll-share-gplus-bg {
    position: absolute;
    left: 195px;
    height: 33px;
    width: 55px;
    background-color: #b94a3d;
}

.photopoll-share-gplus {
    height: 28px;
    width: 100%;
    background-color: #dc4e41;
}

.photopoll-name {
    width: 250px;
    font-size: 15px;
    white-space: nowrap;
    margin: 0;
    padding: 8px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    text-align: center;
}

.photopoll-count {
    margin: 0 3px;
    color: #3b5998;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 8px;
}

.photopoll-description {
    font-size: 13px;
    margin: 0;
    max-height: 50px;
    overflow-y: auto;
    padding: 8px 5px;
    text-align: center;
    visibility: hidden;
}

.photopoll-description i {
    font-size: 12px;
}

.photopoll-description a {
    cursor: pointer;
}

.vote-count-active {
    background: rgb(0, 149, 119);
}

.vote-count-active-btn {
    background: rgb(0, 186, 149);
}

.progress-bar-active {
    background: rgb(0, 149, 119);
}

.progress-bar-active-top {
    background: rgb(0, 186, 149);
}

.thankyou-img {
    padding: 40px 0 0 0;
    width: 100%;
    margin: 0 auto;
    display: none
}

.registeredpoll-content .photopoll-description {
    visibility: visible;
}

.photopoll-desc-text {
    background-color: #FEFEFE;
    box-shadow: 0 2px 2px #9D9D9D;
    display: none;
    margin-top: 5px;
    max-height: 400px;
    padding: 0 5px 10px 5px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 3001;
}

.preview-display {
    position: absolute;
    left: 3%;
    right: 3%;
    z-index: 3000;
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.77);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.77);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.77);
    background-color: white;
    text-align: center;
}

.preview-display .preview-body {
    background-color: white;
}

.preview-desc {
    padding: 0 35px 20px;
}

.preview-title {
    color: #444444;
    font-weight: bold;
    font-size: 1.4em;
    padding-bottom: 20px;
}

.preview-display .preview-control {
    height: 33px;
    background-color: #eee;
    width: 100%;
}

.preview-display .photopoll-count {
    padding: 0 0 20px;
}

.preview-share {
    margin: 10px auto;
}

.tbits-app-content-description {
    padding: 10px;
    width: 100%;
}

.photopoll-image {
    height: 230px;
    width: 250px;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin: 0 0 5px;
    background-color: #000;
}

.photopoll-image img {
    max-width: inherit;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.photopoll-view {
    -webkit-box-shadow: 0 0 5px 0 #ccc;
    -moz-box-shadow: 0 0 5px 0 #ccc;
    box-shadow: 0 0 5px 0 #ccc;
    vertical-align: top;
    width: 250px;
    /*border: 1 px solid #ccc;*/
    margin: 6px;
    display: inline-block;
    position: relative;
    background-color: #FEFEFE;
    transition: 0.1s ease all;
}

.photopoll-user-count {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 60px solid #3b5998;
    border-right: 60px solid transparent;
    z-index: 5;
    display: none;

}

.photopoll-user-count .voter-count {
    left: 6px;
    bottom: 33px;
    position: absolute;
    color: white;
    font-weight: 500;
    font-size: 16px;
}

.voted .photopoll-user-count {
    display: block;
}

.photopoll-view:hover {
    box-shadow: 0 0 8px #9D9D9D;
    transition: 0.2s ease all;
}

.photopoll-filter {
    padding: 0 7px;
}

@media (max-width: 534px) {
    .photopoll-filter {
        width: 100%;
    }

    .photopoll-filter > li > a.tbits-btn-navigation-selected > div {
        transition: 0s;
        background-image: url(/static/icons/arrow-dropdown-white.png);
        background-repeat-y: no-repeat;
        background-repeat-x: no-repeat;
        background-position-x: 95%;
        background-position-y: center;
    }
}

.photopoll-vote {
    width: 100%;
    height: 33px;
    background-color: #e5e5e5;
    font-size: 15px;
    white-space: nowrap;
    margin: 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.photopoll-vote a {
    color: white;
}

.tbits-navigation-bg {
    height: 33px;
    background-color: #B7B7BB;
    color: white;
}

.tbits-input-label {
    padding-left: 30px;
}

.form-control {
    border-radius: 0;
    height: 42px;
    margin-top: 7px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: #00ba95;
    -webkit-box-shadow: 0 0 5px #cccccc;
    -moz-box-shadow: 0 0 5px #cccccc;
    box-shadow: 0 0 5px #cccccc;
}

.campaign-area {
    position: relative;
    padding: 40px 0
}

.hr-grey {
    background: #a9a9a9;
    border: 0;
    height: 2px
}

.tbits-vote-entry-container {
    text-align: left;
    padding: 10px;
}

.contest-options-container {
    text-align: center;
    position: relative;
    padding: 40px 0 0
}

.no-margin-vertical {
    margin-top: 0;
    margin-bottom: 0;
}

.no-padding-vertical {
    padding-top: 0;
    padding-bottom: 0;
}

.no-margin-horizontal {
    margin-right: 0;
    margin-left: 0;
}

.no-padding-horizontal {
    padding-right: 0;
    padding-left: 0;
}

.fill-container {
    width: 100%;
    height: 100%;
}

.tbits-navigation-bg.navigation-bg-fixed {
    display: inline-block;
    margin-bottom: 40px;
    width: 200px
}

.tab-container.tab-container-padded {
    text-align: center;
    padding: 40px 5px 0;
}

.tab-container.tab-container-relative {
    position: relative;
}

.powered-by-text {
    color: #3F3F5C;
    font-size: 11px;
    float: right;
    background: url("/static/icons/img-powered-by.png") 0 0 no-repeat;
    height: 24px;
    width: 191px;
    margin-right: 0;
    clear: both;
}

.powered-by-text:hover {
    background-position: 0 -24px;
}

.tbits-tradablebits-terms {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-size: 9px;
    color: #7F7F7F;
    width: 100%;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.app-rules {
    font-weight: lighter;
    padding-bottom: 30px;
    text-align: center;
    overflow: hidden;
    position: relative;
    word-wrap: break-word;
}

.app-rules .rules-header {
    padding-bottom: 10px;
}

.app-rules .rules-header a {
    color: #777777;
    font-size: 1.1em;
    text-decoration: underline;
}

.app-rules .rules-header a:hover, .app-rules .rules-header a:focus {
    color: #505050;
    text-decoration: underline;
}

.app-rules .rules-header .rules-hide {
    color: #777777;
    font-size: 1em;
    text-decoration: none;
}

.app-rules .rules-header .rules-hide:hover, .app-rules .rules-header .rules-hide:focus {
    color: #505050;
    text-decoration: none;
}

.app-rules .rules-container {
    font-size: 12px;
    text-align: left;
    padding: 0 10px
}

.required {
    border: 1px solid #B94A48 !important;
}

.required-filled {
    border: 1px solid #00ba95 !important;
}

.nav-pills > li {
    padding: 0 6px;
    float: none;
    display: inline-block;
}

.nav-pills > li + li {
    margin-left: 0;
}

.nav-pills li > a.tbits-navigation-bg {
    display: inline-block;
    width: 100%;
    height: 33px;
    color: white;
    padding: 0;
    border-radius: 0;
}

.nav-pills li.active > a.tbits-navigation-bg {
    background-color: #7a7a7a;
}

li.active .tbits-navigation-btn {
    background: #8B8B8B;
}

a.tbits-navigation-bg {
    color: white;
}

.cookie-warning {
    display:none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    text-align: center;
    min-height:50px;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255,1);
    border-bottom:1px solid #ccc;
}

.text-filter-btn {
    position: absolute;
    right: 30px;
    top: 7px;
}

.text-filter-search-bar {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 12px;
    display: none;
    width: 100%;
    position: relative;
}