/* styling gambling */
.rmn-gambling {
    font-family: Arial, sans-serif;
}

.rmn-gambling h2 {
    font-weight: bold;
    font-size: 24px;
    margin: 20px 0;
}

.rmn-gambling .custom-checkbox {
    position: relative;
    display: inline-block;
    width: 30px; /* Adjust the width as needed */
    height: 30px; /* Adjust the height as needed */
    background-color: #fff;
    border: 2px solid #e42229;
    border-radius: 8px; /* Adjust the border-radius for smooth edges */
    cursor: pointer;
}

.rmn-gambling .checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px; /* Adjust the width of the checkmark */
    height: 18px; /* Adjust the height of the checkmark */
    border: 2px solid #e42229;
    border-width: 0 3px 3px 0;
    transform-origin: bottom left;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.rmn-gambling .custom-checkbox input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.rmn-gambling .custom-checkbox input:checked + .checkmark {
    opacity: 1;
}

.rmn-gambling.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.rmn-gambling .popup {
    display: block;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 80%;
    width: 590px;
    border: none;
    margin: 0 auto;
}

.rmn-gambling .popup h2 {
    color: #000000;
}

.rmn-gambling .popup p {
    color: #000000;
    max-width: 25em;
    margin: 0px auto;
    display: block;
    line-height: 18px;
}

.rmn-gambling .btn-container {
    margin-top: 20px;
}

.rmn-gambling .btn-confirm,
.rmn-gambling .btn-cancel {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 1em;
    font-size: 13px;
}

.rmn-gambling .btn-confirm {
    background-color: #e42229;
    color: #fff;
}

.rmn-gambling .btn-cancel {
    background-color: #eee;
    color: #444;
}

.rmn-gambling sub {
    font-size: 13px;
    line-height: 15px;
}