/*==================== GOOGLE FONTS ====================*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*==================== VARIABLES CSS ====================*/
:root {
    --brand-color: #000;
    --btn-primary-hover-color: #80a3d4;
    --white-color: #ffffff;
    --body-background-color: #fff
}
/*==================== BASE ====================*/
* {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    box-sizing: border-box;
    border-radius: 0;
    outline: none;
    font-family: "Roboto", sans-serif;
}
html,
body {
    width: 100%;
    height: 100%;
    background-color: var(--body-background-color);
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    max-height: 100%;
}
select {
    background-color: #ececec;
    border: 1px solid #d6d6d6;
    color: #333;
    padding: 3px;
    font-size: 13px;
}
a {
    color: #000;
    text-decoration: none;
}
/*==================== LAYOUT ====================*/
.text-red {
    color: #f20e15 !important;
}
.text-blue {
    color: #04b2e5 !important;
}
.text-orange {
    color: #faa61a !important;
}
.font-size-14 {
    font-size: 14px !important;
}
.font-size-16 {
    font-size: 16px !important;
}
.hide {
    display: none !important;
}
.margin-top-10 {
    margin-top: 10px;
}
.margin-top-20 {
    margin-top: 20px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-bottom-10 {
    margin-bottom: 10px;
}
.margin-bottom-20 {
    margin-bottom: 20px;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.btn-primary {
    color: var(--white-color);
    background-color: var(--brand-color);
    border-color: var(--brand-color)
}
.btn-primary:hover {
    color: var(--white-color);
    background-color: var(--btn-primary-hover-color);
    border-color: var(--brand-color);
}
.btn-primary:focus,
.btn-primary.focus {
    box-shadow: 0 0 0 .2rem rgba(91, 194, 194, 0.5)
}
.btn-primary.disabled,
.btn-primary:disabled {
    color: var(--white-color);
    background-color: var(--brand-color);
    border-color: var(--brand-color)
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
    color: var(--white-color);
    background-color: var(--btn-primary-hover-color);
    border-color: var(--brand-color);
}
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(91, 194, 194, 0.5)
}
/* table */
.table thead th {
    padding: 10px 0;
    background-color: #6699ff;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}
.table tbody td {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 18px;
    font-weight: 300;
}
.main-container {
    width: 100%;
    min-height: 84vh;
    background-color: #fff;
}
.main {
    margin: 20px 0;
    gap: 15px;
}
/*==================== NAVBAR ====================*/
.cs-bg-light {
    background-color: var(--brand-color);
    height: 88px;
    padding: 0;
}
.cs-bg-light .container,
footer .container,
.main .container {
    max-width: 1320px;
}
.cs-bg-light .navbar-brand {
    margin-left: 6px;
    height: 70px;
}
.cs-bg-light .action ul {
    gap: 20px;
    margin-right: 20px;
    margin-bottom: 0;
}
.cs-bg-light .action ul li a {
    color: white;
    font-size: 20px;
}
.cs-bg-light .action li {
    height: fit-content;
}
.cs-bg-light .action.navbar-dark {
    margin-left: 20px;
}
.cs-bg-light .action.navbar-dark button {
    border: none;
    width: 30px;
    background-color: #000;
}
.cs-bg-light .action.navbar-dark button:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.cs-bg-light .action.navbar-dark button.dropdown-toggle::after {
    display: none !important;
}
.cs-bg-light .action.navbar-dark ul {
    margin-right: 0;
    height: fit-content;
    background-color: #333;
}
.cs-bg-light .action.navbar-dark ul li:hover a,
.wrapper-logged .dropdown-menu .dropdown-item:hover {
    background-color: #454848;
}
.wrapper-logged {
    margin-left: 10px;
}
.wrapper-logged .dropdown-menu {
    background-color: #333;
    padding: 0;
}
.wrapper-logged .dropdown-menu .dropdown-item {
    color: #c5c5c5;
    padding: 12px;
}
.wrapper-logged .user {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    overflow: hidden;
}
.wrapper-logged ul {
    height: fit-content;
}
/*==================== GUIDE ====================*/
/* tab */
.nav-tabs {
    border-bottom: 0px !important;
}
.nav-tabs .nav-link {
    border: 1px solid #d6d6d6;
    border-top: 3px solid transparent;
    border-bottom: 0px !important;
    display: block;
    color: #464646;
    background: #ececec;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 0 !important;
    margin-bottom: 0px !important;
    cursor: pointer;
}
.nav-tabs .nav-link.active {
    color: #f20e15;
    border-top: 3px solid #f20e15;
    background-color: #fff;
}
.tab-content {
    padding: 0px;
    border: 0;
    border-top: 1px solid #d6d6d6;
}
/* breadcrumb */
.breadcrumb {
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.breadcrumb a {
    color: #4f4f4f;
    font-size: 13px;
    line-height: 24px;
}
.breadcrumb .breadcrumb-item.active {
    color: #4f4f4f;
    font-size: 13px;
    line-height: 24px;
}
/* pagination */
.pagination li {
    margin: 0 3px;
}
.pagination li:first-child {
    margin-left: 0;
}
.pagination li a {
    color: #4e4e4e;
    font-size: 12px;
    margin: 5px 0;
    padding: 4px 10px;
    background-color: #e6e6e6;
    display: block;
    font-weight: bold;
    border: 1px solid #e6e6e6;
    border-radius: 0 !important;
}
.pagination li.active span {
    color: #fff;
    background-color: #6699ff;
    border-color: #6699ff;
}
.pagination li span {
    color: #4e4e4e;
    font-size: 12px;
    margin: 5px 0;
    padding: 4px 10px;
    background: #e6e6e6;
    display: block;
    font-weight: bold;
    border: 1px solid #e6e6e6;
    border-radius: 0 !important;
}
/*==================== PANEL ====================*/
.panel {
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 1px solid transparent;
    /* border-radius: 4px; */
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
    padding: 15px;
    line-height: 25px;
}
.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    /* border-top-left-radius: 3px;
    border-top-right-radius: 3px; */
}
.panel-heading>.dropdown .dropdown-toggle {
    color: inherit;
}
.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
    align-items: center;
}
.panel-title>a,
.panel-title>small,
.panel-title>.small,
.panel-title>small>a,
.panel-title>.small>a {
    color: inherit;
}
.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #dddddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
.panel>.list-group,
.panel>.panel-collapse>.list-group {
    margin-bottom: 0;
}
.panel>.list-group .list-group-item,
.panel>.panel-collapse>.list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0;
}
.panel>.list-group:first-child .list-group-item:first-child,
.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.panel>.list-group:last-child .list-group-item:last-child,
.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.panel-heading+.list-group .list-group-item:first-child {
    border-top-width: 0;
}
.list-group+.panel-footer {
    border-top-width: 0;
}
.panel>.table,
.panel>.table-responsive>.table,
.panel>.panel-collapse>.table {
    margin-bottom: 0;
}
.panel>.table caption,
.panel>.table-responsive>.table caption,
.panel>.panel-collapse>.table caption {
    padding-right: 15px;
    padding-left: 15px;
}
.panel>.table:first-child,
.panel>.table-responsive:first-child>.table:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.panel>.table:first-child>thead:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child {
    border-top-left-radius: 3px;
}
.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child {
    border-top-right-radius: 3px;
}
.panel>.table:last-child,
.panel>.table-responsive:last-child>.table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
.panel>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
    border-bottom-left-radius: 3px;
}
.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
    border-bottom-right-radius: 3px;
}
.panel>.panel-body+.table,
.panel>.panel-body+.table-responsive,
.panel>.table+.panel-body,
.panel>.table-responsive+.panel-body {
    border-top: 1px solid #dddddd;
}
.panel>.table>tbody:first-child>tr:first-child th,
.panel>.table>tbody:first-child>tr:first-child td {
    border-top: 0;
}
.panel>.table-bordered,
.panel>.table-responsive>.table-bordered {
    border: 0;
}
.panel>.table-bordered>thead>tr>th:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,
.panel>.table-bordered>tbody>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
.panel>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-bordered>thead>tr>td:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
.panel>.table-bordered>tbody>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
.panel>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child {
    border-left: 0;
}
.panel>.table-bordered>thead>tr>th:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,
.panel>.table-bordered>tbody>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
.panel>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-bordered>thead>tr>td:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
.panel>.table-bordered>tbody>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
.panel>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child {
    border-right: 0;
}
.panel>.table-bordered>thead>tr:first-child>td,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,
.panel>.table-bordered>tbody>tr:first-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,
.panel>.table-bordered>thead>tr:first-child>th,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,
.panel>.table-bordered>tbody>tr:first-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th {
    border-bottom: 0;
}
.panel>.table-bordered>tbody>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
.panel>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-bordered>tbody>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
.panel>.table-bordered>tfoot>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
    border-bottom: 0;
}
.panel>.table-responsive {
    margin-bottom: 0;
    border: 0;
}
.panel-group {
    margin-bottom: 20px;
}
.panel-group .panel {
    margin-bottom: 0;
    /* border-radius: 4px; */
}
.panel-group .panel+.panel {
    margin-top: 15px;
}
.panel-group .panel-heading {
    border-bottom: 0;
}
.panel-group .panel-heading+.panel-collapse>.panel-body,
.panel-group .panel-heading+.panel-collapse>.list-group {
    border-top: 1px solid #dddddd;
}
.panel-group .panel-footer {
    border-top: 0;
}
.panel-group .panel-footer+.panel-collapse .panel-body {
    border-bottom: 1px solid #dddddd;
}
.panel-default {
    border-color: #dddddd;
}
.panel-default>.panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #dddddd;
}
.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #dddddd;
}
.panel-default>.panel-heading .badge {
    color: #f5f5f5;
    background-color: #333333;
}
.panel-default>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #dddddd;
}
.panel-primary {
    border-color: #337ab7;
}
.panel-primary>.panel-heading {
    color: #ffffff;
    background-color: #337ab7;
    border-color: #337ab7;
}
.panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #337ab7;
}
.panel-primary>.panel-heading .badge {
    color: #337ab7;
    background-color: #ffffff;
}
.panel-primary>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #337ab7;
}
.panel-success {
    border-color: #d6e9c6;
}
.panel-success>.panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.panel-success>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #d6e9c6;
}
.panel-success>.panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d;
}
.panel-success>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #d6e9c6;
}
.panel-info {
    border-color: #bce8f1;
}
.panel-info>.panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.panel-info>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #bce8f1;
}
.panel-info>.panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f;
}
.panel-info>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #bce8f1;
}
.panel-warning {
    border-color: #faebcc;
}
.panel-warning>.panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.panel-warning>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #faebcc;
}
.panel-warning>.panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b;
}
.panel-warning>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #faebcc;
}
.panel-danger {
    border-color: #ebccd1;
}
.panel-danger>.panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.panel-danger>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ebccd1;
}
.panel-danger>.panel-heading .badge {
    color: #f2dede;
    background-color: #a94442;
}
.panel-danger>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ebccd1;
}
.clearfix:after,
.panel-body:after {
    clear: both;
}
.panel-title>a,
.panel-title>a:active {
    display: block;
    padding: 15px;
    color: #555;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}
.panel-heading a:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f107";
    float: right;
    transition: all 0.5s;
}
.panel-heading.active a:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}
/* panel-dark */
.panel-dark {
    border-color: #2e2e2e;
}
.panel-dark>.panel-heading {
    color: #ffffff;
    background-color: #2e2e2e;
    border-color: #2e2e2e;
}
.panel-dark>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #2e2e2e;
}
.panel-dark>.panel-heading .badge {
    color: #2e2e2e;
    background-color: #ffffff;
}
.panel-dark>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #2e2e2e;
}
/* panel-blue */
.panel-blue {
    border-color: #7292be;
}
.panel-blue>.panel-heading {
    color: #ffffff;
    background-color: #7292be;
    border-color: #7292be;
}
.panel-blue>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #7292be;
}
.panel-blue>.panel-heading .badge {
    color: #7292be;
    background-color: #ffffff;
}
.panel-blue>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #7292be;
}
.ticket-info {
    margin-top: 10px;
}
.ticket-info label {
    display: block;
    padding: 5px;
    font-weight: normal;
    background: #f5f5f5;
}
.text-bold {
    font-weight: bold;
}
#accordionFaqs,
#accordionTicket {
    width: 100%;
}
#accordionFaqs .accordion-item:not(:first-of-type) {
    border-top: 1px solid #dee2e6 !important;
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
}
#accordionFaqs .accordion-item {
    margin-bottom: 5px;
}
#accordionFaqs .faq-category-name,
#accordionTicket .ticket-category-name {
    color: var(--brand-color);
    margin-left: 17px;
    margin-bottom: 5px;
    text-transform: uppercase;
    padding: 0;
}
footer {
    background-color: #000;
    color: white;
    height: 73px;
}
footer ul {
    gap: 33px;
}
footer li a {
    font-size: 14px;
    color: white !important;
}
footer .container {
    height: 100%;
    padding: 0px 30px;
    justify-content: space-between;
}
footer .logo {
    height: 50px;
    display: flex;
    align-items: center;
}
/*
 * breadcrumbs
 * ---------
 */
.content-header {
    height: 113px;
}
.content-header .step:first-child:after {
    border-radius: 10px 0 0 10px;
}
.content-header .step::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 113px;
    background: url(../image/games/hov.png);
    background-position: 50%;
    background-size: cover;
    filter: grayscale(100%);
    z-index: 0;
}
.content-header .step:first-child,
.content-header .step:only-child {
    clip-path: polygon(0 0,
            calc(100% - 30px) 0,
            100% 50%,
            calc(100% - 30px) 100%,
            0 100%);
    padding-left: 14px;
    border-radius: 10px 0 0 10px;
}
.content-header .step:only-child {
    width: 33%;
}
.content-header .step {
    height: 100%;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0% 100%, 30px 50%);
    width: 15em;
    padding-left: 65px;
    flex: 1;
    gap: 10px;
}
.content-header .step a {
    color: #007fd0;
    position: relative;
}
.content-header .step a::after {
    content: "\A";
    width: 13px;
    height: 13px;
    background: url(../image/icon-link.png) no-repeat;
    background-size: 100%;
    display: inline-block;
    margin-left: 6px;
    margin-top: 5px;
    position: absolute;
}
.content-header .home img {
    height: 90px;
    width: 90px;
}
.content-header .info-group {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    color: #595959;
}
.content-header .info-group .game-name {
    font-weight: bold;
    font-size: 22px;
}
.content-header .request .info-group span {
    font-size: 17px;
}
.content-header .guide span {
    font-size: 15px;
}
.content-header a {
    font-size: 15px;
}
/*==================== HOMEPAGE ====================*/
.wrapper-homepage {
    row-gap: 15px;
}
.wrapper-homepage .title {
    position: relative;
    width: 100%;
}
.wrapper-homepage .title img {
    aspect-ratio: 1626 / 343;
}
.wrapper-homepage .title .bg-shadow {
    background-color: rgba(0, 0, 0, 0.3);
}
.wrapper-homepage .title h1 {
    text-align: center;
    font-weight: 700;
    color: red;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    font-size: 30px;
    z-index: 2;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
#carouselTitle,
.wrapper-homepage .carousel-inner,
.wrapper-homepage .carousel-inner * {
    height: 100%;
}
.wrapper-homepage .carousel-inner .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
    /* Để không ảnh hưởng đến tương tác */
}
.wrapper-homepage .title .carousel-indicators {
    margin-bottom: 0;
    height: 26px;
}
.wrapper-homepage .title .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 2px;
    background-color: #fff;
    opacity: 1;
}
.wrapper-homepage .title .carousel-indicators button.active {
    border-radius: 15%/50%;
    width: 40px;
    background-color: red;
}
.wrapper-homepage .products h1 {
    font-size: 28px;
    padding-left: 17px;
    position: relative;
}
.wrapper-homepage .products h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background-color: red;
}
.wrapper-homepage .products .game-list {
    flex-wrap: wrap;
    margin-top: 20px;
    padding-left: 0;
    gap: 25px;
}
.wrapper-homepage .products .game-item {
    width: 304px;
    height: 92px;
    cursor: pointer;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    list-style: none;
}
.wrapper-homepage .products .game-item a {
    position: relative;
    padding: 0 0 0 12px;
    z-index: 2;
}
.wrapper-homepage .products .game-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 0;
    height: 0;
    background: linear-gradient(159.68deg, rgba(255, 230, 161, 0.7), rgba(253, 208, 101, 0.7));
    transform: translate(-50%, -50%);
    transition: all 0.75s ease-in-out;
    z-index: 0;
    opacity: 0.5;
}
.wrapper-homepage .products .game-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 6em;
    background: url('../image/games/hov.png');
    background-position: 50%;
    background-size: cover;
    filter: grayscale(100%);
    z-index: 0;
}
.wrapper-homepage .products .game-item:hover::before {
    width: 300%;
    height: 300%;
    animation: spread 0.6s ease-in-out forwards;
}
.wrapper-homepage .products .game-item img,
.wrapper-homepage .products .game-item h2 {
    position: relative;
    z-index: 1;
}
@keyframes spread {
    0% {
        width: 0;
        height: 0;
        border-radius: 50%;
    }
    100% {
        width: 300%;
        height: 300%;
        border-radius: 10%;
    }
}
.wrapper-homepage .products .game-item img {
    height: 72px;
    width: 72px;
}
.wrapper-homepage .products .game-item h2 {
    font-size: 16px;
    margin-bottom: 0;
    margin-left: 1em;
    color: black;
    font-weight: 600;
}
.btn-list {
    gap: 40px;
    margin-top: 40px;
}
.btn-list li {
    width: 356px;
    height: 138px;
    background-color: var(--brand-color);
    border-radius: 10px;
}
.btn-list li.active,
.btn-list li:hover {
    background-color: #e5b160;
}
.btn-list li a {
    font-size: 24px;
    color: #fff;
    width: 100%;
    height: 100%;
}
.main-navbar-wrapper {
    padding-left: unset;
    padding-right: unset;
}
.main-navbar-wrapper a {
    font-size: 15px;
}
.main-navbar-wrapper .navbar {
    height: 35px;
}
.main-navbar-wrapper .navbar .nav-item {
    padding-right: 1.5rem;
}
/*==================== FAQ ====================*/
.wrapper-faq .faq-category-name,
.wrapper-ticket .ticket-category-name {
    cursor: pointer;
}
.wrapper-faq .faq-category-name strong,
.wrapper-ticket .ticket-category-name strong {
    position: relative;
    padding: 0 0 0 15px;
    font-size: 20px;
    text-transform: uppercase;
    background-color: #fff;
    box-shadow: unset;
}
.wrapper-faq .faq-category-name strong::before,
.wrapper-ticket .ticket-category-name strong::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background-color: red;
}
.wrapper-faq .faq-list,
.wrapper-ticket .ticket-list {
    padding-left: 40px;
}
.wrapper-faq .faq-item,
.wrapper-ticket .ticket-item {
    list-style: disc;
    cursor: pointer;
    font-size: 20px;
}
.wrapper-faq .faq-item:hover,
.wrapper-faq .faq-item.active,
.wrapper-ticket .ticket-item:hover a,
.wrapper-ticket .ticket-item.active a {
    color: red;
}
.wrapper-faq .content,
.wrapper-ticket .content {
    padding-left: 20px;
    font-size: 20px;
}
.wrapper-faq .content p {
    font-size: 20px;
}
.question-circle-fill {
    background: url(../image/icon-question.png) no-repeat;
    background-size: 100%;
    display: block;
    width: 43px;
    height: 43px;
}
.create-ticket-icon {
    background: url(../image/icon-create-ticket.png) no-repeat;
    background-size: 100%;
    display: block;
    width: 47px;
    height: 47px;
}
.select-ticket-icon {
    background: url(../image/icon-list.png) no-repeat;
    background-size: 100% 100%;
    display: block;
    width: 42px;
    height: 52px;
}
.btn-search {
    background: url(../image/btn-search.png) no-repeat;
    background-size: 100%;
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
}
/*==================== TICKET ====================*/
.wrapper-ticket-show .form-select {
    background-color: #b1b1b1;
    color: #fff;
}
.wrapper-ticket-show .form-control {
    background-color: #d4d4d4;
    color: #686868;
}
.wrapper-ticket-show .form-control:focus {
    background-color: #d4d4d4;
    color: #686868;
}
.wrapper-ticket-show textarea {
    background-color: #e8e8e8 !important;
    border: none;
}
.wrapper-ticket-show textarea:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wrapper-ticket-show .panel-default>.panel-heading {
    background-color: #b1b1b1;
    padding: unset;
}
.wrapper-ticket-show .panel-warning .panel-body {
    background-color: transparent;
}
.main-container.wrapper-ticket-show-detail {
    background: #fff;
    min-height: 84vh;
}
.main-container.wrapper-ticket-show-detail .panel-body {
    background-color: #e8e8e8;
    word-wrap: break-word;
}
.main-container.wrapper-ticket-show-detail .panel-body img {
    width: unset !important;
    max-height: 200px;
    cursor: pointer;
}
.main-container.wrapper-ticket-show-detail .form-reply {
    margin: 20px 0;
}
.main-container.wrapper-ticket-show-detail .panel-admin-reply {
    margin: 15px 0;
}
.wrapper-ticket-list h1.title {
    margin-top: 10px;
    font-size: 22px;
    color: #666;
    font-weight: 600;
}
.wrapper-ticket-list .btn-group-search {
    height: 40px;
}
.wrapper-ticket-list .btn-group-search input {
    border: 1px solid #b0b0b0;
    border-radius: 5px;
    padding-left: 50px;
    color: #b0b0b0;
}
.wrapper-ticket-list .btn-group-search input::placeholder {
    color: #b0b0b0 !important;
}
.wrapper-ticket-list .btn-group-search input::-ms-input-placeholder {
    color: #b0b0b0 !important;
}
.wrapper-ticket-list .btn-group-search button {
    background-color: #b0b0b0;
    border: 1px solid #b0b0b0;
    border-right: none;
    left: 0;
    width: 40px;
    border-radius: 5px 0 0 5px;
}
.wrapper-ticket-list table {
    margin-top: 26px;
    border: 1px solid black;
    border-collapse: collapse;
}
.wrapper-ticket-list table td,
.wrapper-ticket-list table th {
    border: 1px solid black;
}
.btn-group-search {
    width: 45%;
}
.search-box {
    margin-bottom: 20px;
}
.wrapper-ticket-category {
    font-size: 16px;
    margin-top: 20px;
}
.ticket-category a {
    font-size: 22px;
    color: #369;
}
.clone-form-input {
    margin-bottom: 16px;
}
.clone-form-input:last-child {
    margin-bottom: none !important;
}
/*==================== CREATE TICKET ====================*/
.ticket-category-title {
    font-weight: 400;
    color: #007fd0;
    border-bottom: 1px solid #007fd0;
    padding-bottom: 10px;
}
.create-ticket .content .title {
    margin-bottom: 10px;
}
.create-ticket .content h1 {
    font-size: 24px;
    text-align: center;
    color: #999;
}
.create-ticket .content .input-group {
    margin-bottom: 10px;
    width: 100%;
}
.create-ticket .content .input-group span.select2 {
    width: 100% !important;
}
.create-ticket .content .input-group textarea,
.create-ticket .content .input-group textarea {
    width: 100%;
    border-radius: 9px !important;
    background: #f5f5f5;
    border: 1px solid #8b8b8b;
}
.create-ticket .content .input-group label {
    color: #000;
    font-weight: 600;
}
.create-ticket .content .input-group .info span {
    color: red;
    margin-left: 5px;
}
.create-ticket .content .input-group input {
    border: 1px solid #8b8b8b;
    border-radius: 9px !important;
    height: 38px;
    padding-left: 10px;
    width: 100%;
}
.create-ticket .content .input-group input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border-radius: 3px !important;
}
.create-ticket .content .wrap-submit {
    margin-top: 25px;
}
.create-ticket .content .input-group .select2-selection {
    height: 38px;
    border-radius: 9px;
    background: #f5f5f5;
}
.create-ticket .content .input-group .select2-selection .select2-selection__rendered {
    line-height: 38px;
}
.create-ticket .content .input-group .select2-selection .select2-selection__arrow {
    height: 38px;
    top: 0px;
}
.create-ticket .wrap-input .wrapper-radio input {
    width: 15px;
    height: 15px;
    border-radius: 50% !important;
}
.create-ticket .wrap-input .wrapper-allow-rules a {
    color: #007fd0;
}
.create-ticket .wrap-input .wrapper-allow-rules {
    align-items: center;
    gap: 10px;
}
.create-ticket .wrap-input .wrapper-allow-rules input {
    width: 15px;
    height: 15px;
}
#attachments {
    padding-top: 4px;
}
.btn-cs {
    color: #000;
    font-weight: 400;
    border: none;
    border-radius: 5px;
    padding: 12px 15px;
}
.btn-primary-cs {
    background-color: #6699ff;
}
.form-content-default .btn-add-input-attachment {
}
.page-not-found {
    height: 84vh;
}
#notificationModal .modal-content {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}
#notificationModal .model-notice {
    width: 800px;
    max-width: unset;
}
#notificationModal .model-notice .modal-content {
    height: 533px;
}

#notificationModal .model-notice .modal-content img {
    max-height: 500px;
}

#rating {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#rating-2 {
    gap: 20px;
}

#rating .wrap-content {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 5px;
}

#rating h3 {
    margin-bottom: 30px;
    font-size: 20px;
    text-align: center;
}

.stars-container {
    gap: 20px;
}

.stars-container .emoji-item {
    width: 70px;
    height: 70px;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-bottom: 12px;
}

.stars-container .emoji-wrap p {
    width: 106px;
}

#rating-2 .emoji-item {
    width: 50px;
    height: 50px;
    filter: grayscale(70%);
}

#rating-2 .emoji-item.selected {
    filter: grayscale(0);
    transform: scale(1.2);
}

.stars-container .emoji-item:hover,
.stars-container .emoji-item.selected {
    transform: scale(1.2);
}
.image-preview-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.image-preview-overlay img {
    background: #fff;
    cursor: pointer;
}
