/* base positioning */
#tfiw-widget {
  position: fixed;
  bottom: 20px;
  z-index: 9999;
  width: 260px;
  pointer-events: none;
}

/* left variant */
#tfiw-widget.tfiw-left {
  left: 20px;
}

/* right variant */
#tfiw-widget.tfiw-right {
  right: 20px;
}

.tfiw-card {
	position: relative;
  display: none;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 12px;
  pointer-events: auto;
  border-top: solid 2px #61ce70;
	color: #000000;
}

/* top section as two columns */
.tfiw-top {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

/* avatar circle */
.tfiw-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* info block */
.tfiw-winner-label {
  font-size: 12px;
  color: #999;
	text-transform: uppercase;
}
.tfiw-info .tfiw-name {
  font-size: 14px;
  font-weight: 600;
	display: inline-block;
}

.winnerloc {
	display: inline-block;
	font-size: 10px;
  color: #999;
}

/* bottom section */
.tfiw-bottom {
  font-size: 13px;
  color: #333;
}

.tfiw-time {
  font-size: 10px;
  color: #999;
  margin-top: 2px;
}

.tfiw-text {
	font-size: 12px;
}

.tfiw-close {
      position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none !important;
    color: #61ce70 !important;
    font-size: 20px !important;
    line-height: 10px;
    cursor: pointer !important;
    padding: 0 !important;
    border-radius: 99px !important;
}
.tfiw-close:hover {
	background: none !important;
}

.tfiw-bottom a {
	color: #61ce70 !important;
}

@media all and (min-width: 1px) and (max-width: 768px) { 

	
	.tfiw-top {
  grid-template-columns: 30px 1fr;
		margin-bottom: 4px;
}
	
.tfiw-avatar {
  width: 30px;
  height: 30px;
}
	
	.tfiw-winner-label {
  font-size: 10px;
}
}