@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000000;
}

header {
    display: block;
    position: relative;
    background-color: #1a1a1a;
    border-bottom: 10px solid #2b2b2b;
}
header .logo-wrapper {
    display: block;
    position: relative;
    max-width: 300px;
}
header .logo-wrapper .web-logo {
    display: block;
    position: relative;
    width: 100%;
}

.bg-black {
    background-color: #000000 !important;
}
.bg-dark {
    background-image: linear-gradient(to bottom, #696969 0%, #5f5f5f 17%, #444444 50%, #4e4e4e 51%, #3f3f3f 59%, #303030 71%, #222222 84%, #000000 100%);
}
.bg-gold {
    background-image: linear-gradient(to bottom, #DBB42C 0%, #76520E 100%);
}
.bg-green {
    background-image: linear-gradient(to bottom, #bdf9a9 0%, #78d160 17%, #5bf450 50%, #3ac345 51%, #41d641 59%, #5eef4a 71%, #3cc23a 84%, #318b25 100%);
}
.bg-danger {
    background-color: #ae2012 !important;
}
.bg-blue {
    background-color: #1d5bbe !important;
}

.card.card-livedraw {
    max-width: 360px !important;
    border-radius: 12px;
    border: 1px solid #f5f5f5;
}
.card.card-livedraw .card-header {
    border-radius: 12px 12px 0 0;
    border: 1px solid #f5f5f5;
}
.card.card-livedraw .card-body {
    border-radius: 0 0 12px 12px;
    border: 1px solid #f5f5f5;
}
.card.card-livedraw.singapore {
    border-radius: 8px;
}
.card.card-livedraw.singapore .card-header {
    border-radius: 6px 6px 0 0;
}
.card.card-livedraw.singapore .card-header .card-title-box .title-logo {
    height: 50px;
    line-height: 50px;
    width: 100px;
    font-size: 35px;
    font-weight: bold;
    background-color: #ffffff;
    color: #1d5bbe;
}
.card.card-livedraw.singapore .card-header .card-title-box .title-logo.toto {
    font-size: 30px;
}
.card.card-livedraw.singapore .card-header .card-title-box .title-text {
    height: 50px;
    line-height: 50px;
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
}
.card.card-livedraw.singapore .card-body {
    border-radius: 0 0 6px 6px;
}

.card.card-iframe {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #f5f5f5;
}
.card.card-iframe .card-header {
    border-radius: 12px 12px 0 0;
}
.card.card-iframe .card-body {
    border-radius: 0;
}
.card.card-iframe .card-body iframe {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 410px;
}
.card.card-iframe .card-footer {
    border-radius: 0 0 12px 12px;
}

.page-title {
    display: block;
    position: relative;
    margin-bottom: 30px !important;
    padding-bottom: 15px !important;
    font-size: 30px;
    font-weight: 700;
}
.page-title::before {
    content: "";
    position: absolute;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 150px;
    height: 3px;
    background-color: #f5f5f5;
}

.time-wrapper {
    display: block;
    position: relative;
    margin: 0 auto;
    min-width: 100px;
    max-width: 100px;
    width: 100px;
}

.text-blink {
    animation: blink 1s linear infinite;
}
.text-small {
    font-size: 14px;
}
.text-large {
    font-size: 25px;
}
.text-gold {
    color: #ff8c00 !important;
}
.text-warning {
    color: #ffe600 !important;
}
.text-skyblue {
    color: skyblue !important;
}
.text-orange {
    color: orange !important;
}
.text-maroon {
    color: maroon !important;
}
.text-blue {
    color: #1d5bbe !important;
}

table.table-custom {
    border-collapse: separate !important;
    border: 0 !important;
}
table tr td {
    vertical-align: middle !important;
    line-height: 1.35 !important;
}
table.table-singapore tr th,
table.table-singapore tr td {
    border-color: #1d5bbe !important;
}
table.table-result-header tr:first-child td:first-child {
    border-radius: 12px 12px 0 0 !important;
}
table.table-result,
table.table-result tbody {
    border-radius: 0 0 12px 12px !important;
}
table.table-result tbody tr:last-child {
    border-radius: 0 0 12px 12px !important;
}
table.table-result tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px !important;
}
table.table-result tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px !important;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}