﻿

/* Basic style for deposit buttons */
.custom-button {
    color: black;
    cursor: pointer;
    text-align: center;
    background-color: #BCB358;
    width: 100%;
    border: none;
    padding: 10px;
}

    /*     style for hover */
    .custom-button:hover {
        background-color: #3d3a1d;
        color: #BCB358;
    }

    /*     style for click */
    .custom-button:active {
        background-color: #666;
        color: white;
    }

/* Basic style for money buttons */
.money-button {
    color: white;
    cursor: pointer;
    text-align: center;
    background-color: #666;
    width: 100%;
    border: none;
    padding: 10px;
    transition: 0.3s ease;
    overflow-x: auto;
}

    /*     style for hover */
    .money-button:hover {
        background-color: #BCB358;
        color: black;
        transform: scale(1.1);
        overflow-x: hidden;
    }

    /*     style for click */
    .money-button:active {
        background-color: #BCB358;
        color: #BCB358;
        transform: scale(1.3);
        overflow-x: hidden;
    }

/* Basic style for memo buttons */
.memo-button {
    color: white;
    cursor: pointer;
    text-align: center;
    background-color: #666;
    width: 100%;
    border: none;
    padding: 5px;
    transition: 0.3s ease;
    margin-left: 15px;
    margin-top: 5px;
    overflow-x: auto;
}

    /*     style for hover */
    .memo-button:hover {
        background-color: #BCB358;
        color: black;
        transform: scale(1.3);
        overflow-x: hidden;
    }

    /*     style for click */
    .memo-button:active {
        background-color: #BCB358;
        color: #BCB358;
        transform: scale(0.8);
        overflow-x: hidden;
    }

.custom-toast-popup {
    background-color: #BCB358;
    font-size: x-large;
    border: 1px solid black;
    border-radius: 7px 7px 7px 7px;
}

.bg-color-gold {
    background-color: #BCB358 !important;
}

.button-selected {
    background-color: #ffc107 !important;
    color: black !important;
}

.font-weight-normal {
    font-weight: 300 !important;
}

.profile-modal {
    border-radius: 12px;
    margin-top: 70px !important;
}

.info-dropdown {
    min-width: auto !important;
    position: absolute !important;
    top: 50px;
    border-radius: 12px !important;
    z-index: 2000;
    opacity: 98%;
    background-color: rgb(42, 47, 51, 0.98) !important;
    animation: fadeIn 1s;
}

.info-dropdown-item {
    font-size: 14px;
    line-height: 20px;
    display: block;
    text-decoration: none !important;
    margin-top: 17px;
    margin-bottom: 17px;
    margin-left: 24px;
    margin-right: 24px;
    font-weight: 400;
}

.information-anchor {
    display: block;
    color: white;
    padding: 0px 14px 0px 14px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: 0.3s ease-in-out;
    background-color: transparent !important;
}

    .information-anchor:hover {
        color: #FFC107 !important;
        text-decoration: none;
        outline: none;
        transition: transform 0.3s;
        transform: scale(1.1);
        transform-origin: 50% 50%;
    }

    .information-anchor:focus {
        color: #FFC107 !important;
        text-decoration: none;
        outline: none;
    }

.chevronRightDouble {
    transform: rotate(180deg);
    color: white;
    cursor: pointer;
}

.chevronLeftDouble {
    color: white;
    cursor: pointer;
}

.chevron-disabled {
    cursor: not-allowed;
    filter: contrast(0%);
}

.card-header-title {
    border: none !important;
    background-color: transparent !important;
    margin-top: 15px;
    margin-bottom: 15px;
}

.profile-menu-border {
    float: left;
    transition: transform 0.5s;
    border-bottom-style: solid;
    border-bottom-color: grey;
}

.profile-anchor-floatR {
    float: right;
}

.navbar-button-position {
    position: absolute;
    left: 0;
    top: 0;
}

.mobile-navbar-padding {
    padding-top: 0px;
    border-color: none !important;
}

.profileAnchor {
    display: block;
    color: white;
    padding: 0px 14px 0px 14px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: 0.3s ease-in-out;
    background-color: transparent !important;
}

    .profileAnchor:hover {
        color: #FFC107 !important;
        text-decoration: none;
        outline: none;
        transition: transform 0.3s;
        transform: scale(1.1);
        transform-origin: 50% 50%;
    }

    .profileAnchor:focus {
        color: #FFC107 !important;
        text-decoration: none;
        outline: none;
    }

.activeAnchor {
    border-bottom-color: #C2991F !important;
}

    .activeAnchor a {
        color: #C2991F !important;
    }


.labelFontStyle {
    color: lightgray !important;
    font-weight: 400 !important;
    font-size: 14px !important;
}

.profile-modal-acc-number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-group-black-width {
    width: 50% !important;
}

.fade-in-image {
    animation: fadeIn 3s;
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.date-input {
    background-color: black !important;
    border-color: black !important;
    color: white !important;
    border-radius: 12px !important;
    &:disabled {
        background-color: grey !important
    }
}

.inverted-select {
    background-color: transparent !important;
    color: #FFC107 !important;
    border-color: #FFC107 !important;
    border-radius: 5px;
}

    .inverted-select option {
        background-color: #343A40 !important;
        color: #FFC107 !important;
    }

.modal-body-margin {
    margin-top: 30px;
}

@media screen and (min-width: 1441px) {
    .profile-modal {
        max-width: 50% !important;
    }
}

@media screen and (max-width: 980px) and (min-width: 721px) {
    .profile-menu-border {
        float: left !important;
        transition: transform 0.5s !important;
        border-bottom-style: none !important;
    }
}


@media screen and (max-width: 720px) and (min-width: 391px) {
    .profile-modal {
        max-width: 100% !important;
    }

    .card-header-title {
        border: none !important;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .profile-menu-border {
        float: left;
        transition: transform 0.5s;
        border-bottom-style: none;
    }

    .profile-anchor-floatR {
        float: none;
    }

    .navbar-button-position {
        position: absolute;
        left: 0;
        top: 0;
    }

    .mobile-navbar-padding {
        padding-top: 15px;
        border-color: none !important;
    }

    .loading-icon-desktop {
        display: none;
    }

    .loading-icon-mobile {
        display: inline;
    }

    .close-button-toggle {
        padding: 1rem 1rem;
        margin: 0px !important;
    }

    .input-group-black-width {
        width: 100% !important;
    }

    .modal-header-mobile {
        margin: 0px;
        padding: 0px;
    }


    .profileAnchor:hover {
        transform: scale(1.05);
    }

    .scrollable-table-bets {
        height: 40vh;
        overflow-y: auto;
    }

        .scrollable-table-bets table {
            width: 100%;
            table-layout: fixed;
            border-collapse: collapse;
        }

        .scrollable-table-bets thead {
            display: table;
            width: 100%;
            table-layout: fixed;
        }

        .scrollable-table-bets tbody {
            display: block;
            max-height: 280px;
            overflow-y: auto;
            width: 100%;
        }

            .scrollable-table-bets tbody tr {
                display: table;
                table-layout: fixed;
                width: 100%;
            }

        .scrollable-table-bets th,
        .scrollable-table-bets td {
            text-align: center;
            border-color: RGBA(0,0,0,0.4);
            overflow: hidden;
        }

        .scrollable-table-bets th {
            background-color: #343a40;
            position: sticky;
            top: 0;
            z-index: 2;
        }

    .scrollable-table table {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
    }

    .scrollable-table thead {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .scrollable-table tbody {
        display: block;
        max-height: 200px;
        overflow-y: auto;
        width: 100%;
    }

        .scrollable-table tbody tr {
            display: table;
            table-layout: fixed;
            width: 100%;
        }

    .scrollable-table th,
    .scrollable-table td {
        text-align: center;
        border-color: RGBA(0,0,0,0.4);
        overflow: hidden;
    }

    .scrollable-table th {
        background-color: #343a40;
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .mobile-font-head {
        font-size: 1.2em !important;
    }

    .mobile-font-row {
        font-weight: 200 !important;
        font-size: 10px !important;
    }

    .mobile-column-width-10 {
        width: 10% !important;
    }

    .mobile-column-width-15 {
        width: 15% !important;
    }

    .mobile-column-width-20 {
        width: 20% !important;
    }

    .mobile-column-width-25 {
        width: 25% !important;
    }

    .mobile-column-width-30 {
        width: 30% !important;
    }

    .selected-period-dropdown-mobile {
        flex: 0 0 90% !important;
        max-width: 90% !important;
    }

    .modal-body-margin {
        margin-top: 0px !important;
    }

    .modal-navbar-margin {
        margin-bottom: 0px !important;
    }

    .navbar-collapse {
        border-radius: 8px;
        background-color: rgb(42, 47, 51, 0.98) !important;
        margin-top: 15px;
        transition: height 0.3s ease;
    }
}