﻿.mines-modal {
    z-index: 99998;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.mines-show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.mines-modal-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: auto;
    border-radius: 0.5rem;
    z-index: 2;
    background-size: cover;
    padding: 25px 0;
    padding-bottom: 55px;
}

.mines-body-close {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    display: none;
    z-index: 1;
    position: fixed;
    cursor: default;
}

.mines-show-modal .mines-body-close {
    display: block;
}

.mines-container {
    width: 400px;
    border: 4px solid #eeeeee;
    border-radius: 5px;
}

.mines-row {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.mines-col {
    text-align: center;
    background: purple;
    flex: 0 0 17%;
    max-width: 50px;
    min-height: 50px;
    margin: 5px;
    padding: 5px;
    border-radius: 3px;
}

.mines-row.active .mines-col button,
.mines-row.active .mines-col-2 button {
    background-color: #8a62ec;
    border-color: transparent !important;
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
}

.mines-row .mines-col.disabled {
    cursor: not-allowed;
}

.mines-token {
    border: 2px solid #f0ad4e;
    border-radius: 7px;
    width: 70px;
    height: 40px;
    text-align: center;
    word-break: break-all;
    background: #272221;
    position: absolute;
    bottom: 5px;
    left: 30%;
    right: 60%;
    color: #fff;
    line-height: 1;
    padding: 4px;
}

.mines-collection {
    border: 2px solid #f0ad4e;
    border-radius: 7px;
    width: 70px;
    height: 40px;
    text-align: center;
    word-break: break-all;
    background: #272221;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    line-height: 1;
    padding: 4px;
}

.mines-play-button {
    position: absolute;
    bottom: 9px;
    left: 50%;
    color: #272221;
    background-color: #f8e39a;
    z-index: 9;
}

.mines-hide {
    opacity: 0;
}

.mines-prize {
    width: 400px;
    height: 380px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    z-index: 7;
    background-image: url('../mines/images/shine.png?v=3');
    background-position: center;
    transform: translate(-50%, -50%);
    display: none;
}

    .mines-prize div {
        font-size: 20px;
        color: #8e19d2;
        padding-top: 30%;
    }
