/* v3
     ______   ____     __   ___    _____      ____  ____     ___      _      ____  _____    ___ 
    |      | /    |   /  ] /   \  / ___/     /    ||    \   /  _]    | |    |    ||     |  /  _]
    |      ||  o  |  /  / |     |(   \_     |  o  ||  D  ) /  [_     | |     |  | |   __| /  [_ 
    |_|  |_||     | /  /  |  O  | \__  |    |     ||    / |    _]    | |___  |  | |  |_  |    _]
      |  |  |  _  |/   \_ |     | /  \ |    |  _  ||    \ |   [_     |     | |  | |   _] |   [_ 
      |  |  |  |  |\     ||     | \    |    |  |  ||  .  \|     |    |     | |  | |  |   |     |
      |__|  |__|__| \____| \___/   \___|    |__|__||__|\_||_____|    |_____||____||__|   |_____|
    
*/

/* Global Variables */
:root{
    --light: #ffffff;
    --dark: #212529;
    --grey: #f7f6f1;
    --light-yellow: #fffdb6;
    --yellow: #FFE315;
    --dark-yellow: #b7a204;

    --red: #ef5132;
    --dark-grey: #ccc;
    --light-grey: rgb(243, 243, 243);
    
    --breakpoint-sm: 600px;

    --border-radius-sm: .25rem;

    --heytaco-bg: var(--light);
    --heytaco-bg-grey: var(--grey);
    --heytaco-bg-yellow: var(--light-yellow);

    --heytaco-text: var(--dark);
    --heytaco-link: var(--dark-yellow);

    --heytaco-border-dark: 1px solid var(--dark-grey);
    --heytaco-border-light: 1px solid var(--light-grey);
}

/* Utils */
@media screen and (max-width: 600px) {
	body {
	  overscroll-behavior-x: none;
  		touch-action: pan-y;
	}
}
.external-link-icon {
	width: 15px;
    vertical-align: text-bottom;
}
.hide {
    display: none;
}
.flex-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flex {
    display: flex;
    &.align-center{
        align-items: center;
    }
    &.gap-sm{
        gap: 1rem;
    }
}

.pointer:hover {
	cursor: pointer;
}

/* Popovers */
.popover-header {
    font-size: 13px;
    background-color: #faf9f5;
    font-weight: bold;
}
.popover-admins {
	margin-bottom: 5px;
}
.popover-admins .popover-avatar {
    width: 20px;
    border-radius: 4px;
    margin: 0 10px 0px 0;
}

/* Modals */
.modal-backdrop.show {
    opacity: .85;
}
.modal-dialog {
    min-width: 600px;
}
.modal .close {
    right: 20px;
    position: fixed;
    top: 5px;
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
    overflow: visible !important;
    border-radius: 15px;
}
.modal-content {
    border-radius: 15px;
}
.modal-dialog {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 1px 1px 18px -8px #000;
	min-width: 550px;
}
.modal-body {
	background: #faf9f5;
	border: none;
	box-shadow: none;
	margin: 20px;
	border-radius: 8px;
	padding: 0 20px 20px;
	text-align: center;
}
.modal-header {
	border-bottom: none;
	padding: 18px 23px;
}
.close {
    font-size: 4rem;
    font-weight: normal;
    color: #ffffff;
    text-shadow: none;
}
.close:hover {
    color: #ffffff;
}

/* Youtube video for search pages */
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Progress bar */
.progress-bar {
    background-color: #20e0be;
	font-weight: bold;
}

/* Search Modal */
body.modal-open .dark-backdrop.in {
    background: rgb(0 0 0 / 80%) !important;
}
#searchModal p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 23px;
}
#searchModal .modal-dialog {
    width: 900px;
}
#searchModal .modal-content {
    padding: 0 25px;
    min-height: 800px;
}
#searchModal .modal-content h1 {
    font-size: 30px;
    line-height: 33px;
}
#searchModal .modal-content img{
    width: 100%;
}
#searchModal .modal-content h3 {
    font-size: 22px;
    font-weight: bold;
}
#searchModal .modal-content ul {
    margin-bottom: 30px;
}

#searchModal .modal-content ul li {
    margin-bottom: 3px;
    list-style-type: disc;
    margin-left: 18px;
    font-size: 16px;
    line-height: 23px;
}
#searchModal .close-search-modal {
    background: none;
    border: none;
    color: #000;
    font-size: 50px;
    position: absolute;
    right: 20px;
    top: 0;
    z-index: 99;
}
#searchModal .loading-content {
    background: #fff url('../images/loader.gif') center no-repeat;
    background-size: 200px;
}

/* Data download button */
.modal-data-download .modal-body {
    border: 1px solid #eee;
    box-shadow: 1px 1px 23px -18px #000;
    margin-top: -10%;
    padding: 45px 40px;
    background-color: #fff;
}
.modal-data-download .modal-body h1 {
    font-size: 30px;
}
.modal-data-download .modal-body a.link {
    color: #000;
    text-decoration: underline;
}


.morris-hover {
    position: absolute;
    z-index: 9 !important;
}

.reaction-button {
    background: #ebf5fb;
    border: 1.5px solid #1d9bd1;
    border-radius: 20px;
    padding: 3px 5px;
    font-size: 12px;
    color: #1264a3;
    font-family: sans-serif;
}
.reaction-button-taco {
    font-size: 15px;
    display: inline-block;
    vertical-align: middle;
}

.olvy-frame-modal .olvy-frame {
    max-height: 60rem !important;
}

.new-flag {
    background: #ec6347;
    font-size: 9px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 2px;
    padding: 1px 3px;
    vertical-align: middle;
    font-weight: bold;
}
.intercom-app .tooltip {
    display: none !important;
}
.upgrade-bar {
    background: #313131;
    padding: 15px 0;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 999;
    font-weight: 500;
}
.upgrade-bar .btn, .upgrade-bar .btn:hover {
    border: 1px solid #313131;
    color: #313131 !important;
    margin-left: 0px;
    font-size: 13px;
    margin: 0;
    border-radius: 5px;
}
.upgrade-bar .btn-outlined  {
    background: none !important;
    border: 1px solid #fff;
    color: #fff !important;
}
.upgrade-bar .days-left {
    font-weight: bold;
    font-size: 18px;
    padding-right: 15px;
}
.upgrade-bar .message {
    padding: 0 10px;
    font-size: 15px;
}


.jobs-badge {
    background: #eb6248;
    font-size: 9px;
    width: 15px;
    display: inline-block;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    height: 14px;
    line-height: 14px;
    vertical-align: text-top;
    font-weight: bold;
    margin: 3px 0;
}

.loading:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4,end) 900ms infinite;      
  animation: ellipsis steps(4,end) 900ms infinite;
  content: "\2026"; /* ascii code for the ellipsis character */
  width: 0px;
}

@keyframes ellipsis {
  to {
    width: 1.25em;    
  }
}

@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;    
  }
}

.tags {
    max-width: 300px;
    float: right;
}
.tag-title {
    font-size: 20px;
}
.tag {
    font-size: 12px;
    padding: 0px 8px 0 4px;
    border-radius: 5px;
    color: #a0a0a0 !important;
    background: #f1f1f1;
    font-weight: normal !important;
    margin: 3px 0 3px 12px;
    position: relative;
    float: right;
    line-height: 20px;
}
.tag:hover {
    color: #555 !important;
    text-decoration: none !important;
}
@media screen and (max-width: 600px) {
    .tag {
        float: left;
    }
}

.tag:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(194, 225, 245, 0);
    border-right-color: #f1f1f1;
    border-width: 9px;
    margin-top: -9px;
}
.tag-select-picker .dropdown-toggle {
    float: right;
}
.tag-select-picker .selected {
    display: none;
}
.tag-description {
    font-size: 16px;
    line-height: 22px;
    margin-top: 14px;
}
.tag-rank {
    background: #efefef;
    font-size: 12px;
    font-weight: bold;
    padding: 1px 4px;
    color: #c3c3c3;
    border-radius: 3px;
    vertical-align: top;
    display: none;
}
body .tags-sad-taco {
    margin: 60px 0  0;
    width: 120px;
}
body .no-tacos-given {
    font-size: 18px;
    margin-bottom: 65px;
    color: #777;
    max-width: 500px;
    margin: 0 auto 20px;
    line-height: 24px;
}

.edit-taco-tag-btn {
    border: 1px solid #ccc;
    padding: 1px 8px;
    font-size: 11px !important;
    border-radius: 3px;
    color: #a7a7a7 !important;
    line-height: 17px;
    margin: 22px 0 0;
    font-weight: 500;
}
.edit-taco-tag-btn:hover {
    text-decoration: none !important;
    opacity: .7;
} 
#edit-tag .modal-content {
    padding: 35px 35px 65px;
    max-width: 500px;
    margin: 0 auto;
}
#edit-tag .new-tag-name {
    font-size: 18px;
    height: 46px;
    margin: 15px 0 5px;
}
#edit-tag h2 {
    margin: 0px 0 5px;
}
.tag-edit-description {
    font-size: 13px;
    line-height: 18px;
    color: #999;
}
.delete-tag {
    float: right;
    color: #999;
    border: 1px solid #ccc;
    padding: 3px 10px !important;
    border-radius: 3px !important;
    font-size: 13px !important;
    margin: 20px 0 0;
}
body .leaderboard-tags {
    margin-bottom: 0;
    min-height: 350px;
}
.leaderboard-tags table {
    margin-bottom: 0;
}
.leaderboard .more {
    margin: 8px 10px;
    display: inline-block;
    font-size: 15px;
}

.quote {
    display: inline-block;
    margin: 2ex 1em;
    position: absolute;
}
.quote p {
    font-weight: 500;
}
.quote p .time-ago {
    font-size: 90%;
    color: #818d98;
}
.quote blockquote {
    color: #576776;
    margin: 0;
    font-size: 16px;
}
.quote .avatar {
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    float: right;
    margin: 7px 29px;
    width: 45px;
}
.quote .speech-bubble.bottom {
    border: 1px solid #E0E8ED;
    border-radius: 6px;
    position: relative;
    margin-top: 9px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 4px;
    margin-bottom: 4px;
    padding: 1ex 1em;
    background: #FDFDFE;
    clear: both;
    margin-left: 0;
    margin-top: 2ex;
    max-width: 300px;
}
.quote blockquote {
    border-left: none;
}
.quote .speech-bubble.bottom:after, .quote .speech-bubble.bottom:before {
    content: "";
    display: block;
    position: absolute;
}
.quote .speech-bubble.bottom:after {
    right: 44px;
}
.quote .speech-bubble.bottom:before {
    right: 42px;
}
.quote .speech-bubble.bottom:after {
    border: 8px solid transparent;
    border-top: 8px solid #FDFDFE;
    bottom: -8px;
    border-bottom: none;
}
.quote .speech-bubble.bottom:before {
    border: 10px solid transparent;
    border-top: 10px solid #E0E8ED;
    bottom: -10px;
    border-bottom: none;
}
.quote .speech-bubble p {
    line-height: 1.3em;
    margin: 0;
}
.admin-mode-banner {
    background: #333;
    color: #ccc;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}
.admin-mode-banner a, .admin-mode-banner a:visited {
    color: #ccc;
    text-decoration: underline;
    margin: 0 5px;
}
.admin-mode-banner a:hover {
    text-decoration: none !important;
}
.tooltip-container {
    padding: 5px;
    font-size: 13px;
}
.tooltip .tooltip-timestamp {
    display: block;
    color: #aaa;
}

.page-header { /*replaces wrapping everthing in a page header in an h1 - also adds better mobile experience on filters*/
    display: flex;
    margin: 28px 0px 10px;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    &>.title{
        display: flex;
        align-items: center;
        gap: 10px;
    }

    h1 {
        margin: 0;
    }

    .filters {
        display: flex;
        gap: 5px;
        top: 0;
        right: unset;
        position: relative;
        height: 40px;

        &.hide{
            display: flex;
            visibility: hidden;
        }
    }
}

.custom-emoji{
    height: 1em;
    position: relative;
    top: -.1em;
}

#loading {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 56px;
    left: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.83) url(../images/rolling.gif) no-repeat center 43%;
    background-size: 0;
    display: none;
    animation: fade .5s forwards;
}
@keyframes fade {
    from {
        background-color: rgba(255, 255, 255, 0);
    }
    to {
        background-color: rgba(255, 255, 255, 1);
    }
}
.close {
    opacity: 1;
}
.show-spinner {
    background-size: 40px !important;
}
#contact {
    position: fixed;
    bottom: 21px;
    right: 85px;
    background: #fff;
    height: 375px;
    width: 500px;
    box-shadow: 1px 2px 10px -3px #000;
    padding: 30px;
    border-radius: 10px;
    display: none;
    z-index: 9999;
}
#contact h2 {
    font-size: 18px;
    margin: 0;
}
#contact p {
    font-size: 14px;
    line-height: 18px;
    margin-top: 12px;
}
#contact textarea {
    margin-top: 15px;
    height: 110px;
}
#contact-init {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    border-radius: 5px;
    box-shadow: 1px 1px 8px -4px #000;
    cursor: pointer;
    z-index: 9999;
}
#menu {
    display: none;
    padding-top: 14px;
}

#menu ul li.current {
    background: #ffe315;
    display: inline-block;
    border-radius: 35px;
}
#menu ul li a {
    color: #000;
    font-weight: 500;
    display: block;
    padding: 10px 20px;
}
#menu {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 20px;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 99999;
    display: none;
    background-color: #fffdb6;
    color: #fff;
    padding-top: 50px;
}
.close-menu, .close-menu:visited {
    position: absolute;
    right: 18px;
    color: #000;
    font-weight: bold;
    font-size: 28px;
    top: 10px;
}


.noscroll {
    overflow: hidden;
}
.horzline {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 27px;
    position: relative;
    text-align: center;
    margin-top: -5px;
}
.horzline-title {
    position: relative;
    background: #fff;
    top: 10px;
    font-weight: bold;
    font-size: 14px;
    padding: 0 10px;
}
.alert-danger {
    color: #ec6147;
    background-color: #fff2f2;
    border-color: #f1c4bb;
}
.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background: none;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}
.popover {
    border: 1px solid #ccc;
    border: 1px solid rgba(150, 150, 150, 0.2);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
body .modal-backdrop.in, body .modal-backdrop {
    background: rgb(68 68 68) !important;
}
.modal-backdrop.in {
    filter: alpha(opacity=95);
    opacity: .95;
}

/* gets appended to body */

body .close-btn-large, body .gifts-welcome-close-btn {
    position: fixed;
    top: 40px;
    right: 60px;
    background: none;
    border: none;
    z-index: 9999;
}
body .close-btn-large span, .gifts-welcome-close-btn span {
    font-size: 90px;
    font-weight: normal;
    line-height: 60px;
    color: #ccc;
}


.timeframe-select  li:nth-child(9) {
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
}

li .custom-date-option {
    display: none !important;
}
.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #eb6248 !important;
}

input[name="daterange"] {
    color: #000;
    background: #fff;
    border-color: #ccc;
}

input[name="daterange"]:hover {
    color: #000;
    background-color: #ffffff;
    border-color: #545b62;
} 

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle {
    background-color: #ffffff;
}


.dropdown-menu>li:nth-child(6)>a:hover {
    background-color: #fff !important;
}

.dropdown-menu>li:nth-child(6)>a:hover .btn {
    background: #ddd !important;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    background-color: #f9f3e1;
}

.dropdown-toggle.btn-light {
    background: #fff;
    border: 1px solid #ddd;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    background-color: #f8f8d5;
}

.channel-select .selected a {
    font-weight: bold;
}

/* Valign Modal */

@media screen and (min-width: 600px) {
    .modal {
        text-align: center;
        padding: 0!important;
    }
    .modal h3 {
        font-size: 28px;
    }
    .modal:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }
    .modal-dialog {
        display: inline-block;
        text-align: left;
        vertical-align: middle;
    }
    .close {
        margin: 20px;
        position: absolute;
        right: 0;
        z-index: 999;
    }
}
.modal-content {
    box-shadow: none;
    border: none;
}
.container-fluid {
    padding: 0 5%;
}
@media screen and (max-width: 1060px) {
    .container-fluid {
        padding: 0 3%;
    }
}
@media screen and (max-width: 600px) {
    .container-fluid {
        padding: 0 5%;
    }
}
.preview-banner {
    background: #f7f6f1;
    color: #2f2f2f;
    padding: 12px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    font-size: 16px;
    line-height: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
}
@media screen and (max-width: 600px) {
    .preview-banner {
        font-size: 14px;
        padding-top: 24px;
    }
}
.payment .preview-banner {
    display: none;
}
.preview-banner .btn {
    font-size: 14px;
    padding: 4px 16px;
    border-radius: 3px;
    box-shadow: none;
    vertical-align: inherit;
    margin-left: 10px;
}
@media screen and (max-width: 600px) {
    .preview-banner .btn {
        margin: 20px 0 10px;
        display: block;
    }
}
.preview-banner p {
    margin-bottom: 0;
}
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin: -3px 0 0 0px;
    vertical-align: middle;
    border-top: 5px dashed;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}
.countdown {
    width: 100%;
    padding: 11px;
    color: #fff;
    font-weight: bold;
    opacity: .9;
    position: fixed;
    z-index: 3;
    bottom: 0;
    background: rgb(255, 75, 0);
    font-size: 16px;
    text-align: center;
}
body .countdown a {
    color: #fff;
    text-decoration: underline;
    margin-left: 10px;
}
body .countdown a:hover {
    opacity: .8;
}

.promo {
    width: 400px;
    position: fixed;
    background: #fff;
    padding: 20px;
    box-shadow: 5px 4px 6px -3px #ccc;
    z-index: 99;
    border-radius: 5px;
    font-size: 22px;
    border: 2px solid #eaeaea;
    right: -500px;
    top: 75px;
}
.promo small {
    display: block;
    font-style: italic;
    color: #777;
    font-size: 16px;
}
.promo .avatar {
    width: 55px;
    border-radius: 50px;
    float: left;
    margin-right: 12px;
}
.promo .close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px 10px;
}
.promo a {
    color: #337ab7 !important;
}
.rotating {
    display: inline-block;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
    -moz-transform: rotateX(0) rotateY(0) rotateZ(0);
    -ms-transform: rotateX(0) rotateY(0) rotateZ(0);
    -o-transform: rotateX(0) rotateY(0) rotateZ(0);
    transform: rotateX(0) rotateY(0) rotateZ(0);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-origin-x: 50%;
}
.rotating.flip {
    position: relative;
}
.rotating .front, .rotating .back {
    left: 0;
    top: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}
.rotating .front {
    position: absolute;
    display: inline-block;
    -webkit-transform: translate3d(0, 0, 1px);
    -moz-transform: translate3d(0, 0, 1px);
    -ms-transform: translate3d(0, 0, 1px);
    -o-transform: translate3d(0, 0, 1px);
    transform: translate3d(0, 0, 1px);
}
.rotating.flip .front {
    z-index: 1;
}
.rotating .back {
    display: block;
    opacity: 0;
}
.rotating.spin {
    -webkit-transform: rotate(360deg) scale(0);
    -moz-transform: rotate(360deg) scale(0);
    -ms-transform: rotate(360deg) scale(0);
    -o-transform: rotate(360deg) scale(0);
    transform: rotate(360deg) scale(0);
}
.rotating.flip .back {
    z-index: 2;
    display: block;
    opacity: 1;
    -webkit-transform: rotateY(180deg) translate3d(0, 0, 0);
    -moz-transform: rotateY(180deg) translate3d(0, 0, 0);
    -ms-transform: rotateY(180deg) translate3d(0, 0, 0);
    -o-transform: rotateY(180deg) translate3d(0, 0, 0);
    transform: rotateY(180deg) translate3d(0, 0, 0);
}
.rotating.flip.up .back {
    -webkit-transform: rotateX(180deg) translate3d(0, 0, 0);
    -moz-transform: rotateX(180deg) translate3d(0, 0, 0);
    -ms-transform: rotateX(180deg) translate3d(0, 0, 0);
    -o-transform: rotateX(180deg) translate3d(0, 0, 0);
    transform: rotateX(180deg) translate3d(0, 0, 0);
}
.rotating.flip.cube .front {
    -webkit-transform: translate3d(0, 0, 100px) scale(0.9, 0.9);
    -moz-transform: translate3d(0, 0, 100px) scale(0.85, 0.85);
    -ms-transform: translate3d(0, 0, 100px) scale(0.85, 0.85);
    -o-transform: translate3d(0, 0, 100px) scale(0.85, 0.85);
    transform: translate3d(0, 0, 100px) scale(0.85, 0.85);
}
.rotating.flip.cube .back {
    -webkit-transform: rotateY(180deg) translate3d(0, 0, 100px) scale(0.9, 0.9);
    -moz-transform: rotateY(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    -ms-transform: rotateY(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    -o-transform: rotateY(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    transform: rotateY(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
}
.rotating.flip.cube.up .back {
    -webkit-transform: rotateX(180deg) translate3d(0, 0, 100px) scale(0.9, 0.9);
    -moz-transform: rotateX(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    -ms-transform: rotateX(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    -o-transform: rotateX(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    transform: rotateX(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
}

/* Flexbox */

@media screen and (min-width: 600px) {
    .row-flex, .row-flex > div[class*='col-'] {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex: 1 1 auto;
    }
    .row-flex-wrap {
        -webkit-flex-flow: row wrap;
        align-content: flex-start;
        flex: 0;
    }
    .row-flex > div[class*='col-'], .container-flex > div[class*='col-'] {
        margin: -.2px;
        /* hack adjust for wrapping */
    }
    .container-flex > div[class*='col-'] div, .row-flex > div[class*='col-'] div {
        width: 100%;
    }
    .flex-col {
        display: flex;
        display: -webkit-flex;
        flex: 1 100%;
        flex-flow: column nowrap;
    }
    .flex-grow {
        display: flex;
        -webkit-flex: 2;
        flex: 2;
    }
}
.container-wide {
    width: 90%;
    transition: .5s;
}

/* Vertical aligning */
.v-align-middle {
    vertical-align: middle !important;
}

/* Clearfix */

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}

/* Zoom effect */

a.zoom:hover {
    opacity: 1;
}
a.zoom img, a.zoom {
    transition: .2s;
}
a.zoom:hover img, a.zoom:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* Buttons */

.btn {
    margin: .2em .1em;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 6px;
    padding: .65em 1.3em;
    text-decoration: none;
}
.btn-lg {
    padding: 12px 25px;
    font-size: 18px;
}
.btn-sm, .btn-xs {
    font-size: 13px;
    padding: 5px 12px;
}
.btn-xs {
    padding: 6px 10px;
    line-height: 14px;
    font-size: 12px;
    border-radius: 4px;
}
.btn-md {
    font-size: 1em;
    padding: .5em 1.4em;
}
.btn-default {
    background: #fff!important;
    color: #333 !important;
    border: 1px solid #ededd0;
    box-shadow: none;
}
.btn-default:hover {
    background: #fff!important;
    color: #333 !important;
    border: 1px solid #ededd0;
    box-shadow: none;
    opacity: .8;
}
.btn-success, .btn-success:active {
    background: #2ab27b !important;
    color: #fff !important;
    border: none;
    box-shadow: 1px 1px 2px 0 #909d9b;
}
.btn-success:hover {
    background: #2ab27b;
    color: #fff !important;
    border: none;
    opacity: .8;
}
.btn-primary, .btn-primary:active, .btn-primary:focus {
    /*background: #ec6147!important;*/
    background: #ec6348;
    background-color: #ec6348 !important;
    color: #fff !important;
    border: none;
    border: 1px solid #dc461e!important;
}
.btn-primary:hover {
    background: #ff5629;
    color: #fff !important;
    border: none;
    border-bottom: 2px solid #dc461e;
    opacity: .8;
}
.btn-secondary, .btn-secondary:active, .btn-secondary:focus {
    background: var(--heytaco-bg-grey);
    border: var(--heytaco-border-dark);
    color: var(--heytaco-link);
    border: none;

    &:hover{
        background: var(--heytaco-bg-grey);
        color: var(--heytaco-link);
        opacity: .8;
    }

    &.disabled{
        background: var(--heytaco-bg-grey);
        color: var(--heytaco-link);
        opacity: .6;
        pointer-events: none;
    }
}
.btn-primary:hover {
    background: #ff5629;
    color: #fff !important;
    border: none;
    border-bottom: 2px solid #dc461e;
    opacity: .8;
}
.btn-info {
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    background-image: linear-gradient(#f1f1f1, #f1f1f1);
}
.btn-info:hover {
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    background-image: linear-gradient(#f1f1f1, #f1f1f1);
    opacity: .8;
}
.btn-warning {
    border-color: #df8a13;
    background-image: linear-gradient(#f0ad4e, #eea236);
}
.btn-warning:hover {
    background: linear-gradient(#eea236, #ec971f);
}
.btn-danger {
    border-color: #b52b27;
    background-image: linear-gradient(#d9534f, #d43f3a);
}
.btn-danger:hover {
    background: linear-gradient(#d43f3a, #c9302c);
}

.no-activity-btn {
	color: #b7a204;
}
/* toggle button on settings page */

.checkbox label .toggle, .checkbox-inline .toggle {
    margin-left: -20px;
    margin-right: 5px
}
.toggle {
    position: relative;
    overflow: hidden;
    font-size: 18px;
    border-bottom-width: 1px !important;
}
.toggle input[type=checkbox] {
    display: none;
}
.toggle-group {
    position: absolute;
    width: 200%;
    top: 0;
    bottom: 0;
    left: 0;
    transition: left .35s;
    -webkit-transition: left .35s;
    -moz-user-select: none;
    -webkit-user-select: none;
    font-size: 16px;
}
.toggle.off .toggle-group {
    left: -100%
}
.toggle-on {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 50%;
    margin: 0;
    border: 0;
    border-radius: 0
}
.toggle-off {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
    margin: 0;
    border: 0;
    border-radius: 0
}
.toggle-handle {
    position: relative;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    width: 0;
    border-width: 0 1px
}
.toggle.btn {
    min-width: 59px;
    min-height: 34px
}
.toggle-on.btn {
    padding-right: 24px
}
.toggle-off.btn {
    padding-left: 24px
}
.toggle.btn-lg {
    min-width: 79px;
    min-height: 45px
}
.toggle-on.btn-lg {
    padding-right: 31px
}
.toggle-off.btn-lg {
    padding-left: 31px
}
.toggle-handle.btn-lg {
    width: 40px
}
.toggle.btn-sm {
    min-width: 50px;
    min-height: 30px
}
.toggle-on.btn-sm {
    padding-right: 20px
}
.toggle-off.btn-sm {
    padding-left: 20px
}
.toggle.btn-xs {
    min-width: 35px;
    min-height: 26px
}
.toggle-on.btn-xs {
    padding-right: 12px
}
.toggle-off.btn-xs {
    padding-left: 12px
}
.ios {
    box-shadow: none;
}
.toggle.ios, .toggle.ios:hover, .toggle.ios:active {
    border: 1px solid #2ab27b;
    box-shadow: none;
}
.toggle.off, .toggle.off:hover {
    border-color: #dedede;
}
.toggle-off, .toggle-off:hover, .toggle-off:active {
    border: none;
    box-shadow: none !important;
}
.toggle.ios .toggle-handle {
    border-radius: 20px;
    border: none;
}
.toggle.ios, .toggle-on.ios, .toggle-off.ios {
    border-radius: 20px;
}
.toggle.ios .toggle-handle {
    border-radius: 20px;
}
.toggle-on {
    box-shadow: none;
    border-bottom: none !important;
}
.toggle-on:hover {
    border: none !important;
}
.toggle-on.btn-xs {
    padding: 5px 6px 5px 0px;
}
.toggle-off.btn-xs {
    padding: 5px 0px 5px 4px;
    background-color: #efefef !important;
    color: #a5a5a5 !important;
}
.back-link {
    margin: 20px 20px 0;
    display: inline-block;
    font-size: 18px;
}
.back-link:hover {
    text-decoration: none;
}
.upgrade-badge {
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 14px;
    vertical-align: middle;
    text-decoration: none;
    display: inline-block;
}
.upgrade-badge:hover {
    opacity: .8;
    color: #fff
}
.upgrade-badge-medium {
    font-size: 14px;
}
.leaderboard-default-view, .leaderboard-show-bots {
    max-width: 200px;
    margin-bottom: 25px;
    display: inline;
}
.team-name-change input {
    max-width: 300px;
    margin-bottom: 35px;
    display: inline;
}
.saved-msg {
    color: #44c7b9;
    font-size: 20px;
    margin-left: 14px;
    display: none;
}

.taco-tv-btn {
    background: #fff;
    color: #ec6348 !important;
    font-size: 15px;
    border-radius: 3px;
    border: 1px solid #ec6348;
}
.taco-tv-btn:hover {
    opacity: .6;
}


/* Forms */

input.error, textarea.error, select.error {
    border: 1px solid #ec6147;
    color: #ec6147;
}

/* Mobile Menu */

@media screen and (max-width: 1160px) {
    nav.global-nav {
        position: absolute;
        top: 0;
        right: 0px;
        width: 100%;
        z-index: 10;
        background: #333;
        padding: 10px;
        display: none;
    }
    body nav.global-nav ul {
        margin: 60px auto;
        float: none;
    }
    body nav.global-nav ul li {
        display: block;
        margin-right: 0;
        color: #888;
        font-size: 16px;
        text-align: center;
        padding: 15px 0;
    }
    body nav.global-navul li a {
        font-size: 21px;
    }
}
.manifesto {
    margin-bottom: 65px;
}
h1.manifesto {
    font-size: 60px;
    line-height: 75px;
    color: #3c1806;
    margin-top: 65px;
}
@media screen and (max-width: 1200px) {
    h1.manifesto {
        font-size: 55px;
    }
}
@media screen and (max-width: 600px) {
    h1.manifesto {
        font-size: 35px;
        line-height: 40px;
        text-align: left;
        margin-top: 35px;
    }
}



h1.manifesto::first-letter {
    font-size: 273%;
    float: left;
    margin: 0.2em 0.1em 0 0;
    font-family: 'Fredoka One', cursive;
}
.principles {
    background: #ecfcf4;
    padding: 30px;
    border-radius: 10px;
    margin-top: 45px;
}
.principles h2 {
    margin: 20px 0 35px;
    text-align: center;
    font-size: 26px;
}
.subtext-manifesto {
    font-size: 24px;
    line-height: 38px;
    margin: 3rem 0 8rem;
}
.manifesto ol {
    font-size: 18px;
    line-height: 32px;
    margin: 0 20px;
    padding: 0;
    list-style: none;
}
.manifesto ol li .rule {
    background: #e0f5ea;
    padding: 35px;
    text-align: center;
    border-radius: 5px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

/* Utils */

.centered {
    text-align: center;
}
.text-right {
    text-align: right;
}
.show-for-mobile {
    display: none;
}
.light-text {
    color: #999;
}
.strikethrough {
    text-decoration: line-through;
}
@media screen and (max-width: 600px) {
    .hide-for-mobile {
        display: none !important;
    }
    .show-for-mobile {
        display: block !important;
    }
}
.inactive {
    opacity: .3;
}
.underlined {
    text-decoration: underline !important;
}

/* Avatars */

.small-avatar {
    width: 35px;
    border-radius: 5px;
    margin-right: 10px;
}

/* About Page */

.about p {
    font-size: 18px;
    line-height: 28px;
}
.about h2, .faq h2 {
    margin-top: 50px;
}
.sticky-box {
    max-width: 217.5px;
    color: #000;
    margin-top: 45px;
    max-width: 190px;
}
.sticky-box a {
    color: #b2a339;
}
.sticky-box p.responsibly, .sticky-box p.responsibly a {
    color: #ccc;
    line-height: 20px;
}
.sticky-box a:hover {
    text-decoration: none;
}
.sticky-box h2 {
    margin: 20px auto 25px;
}
#sticky.stick {
    position: fixed;
    top: 0;
    z-index: 10000;
    margin-top: 20px;
}
.menu {
    list-style: none;
    background-color: #fff;
    margin: 0 0 20px;
}
.menu-item {
    position: relative;
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}
.menu-item:hover {
    background: #FDF9ED;
}

/* Base */


/*body {
    background: #fffaf0 url("/public/images/pattern.png");
}*/

body {
    background: #fff;
    font-family: Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    height: 100%;
}
body.utility footer {
    display: none;
}
p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 28px;
}
a, a:hover, a:visited, a:active {
    color: #b2a339;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
h4 {
    font-size: 16px;
    font-weight: 600;
    color: #777;
}
.form-group {
    margin-bottom: 20px;
}
.form-control {
    font-size: 16px;
}
.panel {
    border: 1px solid #f1f0e1;
}

/* Fix Grooves Iframe */

.grv-widget-tag {
    position: absolute;
}
@media screen and (max-width: 600px) {
    .grv-widget-tag {
        display: none;
    }
}

/* Header */

.tophat {
    height: 56px;
    position: relative;
    z-index: 100;
    background: #fffdb6;
    margin-top: 0;
}
@media screen and (max-width: 600px) {
    .tophat .container-fluid {
        padding: 0 !important;
    }
}
.tophat-home {
    background: none;
    margin-bottom: 0;
    border: none;
}
.header-logo {
    margin: 10px 15px 0 0px;
    float: left;
}
.header-logo img {
    width: 155px;
}
.toggle-button {
    display: none;
}
@media screen and (max-width: 1160px) {
    .header-logo {
        display: block;
        margin: 11px 12px 0 12px;
        position: relative;
    }
    .toggle-button {
        position: absolute;
        top: 0px;
        background: none;
        border: none;
        font-size: 36px;
        outline: none;
        color: #000;
        display: block;
        padding: 0;
        right: 10px;
    }
}
.tophat-home .logo {
    background-image: url('../images/htlogo-white.png');
}
@media screen and (max-width: 600px) {
    .logo {
        width: 190px;
        float: none;
        padding-top: 16px;
        display: block;
    }
}

/* Footer */

footer {
    font-size: 15px;
    padding: 35px 0;
    border-top: 1px solid #eee;
    line-height: 24px;
    /* transition: 2s; */
    background-color: #ffffff;
    margin-top: 20px;
}
@media screen and (max-width: 600px) {
    footer {
        text-align: center;
    }
}
.home footer {
    background: #fbfbf8;
    border-top: 1px solid #E6DFCB;
}
footer a {
    text-decoration: none;
    color: #888888 !important;
}
footer a:hover {
    opacity: .7;
}
footer .copyright {
    color: #888;
    margin-top: 20px;
    font-size: 15px;
}
footer .copyright a {
    color: #acacaf;
}
footer .copyright .pipe {
    margin: 0 5px;
}
body.utility footer .copyright {
    float: none;
    margin-top: 10px;
}
@media screen and (max-width: 600px) {
    footer .copyright {
        float: none;
        margin-top: 5px;
    }
}

/* Typography */

h1 {
    font-size: 24px;
    line-height: 28px;
    margin: 35px 0 10px;
    min-height: auto;
    font-family: inherit;
    font-weight: 600;
    color: #333;
}
@media screen and (max-width: 600px) {
    h1 {
        font-size: 24px;
        margin: 25px 0px 12px 3px;
        line-height: 33px;
        min-height: auto;
        font-family: inherit;
    }
}
.subtitle {
    color: #fff;
    font-size: 26px;
    max-width: 700px;
    margin: 24px auto 45px;
    line-height: 35px;
}
@media screen and (max-width: 600px) {
    .subtitle {
        font-size: 18px;
        line-height: 24px;
    }
}
h2 {
    font-size: 26px;
    margin: 25px 0 10px;
    font-weight: 600;
}
h3 {
    font-size: 22px;
}

/* Navigation */

nav.global-nav {
    margin: 0 0 0 165px;
    position: relative;
}
nav.global-nav ul {
    padding: 11px 8px;
}
nav.global-nav ul ul {
    padding: 0 8px;
}
nav.global-nav ul li {
    display: inline-block;
    margin: 5px 4px;
    font-size: 16px;
}
nav.global-nav a.current {
    color: #333 !important;
    font-weight: 600;
}
nav.global-nav ul li.user-tools {
    position: absolute;
    right: 0;
}
nav.global-nav ul li .dropdown-caret:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: middle;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
    border-bottom: 0;
}
nav.global-nav ul li .user-avatar {
    width: 24px;
    border-radius: 6px;
    margin: -2px 2px 0;
}
nav.global-nav ul li a {
    font-weight: 500;
    font-size: 15px;
    padding: 5px 6px;
    text-decoration: none;
    color: #83823c !important;
}
nav.global-nav ul li a:hover {
    opacity: .7;
    text-decoration: none;
}
nav.global-nav ul li .user-profile-details {
    padding: 10px 25px;
    margin-bottom: 15px;
}

.user-tacos-redeemable {
    padding: 2px !important;
}
 
nav.global-nav ul li .user-profile-details .col {
    padding: 2px;
}
nav.global-nav ul li .username {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-top: 10px;
}
nav.global-nav ul li .teamname {
    display: block;
    font-size: 11px;
    color: #7e7e7e;
    margin: 0 auto 10px;
    text-align: center;
}

nav.global-nav .logout-link {
    border-top: 1px solid #eee;
    padding: 8px 0 0 0 !important;
    margin-top: 6px !important;
}
nav.global-nav .dropdown-menu li {
    width: 100%;
	padding: 0;
}
nav.global-nav .dropdown-menu li .fa {
    width: 21px;
    height: 21px;
    text-align: center;
    margin-right: 5px;
}    
nav.global-nav .notifications {
    position: absolute;
    right: 47px;
    background: 0 0;
    cursor: pointer;
}
nav.global-nav .notifications .icon {
    font-size: 16px;
    color: #b8a204;
}    
nav.global-nav .dropdown-menu .user-avatar {
    width: 65px;
    margin: 2px auto;
    display: block;
}
nav.global-nav .dropdown-menu a {
    color: #000 !important;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding: 4px 0;
    line-height: 18px;
    display: block;
}
.ntd-link a {
    color: rgb(255, 75, 0) !important;
    text-transform: capitalize;
}
.ntd-link-mobile {
    display: none;
}


nav.global-nav ul li.global-nav-search {
    width: 202px;
    position: absolute;
    right: 99px;
    height: 36px;
    border-radius: 5px;
    margin-top: -2px;
    padding: 6px 0;
    cursor: pointer;
    border: 1px solid #dece8b;
}
.global-nav-search .search-query {
    margin: 0 16px;
    background: transparent;
    border: none;
    font-size: 15px;
}
.global-nav-search .search-query:focus {
    outline: none;
}
.global-nav-search button {
    display: none;
}

.global-nav-search .results-container {
    background: #fff;
    border: 1px solid #dece8b;
    width: 350px;
    display: none;
    position: relative;
    margin-top: 8px;
    padding: 10px 0 0;
    border-radius: 5px;
    z-index: 99999;
    box-shadow: 2px 1px 6px -5px #000;
    transition: height 2s;
}   
.global-nav-search .results-container .results {
    max-height: 400px;
    overflow: scroll;
}

.global-nav-search .results-container a {
    font-weight: 500;
    font-size: 16px;
    padding: 2px 0px;
    text-decoration: none;
    color: #8e7d38 !important;
    line-height: 21px;
    display: block;
}

.global-nav-search .results-footer a {
    color: #000 !important;
    text-decoration: underline;
    display: inline;
    font-weight: normal;
    font-size: 15px;
}

.global-nav-search .results-footer {
    background: #f7f6f1;
    padding: 10px;
    font-size: 15px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.global-nav-search .search-query {
    color: #8e7d38;
}

.global-nav-search .search-query::placeholder {
  color: #8e7d38;
  opacity: 1;
  font-size: 15px;
}

.global-nav-search .search-query:-ms-input-placeholder {
  color: #8e7d38;
}

.global-nav-search .search-query::-ms-input-placeholder {
  color: #8e7d38;
}


.global-nav-search .results-container .results::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

.global-nav-search .results-container .results::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, .5);
  box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.user-tools .dropdown-toggle::after {
    display: none;
}


.menu-item.current {
    background: #f7f6f1;
}
.home nav ul {
    float: none;
}
.tophat-home nav ul li a {
    color: #7e7432;
}
.tophat-home nav ul li a:hover {
    color: #988e4d;
    opacity: .6;
}
a.signin {
    background-image: none;
    color: #988e4d;
    border: 1px solid rgb(245, 235, 207);
    padding: 5px 19px 5px;
    border-radius: 4px;
    text-decoration: none !important;
}
.main a.signin {
    background-image: none;
    color: #7e7432;
    border: 2px solid #c7c3a2;
    padding: 7px 19px 5px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none !important;
    margin-top: -9px;
}
.main a.signin:hover {
    opacity: .6;
}
.btn-create-account {
    color: #aaa !important;
    padding: 13px;
    opacity: .8;
    background: none;
}

/* ADD TO SLACK PAGE */

.add {
    background: #ebf7f3;
}
.add h1 {
    font-size: 40px;
    margin-top: 65px;
}
.add p.subtitle {
    font-size: 26px;
    text-align: center;
    color: #000;
}
.add ol {
    font-size: 20px;
    line-height: 30px;
    padding: 22px;
}
.add .container {
    background: #fff;
    margin-top: 65px;
    max-width: 600px;
    padding: 0px 50px 65px;
    border: 1px solid #ECE5E5;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    border-radius: 4px;
}
.add footer {
    display: none;
}
.btn-add {
    font-size: 25px;
    padding: 15px 35px;
    font-weight: 600;
    font-family: inherit;
}
@media screen and (max-width: 600px) {
    .btn-add {
        font-size: 21px;
    }
    .modal .btn-add {
        font-size: 21px;
        width: 100%;
    }
}


/* Microsoft Teams */

.teams {
    padding-top: 190px;
    background: #fffdf8 url("../images/people2.gif") no-repeat 900px 50px;
    background-size: 80%;
}
.teams .questions {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #c4b99e;
}
.teams .why-built {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 18px;
    color: #44c7b9;
}
.teams .avatar {
    position: absolute;
    top: 25px;
    width: 50px;
    border-radius: 5px;
    left: 25px;
}
.teams footer {
    display: none;
}
.teams h1 {
    font-size: 38px;
    line-height: 44px;
    min-height: auto;
    font-family: inherit;
    font-weight: 500;
    color: #333;
    max-width: 800px;
    margin: 50px auto 75px;
    font-family: ProximaNova;
}
.teams h3 {
    font-weight: 600;
}
.teams form input {
    margin-bottom: 10px;
    font-size: 20px;
    height: 55px;
    width: 300px !important;
}
.teams .footer-bar {
    background: #fff;
    width: 100%;
    position: fixed;
    bottom: 0;
    height: 50px;
    border-top: 1px solid #f1ecde;
    padding: 10px 0;
    color: #aaa;
}
.teams .footer-bar a {
    color: #aaa;
    margin: 0 5px;
}
.teams .logo {
    max-width: 375px;
}
.teams .btn-access {
    border-radius: 5px;
    font-size: 21px;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: #f76342 !important;
}
.love {
    background: #fff;
    text-align: center;
    color: #222;
    padding: 50px 15px;
    border-top: 1px solid #eee;
}
.love h2 {
    font-size: 40px;
    font-family: ProximaNova;
}
.love p {
    font-size: 24px;
    max-width: 900px;
    margin: 20px auto;
}

/* Admin only badge */
.badge.bg-secondary {
    background-color: #919191 !important;
    line-height: 15px;
    color: #fff;
}

/* PLANS AND PRICING */

.limited-time-offer-badge {
    position: absolute;
    top: -18px;
    right: -18px;
}
.original-price {
    text-align: center;
    margin: 0;
    font-size: 18px;
    line-height: 13px;
    margin-bottom: 12px;
}
.strike-through {
    text-decoration: line-through;
}
.pricing .panel {
    min-height: 425px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
}
.pricing .panels .col {
    margin: 0;
    padding: 0;
}
.pricing h1, .signup h1 {
    font-size: 48px;
    text-align: center;
    margin-top: 65px;
    font-family: ProximaNova;
}
@media screen and (max-width: 600px) {
    .pricing h1, .signup h1 {
        font-size: 34px;
        margin-top: 38px;
        line-height: 16px;
    }
    .pricing p.subtitle, .signup p.subtitle {
        font-size: 20px;
        text-align: center;
        color: #000;
        line-height: 27px;
        margin-top: 0;
    }
}
.panel-footer {
    background-color: transparent !important;
    border-top: none !important;
}
.pricing p.subtitle, .signup p.subtitle {
    font-size: 26px;
    text-align: center;
    color: #000;
}
.pricing .premium-panel {
    background: #f6fdfc;
    border-left: 1px solid #c4ebe7;
}
.pricing .list-group-item {
    position: relative;
    display: block;
    padding: 4px 15px;
    margin-bottom: -1px;
    background-color: transparent;
    border: none;
    font-size: 17px;
}
.pricing .price {
    font-size: 75px;
    font-weight: 500;
    margin: 10px 0;
}
.pricing .panels {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #d6e9e6;
    border-radius: 5px;
}
.pricing .message {
    max-width: 600px;
    margin: 75px auto;
}
@media screen and (max-width: 600px) {
    .pricing .message {
        margin: 75px 30px;
    }
}
.pricing .small-text {
    font-size: 30px;
    vertical-align: super;
    line-height: 0;
}
.pricing h4 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 20px;
}
.pricing .message h2 {
    font-size: 30px;
    margin: 40px 0;
    text-align: center;
}
.pricing .message h3 {
    font-size: 24px;
    margin: 45px 0 16px;
    font-weight: 600;
}
.pricing .message h4 {
    font-size: 24px;
    margin: 24px 0;
}
.plans {
    max-width: 1000px;
    margin: 0 auto;
}
.plan h4 {
    font-size: 24px;
}
.plan .panel-footer {
    margin-top: 15px;
}
.price {
    font-size: 45px;
    font-weight: 500;
}
.price small {
    font-size: 20px;
    color: #aaa;
    font-weight: 100;
}
.plan .list-group-item {
    position: relative;
    display: block;
    padding: 4px 15px;
    margin-bottom: 0;
    background-color: #fff;
    border: none;
    text-align: center;
    font-size: 18px;
}
.plans .plan {
    min-height: 325px;
}
.contact-bar {
    background: #f1f1f1;
    padding: 20px;
    display: block;
    text-align: center;
    color: #999 !important;
    text-decoration: none;
    font-size: 20px;
    max-width: 800px;
    margin: 35px auto 75px;
}
.contact-bar:hover {
    text-decoration: underline;
}
.starting-at {
    font-size: 15px;
    margin: -37px 0 7px 0;
    color: #777;
}

/* Comparison Modal */

.comparison .list-group-item {
    padding: 3px 15px;
    border: none;
}
.comparison h3 {
    margin-bottom: 20px;
    text-align: center;
}
.comparison .panel-heading {
    padding-top: 40px;
}
.comparison .panel-body {
    padding: 15px 15px 0;
}
.comparison .modal-body {
    padding: 35px 35px 15px;
}
.comparison .modal-content {
    background: #f5f5f5;
}
.comparison .col {
    padding: 5px;
}
.comparison .price {
    font-size: 68px;
}
.comparison .price small {
    font-size: 16px;
}
.about-service {
    margin-top: 65px;
    margin-left: 30px;
}
.about-service li {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px;
}
.about-service li:before {
    font-family: 'FontAwesome';
    content: '\f00c';
    margin: 0 10px 0 -28px;
    color: green;
}

/* UTILITY PAGES */

.container.utility {
    max-width: 900px;
    margin-top: 45px;
}
@media screen and (max-width: 600px) {
    .utility .panel {
        margin: 0;
    }
}
.utility .panel-body {
    padding: 45px;
}
.utility-logo {
    max-width: 250px;
    margin: 15px auto 0 !important;
    display: block;
}
.utility h1 {
    color: #222;
    font-size: 32px;
    line-height: 32px;
    margin: 40px auto 10px;
    text-align: center;
}
.utility p {
    text-align: center;
    margin-bottom: 35px;
}
.utility-btn, .utility-btn:hover {
    border-color: #7a8b00;
    background-image: linear-gradient(#a3b905, #93a700);
    font-weight: 600;
    font-size: 21px;
    color: #fff;
    padding: 12px 10px 10px;
    margin: 0;
    font-family: Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.utility-btn:hover:hover {
    opacity: 0.8;
}

/* HOMEPAGE 
Top */

.add-to-slack .modal-content {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    border-color: #e4deb3;
}
.add-to-slack .modal-content ol {
    font-size: 20px;
    padding: 24px;
    line-height: 32px;
}
.add-to-slack .modal-content .people {
    float: right;
    margin: 36px -65px 30px 15px;
}
.close {
    position: relative;
    z-index: 99999;
    margin: 15px;
}
@media screen and (max-width: 600px) {
    .add-to-slack .modal-content .people {
        display: none;
    }
}
.add-to-slack .modal h3 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 5px;
}
.add-to-slack .modal-footer {
    background: #f9f9f4;
    text-align: left;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.add-to-slack .ats {
    margin-top: 0;
}
.add-to-slack .slack-logo {
    width: 28px;
    vertical-align: sub;
}
.add-to-slack h3 {
    font-size: 32px;
    font-weight: 500;
    margin: 10px 0;
    font-family: ProximaNova;
}
.main {
    background: #FFFCDE;
}
.main .container {
    position: relative;
    width: 990px;
}
@media screen and (max-width: 900px) {
    .main .container {
        width: 100%;
    }
}
.main .tophat .container {
    width: 1170px;
}
@media screen and (max-width: 1200px) {
    .main .tophat .container {
        width: 100%;
    }
}
.main .logo {
    max-width: 380px;
    margin-top: 85px;
}
@media screen and (max-width: 600px) {
    .main .logo {
        max-width: 380px;
        width: 70%;
        margin: 12% auto 0;
    }
}
.main h1 {
    font-size: 32px;
    line-height: 45px;
    margin: 8px auto 50px;
    min-height: auto;
    font-weight: 500;
    max-width: 700px;
}
.main h1 .rotate {
    display: none;
}
@media screen and (max-width: 600px) {
    .main h1 {
        font-size: 24px;
        line-height: 30px;
        margin: 10px 30px 50px;
    }
}
.earth-animation {
    width: 90%;
    margin: 15px auto 0;
    display: block;
}
@media screen and (max-width: 600px) {
    .earth-animation {
        width: 100%;
    }
}
.ats {
    padding: 7px 20px 9px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #dcdbd7;
    margin-top: 15px;
}
.main .taco {
    margin: 0 auto;
    display: block;
    max-width: 800px;
    width: 100%;
}

/* Used By Banner */

.usedby {
    background: #fff;
}
.usedby .container {
    max-width: 990px;
}
@media screen and (max-width: 600px) {
    .usedby {
        padding-bottom: 25px;
        text-align: center;
    }
}
@media screen and (max-width: 1200px) {
    .usedby .container {
        width: 100%;
    }
}
.usedby h3 {
    max-width: 200px;
    font-size: 18px;
    color: #999;
    line-height: 24px;
    font-weight: 500;
    float: left;
    margin-top: 45px;
}
@media screen and (max-width: 600px) {
    .usedby h3 {
        max-width: 100%;
        text-align: center;
        float: none;
    }
}
.usedby .company-logo img {
    margin: 45px 15px;
    width: 156px;
}
@media screen and (max-width: 600px) {
    .usedby .company-logo img {
        margin: 15px 15px;
        width: 130px;
    }
}
.usedby .company-logo {
    opacity: 0.8;
}
.usedby .company-logo:hover {
    opacity: 1;
}

/* Terms/Privacy copy */

.responsibly {
    margin: 35px auto 60px;
    font-size: 14px;
    color: #ccc;
}
.responsibly, .responsibly a {
    color: #CCC384;
}
.rewards .responsibly, .rewards .responsibly a {
    color: #999;
}
@media screen and (max-width: 600px) {
    .responsibly {
        margin: 35px 5% 60px;
        font-size: 14px;
        line-height: 20px;
    }
}

/* How it works */

.how {
    padding: 95px 0;
    border-top: 1px solid #f1f1f1;
    background: #fbfbf8;
}
@media screen and (max-width: 600px) {
    .how {
        text-align: center;
        padding: 45px 0;
    }
}
.how .container {
    max-width: 930px;
}
.how h3 {
    font-size: 36px;
    margin-top: 26px;
    font-family: ProximaNova;
}
@media screen and (max-width: 600px) {
    .how h3 {
        margin-top: 20px;
        font-weight: 700;
        font-size: 28px;
    }
}
.how h4 {
    color: #55595c;
    font-size: 25px;
    font-weight: 900;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin: 0 0 15px;
}
.example {
    margin: 0 auto 10px;
    display: block;
    padding: 30px 30px;
    border-radius: 5px;
    font-size: 19px;
    border: 2px solid #F3F3F3;
}
.how-it-works-steps .subtitle {
    line-height: 28px;
    margin-bottom: 38px;
}
.how-it-works-steps .step {
    margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
    .how-it-works-steps .step {
        margin-bottom: 10px;
        background: #f2f2ef;
        padding: 15px;
        border-radius: 5px;
        margin: 0 15% 8px;
    }
    .how-it-works-steps .step strong {
        display: block;
    }
}
.how .example {
    background: #fff;
    color: #50575c;
    font-weight: 400;
    min-height: 417px;
    text-align: left;
    margin-bottom: 0;
}
@media screen and (max-width: 600px) {
    .example {
        width: 100%;
        margin: 45px auto 0;
    }
}
.example small {
    color: #999;
    float: right;
    font-size: 14px;
}
.how .subtitle {
    margin: 0 auto 45px;
    color: #444;
    font-size: 22px;
}
.how .example-chat {
    min-height: 420px;
}
.how .example-chat .message {
    padding-left: 65px;
    font-size: 17px;
    line-height: 23px;
}
.how .example-chat .small-avatar {
    float: left;
    width: 55px;
    margin-right: 20px;
}
.how .example-chat .name {
    font-size: 18px;
    font-weight: bold;
}
.how .example-chat .timestamp {
    font-weight: normal;
    font-size: 13px;
    color: #747474;
}
.how .example-chat .chat {
    margin-bottom: 28px;
    display: none;
}
.how .example-chat .faux-link {
    color: #2a80b9;
}
.how .example-chat .small-taco {
    width: 23px;
    vertical-align: text-bottom;
}
.how .online {
    position: absolute;
    display: block;
    width: 11px;
    height: 11px;
    background: #57BC83;
    border-radius: 100%;
    left: 148px;
    top: 40px;
}
.leaderboard-example, .rewards-example, .analytics-example, .start {
    text-align: center;
    border-top: 1px solid #f1f1f1;
}
.leaderboard-example h3, .rewards-example h3, .analytics-example h3, .start h3 {
    font-size: 42px;
    padding-top: 95px;
    font-family: ProximaNova;
    margin: 0;
}
.leaderboard-example h3 {
    max-width: 600px;
    margin: 0 auto;
}
@media screen and (max-width: 600px) {
    .leaderboard-example h3, .rewards-example h3 {
        margin-top: 0;
        font-weight: 700;
        font-size: 28px;
    }
}
.leaderboard-example h4 {
    font-size: 26px;
    margin-top: 35px;
}
.leaderboard-example p, .rewards-example p {
    font-size: 24px;
    margin: 5px 0 45px;
}
@media screen and (max-width: 600px) {
    .leaderboard-example p, .rewards-example p {
        font-size: 21px;
        margin: 5px 30px 45px;
    }
}
.leaderboard-img {
    display: block;
    margin: 35px auto 0;
    width: 100%;
}
@media screen and (max-width: 600px) {
    .leaderboard-img {
        width: 80%;
    }
}
.start {
    border-top: 1px solid #f1f1f1;
    background: #fff;
    padding: 35px 0 90px;
}
.start p {
    margin-bottom: 45px;
}
.start h3 {
    font-size: 38px;
}
@media screen and (max-width: 600px) {
    .start h3 {
        font-size: 30px;
        margin: 0 30px;
        padding: 40px 0 0;
    }
}

code.instructions {
    display: block;
    margin: 10px 10% 30px;
}

.rewards-example {
    background: #fbfbf8;
}
.screenshot-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.see-who {
    position: absolute;
    left: -222px;
    top: 132px;
}
.keep-track {
    position: absolute;
    right: -208px;
    top: 363px;
}
.amounts {
    position: absolute;
    left: -198px;
    top: 441px;
}
.redeemable {
    position: absolute;
    right: -193px;
    top: 341px;
}
@media screen and (max-width: 1300px) {
    .keep-track, .see-who, .amounts, .redeemable {
        display: none;
    }
}

/* Register Page */

.activate-callout {
    border: 3px solid #F9F3E1;
    padding: 20px 50px 35px;
    border-radius: 10px;
    margin: 45px 0;
}
.activate-callout h2 {
    font-size: 28px;
    margin-bottom: 15px;
}
.activate-callout p {
    font-size: 19px;
    line-height: 28px;
}
ul {
    list-style: none;
    padding: 0;
}

/* Free trial modal */

.trial-header {
    background: #222;
    text-align: center;
    color: #ddd;
    font-size: 28px;
    padding: 16px;
}
.trial-subtitle {
    text-align: center;
    font-weight: 600;
    margin: 0 8% 25px;
}
.trial-btn {
    display: block;
    max-width: 250px;
    margin: 0 auto 30px;
    padding: 12px;
}
.trial-about-plans {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin: 25px 10% 35px;
}
.learn-more {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    text-decoration: none;
    background: #fff;
    padding: 14px;
    text-align: left;
    padding-left: 25px;
}

/* Leaderboard */

.leaderboard {
    font-size: 20px;
}
@media screen and (max-width: 600px) {
    .leaderboard {
        font-size: 16px;
    }
}
.leaderboard .avatar {
    width: 45px;
    border-radius: 3px;
    margin-right: 10px;
}
@media screen and (max-width: 600px) {
    .leaderboard .avatar {
        width: 35px;
    }
}
.leaderboard a {
    text-decoration: none;
    color: #b7a204;
    font-size: 16px;
}
.leaderboard a:hover {
    text-decoration: underline;
}
.leaderboard thead tr th {
    padding: 12px 18px;
    color: #828282;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    border: none;
}
.leaderboard .table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: none;
}
@media screen and (max-width: 600px) {
    .leaderboard>tbody>tr>th {
        padding: 12px 5px;
    }
}

/* leaderboard gifts */

.item-gift {
    position: relative;
    display: inline-block;
}
.item-gift .tooltip {
    width: 50px;
    line-height: 14px;
}
.item-gift .small-gift-image {
    width: 30px;
    vertical-align: middle;
}
.item-gift .gift-total {
    font-size: 10px;
    background: #e75f47;
    width: 16px;
    height: 16px;
    position: absolute;
    padding: 2px;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    box-shadow: 2px 2px 4px -1px #000;
    top: -3px;
    right: -4px;
}


/* Tables */

.table {
    td, th{
        border-top: none;
    }

    .leaderboard & {
        td{
            vertical-align: middle;
        }

        .total-tacos {
            text-align: right;
            font-size: 1.3rem;
            font-weight: 500;

            @media screen and (max-width: 600px) {
                font-size: 1rem;
            }
        }

        .ranking {
            text-align: center;
        }

        .rank-header {  
            width: 3rem;
            text-align: left;
            @media screen and (max-width: 600px) {
                font-size: 0;
            }
        }
    }

    &>tbody>tr>td {
        border-top: var(--heytaco-border-light);
        padding: 10px;
        font-weight: 500;
    }
}

.data-table{
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding-top: 1rem;

    .table-controls{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;

        input, button, .btn, form {
            margin: 0; /* prevents rogue spacing */
        }

        .table-filters{
            display: flex;
            position: relative;
            gap: 1rem;
            top: 0;
            align-items: center;

            .filter{
                display: flex;
                align-items: center;
                gap:.5rem;
                label{
                    margin: 0;
                }
            }
        }

        .table-buttons{
            display: flex;
            gap: 1rem;
            align-items: center;
        }
    }

    table{
        border-collapse: separate;
        border-spacing: 0;
        &.sortable th.sorted-by{
            background: var(--heytaco-bg);
        } 

        tr:first-child{
            td{
                border-top:none;
            }       
        }
    }

    thead{
        padding: 1rem;

        th{
            border: 1px solid var(--heytaco-bg-grey);
            background-color: var(--heytaco-bg-grey);
        }

        th:first-child {
            border-top-left-radius: var(--border-radius-sm); 
        }

        th:last-child {
            border-top-right-radius: var(--border-radius-sm); 
        }
    }

    .pagination {
        display: flex;
        width: 100%;
        gap: .75rem;
        justify-content: center;

        .active {
            font-weight: 800;
        }
    }

}

/* Table sorting */

.asc {
    background: transparent url("../images/asc.gif") no-repeat;
    background-position: right;
    padding-right: 18px;
}   
.desc {
    background: transparent url("../images/desc.gif") no-repeat;
    background-position: right;
    padding-right: 18px;
}   

table.sortable th{
    &.sorted-by{
        background: var(--heytaco-bg-grey);
    }
    a {
        color: inherit;
        display: block;
    }
} 

/* Search Filter */
.search-form {
    display: flex;
    gap: 1rem;
    flex-direction: row-reverse;
    align-items: center;
    .search{
        position: relative;
        input {
            padding: 1rem 2rem;
            width: 20rem;
        }

        button{
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            padding: .25rem .75rem;
            background-color: var(--heytaco-bg-grey);
            color: var(--dark-yellow);
            border: var(--heytaco-border-dark);
            border-left: none;
            border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
        }

        .search-icon {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            color: var(--dark-grey);
            padding: .55rem .5rem;
            transform: revert;
        }
    }
}


/* Tacos */

.taco-sm {
    width: 23px;
    margin-top: -3px;
}
.sad-taco {
    margin-top: 65px;
    width: 100%;
    max-width: 550px;
}
.no-tacos-given {
    margin: 4px 0 22px;
    font-size: 18px;
    font-weight: normal;
    color: #b3b3b3;
}
.how-to-give-btn {
    color: #888 !important;
    font-size: 13px !important;
}
.how-to-give-btn:hover {
    text-decoration: none !important;
}
.footer-link-container {
    margin: 30px auto;
}
.footer-link {
    border: 1px solid #b2a339;
    padding: 10px;
    display: block;
    width: 200px;
    text-align: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 5px;
    float: left;
}
@media screen and (max-width: 900px) {
    .footer-link {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}
.select-style {
    display: inline;
    width: 105px;
    font-size: 16px;
    height: 32px;
    vertical-align: middle;
    margin-left: 5px;
}

/* User Panel */
.user-panel {
    padding: 30px 25px 30px 45px;
}
@media screen and (max-width: 600px) {
    .user-panel {
        padding: 30px 25px;
    }
}
.user-panel .user-total-tacos {
	background: #ffffff;
    text-align: center;
    border-radius: 5px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: auto;
	padding: 4px 8px;
}

.five-day-streak {
	border-color:#ffddc1 !important;
    background: #fff6e4 !important;
	
}

.taco-line {
  display: inline-flex;
  align-items: center;
}

.five-day-streak-fire {    
    z-index: 99;
    position: absolute;
    top: -22px;
    left: 50%;
    margin-left: -10px;
}
.five-day-streak-fire img {
	width: 30px;
}
.user-panel .user-total-tacos a {
    color: #111;
}
.user-panel .col-tacos-given {
	padding-right: 3px;
}
@media screen and (max-width: 1346px) {
	.user-panel .col-tacos-given, .user-panel .col-tacos-received {
		padding: 0;
		width: auto;
	}
}	
@media screen and (max-width: 1346px) {
	.user-panel .user-details p {
		width: 100%;
	}
}	
.user-panel .col-tacos-redeemable {
	display: block;
    width: 100%;
 	margin-bottom: 5px;
}
.col-tacos-redeemable .user-total-tacos {
    background: none;
    margin-bottom: 10px;
	padding-top: 0 !important;
	border-color: transparent !important;
}

.user-panel .col-tacos-received {
	padding-left: 3px;
}
.user-panel .redeem-btn {
    font-size: 16px;
    text-decoration: none;
    padding: 8px;
    margin: 0;
}
.user-panel fieldset {
    margin-bottom: 25px;
}
.user-panel legend {
    border: none;
    font-size: 13px;
    font-weight: normal;
    margin: 0px;
    color: #999;
}
.user-panel .user-details {
    font-weight: bold;
    font-size: 32px;
    z-index: 1;
    position: relative;
    text-align: center;
    margin-top: -30px;
    border-top: none;
    padding: 20px 15px 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #faf9f5;
}
.user-panel .user-details small {
    color: #999;
    display: block;
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 3px;
}
.user-panel .user-details h3 {
    font-weight: bold;
    margin-bottom: 5px;
}
.user-panel .user-details p {
    font-weight: bold;
    font-size: 20px;
    margin: 7px 0 0;
    padding: 12px 10px 6px;
    line-height: 22px;
    min-width: 90px;
	border: 2px solid #fff;
}
.user-panel .user-details .user-rank {
    background: #efefef;
    font-size: 14px;
    font-weight: bold;
    padding: 0 5px;
    color: #888;
    border-radius: 3px;
    cursor: pointer;
}
.user-panel .user-details .taco-icon {
    width: 24px;
    vertical-align: text-top;
    margin: 0 0 0 3px;
}
.user-panel .user-details .user-profile-link {
	color: #000;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    display: inline-block;
}
.user-panel .user-details .user-profile-link:hover {
    text-decoration: underline;
}

.user-panel .level {
  position: absolute;
  right: 10px !important;
  top: 10px;
  background: none;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 16px;
  font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  left: auto !important;
  background-color: #fff;
}
.user-panel .available-balance-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 16px;
	padding: 16px;
	border-radius: 5px;
}

.user-panel .green-state {
	background-color: #e0f9e0;
	border: 1px solid #32a852;
}

.user-panel .yellow-state {
	background-color: #fff9e0;
	border: 1px solid #f3c400;
}

.user-panel .user-panel-avatar-container {
	position: relative;
}

/* Activity */

.archive-indicator {
    opacity: .5;
}
.loading-more-items {
    display: none;
}
.infinite-loading .loading-more-items {
    display: block;
}
.activity-list {
    font-size: 20px;
    margin-bottom: 65px;
    overflow: hidden;
}
.activity .avatar {
    border-radius: 5px;
    margin: 10px 10px 10px 0px;
    width: 50px;
}
.activity .timestamp {
    color: #bbb;
    font-size: 14px;
    margin: 16px 5px;
}
.activity .user-link {
    text-decoration: none;
}
.activity .stat {
    border: 6px solid #f1f1f1;
    margin: 20px;
    padding: 20px;
    font-size: 20px;
    color: #999;
    text-align: center;
    border-radius: 5px;
}
.activity table {
    margin-bottom: 45px;
}

.gift .gift-image img {
    max-width: 200px;
    margin: 0;
}
@media screen and (max-width: 600px) {
    .gift .gift-image img {
        max-width: 250px;
        margin: 0 0px 0;
        width: 100%;
    }
}

.recent-activity .sticker {
	padding-left: 60px;
}
.recent-activity .sticker .sticker-image {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  line-height: 0;
  text-decoration: none;
}
.recent-activity .sticker .sticker-image img {
	width: 200px;
}

    /* Activity> activity stats */
    .activity-stats {
        display: flex;
        gap: 10px;
        font-size: 14px;
        flex-wrap: wrap;

        .activity-stat{
            display: flex;
            gap: 5px;
            padding: 8px 20px;
            background-color: #faf9f5;
            border-radius: 5px;
            align-items: center;

            .label{
                color: #999;
            }

            .icon{
                height: 20px;
                width: 20px;
            }
        }
    }

.bot-tag {
    background: #e9e9e9;
    color: #9f9f9f;
    padding: 2px 3px;
    font-size: 10px;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
}
.bot-tag-large {
    background: #e9e9e9;
    color: #9f9f9f;
    font-size: 15px;
    font-weight: bold;
    padding: 8px 20px 7px;
    border-radius: 20px;
    line-height: 15px;
    margin: 0 auto 0;
    position: relative;
    z-index: 3;
    display: inline-block;
    min-width: 90px;
    box-shadow: 1px 1px 6px -3px #000;
    top: -16px;
}

/* Pagination */

.activity .pagination li {
    float: none;
    border: none;
}
.activity .pagination {
    margin-bottom: 65px;
}
.activity .pagination a {
    color: rgb(204, 153, 27);
}
.activity .pagination .active span {
    background: #543422;
    border-color: #543422;
}

/* Reward */

.reward .container {
    max-width: 990px;
    margin-top: 65px;
}
.reward .reward-progress {
    padding: 50px 20px 20px;
}
.reward .reward-progress h2 {
    font-size: 28px;
    margin: 0;
    font-weight: 500;
}
.reward .reward-progress p {
    color: #444;
    font-size: 16px;
}
.reward .progressbar-container {
    margin: 10px 0 60px;
}
.reward .progress {
    border-radius: 15px;
    height: 20px;
    width: 200px;
    float: left;
    margin: 0 16px 0 0;
}
.reward .progress-percent {
    float: left;
    font-size: 14px;
}
.reward .description {
    margin: 26px 0 46px;
    font-size: 18px;
    line-height: 24px;
}
.reward .contributors {
    padding: 20px;
    margin-top: 30px;
}
.reward .taco-emoji {
    width: 28px;
    vertical-align: top;
    margin: 2px 3px;
}
.reward .no-contributions-msg {
    font-size: 16px;
    color: #999;
    line-height: 20px;
}
.reward .contribution-amount {
    width: 145px;
    margin: 15px auto 10px;
    text-align: center;
    font-size: 38px;
    padding: 10px;
    height: 70px;
}
.reward .contributors h2 {
    margin-top: 0;
}
.reward .total-contributed-title {
    color: #999;
    font-size: 14px;
    margin-top: 6px;
}
.reward .contributors li {
    overflow: hidden;
    margin-top: 18px;
}
.reward .contribution-details {
    padding-left: 75px;
    margin-top: 6px;
}
.reward .contribution-details .username {
    font-weight: 500;
}
.reward .contribution-details .timestamp {
    font-size: 14px;
    color: #777;
}
.reward .medium-avatar {
    width: 55px;
    height: 55px;
    border-radius: 5px;
    float: left;
}
.reward .edit-btn {
    padding: 3px 10px;
    border-radius: 18px;
    color: #999 !important;
    margin: 36px 0 0;
    font-size: 14px;
}
.reward .highlight {
    background: #fdffd2;
    display: inline-block;
    padding: 0px 16px;
}
.reward .notification-toggle {
    font-size: 13px;
}
.reward .total-contributed {
    font-size: 20px;
    font-weight: 500;
    margin-top: 5px;
}
.reward .total-contributed .taco-emoji {
    width: 23px;
}

/* Rewards */

.rewards-banner-message {
    background: #fbfbf7;
    padding: 20px 75px 20px 25px;
    position: relative;
    margin:20px 0;
}
.rewards-banner-form {
    display: none;
    background: #fbfbf7;
    padding: 15px;
    margin-bottom: 40px;
}
.delete-rewards-banner-message {
    margin: 8px 15px 0;
    font-size: 15px;
}
.rewards-banner-form textarea {
    margin-bottom: 10px;
}


.reward-screenshots {
    margin-top: 60px;
}

.reward-draft {
    position: absolute;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 13px;
    z-index: 2;
    color: #31708f !important;
    background-color: #d9edf7;
}
.rewards .reward-out-of-stock {
    position: absolute;
    background: #ff5629;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 13px;
    z-index: 2;
    color: #fff !important;
}

.rewards .gift-card-unavailable {
    position: absolute;
    background-color: darkorange;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 13px;
    z-index: 3; /* Needs to be higher than "Out of stock" */
    color: #fff !important;
}

.rewards .gift-card-currency-heading-container {
    position: relative
}

.rewards .small-margin-bottom {
    margin-bottom: 4px;
}

.rewards .gift-card-value-text {
    color: black;
    font-size: 16px;
    font-weight: bold;
}

.rewards .modal-content {
    width: auto;
}

@media screen and (max-width: 581px) {
    .rewards .modal-content {
        width: 97vw;
    }
}

.rewards .quantity {
    font-size: 14px;
    color: #ababab;
    padding: 10px 0 0;
    font-weight: 500;
    margin-bottom: 10px;
}
.rewards .panel {
    text-align: left;
    border: 1px solid #fbfbf7;
    box-shadow: none;
    border-radius: 10px;
    background: #fbfbf7;
    margin-bottom: 10px;
    padding: 25px;
}
.rewards .panel:hover {
	border-color: #ededd0;
    box-shadow: 1px 1px 8px -7px #000;
} 
.rewards .description {
    margin: 15px 0 20px;
    font-size: 15px;
    line-height: 22px;
    white-space: pre-wrap;
    word-break: break-word;
    color: #000;
}
.rewards .description a {
    color: #b2a339 !important;
}    
@media screen and (max-width: 600px) {
    .rewards .panel {
        padding: 20px 10px;
    }
}
.rewards .panel .panel-footer {
    background: none;
    border-top: none;
    padding: 0;
}
.rewards .item a {
    color: #000;
    text-decoration: none;
    outline: none;
}
.rewards .item .description a.more {
    color: #b2a339;
    text-decoration: underline;
}
.rewards .items .item:hover {
    background: #f9f9f9;
}
.reward-ideas {
    position: fixed;
    overflow: scroll;
    right: 0;
    z-index: 3;
    background: #FFFDE7;
    width: 300px;
    border-left: 1px solid #F9F3E1;
    top: 0;
    padding: 30px;
    text-align: left;
    height: 100%;
    margin-right: -300px;
    -webkit-transition: .3s ease-in;
    -moz-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    -ms-transition: .3s ease-in;
    transition: .3s ease-in;
    display: none;
}
@media screen and (min-width: 1200px) {
    .reward-ideas {
        margin-right: 0px;
    }
    .close-ideas {
        display: none;
    }
    .reward-ideas-btn {
        display: none;
    }
}
.idea-image {
    display: none;
}

.cropped img {
    width: 100%;
}
#reward_guidance {
    font-size: 13px;
    line-height: 20px;
    margin: 10px 0 30px;
    max-width: 400px;
    color: #555;
}
.not-enough-modal, .example-modal {
    border: 1px solid #ddd;
    padding: 75px 0 !important;
    box-shadow: 2px 2px 16px -8px #000;
}
@media screen and (max-width: 600px) {
    .not-enough-modal {
        max-width: 97vw;
    }
}
.contribution-modal {
    padding: 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 16px -8px #000;
}
.reward-ideas.show {
    margin-right: 0;
}
.reward-ideas h3 {
    margin: 0 0 5px;
    font-weight: 600;
}
.reward-ideas h4 {
    font-size: 16px;
    font-weight: 600;
}
.reward-ideas p {
    text-align: left;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
}
.reward-ideas .close {
    top: -20px;
    opacity: .6;
    right: -20px;
}
.reward-type-select {
    max-width: 700px;
    margin: 50px auto;
}
.reward-type-select-wide {
    max-width: 990px;
}
.reward-type-select h1 {
    font-size: 28px;
}
.reward-type-select .options {
    margin-top: 65px;
    margin-bottom: 95px;
}
.reward-type-select .option {
    padding: 0 25px 25px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}
.reward-type-select .option:hover {
    border-color: #b2a339;
}
.reward-type-select .option .icon {
    margin-top: -20px;
    max-width: 100px;;
}
.reward-type-select .option h2 {
    margin-bottom: 20px;
    font-size: 30px;
}
.reward-type-select .fa {
    font-size: 65px;
    color: #444;
}
.reward-type-select p {
    text-align: left;
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 22px;
}
.reward-contributors h3 {
    font-size: 14px;
    font-weight: 600;
}
.reward-contributors .avatar {
    width: 30px;
    margin: 2px;
}
.reward .progressbar-container {
    margin: 15px 0 24px;
    overflow: hidden;
}
.reward .progress {
    margin-bottom: 0;
}
.rewards .progress {
    width: 100%;
}
.reward .progress-percent {
    font-size: 13px;
    margin: 2px 0 0;
}
.rewards .progress-percent {
    margin: 6px 0 0;
}
.reward .progress-percent .taco {
    width: 16px;
    vertical-align: text-top;
}
.imageBox {
    position: relative;
    height: 400px;
    width: 100%;
    border: 1px solid #aaa;
    background: #fff;
    overflow: hidden;
    background-repeat: no-repeat;
    cursor: move;
}
.imageBox .thumbBox {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 465px;
    height: 350px;
    margin-top: -175px;
    margin-left: -232.5px;
    border: 1px solid rgb(102, 102, 102);
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
    background: none repeat scroll 0% 0% transparent;
}
.imageBox .spinner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    line-height: 400px;
    background: rgba(0, 0, 0, 0.7);
}
.actions {
    position: absolute;
    bottom: 36px;
    left: 43%;
}
.actions .btn {
    width: 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 24px;
    height: 40px;
    padding: 0;
}
.btn-add-img {
    background: none;
    border: 1px solid #ccc;
    width: 100%;
    font-size: 15px;
    color: #b2a339;
}
.reward-ideas-btn {
    font-size: 14px;
    background: #FFFDE7;
    padding: 4px 20px;
    float: right;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    vertical-align: middle;
    border: 1px solid rgba(160, 94, 6, 0.12);
    margin-top: -15px;
}
.reward-ideas .add-idea {
    font-weight: bold;
    font-size: 13px;
    margin-top: 8px;
}
.reward-ideas .idea {
    border-top: 1px solid #F2E3B4;
    padding-top: 10px;
}
@media screen and (max-width: 600px) {
    .rewards-filters {
        display: none !important;
    }
}


.forwarding {
    margin: 20px 0 20px; 
    background: #fafafa;
    padding: 20px;
    border: 1px solid #eee;
    color: #888;
}
.forwarding label {
    color: #000;
}
.additional-info {
    margin: 20px 0; 
    display: none; 
}
.additional-info label {
    display: block;
    font-weight: normal;
}
.additional-info label input{
    cursor: pointer;
}
.additional-info .bold {
    font-weight: bold;
}

.additional-info-capture {
    margin: 0 10% 20px;
    text-align: left;
    background: #fafafa;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    display: none;
}
.confirmation .additional-info-capture  p {
    color: #333;
    font-size: 15px;
    margin: 0;
}
.additional-info-capture label {
    margin-top: 15px;
}
.additional-info-capture-placeholder {
    display: none;
}

/* User Redemptions */
.user-redemptions .reward-image {
	float: left;
	width: 70px;
	margin: 0 20px 0 0;
}
.user-redemptions h2 {
	font-size: 18px;
	margin: 5px 0 5px;
}
.user-redemptions .redemption-amount {
	font-weight: bold;
	font-size: 18px;
	text-align: right;
}
.user-redemptions .redemption-description {
	padding-left: 90px;
    font-size: 14px;
	font-family: 'Lato', sans-serif;
    line-height: 22px;
}
.user-redemptions .table-container {
	width: 100%;
	max-width: 1440px;
	overflow-x: auto;
}
.user-redemptions table {
	width: 100%;
	border-collapse: collapse;
}
.status-icon-wrapper {
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	cursor: pointer;
	display: inline-block;
}
.successful-redemption {
    max-width: 600px;
    margin: 8% auto;
    border: 1px solid #eee;
    padding: 30px;
    text-align: center;
}
.successful-redemption .view-redemptions-link {
    display: inline-block;
    margin: 20px;
}
.show-admins-modal {
	position: absolute;
    right: 0;
    top: 38px;
}

/* User Settings */
.user-settings p {
    margin-bottom: 0;
}
.user-settings small {
    color: #aaa;
    font-size: 15px;
    font-weight: normal;
}
.user-settings .table>tbody>tr>td {
    padding: 20px 0;
}

.low-balance-td {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-left: 12px;
}

.low-balance-amount {
	height: 28px;
	margin-right: 12px;
	padding: 2px 4px;
	border-radius: 8px;
}

@media screen and (max-width: 600px) {
	.low-balance-td {
		flex-direction: column-reverse;
		align-items: flex-end;
	}

	.low-balance-amount {
		margin-top: 4px;
		margin-right: 0px;
	}
}




.forwarding-description {
    font-size: 14px;
    line-height: 20px;
}
.save-draft-btn {
    background: #fff;
    border: 1px solid #ccc; 
    color: #000;
}

.flash {
    animation: colorchange 1s;
    /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: colorchange 1s;
    /* Chrome and Safari */
}
@keyframes colorchange {
    0% {
        background: #FFEBAF;
    }
    100% {
        background: #ffffff;
    }
}
@-webkit-keyframes colorchange
/* Safari and Chrome - necessary duplicate */

{
    0% {
        background: #FFEBAF;
    }
    100% {
        background: #ffffff;
    }
}
.panel-items {
    clear: both;
}
.welcome-modal h3 {
    font-size: 33px;
    font-weight: 600;
}
.welcome-modal {
    text-align: center;
}
.welcome-modal p {
    font-size: 21px;
    margin-bottom: 20px;
    line-height: 28px;
}
.welcome-face {
    border-radius: 6px;
    /* margin: 0 -45px; */
    width: 40px;
}
.item .redeem-btn {
    font-size: 25px;
    padding: 8px;
    font-weight: bold;
    background: none;
    border: none;
    color: #555 !important;
    text-decoration: none;
    background: #F3F0EB;
}
.redeem-btn:hover {
    opacity: .8;
}
.panel-info {
    padding: 0 10px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.panel-body .reward-image {
    width: 100%;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.gift-card-shop-image {
    /* Since gift card images have a different aspect ratio compared to our other
    reward images (from reward ideas and user uploaded), use padding to take up
    a similar size for card layouts. Padding percentages trick are  calculated based on
    the element's width, making it a reliable way to maintain aspect ratios. */
    padding-top: 6%;
    padding-bottom: 6%;
}
.alert-banner {
    margin-top: -10px;
    position: absolute;
    width: 100%;
}
.alert-banner .alert {
    padding: 10px;
    display: none;
    text-align: center;
}
.panel-info p {
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    line-height: 22px;
    color: #000;
}
.panel-info h2 {
    margin: 25px 0 10px;
    line-height: 28px;
	font-weight: 600;
    font-size: 22px;
}
.add-new-reward-btn, .data-download-btn, .generic-btn {
    font-size: 14px !important;
    background: #f7f6f1;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    vertical-align: middle;
    font-weight: bold;
	color: #b2a339;
    border: none;
	cursor: pointer;
	line-height: 19px;
}
.data-download-btn {
    margin: 25px 0 0;
}
.large-download-icon {
    font-size: 100px;
    color: #efefef;
}
.add-new-reward-btn:hover, .data-download-btn:hover, .generic-btn:hover {
    opacity: .8;
}
.buttons {
	margin-top: 20px;
}
@media screen and (max-width: 600px) {
    .add-new-reward-btn {
        float: right;
        height: 36px;
        padding: 1px 15px;
    }
}
.edit-reward-btn {
    display: block;
    background: #fff;
    position: absolute;
    z-index: 999;
    right: 30px;
    width: 35px;
    height: 35px;
    padding: 6px 10px;
    top: 15px;
    border-radius: 5px;
    border: 1px solid #ededd0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.edit-reward-btn .fa {
    font-size: 18px;
    color: #000;
}
.reward:hover .edit-reward-btn {
    display: block;
}
.redemption-modal .modal-content {
    text-align: center;
    padding: 45px 25px;
}
.redemption-modal .modal-content h3 {
    max-width: 400px;
    margin: 0 auto 15px;
    font-size: 28px;
    line-height: 35px;
}
@media screen and (max-width: 600px) {
    .redemption-modal .modal-content h3 {
        max-width: 400px;
        margin: 35% auto 15px;
        font-size: 20px;
        line-height: 24px;
    }
}
.redemption-modal .modal-content .close {
    position: absolute;
    top: 6px;
    right: 10px;
}
.need-more-tacos {
    display: none;
}
.confirmation p {
    color: #ccc;
}
.reward .panel-body {
    padding: 0;
}
.redeem-amount {
    margin-bottom: 15px;
}
.redeem-amount-value {
    font-size: 40px;
    font-weight: 500;
}
.redeem-amount .taco-icon {
    width: 35px;
    vertical-align: sub;
}
.add-edit-reward {
    margin: 20px auto 0;
}
.add-edit-reward h1 {
    margin: 5px 0 35px;
    text-align: left;
}
.add-edit-reward .instructions {
    background: #fafafa;
    padding: 20px;
    border: 1px solid #eee;
    color: #888;
}
.add-edit-reward .instructions textarea {
    height: 100px;
}
.add-edit-reward .instructions label {
    color: #000;
}    
.add-edit-reward .instructions .instructions-description {
    font-size: 14px;
    line-height: 20px;
}
.redeemable-inline {
    float: right;
    font-size: 22px;
    margin: 44px 0 0;
}
.redeemable-inline .taco-icon {
    width: 26px;
}

/* Image editor */

.change-image {
    right: 30px;
    position: absolute;
    z-index: 10;
    top: 25px;
    color: #fff;
    display: none;
}
.change-image:hover {
    color: #fff;
    opacity: .8;
}
.file-uploader, .file-uploader:hover {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.container.account-setup {
    max-width: 900px;
}

/* Account Admin */

.trial-warning {
    font-size: 14px;
    background: #f7f6f1;
    display: block;
    padding: 20px 20px 15px;
    border-radius: 5px;
}
.trial-warning .btn {
    font-size: 13px;
    box-shadow: none;
    margin-top: 10px;
    padding: 6px 17px;
    border-radius: 3px;
    display: block;
}
.trial-warning strong {
    color: #ec6147;
}
.upgrade-box {
    background: #fafafa;
    padding: 40px;
    text-align: center;
    border: 1px solid #eee;
}
.leaderboard .upgrade-box {
    font-size: 18px;
    margin: 25px 0 50px;
}
.top-givers .username {
    margin-top: 7px;
}
.notification {
    display: none;
    background: #2ab27b;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 99999;
    width: 100%;
    text-align: center;
    padding: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.notification-error {
    background: #ec6147;
}
.account-details-box {
    margin: 30px 10px 10px 10px;
}
.account-details-box h2 {
    font-size: 20px;
}
.account-details-box p {
    font-size: 18px;
}
.stats-box {
    height: 120px;
    text-align: center;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-weight: 500;
}
.stats-box h2 {
    padding: 24px 0 0;
    margin: 0;
    font-size: 40px;
}
.account-details {
    border: 1px solid #ECECEC;
    padding: 30px;
}
.account-details h2 {
    font-size: 22px;
    margin: 5px 0 5px;
    font-weight: 700;
}
.account-details .plan-details {
    font-size: 16px;
    line-height: 18px;
    color: #666;
}
.account-details li {
    border: none;
    padding: 0;
    color: #666;
    margin: 3px 0 0;
}
.account-details .btn {
    margin-top: 35px;
}
.dangerzone {
    margin: 14px 0 50px;
}
.dangerzone .reset-option {
    background: #fff1f1;
    padding: 30px;
    border-radius: 10px;
}
.dangerzone .reset-option h2 {
    font-size: 18px;
    margin: 10px 0 5px;
    font-weight: bold;
}
.dangerzone .reset-option p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 22px;
}


.dangerzone h3 {
    margin-top: 0;
}
.dangerzone .btn-danger {
    border-color: #d43f3a;
    background: #d43f3a;
    background-image: none;
}
.fulfilled {
    opacity: .3;
}

/* Team Admin Users */

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: #3b1b0e;
    border-color: #3b1b0e;
}
.pagination>li>a, .pagination>li>span {
    color: #c7ae55;
}

/* Leaderboard */

.leaderboard {
    margin-bottom: 45px;
    min-height: 400px;
}
.redeem-link {
    font-size: 18px;
    padding: 10px 26px;
    text-decoration: none;
    color: #fff !important;
    border: none;
}
.redeem-link:hover {
    opacity: .8;
}
.redeem-link .fa {
    font-size: 26px;
    vertical-align: bottom;
    margin-right: 5px;
}
.display-btn {
    font-size: 26px;
    color: #D8CE81 !important;
    margin: 12px;
    display: block;
    float: left;
    border-radius: 5px;
}
.display-btn:hover {
    color: #b2a339 !important;
}
.leaderboard-tools {
    margin-top: 28px
}

/* Selectpicker */

.sp-sm .dropdown-toggle {
    padding: 5px 10px 5px 10px;
    font-size: 15px;
    border-radius: 4px;
    max-width: 170px;
}

/* Select */
.editing-buttons {
    min-width: 190px;
}
.dropdown-menu .dropdown-avatar, .filter-option .dropdown-avatar {
    width: 35px;
    border-radius: 3px;
    margin-right: 5px;
}
.dropdown-menu>li>a {
    padding: 3px 10px;
    text-decoration: none;
    font-size: 15px;
    color: #444;
}
.btn-selected {
    color: #222 !important;
    padding: 4px;
}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover, .dropdown-menu>li.selected>a {
    background-color: #efefef;
    color: #000 !important;
    outline: none;
}
.dropdown-toggle {
    font-size: 16px;
    font-weight: normal;
}
.dropdown-toggle .selected {
    color: #000;
    font-weight: 600;
}
.filters {
    right: 0;
    top: 28px;
    position: absolute;
}
@media screen and (max-width: 800px) {
    .filters {
        display: inline;
        float: right;
    }
}
.filters label {
    display: none;
}
#profile .filters, #user-profile .filters {
    right: 0;
    top: -5px;
}
@media screen and (max-width: 800px) {
    .filters {
        right: 10px;
        top: 30px;
        position: inherit;
    }
}
.filters .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: auto;
}
.filters .title {
    vertical-align: middle;
    font-size: 15px;
    color: #a9a9a9;
    font-weight: 500;
}
.filters .sp-sm.channel-select {
    width: 155px;
}
.mobile-filter-viewer-btn {
    display: none;
    float: right;
    margin-right: 10px;
}
.mobile-breadcrumbs {
    color: #999;
    margin: -10px 4px 15px;
    font-size: 14px;
    display: none;
}
@media screen and (max-width: 600px) {
    .mobile-breadcrumbs {
        display: block;
    }
    .leaderboard-filters {
        display: none;
        background: #fff;
        position: fixed;
        height: 100%;
        width: 100%;
        z-index: 999;
        top: 0;
        left: 0;
        opacity: .95;
        padding: 20%;
    }
    .leaderboard-filters .dropdown-toggle, .leaderboard-filters .leaderboard-select, .leaderboard-filters .timeframe-select, .leaderboard-filters .channel-select {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 20px;
    }
    .mobile-filter-viewer-btn {
        display: block;
    }
}

/* Gift Unlock */

.code-input {
    width: 80px;
    font-size: 50px;
    height: 80px;
    text-align: center;
    color: #999;
    display: inline-block;
}

/* Gift Shop */

.gift-welcome-modal .gifts-welcome-screenshot {
    max-width: 500px;
    margin: 0 auto;
    display: block;
}
.gift-welcome-modal h1 {
    text-align: center;
    font-size: 37px;
    margin-bottom: 30px;
    font-family: Lato;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.gift-welcome-modal p {
    margin: 20px auto 40px;
    max-width: 750px;
    font-size: 21px;
}
.gift-welcome-modal .btn {
    margin: 0 auto;
    display: block;
    max-width: 250px;
}
@media screen and (max-width: 600px) {
    .giftshop .filters {
        display: none;
    }
}
.giftshop .rarity-select .dropdown-toggle {
    width: 100px;
}
.giftshop .items .item:hover {
    background: #f9f9f9;
}
.giftshop .list-group {
    margin-right: -5px;
}
.giftshop .items {
    margin: 27px 0;
    padding: 0 0px 0 15px;
}
.giftshop .items .item {
    padding: 0;
    margin: 0;
}
.giftshop .panel {
    text-align: left;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: none;
    margin-bottom: 0;
    padding: 20px 40px 10px;
}
@media screen and (max-width: 600px) {
    .giftshop .panel {
        padding: 20px 20px 10px;
    }
}
.giftshop .panel p {
    margin-bottom: 10px;
}
.giftshop .panel .panel-body {
    min-height: 393px;
    padding: 0 15px;
}
.giftshop .panel .panel-footer {
    background: none;
    border-top: none;
}
.giftshop .panel-locked {
    background: #fff;
    height: 520px;
}
.giftshop .icon-lock {
    width: 100px;
    display: block;
    margin: 63% auto 0;
}
.giftshop .item h2 {
    font-size: 20px;
}
.giftshop .item a {
    color: #000;
    text-decoration: none;
}
.giftshop .item .quantity {
    font-size: 14px;
    color: #ababab;
    padding: 10px 0 0;
    font-weight: 500;
    margin-bottom: 0;
}
.panel .rarity, h3 .rarity, #gift .rarity {
    background: #f7f7f7;
    display: inline;
    padding: 5px 8px;
    font-size: 10px;
    font-family: arial;
    border-radius: 3px;
    color: #c1c1c1;
    margin-bottom: 10px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 10px;
}
#gift .rarity {
    font-size: 14px;
}
h3 .rarity {
    font-size: 13px;
    margin: 8px;
    vertical-align: middle;
}
.giftshop .modal-body .gift-form {
    padding: 15px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.giftshop .modal-body .close {
    position: absolute;
}
.giftshop .modal-body .error-message {
    color: #ec6147;
    font-size: 14px;
    margin: 3px;
    display: none;
}
.giftshop .modal-body .dropdown-toggle.error, .giftshop .modal-body textarea.error {
    border: 1px solid #ec6147;
    color: #ec6147;
}
.giftshop .modal-body label {
    margin-top: 15px;
    font-weight: 500;
    font-size: 18px;
    display: block;
}
.giftshop .modal-body .item-image {
    width: 100%;
    margin-top: 0;
}
.giftshop .modal-body h3 {
    margin-top: 20px;
    text-align: left;
}
.giftshop .modal-body .item-description {
    font-size: 17px;
    text-align: left;
    line-height: 23px;
    margin-top: 20px;
}
.giftshop .modal-body .message textarea {
    height: 130px;
    margin-bottom: 5px;
}
.giftshop .modal-dialog-gift {
    width: 800px;
    margin-top: -45px;
}
@media screen and (max-width: 900px) {
    .giftshop .modal-dialog-gift {
        width: auto;
    }
    body .close-btn-large {
        top: 0px;
        right: 0;
    }
}
.giftshop a.send-gift {
    margin-top: 15px;
}
.gifts-questions {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
    width: 100%;
    text-align: center;
}
.gifts-questions a {
    margin-right: 10px;
    color: #999;
    font-size: 14px;
}
.sending-message {
    position: absolute;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
}
.sending-message img {
    width: 100%;
}

/* recent activity */

.recent-activity {
    min-height: 600px;
}
.recent-activity ol.items {
    list-style: none;
    padding: 0;
    margin: -5px 0 5px;
}

/*.recent-activity ol.items .item:hover {
    background: #fafafa;
}
*/

.recent-activity .item {
    padding: 5px 0px 5px 10px;
}
.recent-activity .item.no-activity {
    color: #999;
    font-size: 16px;
    padding: 0;
}

.recent-activity .who {
    font-size: 15px;
    font-family: 'Lato', sans-serif;
}
@media screen and (max-width: 600px) {
    .recent-activity .who {
        padding-left: 61px;
    }
}

.recent-activity .who a {
    color: #b7a204;
    text-decoration: none;
    font-weight: bold;
}
.recent-activity .time a {
    color: #aaa;
    font-weight: 300;
}
.recent-activity .who a:hover {
    text-decoration: underline;
}
.recent-activity .from {
    color: #999;
    font-size: 14.5px;
    font-family: 'Lato', sans-serif;
}
.recent-activity .from a {
    color: #999;
    text-decoration: none;
}
.recent-activity ol.items .small-avatar-receiver {
    width: 45px;
    border-radius: 3px;
}
.recent-activity ol.items .avatars {
    position: relative;
    float: left;
    margin-right: 15px;
}
@media screen and (max-width: 600px) {
    .recent-activity ol.items .avatars {
        margin-right: 12px;
    }
}
.recent-activity ol.items .avatars .small-avatar-giver {
    width: 45px;
    border-radius: 3px;
}
.recent-activity .message {
    margin: 5px 0 16px 65px;
    font-size: 15px;
    line-height: 24px;
    position: relative;
    font-family: 'Lato', sans-serif;
    min-height: 10px;
}
@media screen and (max-width: 600px) {
    .recent-activity .message {
        margin: 2px 60px 23px;
        line-height: 21px;
    }
}

.recent-activity ol.items .avatars {
    height: 49px;
    width: 49px;
}
.recent-activity .sticker .sticker-image {
	width: auto;
}


/* Stickers */

.sticker .card-body {
    padding: 12px 12px 0;
}
.sticker h2 {
    font-weight: 600;
    font-size: 22px;
}
.sticker p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 20px;
    letter-spacing: -0.2px;
}

.sticker .sticker-image {
	width: 90%;
    margin: 0 auto;
    display: block;
}
.what-are-stickers {
	margin-top: 65px;
    position: absolute;
    top: 35px;
    right: 6%;
}
.sticker .btn {
	padding: 12px;
	border: 1px solid #ededd0;
}
.sticker .description {
	padding: 0 24px;
}
.quantity {
    margin: 0 !important;
    font-size: 14px !important;
    color: #aaa;
}
.panel-info p {
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    line-height: 22px;
    color: #000;
}

.btn-container {
	padding-bottom: 18px;
    margin: 20px 20px 0;
}

.image-container {
    display: inline-block;
    padding: 0px 0px 0px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.sticker .card {
    margin-bottom: 30px;
    background: #fbfbf7;
    border-radius: 10px;
    border: 1px solid #fbfbf7;
    min-height: 35rem;
}
.sticker .card:hover {
	border-color: #ededd0;
	box-shadow: 1px 1px 8px -7px #000;
}
.sticker.unavailable .card:hover {
	border-color:#fbfbf7;
	box-shadow: none;
}

.sticker .sticker-name {
    margin: 8px 0 10px
}
.sticker .sticker-description {
	font-size: 16px;
    margin-bottom: 10px;
    line-height: 21px;
}
.sticker .subtitle {
	font-size: 27px;
    text-align: center;
    margin: 45px auto 0;
    line-height: 31px;
    font-family: Avenir,helvetica neue,Helvetica,Arial,sans-serif;
    color: #000;
}
.sticker .sticker-amount-details {
    font-size: 18px;
    float: right;
    font-weight: bold;
    max-width: 138px;
    text-align: center;
    border-radius: 20px;
    background: #ffffff;
    padding: 3px 12px;
    z-index: 99;
    position: relative;
    cursor: pointer;
    border: 1px solid #ededd0;
}
.sticker .sticker-amount-details span {
	display: inline-block;
}
.sticker .total-recipients {
    border-right: 1px solid #eee;
    padding-right: 5px;
}
.sticker .total-tacos {
    margin-left: 8px;
}
.sticker .total-recipients .emoji, .sticker .total-tacos .emoji {
	margin: 0 2px;
}
.confetti {
    background: transparent;
    position: fixed;
    top: 0;
    z-index: 99;
    left:0;
} 
.sticker .tooltip {
	max-width: 170px;
}
.sticker .tooltip * {
	text-align: left;
}

.retire-message, .expiration-message {
	font-size: .7rem;
	text-transform: uppercase;
	font-weight: bold;
	color: #b8b8b8;
	display: inline-block;
	cursor: pointer;
	position: absolute;
	top: 20px;
	left: 22px;
    max-width: calc(100% - 150px);
	z-index: 99;
}
.expiring-soon-message {
	color: #ff8417 !important;
}
.tooltip div {
	text-align: left !important;
	line-height: 1.2rem;
}
.unavailable .sticker-image {
	filter: grayscale(60%);
	opacity: .2;
}
.unavailable .sticker-amount-details {
	cursor: auto;
	border:1px solid #f3f3f3;
}
.unavailable .sticker-amount-details, .unavailable .sticker-name, .unavailable .descritpion, .unavailable .quantity {
	color: #ddd;
}
.unavailable .sticker-amount-details .emoji { 
	filter: grayscale(100%);
	opacity: .5;
}
.unavailable.sticker .card, .unavailable.sticker .card:hover {
	background: #ffffff;
	border-color: #eaeaea;
}
.unavailable.sticker .total-recipients {
	border-color: #fbfbf7;
}

.unavailable.sticker .btn-faux, .unavailable.sticker .btn-faux:hover {
	cursor: auto;
	color: #cecece !important;
	border-color: #eaeaea;
	opacity: 1;
}
.progress-container {
	background: rgb(255 255 255 / 80%);
	border: 2px solid #000;
	border-radius: 20px;
	text-align: center;
	padding: 20px;
	max-width: 200px;
	position: absolute;
	width: 100%;
	left: 50%;
	margin-left: -100px;
	top: 30%;
	z-index: 999;
	font-weight: 500;
	box-shadow: 1px 1px 10px -8px #000;
}
.progress-container .progress {
	max-width: 150px;
	margin: 7px auto;
	border: 2px solid #000;
	height: 25px;
	border-radius: 50px;
}
.progress-container .info-hover {
	position: absolute;
	top: 7px;
	right: 9px;
	color: #aaa;
	cursor: pointer;
}
.progress-container .progress-bar {
	width: 0;
	transition: width 0.6s ease; 
	font-size: 11px;
}
.progress-container .lightning-bolt {
	width: 20px;
	float: left;
	margin-top: 3px;
}
	
.shimmer-light {
	/* no animation by default */
	opacity: 0;
	transition: opacity 0.3s;
  }

.sticker:hover .shimmer-light, .give-sticker-container .shimmer-light{
	position: absolute;
	opacity: 1;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgb(251 251 247 / 40%) 50%, rgb(251 251 247 / 0%) 100%);
	transform: skewX(-20deg);
	animation: shimmer 2s infinite;
  }
  
  @keyframes shimmer {
	0% {
	  left: -75%;
	}
	100% {
	  left: 125%;
	}
  }


/* Profile Modal */
@media screen and (min-width: 600px) {
    .profile-modal .modal-dialog {
        display: inline-block;
        text-align: left;
        vertical-align: top;
        margin-top: 50px;
    }
}

.profile-modal h1 {
	margin-top: 10px;
}
.profile-modal .modal-dialog {
	width: 100%;
	min-width: 780px !important;
}
@media screen and (max-width: 600px) {
	.profile-modal .modal-dialog {
		width: auto !important;
        min-width: auto !important;
		top: 60px;
	}
}	
.profile-modal .modal-dialog,
.profile-modal .modal-content {
  overflow: visible !important;
}
.profile-modal.show .modal-dialog {
	min-height: 700px;
}
.profile-modal .user-panel-avatar-container {
	max-width: 180px;
	margin: -45px auto 0;
	position: relative;
}
.profile-modal .modal-header {
	border: none;
	padding: 12px 18px;
	background: #faf9f5;
	border-radius: 15px;
}
.profile-modal .user-panel-avatar-container .level {
	position: absolute;
	top: 7px;
	right: 7px;
	border-radius: 50px;
	padding: 3px 10px;
	font-weight: bold;
	font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 12px;
}
.profile-modal .user-panel .user-details {	
	margin-top: 0;
	padding: 10px 0 30px;	
}
.profile-modal .user-panel {
	background: #faf9f5;
	padding: 0;
	margin: 0;
	border-radius: 10px;
	border-bottom: 1px solid #eee;
}
.profile-modal .user-avatar {
	box-shadow: 1px 3px 28px -25px #000;
}
.profile-modal .user-panel .tacotar {
	padding: 8px 7px;
	line-height: 10px;
	font-size: 12px;
	display: block;
	max-width: 125px;
	text-align: center;
	bottom: 0;
}
.profile-modal .user-panel  .tacotar-image {
	width: 50px;
	position: absolute;
	left: -28px;
	top: -20px;
}

.profile-modal .sad-taco {  
	margin-top: 15px !important;
	max-width: 100px !important;
}	

.profile-modal .redeem-btn {
	display: none;
}
.profile-modal .modal-dialog {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 1px 1px 18px -12px #000;
	min-width: 550px;

}



.profile-modal .recent-activity {
	min-height: auto;
	padding: 30px;
	position: relative;
}
.profile-modal .filters {
    right: 15px;
    position: absolute;
}
.profile-modal .user-panel .level span {
    opacity: 1;
    animation: none;
}
.profile-modal .user-panel .level::before {
    background: #fff;
    width: 100%;
    animation: none;
}
.profile-modal .user-panel .col-tacos-redeemable {
    display: block;
    width: auto;
    padding: 0;
}
.profile-modal .user-panel .col-tacos-received {
    padding: 0 6px 0 3px;
}
.profile-modal .col-tacos-redeemable .user-total-tacos {
    background: #fff;
	padding: 12px 10px 6px !important
}
.profile-modal .user-panel .user-details .user-profile-name {
    color: #000;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    display: inline-block;
}  

/* Messaging */
.message.message-reaction {
    padding-left: 15px;
}
.recent-activity .message a {
    color: #b7a204;
}
.infinite-container-profile .message.message-reaction {
    padding-left: 14px;
    margin-left: 70px;
}
.recent-activity .gift {
    margin: 15px 0 15px 65px;
    position: relative;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
}
@media screen and (max-width: 600px) {
    .recent-activity .gift {
        margin: 15px 0 15px 60px;
    }
}
.recent-activity .border  {
    background-color: #e8e8e8;
    border-radius: 8px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    z-index: 1;
}
.recent-activity blockquote {
	font-size: 15px;
    margin: 0;
    padding: 0;
    border: none;
    font-family: 'Lato', sans-serif;
    line-height: 22px;
	min-height: 15px;
}

.recent-activity .date-group {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 20px;
    position: relative;
    margin-left: -12px;
    margin-right: -12px;
    text-align: center;
    top: -10px;
}
.recent-activity .date-group-time {
    position: relative;
    background: #fff;
    top: 10px;
    font-weight: bold;
    font-size: 14px;
    padding: 0 10px;
}
.recent-activity .time {
    color: #aaa;
    font-size: 13px;
    font-weight: 300;
    margin-left: 3px;
}
.recent-activity .emoji {
    width: 24px;
    vertical-align: bottom;
}
.panel-data {
    text-align: center;
}
.panel-data h3 {
    padding: 24px 0 0;
    margin: 0;
    font-size: 40px;
    font-weight: 100;
}

/* User Pages */

#user-profile .close {
    display: none !important;
}
#profile, #gift {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 999;
    display: none;
}
#gift {
    text-align: center;
}
#gift .gift-image {
    margin-top: 8%;
}
#gift .gift-description {
    max-width: 600px;
    margin: 0 auto 35px;
    color: #666;
}
#gift .gift-container {
    display: none;
}
#profile .recent-activity, #user-profile .recent-activity {
    border: none;
    background: #fff;
    padding: 25px;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 5px;
}
#profile .recent-activity {
    margin-top: 60px;
}
@media screen and (max-width: 1200px) {
    #profile .recent-activity {
        margin: 50px 20%;
    }
}
@media screen and (max-width: 800px) {
    #profile .recent-activity {
        margin: 50px 10%;
    }
}
@media screen and (max-width: 600px) {
    #profile .recent-activity {
        margin: 50px 2%;
    }
}
.user-profile-details {
    background: #fbfbf7;
    padding-bottom: 20px;
    border-radius: 5px;
}
.avatar-container {
    position: relative;
    max-width: 250px;
    width: 100%;
    display: inline-block;
    margin-top: -30px;
}    
#profile .user-avatar, #user-profile .user-avatar {
    border-radius: 10px;
    width: 100%;
}
.avatar-container .level {
    right: 10px;
    top: 10px;
}  
.avatar-container .tacotar {
    top: -12px;
}    
#profile .username, #user-profile .username {
    margin: 20px 0 0;
    font-size: 24px;
    font-weight: bold;
}
#profile .name, #user-profile .name {
    font-size: 16px;
    line-height: 22px;
    color: #888;
}
#profile .user-total-tacos, #user-profile .user-total-tacos {
    font-weight: bold;
    font-size: 28px;
    min-width: 110px;
    background: #fff;
    padding: 20px 20px 10px;
    display: inline-block;
    margin: 0 2px 0;
    line-height: 24px;
    border-radius: 5px;
}
#profile .user-total-tacos small, #user-profile .user-total-tacos small {
    font-size: 13px;
    display: block;
    color: #777;
    font-weight: normal;
}
#profile .taco-icon, #user-profile .taco-icon {
    width: 27px;
    vertical-align: super;
    margin: -13px -6px;
}
#profile .user-gifts, #user-profile .user-gifts {
    background: #fafafa;
    height: 150px;
}

.user-total-tacos-container {
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 1346px) {
	.user-total-tacos-container {
		padding: 0 15px;
	}
}	

.tacotar {
    background:#ef5132;
    color: #fff;
    max-width: 200px;
    font-size: 16px;
    font-weight: bold;
    padding: 11px 20px 11px 26px;
    border-radius: 50px;
    line-height: 15px;
    margin: -15px auto 0;
    position: relative;
    z-index: 3;
    display: inline-block;
    min-width: 120px;
    box-shadow: 1px 1px 6px -3px #000;
	bottom: 14px;
}
@media screen and (max-width: 1300px) {
    .tacotar {
        max-width: 160px;
        font-size: 13px;
        padding: 10px 20px;
    }
}   
@media screen and (max-width: 1100px) {
    .tacotar {
        max-width: 170px;
        font-size: 12px;
        padding: 8px 15px;
    }
}    
.tacotar.with-image {
    right: -15px;
}
.tacotar-image {
    width: 60px;
    position: absolute;
    left: -34px;
    top: -20px;
}
@media screen and (max-width: 1300px) {
    .tacotar-image {
        width: 58px;
        left: -37px;
        top: -21px;
    }
}  
@media screen and (max-width: 1100px) {
    .tacotar-image {
        width: 50px;
        left: -31px;
        top: -17px;
    }
}    
.tacotar a {
    color: #fff !important;
}

/* Billing Pages */

.billing {
    margin-bottom: 45px;
}
.billing h2 {
    font-size: 18px;
    margin: 25px 0 5px;
    font-weight: 600;
}
.rating-widget {
    position: fixed;
    top: 0;
    left: 0;
    padding: 18% 0;
    text-align: center;
    width: 100%;
    z-index: 999;
    display: none;
}
.rating-widget-backdrop {
    background: #fff;
    width: 100%;
    opacity: .9;
    height: 100%;
    z-index: 998;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    display: none;
}
.star {
    background-image: url('../images/rating.png');
    background-position: left -2px;
    display: block;
    width: 85px;
    height: 85px;
    line-height: 16px;
    float: left;
    cursor: pointer;
    zoom: 1;
}
.fullStar {
    background-position: left -87px;
}
.stars {
    overflow: hidden;
    width: 430px;
    margin: 10px auto;
}
.tmp_es {
    background-position: left -180px;
}
.tmp_fs {
    background-position: left -87px;
}
.group-avatar, .team-avatar {
    width: 110px;
}
