@import url('https://fonts.googleapis.com/css?family=Kalam');

:root {
    --main-color: #01417B;
    --main-back-color: #f2f2f2;
    --main-color-1: #3F51b5;
    --blue-1: #01417b;
    --grey-blur: #B7BED4;
    --dark: #1C2F48;
    --time-card: #28446B;
}


body {
    font-family: "Roboto", "Oxygen", "Ubuntu", "Cantarell",
    "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;

  background-color: var(--main-back-color);

}


.clickable {
    cursor: pointer;
}

.no-padding {
    padding: 0px;
}

.no-transform{
    text-transform: none;
}

.make-it-dark {
  background: rgba(0,0,0,0.50);
}

.strong-text{
  font-weight: bolder;
}

.main-color {
  color: var(--main-color)
}

.main-color-border {
  border-color: var(--main-color)
}

.main-color-back {
  background-color: var(--main-back-color)
}

.main-color-as-back{
    background-color: var(--main-color)
}

.main-color-1-as-back {
  background-color: var(--main-color-1)
}


.no-padding {
  padding: 0px;
}

.no-transform{
  text-transform: none;
}

/*On the flex container*/
.flexcontainer-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.flex-justify-content-center {
    justify-content: center;
}

.flex-justify-content-around {
    justify-content: space-around;
}

.flex-justify-content-between {
    justify-content: space-between;
}



.flexcontainer-col {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.flexcenter {
  align-items: center;
}

.flex-space-between {
  justify-content: space-between;
}

/* On the flex container */
.flexcontainer-multirows {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  /* You can set flex-wrap and flex-direction individually */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* Or do it all in one line with flex flow */
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  /* tweak the where items line up on the row */
  /* valid values are: flex-start, flex-end, space-between, space-around, stretch */
  -webkit-align-content: flex-end;
  align-content: flex-end;
}


ul.striped li {
  padding: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin-right: 8px;
}

.fa-action-normal  {
  background-color: #dddddd;
}

.fa-action-danger{
  background-color: #dddddd;
}

.fa-action-warning{
  background-color: #E51870;
}

.fa-action-normal:hover{
  background-color: deepskyblue;
  color: whitesmoke;

}

.fa-action-danger:hover {
  background-color: red;
  color: whitesmoke;
}

.fa-action-warning{
  cursor: default;
}


hr.style-one {
  border-top: 1px dotted #33B5E5;
}

.btn-primary{
  background-color: var(--main-color);
}


.cover-glass{
  z-index: 10;
  background:rgba(0,0,0,0.5);
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0 ;
  top: 0;
  font-family: "Roboto", sans-serif;
}

.super-top {
  margin-top: 120px;
}

.text-100 {
  font-weight: 100;
}

.rect {
  border-radius: 0px !important;
}

.bolder-text {
  font-weight: bolder;
}

.game-photo{
  width: 128px;
  height: auto;
}

/* ---- */

.char-btn {
    color: gray;
    cursor: pointer;
    width: 2em;
    height: 2em;
    display: inline-block;
    text-align: center;
}

.vertical-bottom {
    vertical-align: bottom;
}

.vertical-sup {
    vertical-align: sub;
}

.char-btn:hover{
    color: black;
    border-radius: 50%;
    background: #e0e0e0;
}

/* ---------------------------------- */

.hint {
    display: inline;
    position: relative;
    z-index: 999;
}

/* Trigger text */

.hint-item {
    background: rgba(0,0,0,0.3);
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    padding: 0 10px;
}

/* Gap filler */

.hint-item::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 20px;
    bottom: 100%;
    left: 50%;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.hint:hover .hint-item::after {
    pointer-events: auto;
}

/* hint */

.hint-content {
    position: absolute;
    z-index: 9999;
    width: 360px;
    left: 50%;
    margin: 0 0 20px -180px;
    bottom: 100%;
    text-align: left;
    font-size: 0.765em;
    line-height: 1.4;
    box-shadow: -5px -5px 15px rgba(48,54,61,0.2);
    background: #2a3035;
    opacity: 0;
    cursor: default;
    pointer-events: none;
}

.hint-effect-1 .hint-content {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}

.hint-effect-2 .hint-content {
    -webkit-transform-origin: 50% calc(100% + 10px);
    transform-origin: 50% calc(100% + 10px);
    -webkit-transform: perspective(1000px) rotate3d(1,0,0,45deg);
    transform: perspective(1000px) rotate3d(1,0,0,45deg);
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
}

.hint-effect-3 .hint-content {
    -webkit-transform: translate3d(0,10px,0) rotate3d(1,1,0,25deg);
    transform: translate3d(0,10px,0) rotate3d(1,1,0,25deg);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}

.hint-effect-4 .hint-content {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale3d(0.7,0.3,1);
    transform: scale3d(0.7,0.3,1);
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
}

.hint-effect-5 .hint-content {
    width: 180px;
    margin-left: -90px;
    -webkit-transform-origin: 50% calc(100% + 6em);
    transform-origin: 50% calc(100% + 6em);
    -webkit-transform: rotate3d(0,0,1,15deg);
    transform: rotate3d(0,0,1,15deg);
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
    -webkit-transition-timing-function: ease, cubic-bezier(.17,.67,.4,1.39);
    transition-timing-function: ease, cubic-bezier(.17,.67,.4,1.39);
}

.hint:hover .hint-content {
    pointer-events: auto;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0) rotate3d(0,0,0,0);
    transform: translate3d(0,0,0) rotate3d(0,0,0,0);
}

.hint.hint-effect-2:hover .hint-content {
    -webkit-transform: perspective(1000px) rotate3d(1,0,0,0deg);
    transform: perspective(1000px) rotate3d(1,0,0,0deg);
}

/* Arrow */

.hint-content::after {
    content: '';
    top: 100%;
    left: 50%;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-top-color: #2a3035;
    border-width: 10px;
    margin-left: -10px;
}

/* hint content*/

.hint-content img {
    position: relative;
    height: 170px;
    display: block;
    float: left;
    margin-right: 1em;
}

.hint-text {
    font-size: 0.68em;
    line-height: 1.35;
    display: block;
    padding: 1.31em 1.21em 1.21em 0;
    color: #fff;
}

.hint-effect-5 .hint-text {
    padding: 1.4em;
}

.hint-text a {
    font-weight: bold;
}

.font-click{
    cursor: pointer;
    color: lightgrey;
}

.font-click:hover{
    color: black;
}

.ddd{
    font-weight: bold;
}


.script-typeface {
    font-family: Kalam;
}


.script-h1{
    font-family: Kalam;
    font-size: 5em;
}

.align-text-center{
    text-align: center;
}
