#loginModal, #walletModal, #searchLeaguesModal, #oddsModal, #casinoRoundsModal, #profileModal, #partnerModal, #agentModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 76%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
  text-align: left;
  background-color: #1a2e39;
  padding: 20px;
  border-radius: 8px;
  width: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  top: 50px;
      z-index: 1000;
}

@media only screen and (max-width: 768px) {
    /* На планшетах и телефонах сделать содержимое модального окна полноэкранным для лучшего UX */
    .modal-content {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        max-width: none;
        border-radius: 0;
        padding: 18px;
        box-sizing: border-box;
        overflow: auto;
        z-index: 1001;
    }
}

.closeBtn {
    border: solid 1px #13232d;
    background: #13232d;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}