.loader-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #000
    url("/public/assets/images/loading.gif") center
    no-repeat;
    z-index: 5;
}

/*.spinner {*/
/*    width: 64px;*/
/*    height: 64px;*/
/*    border: 8px solid;*/
/*    border-color: #3d5af1 transparent #3d5af1 transparent;*/
/*    border-radius: 50%;*/
/*    animation: spin-anim 1.2s linear infinite;*/
/*    margin-left: 43vw;*/
/*    margin-top: 48vh;*/
/*}*/

/*@keyframes spin-anim {*/
/*    0% {*/
/*        transform: rotate(0deg);*/
/*    }*/
/*    100% {*/
/*        transform: rotate(360deg);*/
/*    }*/
/*}*/

img.logo {
    width: auto;
    max-width: 200px;
    margin: 0 auto;
}
.provider-logo {
    width: 150px;
    margin: 0 auto;
    color: white;
}
.game-thumbnail {
    aspect-ratio: 2 / 1.1;
}

.game-card-actions {
    margin: 8px;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#backToTopButton {
    display: inline-block;
    background-color: #FF9800;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#backToTopButton::after {
    line-height: 50px;
    color: #fff;
}
#backToTopButton:hover {
    cursor: pointer;
    background-color: #333;
}
#backToTopButton:active {
    background-color: #555;
}
#backToTopButton.show {
    opacity: 1;
    visibility: visible;
}

.login-text {
    margin-left: 50%;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    display: flex;
    padding-bottom: 300px;
    padding-top: 200px;
}

input:checked + label {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.popover {
    max-width: 650px;
    width: 650px;
}
.popover-body {
    padding: 0 !important;
}

.transaction-list {
    max-height: 200px;
    overflow-y: scroll;
}

.card-body {
    height: 300px;
    overflow-y: scroll;
}

pre {
    background-color: ghostwhite;
    border: 1px solid silver;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 4px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-height: 150px;
    overflow: scroll
}

.json-key {
    color: brown;
}

.json-value {
    color: navy;
}

.json-string {
    color: olive;
}

.select2-dropdown {
    background-color: #404852 !important;
    border: 1px solid #858f99 !important;
    color: white !important;
    min-width: 100px !important;
}

.select2-container--default .select2-selection--single {
    background-color: #404852 !important;
    height: 40px !important;
    min-width: 100px !important;

}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white !important;
    line-height: 40px !important;
    font-size: 13px !important;
    margin-top: 0;
    margin-bottom: 0;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 39px !important;
    margin-top: 0;
    margin-bottom: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 37px !important;
}

.select2-container--default .select2-results__option--selected {
    background-color: #aaaa !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #858f99 !important;
    background-color: #404852 !important;
    color: white !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb
{
    background-color: #000000;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear span{
    color: white !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear span:hover{
    color: black !important;
}

.select2-selection__placeholder {
    color: white !important;
}

.game-launch-iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow-y: scroll;
}

.isDesktop #gameFrame.mobile {
    width: 430px;
    height: 840px;
}
.isDesktop #gameFrame.desktop {
    width: 100%;
    height: 650px;
}

.isMobile #gameFrame.mobile {
    width: 330px;
    height: 600px;
}
.isMobile #gameFrame.desktop {
    width: 100%;
    height: 300px;
}

/* The Modal (background) */
.ebcf_modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.ebcf_modal-content {
    background-color: #38414a;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    height: 95%;
    overflow: scroll;
}

.isDesktop .ebcf_modal-content {
    width: 35%;
}

.isMobile .ebcf_modal-content {
    width: 85%;
}

.ebcf_modal-body {
    padding: 2px 16px;
}
.ebcf_modal-body * {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* The Close Button */
.ebcf_close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.ebcf_close:hover,
.ebcf_close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.gameLink {
    font-size: 12.5px;
}