span.link {
    cursor: pointer;
}

/* This imageless css button was generated by CSSButtonGenerator.com */

span.obutton {
    cursor: pointer;
    background-color: #ffe53a;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #ffaa22;
    display: inline-block;
    white-space: nowrap;
    color: #414141;
    font-family: helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 6px;
    text-decoration: none;
    /*text-shadow:1px 1px 0px #ffee66;*/
}

span.obutton:hover {
    background-color: #ffde00;
}

span.obutton:active {
    position: relative;
    top: 1px;
}

span.button {
    cursor: pointer;
    background-color: #088744;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #0C6136;
    display: inline-block;
    white-space: nowrap;
    color: #FFF;
    font-family: helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 9px;
    text-decoration: none;
    /*text-shadow:1px 1px 0px #aade7c;*/
}

span.button:hover {
    background-color: #037338;
}

span.button:active {
    position: relative;
    top: 1px;
}

#uidiv>table {
    background-color: #f4f4ef;
}

.gameinfo {
    text-align: right;
}

body {
    font-family: helvetica, sans-serif;
    margin: 0px;
    /* for IE6 / IE7 */
    background-color: #f4f4ef;
}

table.board {
    table-layout: fixed;
}

td.DL {
    background-image: url(../pics/DL.png);
    background-repeat: no-repeat;
}

td.DW {
    background-image: url(../pics/DW.png);
    background-repeat: no-repeat;
}

td.TL {
    background-image: url(../pics/TL.png);
    background-repeat: no-repeat;
}

td.TW {
    background-image: url(../pics/TW.png);
    background-repeat: no-repeat;
}

td.ST {
    background-image: url(../pics/ST.png);
    background-repeat: no-repeat;
}

td.score {
    background-color: #f4f4ef;
}

#drag {
    background-color: #f4f4ef;
    display: table;
}

#drag img {
    margin: 1px;
}

.drag {
    filter: alpha(opacity=90);
    opacity: 0.9;
    cursor: move;
    margin: auto;
    margin-bottom: 0px;
    margin-top: 0px;
    z-index: 10;
    background-color: #FFE53A;
    text-align: center;
    font-size: 14pt;
    width: 27px;
    height: 27px;
    line-height: 15px;
    *line-height: 23px;
    border-radius: 4px;
    -moz-border-radius: 4px;
}

.t1 {
    border: 2px solid #0C6136;
}

.t2 {
    border: 2px solid #0E0101;
}

.scroller {
    width: 100%;
    height: 250px;
    overflow: auto;
    font-size: 14px;
    background-color: #fff;
}

.mark {
    color: white;
    background-color: #9B9EA2;
}

div#drag table {
    border-collapse: collapse;
}

div#drag .board td {
    border: 1px solid white;
}

div#drag td {
    height: 32px;
    width: 32px;
    text-align: center;
    font-size: 10pt;
}

div#drags td {
    height: 32px;
    width: 32px;
    border: 1px solid white;
    text-align: center;
    font-size: 10pt;
}

td.swapit {
    background-image: url(../images/trash.png);
    background-repeat: no-repeat;
}
/* Loader overlay */
#game-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, #1b3a2b 0%, #0f241b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Dots animation */
.loader-dots {
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-dots span {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #70b67b;
  border-radius: 50%;
  animation: orbit 1.2s linear infinite;
}

.loader-dots span:nth-child(1) {
  animation-delay: 0s;
  background: #70b67b;
}
.loader-dots span:nth-child(2) {
  animation-delay: 0.15s;
  background: #9fe3a2;
}
.loader-dots span:nth-child(3) {
  animation-delay: 0.3s;
  background: #c6f6d5;
}
.loader-dots span:nth-child(4) {
  animation-delay: 0.45s;
  background: #4caf50;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(30px);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) translateX(30px);
    opacity: 1;
  }
}
