html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  
}

/*******************************************************************************/
.widget-container {
    position: relative;
}

.main-widget {
    height: 548px;
    width: 548px;
    border-radius: 50%;
    border: 32px solid #22475f;
    /* background-image: url('/images/mr_grey_dp.jpg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%; */
}

.wheel {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    transition: all ease-in-out 5s;
}

.option-text {
    visibility: visible;
}

.option-img {
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.option-img img {
    width: 80px;
    height: 80px;
    position: absolute;
    /*transform: translate(-50%, -220px);*/
    /*transform: rotate(calc(calc(360deg / var(--j)) * var(--i))) translate(0, -220px);*/
    transform: translate(0%, -180px);
    border-radius: 50%;
    user-select: none;
}

.wheel span {
    text-decoration: none;
    position: absolute;
    top: 122px;
    /*left: calc(36px + calc(13px * var(--j)));*/ /*GOOD FOR 8 items*/
    left: calc(27px + calc(13px * var(--j)));
    transform: rotate(calc(calc(360deg / var(--j)) * var(--i))) translate(0, -122px);
    border-top: 246px solid hsl(calc(calc(360deg / var(--j)) * var(--i)), 100%, 80%);
    border-left: calc(800px / var(--j)) solid transparent;
    border-right: calc(800px / var(--j)) solid transparent;
}

.wheel span b {
    font-size: 1em;
    position: absolute;
    transform: translate(-50%, -220px);
    color: #111 !important;
}

.spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 8px solid #22475f;
    background-color: #fff;
    color: #22475f;
    box-shadow: 0 5px 20px #000;
    font-size: 22px;
    font-weight: bold;
}

.spin-btn::before {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    border-style: solid;
    border-width: 0 15px 30px 15px;
    border-color: transparent transparent #22475f transparent;
    top: -30px;
    left: calc(50% - 15px);
    filter: drop-shadow(0 -3px 5px rgba(0, 0, 0, 0.3));
}

.spin-btn:active {
    width: 75px;
    height: 75px;
    font-size: 20px;
}

/**********************/
.bingo-card-container {
    width: 510px;
    height: 510px;
    max-width: 510px;
    max-height: 510px;
    min-width: 210px;
    min-height: 210px;
    /*grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));*/
    /*grid-template-columns: repeat(auto-fit, minmax(100px, 100px));*/
    /*display: grid;
    grid-gap: 0;*/
}

.bingo-word {
    max-width: 100px;
    max-height: 100px;
    min-width: 50px;
    min-height: 50px;
    width: 100px;
    height: 100px;
    border: 1px solid #4e4e4e;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.bingo-word-text {
    text-align: center;
    /*width: 90%;*/
    user-select: none;
    color: #d5d5d5;
    font-size: 1.4em;
}

.cross {
    background: url('/images/cross.png');
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    max-width: 100px;
    max-height: 100px;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.7;
    display: none;
}

.creepster-regular {
    font-family: "Creepster", system-ui !important;
    font-weight: 400;
    font-style: normal;
}
