html {
    margin: 0;
    padding: 0;
}

body {
    font-family: Roboto;
    font-size: 13px;
    min-width: 320px;
    /* word-break: break-all; */
    word-wrap: break-word;
}

a {
    text-decoration: none;
    color: var(--bs-orange);
}

img {
    max-width: 100%;
}

h1 {
    font-size: 22px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 17px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
}

.app-logo {
    max-height: 100px;
    display: block;
}

@media screen and (min-width:992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown .dropdown-menu {
        display: none;
    }

    /* .dropdown:hover .dropdown-toggle::after {
        border-top: 0;
        border-bottom: .3em solid;
    } */
}

@media screen and (max-width:991px) {
    .dropdown .dropdown-menu {
        margin-top: 0;
    }

    /* .dropdown-toggle.show::after {
        border-top: 0;
        border-bottom: .3em solid;
    } */
}

.dropdown .dropdown-menu .dropdown-item {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    text-transform: none;
}

.navbar,
.card-header {
    background: linear-gradient(to right, var(--bs-orange), var(--bs-yellow));
}

.dropdown-item:active {
    background-color: var(--bs-orange);
}

.navbar .navbar-nav .nav-link {
    color: var(--bs-white);
    font-size: 15px;
}

.nav-link i::before {
    color: var(--bs-white);
    font-size: 20px;
}

.app-footer {
    background: linear-gradient(to right, #252526, #3e3e3e);
    color: #b0b0b0;
}

.form-check-input:checked {
    background-color: var(--bs-orange);
    border-color: var(--bs-orange);
}

.app-footer-vertical-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.app-footer-vertical-links li {
    margin: 0;
    padding: 2px 0;
}

.app-footer-vertical-links li a {
    color: #cccccc;
    text-decoration: none;
    transition: all linear 0.2s;
}

.app-footer-vertical-links li a:hover {
    color: #e0e0e0;
    text-decoration: underline;
}

table {
    font-family: Arial;
    width: 100% !important;
    max-width: 100% !important;
}

table tr td,
table tr th {
    font-size: 14px;
    min-height: 38px;
}

.vdp-datepicker__calendar {
    width: 100% !important;
}

.vdp-datepicker__calendar .selected {
    background: #fadd9f !important;
}

.vdp-datepicker__calendar .today {
    background: #dddddd !important;
}

.load-placeholder {
    margin: 0 auto;
    max-width: 100%;
    min-height: 100px;
    background-color: #eee;
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}

.animated-background {
    animation-duration: 1.25s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: darkgray;
    background: linear-gradient(to right, #eeeeee 10%, #dddddd 18%, #eeeeee 33%);
    background-size: 1200px 104px;
    height: 100px;
    position: relative;
}

.live-menu-icon {
    float: right;
}

.live-menu-time {
    float: right;
}

.app-number-ball {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: linear-gradient(to bottom, #fceaca, #e9aa6f);
    border: 2px solid var(--bs-orange);
    line-height: 60px;
    font-size: 28px;
    font-weight: bold;
}

@media screen and (max-width:768px) {
    .app-number-ball {
        width: 46px;
        height: 46px;
        line-height: 46px;
        font-size: 22px;
    }
}

@media screen and (max-width:576px) {
    .app-number-ball {
        width: auto;
        height: 36px;
        line-height: 36px;
        font-size: 24px;
        background: none;
        border: none;
    }
}

.app-circle-small::before {
    font-size: 10px;
    margin: 0 2px;
}

.app-title-box,
.app-title-box-2 {
    border-bottom: 1px dashed var(--bs-green);
}

.app-title-box {
    text-align: center;
}

.app-title-box h1,
.app-title-box-2 h1 {
    text-transform: uppercase;
    line-height: 28px;
}

.app-badge-box {
    float: left;
    max-width: 200px;
    margin: 5px;
    padding: 5px 14px;
    border: 1px solid var(--bs-secondary);
    border-radius: 50px;
}

.app-badge-box .app-badge-box-left {
    border-right: 1px solid var(--bs-secondary);
    padding: 0 5px;
    float: left;

}

.app-badge-box .app-badge-box-right {
    width: 60px;
    padding: 0 5px;
    float: left;
}

@media screen and (max-width:576px) {
    .app-badge-box {
        border-radius: 3px;
    }

    .app-badge-box .app-badge-box-left,
    .app-badge-box .app-badge-box-right {
        border-right: none;
        width: 100%;
    }
}

.app-date-picker-style {
    font-size: 13px;
}

.app-date-picker-style input {
    width: 100%;
    border: none;
    font-size: 14px;
}

.app-date-picker-style input:focus {
    border: none;
    outline: none;
}

.vdp-datepicker__calendar {
    left: -15px;
}

.html-content {
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
}


.html-content table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dfe2e6;
}

.html-content th {
    padding: 8px;
    border: 1px solid #dfe2e6;
}

.html-content td {
    padding: 8px;
    border: 1px solid #dfe2e6;
}

input {
    font-family: Roboto;
    font-size: 14px !important;
}

.card h3 {
    font-size: 18px;
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: var(--bs-red);
    border: 0;
    opacity: 0.25;
}

.my-div-table {
    font-family: Arial;
    font-size: 14px;
    width: calc(100% - 1px);
    margin-left: 1px;
    margin-top: 1px;
    display: flex;
    flex-wrap: wrap;
    border-right: 1px solid #dfe2e6;
}

.my-div-table-td-125,
.my-div-table-td-20 {
    margin-top: -1px;
    margin-left: -1px;
    flex: calc(12.5% + 1px);
    float: left;
    padding: 8px;
    border: 1px solid #dfe2e6;
    border-right: none;
}

.my-div-table-td-20 {
    flex: calc(20% + 1px);
}

@media screen and (max-width:768px) {
    .my-div-table-td-125 {
        flex: calc(25% + 1px);
    }
}

.table-prize-title {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}

.card-header h2 {
    font-size: 13px;
    margin-bottom: 0;
}

.card-header h3 {
    font-size: 13px;
    margin-bottom: 0;
}