.SiginScreen {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
}

.PopupItem.SigninPopup {
    background: rgba(23, 29, 38, 0.733);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 700px;
    height: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
}

.PopupItem.SigninPopup .loginTitle {
    position: absolute;
    left: 35px;
    top: 35px;
    width: 270px;
    display: block;
}

.PopupItem.SigninPopup .loginTitle .largeText {
    font-size: 40px;
}

.PopupItem.SigninPopup .loginTitle .largeText,
.PopupItem.SigninPopup .loginTitle .smallText {
    font-weight: 600;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 0 #fff, 0 0 10px #2371ff, 0 0 30px #2371ff;
}

.PopupItem.SigninPopup .loginTitle .smallText {
    font-size: 20px;
}

.PopupItem.SigninPopup .contents {
    display: block;
    position: absolute;
    left: 35px;
    bottom: 35px;
}

.PopupItem.SigninPopup .contents .inputbox {
    display: block;
    position: relative;
    width: 270px;
    height: 40px;
    background: #11151c;
    border: 1px solid #a2906b;
}

.PopupItem.SigninPopup .contents .inputbox input {
    color: #a2906b;
    text-align: center;
    font-size: 14px;
}

.PopupItem.SigninPopup .contents .inputbox input:focus {
    color: #ffdd9d;
}

.PopupItem.SigninPopup .contents .inputbox:hover {
    border: 1px solid #ffdd9d;
}

.PopupItem.SigninPopup .contents .button {
    display: flex;
    position: relative;
    width: 270px;
    height: 40px;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    background: #1b222c;
    border: 1px solid #0b0e18;
    color: #828282;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s;
}

.PopupItem.SigninPopup .contents .button:hover {
    color: #fff;
    border: 3px solid #16bdf9;
    background: #1c7293;
    transition: all 0.1s;
}

.PopupItem.SigninPopup .VisualEntity {
    position: absolute;
    right: -80px;
    top: -80px;
}

.PopupItem.SigninPopup .VisualEntity img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.533);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    animation: animate_fade_in_screen_guard 0.25s forwards;
}

.modal-backdrop.closing {
    animation: animate_fade_out_screen_guard 0.25s forwards;
}

.modal-content {
    animation: animate_slide_in 0.25s forwards;
}

.modal-content.closing {
    animation: animate_slide_out 0.25s forwards;
}

@keyframes animate_fade_in_screen_guard {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes animate_fade_out_screen_guard {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes animate_slide_in {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes animate_slide_out {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.Tag.screen-wrap {
    position: relative;
}
.Tag.screen-wrap .datagrid-table {
    position: relative;
    z-index: 99;
}
.Tag.screen-wrap .screen {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    color: transparent;
    z-index: 100;
}
.Tag.Title {
    display: block;
    margin: 0;
    height: 86px;
    position: relative;
}
.Tag.Title .decoLine {
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 5px;
    background: #442eaa;
}
.Tag.Title .largeText {
    position: absolute;
    left: 25px;
    top: 12px;
    line-height: 36px;
    height: 36px;
    font-size: 26px;
    font-weight: 600;
}
.Tag.Title .smallText {
    position: absolute;
    left: 25px;
    bottom: 12px;
    line-height: 30px;
    height: 30px;
    font-size: 14px;
    font-weight: 400;
}
.Tag.Title .smallText span.highlight {
    color: #442eaa;
    font-weight: 600;
}
.Tag.Tab {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.Tag.Tab .Tag.TabMenu {
    display: flex;
    padding-left: 1px;
    border-bottom: 1px solid #ccc;
}
.Tag.Tab .Tag.TabMenu .Tag.TabMenuItem {
    display: block;
    height: 34px;
    border: 1px solid #ccc;
    margin-left: -1px;
    margin-bottom: -1px;
    width: 140px;
    line-height: 34px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    background: #fafafa;
    cursor: pointer;
}
.Tag.Tab .Tag.TabMenu .Tag.TabMenuItem.active {
    margin-top: -3px;
    height: 37px;
    line-height: 37px;
    color: #442eaa;
    border-bottom: 1px solid #fff;
    background: #fff;
}
.Tag.Tab .Tag.TabView {
    display: block;
    position: relative;
    min-height: 100px;
}
.Tag.SubTab {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.Tag.SubTab .Tag.TabMenu {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(#fff, #fafafa);
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 5px 5px 0;
}
.Tag.SubTab .Tag.TabMenu .Tag.TabMenuItem {
    display: block;
    height: 28px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 4px;
    line-height: 26px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 5px;
    background: #fafafa;
    border: 1px solid #ddd;
    cursor: pointer;
}
.Tag.SubTab .Tag.TabMenu .Tag.TabMenuItem.active {
    color: #442eaa;
    background: #fff;
    border: 1px solid #442eaa;
}
.Tag.SubTab .Tag.TabView {
    display: block;
    position: relative;
    min-height: 100px;
}
.Tag.EntityDataGrid {
    display: flex;
    flex-direction: column;
    background: rgba(27, 34, 44, 0.333);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.Tag.EntityDataGrid .datagrid-table {
    background-color: #1b222c;
    height: 100% !important;
}
.Tag.EntityDataGrid .datagrid-table .empty-message {
    display: block;
    text-align: center;
    margin: 40px 0;
    font-size: 18px;
    color: #fff;
}
.Tag.EntityDataGrid
    .datagrid-table
    .dx-gridbase-container
    .dx-datagrid-rowsview {
    height: 100% !important;
    background-color: #1b222c !important;
}
.Tag.EntityDataGrid .datagrid-table .dx-gridbase-container .dx-empty {
    min-height: 0 !important;
}
.Tag.EntityDataGrid .dx-datagrid-table tr .dx-state-invisible {
    opacity: 0;
    padding-top: 100px !important;
}
.Tag.EntityDataGrid .dx-datagrid-headers.dx-datagrid-nowrap {
    top: -1px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.133);
    z-index: 90 !important;
}
.Tag.EntityDataGrid.sticky-header .dx-datagrid-headers.dx-datagrid-nowrap {
    position: sticky;
}
.Tag.EntityDataGrid .hide-checkbox table colgroup col:first-child {
    width: 0 !important;
}
.Tag.Select {
    display: flex;
    flex-wrap: wrap;
    margin-left: 10px;
    margin-right: 10px;
    padding: 5px 5px 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.Tag.Select .Tag.SelectItem {
    display: block;
    height: 28px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 4px;
    line-height: 26px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 5px;
    background: #fafafa;
    border: 1px solid #ddd;
    cursor: pointer;
}
.Tag.Select .Tag.SelectItem.active {
    color: #442eaa;
    background: #fff;
    border: 1px solid #442eaa;
}
.Tag.Button {
    display: block;
    width: 100%;
    height: 27px;
    line-height: 27px;
    text-align: center;
    border-radius: 4px;
    background: #2a3746;
    color: #fff;
    margin-left: 5px;
    cursor: pointer;
}
.Tag.Button:first-child {
    margin-left: 0;
}
.Tag.Button.Black {
    background: #666;
}
.Tag.Button.Red {
    background: #dc3545;
}
.Tag.Button.Green {
    background: #3ca745;
}
.Tag.ButtonGroup {
    display: flex;
}
.Tag.ButtonGroup .Tag.Button.w-100 {
    width: 100px;
    flex-grow: 0;
}
.Tag.ButtonGroup .Tag.Button.w-150 {
    width: 150px;
    flex-grow: 0;
}
.Tag.ButtonGroup .Tag.Button.w-200 {
    width: 200px;
    flex-grow: 0;
}
.dx-datagrid-table .Tag.ButtonGroup {
    margin: -4px -2px;
}
.Tag.Input,
.Tag.Input input {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
.Tag.Input input {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
    background: transparent;
    outline: none;
}
.Tag.Textarea {
    display: flex;
    position: relative;
    width: 100%;
}
.Tag.Textarea textarea {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
    background: transparent;
}
.Tag.PermissionCheckbox {
    display: flex;
    font-size: 12px;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 5px;
    padding-bottom: 5px;
}
.Tag.PermissionCheckbox .PermissionItem {
    display: flex;
    padding-right: 10px;
}
.Tag.PermissionCheckbox .PermissionItem label {
    font-size: 12px;
    padding-left: 20px;
    padding-right: 5px;
    white-space: nowrap;
}
.Tag.PermissionCheckbox .PermissionItem label:first-child {
    padding-left: 10px;
}
.Tag.PermissionCheckbox .PermissionItem input {
    display: block;
}
.Tag.SupportChat {
    display: block;
    width: 100%;
    overflow: hidden;
}
.Tag.SupportChat .Receivers {
    height: 50px;
    background: #fafafa;
    border-bottom: 1px solid #efefef;
    font-size: 12px;
    line-height: 50px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: scroll;
}
.Tag.SupportChat .Receivers::-webkit-scrollbar {
    display: none;
}
.Tag.SupportChat .Templates {
    height: 50px;
    background: #fafafa;
    border-bottom: 1px solid #efefef;
    position: relative;
}
.Tag.SupportChat .Templates select {
    display: block;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 5px;
    top: 5px;
    font-size: 13px;
    resize: none;
    outline: none;
    background: transparent;
}
.Tag.SupportChat .Editor {
    height: 450px;
}
.Tag.SupportChat .Editor .SubjectBox {
    height: 40px;
    margin: 10px 10px -1px;
    border: 1px solid #efefef;
    position: relative;
}
.Tag.SupportChat .Editor .SubjectBox input {
    display: block;
    position: absolute;
    left: 10px;
    right: 210px;
    bottom: 10px;
    top: 10px;
    font-size: 13px;
    resize: none;
    outline: none;
    background: transparent;
}
.Tag.SupportChat .Editor .SubjectBox .BtnBox {
    display: flex;
    position: absolute;
    right: 4px;
    top: 4px;
    width: 200px;
}
.Tag.SupportChat .Editor .SubjectBox .BtnSaveTemplate {
    width: 100%;
    flex-grow: 1;
    height: 30px;
    margin-right: 4px;
    display: flex;
    line-height: 30px;
    align-content: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    background: #2a3746;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 3px;
}
.Tag.SupportChat .Editor .SubjectBox .BtnSaveTemplate:hover {
    background: #442eaa;
    transition: all 0.3s;
}
.Tag.SupportChat .Editor .SubjectBox .BtnRemoveTemplate {
    width: 100%;
    flex-grow: 1;
    height: 30px;
    display: flex;
    line-height: 30px;
    align-content: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    background: #2a3746;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 3px;
}
.Tag.SupportChat .Editor .SubjectBox .BtnRemoveTemplate:hover {
    background: #442eaa;
    transition: all 0.3s;
}
.Tag.SupportChat .Editor .ContentBox {
    height: 328px;
    margin: 0 10px 10px;
    border: 1px solid #efefef;
    position: relative;
}
.Tag.SupportChat .Editor .ContentBox textarea {
    display: block;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    top: 10px;
    font-size: 13px;
    resize: none;
    outline: none;
    background: transparent;
}
.Tag.SupportChat .Editor .BtnSend {
    height: 50px;
    display: flex;
    line-height: 50px;
    align-content: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    background: #2a3746;
    cursor: pointer;
    transition: all 0.3s;
}
.Tag.SupportChat .Editor .BtnSend:hover {
    background: #442eaa;
    transition: all 0.3s;
}
.Tag.PopupCloseButton {
    display: block;
    position: absolute;
    z-index: 10;
}
.Tag.PopupCloseButton .Close-Btn-Icon {
    width: 25px;
    height: 25px;
    cursor: pointer;
    filter: grayscale(1) brightness(2);
    transition: all 0.2s;
}
.Tag.PopupCloseButton .Close-Btn-Icon:hover {
    filter: grayscale(0);
    transition: all 0.2s;
}
.Tag.PageNation {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.333);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.Tag.PageNation button {
    background-color: #17191e;
    cursor: pointer;
    border: 1px solid hsla(0, 0%, 100%, 0.133);
    outline: none;
}
.Tag.PageNation button.disabled {
    background-color: red;
}
.Tag.PageNation button:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border-color: #8600f7;
    color: #fff;
    z-index: 10;
    transition: all 0.2s;
}
.Tag.PageNation button:active {
    background-color: #640ea9;
}
.Tag.PageNation .page-number-group {
    position: relative !important;
    height: 100%;
    display: flex;
    margin: 0 10px;
}
.Tag.PageNation .page-number-group button {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    line-height: 0 !important;
    background-color: #17191e;
    width: 40px;
    height: 40px;
    border: 1px solid hsla(0, 0%, 100%, 0.133);
    color: #fff;
    box-shadow: none;
    cursor: pointer;
    outline: none;
    border-radius: 0.5rem;
}
.Tag.PageNation .page-number-group button:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border-color: #8600f7;
    color: #fff;
    z-index: 10;
    transition: all 0.2s;
}
.Tag.PageNation .page-number-group button:active {
    background-color: #640ea9;
}
.Tag.PageNation .active {
    background-color: #8600f7 !important;
}
.Tag.ScreenGuard {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    background: rgba(0, 0, 0, 0.533);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    animation: animate_fade_in_screen_guard 0.25s;
}
@keyframes animate_fade_in_screen_guard {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.PopupItem.AlertPopup {
    background: rgba(15, 19, 26, 0.824);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 400px;
    height: 55px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #1c2025;
    border-radius: 5px;
    overflow: hidden;
    left: 50vw;
    top: 140px;
    transform: translate(-50%);
}
.PopupItem.AlertPopup .title {
    display: none;
}
.PopupItem.AlertPopup.SUCCESS {
    border: 1px solid #031f29;
}
.PopupItem.AlertPopup.SUCCESS .message {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #16bdf9;
}
.PopupItem.AlertPopup.SUCCESS .timebar {
    height: 5px;
    display: flex;
    width: 100%;
    background: #053344;
}
.PopupItem.AlertPopup.SUCCESS .timebar .innerbar {
    height: 5px;
    width: 0;
    background: #16bdf9;
}
.PopupItem.AlertPopup.ERROR {
    border: 1px solid #040738;
}
.PopupItem.AlertPopup.ERROR .message {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #607dff;
}
.PopupItem.AlertPopup.ERROR .timebar {
    height: 5px;
    display: flex;
    width: 100%;
    background: #040738;
}
.PopupItem.AlertPopup.ERROR .timebar .innerbar {
    height: 5px;
    width: 0;
    background: #607dff;
}
.PopupItem.CasinoGameRulesPopup {
    display: flex;
    flex-direction: column;
    background: rgba(15, 19, 26, 0.824);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 930px;
    max-height: calc(100vh - 300px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #1c2025;
    border-radius: 5px;
    left: 50vw;
    top: 170px;
    transform: translate(-50%);
    color: #fff;
}
.PopupItem.CasinoGameRulesPopup .popup-header {
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    background-color: #1b222c;
    padding: 20px 15px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.PopupItem.CasinoGameRulesPopup .popup-header .title {
    font-size: 20px;
    font-weight: 800;
}
.PopupItem.CasinoGameRulesPopup .popup-header .title span {
    color: #c37cff;
}
.PopupItem.CasinoGameRulesPopup .popup-header .close-btn {
    cursor: pointer;
}
.PopupItem.CasinoGameRulesPopup .nav {
    display: flex;
    flex-shrink: 0;
    background-color: #1b222c;
}
.PopupItem.CasinoGameRulesPopup .nav .nav-item {
    flex: 1;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    margin: 0;
    border: 2px solid #212c3b;
    cursor: pointer;
    transition: all 0.25s;
}
.PopupItem.CasinoGameRulesPopup .nav .nav-item:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border: 2px solid #8600f7;
    transition: all 0.25s;
}
.PopupItem.CasinoGameRulesPopup .rule {
    display: block;
    overflow-y: scroll;
    width: 100%;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.PopupItem.CasinoGameRulesPopup .rule .game-rules .game-rule-box {
    padding: 25px;
    background-size: cover;
}
.PopupItem.CasinoGameRulesPopup
    .rule
    .game-rules
    .game-rule-box
    .game-rule-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #f4d29a;
}
.PopupItem.CasinoGameRulesPopup
    .rule
    .game-rules
    .game-rule-box
    .game-rule-header
    span {
    font-size: 14px;
}
.PopupItem.CasinoGameRulesPopup .rule .game-rules .game-rule-box h6 {
    margin-left: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.PopupItem.CasinoGameRulesPopup .rule .game-rules .game-rule-box .subtext {
    margin-left: 35px;
    font-weight: 300;
}
.PopupItem.CasinoGameRulesPopup .rule .game-rules .slot-machine {
    background-image: url(https://file.onetopdev.com/img/frontend/casino/rule/casino_rule_01.png);
}
.PopupItem.CasinoGameRulesPopup .rule .game-rules .roullete {
    background-image: url(https://file.onetopdev.com/img/frontend/casino/rule/casino_rule_02.png);
}
.PopupItem.CasinoGameRulesPopup .rule .game-rules .blackjack {
    background-image: url(https://file.onetopdev.com/img/frontend/casino/rule/casino_rule_03.png);
}
.PopupItem.CasinoGameRulesPopup .rule .game-rules .baccarat {
    background-image: url(https://file.onetopdev.com/img/frontend/casino/rule/casino_rule_04.png);
}
.PopupItem.CasinoGameRulesPopup .rule::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.CasinoGameRulesPopup .rule::-webkit-scrollbar-track {
    background: #000 !important;
    border-radius: 3px !important;
}
.PopupItem.CasinoGameRulesPopup .rule::-webkit-scrollbar-thumb {
    background: #8600f7;
    border-radius: 3px;
}
.PopupItem.CasinoGameRulesPopup .close-btn {
    display: block;
    position: absolute;
    right: 22px;
    top: 22px;
}
.PopupItem.CasinoGameRulesPopup .close-btn div {
    font-size: 10px;
    display: flex;
    justify-content: flex-end;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    border: 2px solid #657182;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: #050505;
    color: #657182;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s;
}
.PopupItem.CasinoGameRulesPopup .close-btn div:hover {
    color: #ffb600;
    border-color: #fff;
    transition: all 0.3s;
}
.PopupBlockerNotif {
    display: block;
    position: absolute;
    top: -15px;
    right: 15px;
    z-index: -999;
    padding: 3px;
    border: 1px solid #4b4b4b;
    border-radius: 12px;
    background-color: #222;
    color: #fff;
}
.PopupBlockerNotif .popup-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #4b4b4b;
    padding: 10px 25px;
    border-radius: 8px;
}
.PopupBlockerNotif .popup-content .message {
    display: flex;
}
.PopupBlockerNotif .popup-content .warning {
    font-size: 14px;
    font-weight: 500;
    color: #6d747b;
}
.PopupBlockerNotif .popup-content .warning .new-window-text {
    color: #ff8e00;
}
.PopupBlockerNotif .popup-content .warning .new-window-icon {
    margin-left: 8px;
}
.PopupBlockerNotif .popup-content .warning .description {
    font-size: 10px;
    font-weight: 400;
}
.PopupBlockerNotif .close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    background-color: #222;
    border-radius: 50%;
    cursor: pointer;
}
.PopupItem.SlotGameListPopup {
    background: #0b0e18;
    display: flex;
    flex-direction: column;
    min-width: 1200px;
    max-width: 1400px;
    width: 100%;
    height: calc(80vh - 10px);
    box-shadow: 0 0 50px #000;
    border: 1px solid #1c2025;
    border-radius: 5px;
    left: 50vw;
    top: 100px;
    transform: translate(-50%);
    color: #fff;
    position: relative;
}
.PopupItem.SlotGameListPopup .popup-header {
    display: flex;
    flex-direction: column;
    margin-top: 90px;
    padding: 0 45px;
}
.PopupItem.SlotGameListPopup .popup-header .popup-title {
    font-size: 20px;
    text-align: right;
    padding: 15px 0;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 0 0 #fff, 0 0 10px #001aff, 0 0 30px #2371ff;
}
.PopupItem.SlotGameListPopup .popup-header .details {
    font-size: 13px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.PopupItem.SlotGameListPopup .popup-header .details .details-data {
    width: 215px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    font-weight: 600;
    background-color: #1b222c;
    border-radius: 8px;
    padding: 10px 20px;
}
.PopupItem.SlotGameListPopup
    .popup-header
    .details
    .details-data
    .details-data-content {
    display: flex;
    justify-content: space-between;
}
.PopupItem.SlotGameListPopup
    .popup-header
    .details
    .details-data
    .details-data-content
    .number {
    position: relative;
    color: #15a9fe;
    margin-right: 8px;
}
.PopupItem.SlotGameListPopup
    .popup-header
    .details
    .details-data
    .details-data-content
    .number
    .spinner-box {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
}
.PopupItem.SlotGameListPopup
    .popup-header
    .details
    .details-data
    .details-data-content
    .number
    .spinner-box
    .spinner {
    display: flex;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #14a9fc 94%, #14a9fc) top/8px 8px
            no-repeat,
        conic-gradient(transparent 30%, #14a9fc);
    -webkit-mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 2px),
        #000 0
    );
    animation: loader-animation 1s linear infinite;
}
.PopupItem.SlotGameListPopup .popup-body {
    overflow: scroll;
    overflow-x: hidden;
    padding-top: 0;
    padding-left: 45px;
    padding-right: 45px;
    margin-top: 25px;
    margin-bottom: 50px;
}
.PopupItem.SlotGameListPopup .popup-body .GameCardList {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 15px;
    width: 100%;
    margin: 0 auto;
}
.PopupItem.SlotGameListPopup .popup-body::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.SlotGameListPopup .popup-body::-webkit-scrollbar-track {
    border-radius: 3px !important;
}
.PopupItem.SlotGameListPopup .popup-body::-webkit-scrollbar-thumb {
    background: #15a9fe;
    border-radius: 3px;
}
.PopupItem.SlotGameListPopup .popup-footer {
    display: none;
    position: relative;
    font-size: 12px;
}
.PopupItem.SlotGameListPopup .popup-footer .pagination {
    display: flex;
    justify-content: space-around;
    background-color: #030304;
    align-self: center;
    align-items: center;
    width: 100%;
}
.PopupItem.SlotGameListPopup .popup-footer .pagination .pagination-controls {
    display: flex;
    align-items: center;
}
.PopupItem.SlotGameListPopup
    .popup-footer
    .pagination
    .pagination-controls
    .control-item {
    align-items: center;
    text-align: center;
    border: 1px solid #1d1b1b;
    padding: 10px;
    width: 80px;
}
.PopupItem.SlotGameListPopup .popup-footer .pagination .pagination-view-all {
    border: 1px solid #16bdf9;
    background-color: #1c7293;
    height: 100%;
}
.PopupItem.SlotGameListPopup .background {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-position: 0 0;
    background-repeat: no-repeat;
    border-top-left-radius: 10px;
}
.PopupItem.SlotGameListPopup .entity {
    position: absolute;
    transform: scale(0.85);
    left: 46px;
    top: -70px;
    background-repeat: no-repeat;
}
.PopupItem.SlotGameListPopup .close-btn {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
}
.PopupItem.SlotGameListPopup .close-btn div {
    font-size: 10px;
    display: flex;
    justify-content: flex-end;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    border: 2px solid #657182;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: #050505;
    color: #657182;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.PopupItem.SlotGameListPopup .close-btn div:hover {
    color: #ffb600;
    border-color: #fff;
    transition: all 0.3s;
}
.SlotPopupGameCard {
    position: relative;
    background-color: #1b222c;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    height: 210px;
    width: 170px;
    flex-shrink: 0;
}
.SlotPopupGameCard .game-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    height: 40px;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    background-color: #0f1119;
    color: #fff;
    border: 1px solid #4b4b4b;
    box-shadow: inset 0 0 0 3px #000;
}
.SlotPopupGameCard .game-preview-img {
    background-image: url(/img/fallback-logo.png);
    position: relative;
    padding-top: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 170px;
    height: 170px;
}
.SlotPopupGameCard .game-preview-img .spinner-box {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.SlotPopupGameCard .game-preview-img .spinner-box .spinner {
    display: flex;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #14a9fc 94%, #14a9fc) top/8px 8px
            no-repeat,
        conic-gradient(transparent 30%, #14a9fc);
    -webkit-mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 8px),
        #000 0
    );
    animation: loader-animation 1s linear infinite;
}
.SlotPopupGameCard .game-preview-img .spinner-box .spinner-guide {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-shrink: 0;
    color: hsla(0, 0%, 100%, 0.5);
    font-size: 7px;
    margin-top: 10px;
    width: 120px;
}
.PopupItem.SignupPopup {
    width: 900px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
}
.PopupItem.SignupPopup .form-header {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    border-top-right-radius: 10px;
}
.PopupItem.SignupPopup .form-header .logo {
    margin-top: 20px;
    height: 28px;
}
.PopupItem.SignupPopup .form-header .close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.PopupItem.SignupPopup .form-body {
    overflow: auto;
    overflow-x: hidden;
    padding: 20px;
    height: 490px;
    flex-shrink: 1;
}
.PopupItem.SignupPopup .form-body .label {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-left: 10px;
    color: #fff;
}
.PopupItem.SignupPopup .form-body .input-group {
    position: relative;
}
.PopupItem.SignupPopup .form-body .input-group .success {
    border: 1px solid #8600f7 !important;
}
.PopupItem.SignupPopup .form-body .input-group .guide-text {
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 200;
    color: #e0ebff;
    border-radius: 4px;
}
.PopupItem.SignInPopupNew .form-body .input-group .error-message,
.PopupItem.SignupPopup .form-body .input-group .error-message {
    display: flex;
    font-size: 12px;
    color: #fa4b4b;
    padding-left: 5px;
    overflow: hidden;
    height: 24px;
    align-items: center;
}

.PopupItem.SignupPopup .form-body .input-group .success-mark {
    position: absolute;
    top: 70%;
    right: 0;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #8600f7;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    animation: fade_in 0.25s ease-in;
}
.PopupItem.SignupPopup .form-body .input-group .success-mark:after {
    font-size: 12px;
    font-weight: 600;
    content: '✓';
}
.PopupItem.SignupPopup .form-body .input-group input,
.PopupItem.SignupPopup .form-body .input-group select,
.PopupItem.SignupPopup .form-body .input-group textarea {
    width: 100%;
    height: 44px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #fff;
    outline: none;
    font-size: 14px;
    text-align: left;
    padding-left: 14px;
    padding-right: 14px;
    border: 2px solid rgb(15, 61, 113);
    border-radius: 10px;
    background-color: rgb(0, 0, 0);
}
.PopupItem.SignupPopup .form-body .input-group input:focus,
.PopupItem.SignupPopup .form-body .input-group select:focus,
.PopupItem.SignupPopup .form-body .input-group textarea:focus {
    color: #fff;
}
.PopupItem.SignupPopup .form-body .input-group input::-moz-placeholder,
.PopupItem.SignupPopup .form-body .input-group select::-moz-placeholder,
.PopupItem.SignupPopup .form-body .input-group textarea::-moz-placeholder {
    color: #8d8d8d;
    padding-left: 5px;
}
.PopupItem.SignupPopup .form-body .input-group input::placeholder,
.PopupItem.SignupPopup .form-body .input-group select::placeholder,
.PopupItem.SignupPopup .form-body .input-group textarea::placeholder {
    color: #8d8d8d;
    padding-left: 5px;
}
.PopupItem.SignupPopup .form-body .input-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.PopupItem.SignupPopup .form-body .input-group select option:disabled {
    color: hsla(0, 0%, 100%, 0.5);
}
.PopupItem.SignupPopup .form-body .input-group select option:nth-child(2n) {
    background-color: #4f4f4f;
}
.PopupItem.SignupPopup .form-body .input-group select option:nth-child(odd) {
    background-color: #333232;
}
.PopupItem.SignupPopup .form-body .realbank-select-box {
    display: flex;
    gap: 10px;
}
.PopupItem.SignupPopup .form-body .realbank-select-box select {
    width: 130px;
    padding-right: 30px;
}
.PopupItem.SignupPopup .form-body .phone-number-parts-box {
    display: flex;
    gap: 10px;
}
.PopupItem.SignupPopup .form-body .phone-number-parts-box input {
    text-align: center;
    padding: 0;
}
.PopupItem.SignupPopup .form-body::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.SignupPopup .form-body::-webkit-scrollbar-track {
    background: #1f273a !important;
    border-radius: 3px !important;
}
.PopupItem.SignupPopup .form-body::-webkit-scrollbar-thumb {
    background: #0042ff;
    border-radius: 3px;
}
@media screen and (max-height: 600px) {
    .PopupItem.SignupPopup .form-body {
        height: 350px;
    }
}
.PopupItem.SignupPopup .form-footer {
    padding: 0 20px 30px;
    border-bottom-right-radius: 10px;
}
.PopupItem.SignupPopup .form-footer .register-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    width: 210px;
    background: #000;
    height: 50px;
    cursor: pointer;
    transition: all 0.5s;
    margin-bottom: 10px;
    border-radius: 10px;
    background-image: -moz-linear-gradient(
        90deg,
        rgb(12, 48, 95) 0%,
        rgb(22, 90, 156) 55%,
        rgb(32, 132, 216) 100%
    );
    background-image: -webkit-linear-gradient(
        90deg,
        rgb(12, 48, 95) 0%,
        rgb(22, 90, 156) 55%,
        rgb(32, 132, 216) 100%
    );
    background-image: -ms-linear-gradient(
        90deg,
        rgb(12, 48, 95) 0%,
        rgb(22, 90, 156) 55%,
        rgb(32, 132, 216) 100%
    );
    box-shadow: inset 0px 2px 0px 0px rgba(255, 255, 255, 0.64);
}
.PopupItem.SignupPopup .form-footer .register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-image: -moz-linear-gradient(90deg, rgb(134,88,0) 0%, rgb(207,175,0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(134,88,0) 0%, rgb(207,175,0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(134,88,0) 0%, rgb(207,175,0) 100%);
    box-shadow: inset 0px 2px 0px 0px rgba(255, 255, 255, 0.64);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.PopupItem.SignupPopup .form-footer .register-btn:hover::before {
    opacity: 1;
}

.PopupItem.SignupPopup .form-footer .register-btn > * {
    position: relative;
    z-index: 2;
}
.PopupItem.SignupPopup .form-footer .register-btn:active {
    background-color: #181e25;
}
.PopupItem.SignupPopup .form-footer > .spinner-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #8600f7;
}
.PopupItem.SignupPopup .form-footer > .spinner-box > .spinner2 {
    width: 3px;
    height: 3px;
    color: #000;
    border-radius: 50%;
    box-shadow: 14px 0 0 5px, 28px 0 0 3px, 42px 0 0 0;
    transform: translateX(-28px);
    animation: dot_animation_normal 0.5s linear infinite alternate;
}
.PopupItem.QuickBettingHistoryPopup {
    background: rgba(23, 29, 38, 0.733);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    height: calc(100vh - 300px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
}
.PopupItem.QuickBettingHistoryPopup .header {
    display: block;
    position: relative;
    margin-right: 20px;
    margin-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.PopupItem.QuickBettingHistoryPopup .header .header-content {
    color: #ffb600;
    font-size: 15px;
    font-weight: 600;
}
.PopupItem.QuickBettingHistoryPopup .header .header-content .page-name {
    color: #16baf5;
    margin-right: 10px;
}
.PopupItem.QuickBettingHistoryPopup .header .close-btn {
    display: block;
    position: absolute;
    top: 38%;
    right: 0;
}
.PopupItem.QuickBettingHistoryPopup .header .close-btn div {
    font-size: 10px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    border: 2px solid #657182;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: #050505;
    color: #657182;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.PopupItem.QuickBettingHistoryPopup .header .close-btn div:hover {
    color: #ffb600;
    border-color: #fff;
    transition: all 0.3s;
}
.PopupItem.QuickBettingHistoryPopup .BettingHistory {
    overflow: scroll;
    overflow-x: hidden;
}
.PopupItem.QuickBettingHistoryPopup .BettingHistory::-webkit-scrollbar {
    width: 5px;
    height: 0;
}
.PopupItem.QuickBettingHistoryPopup .BettingHistory::-webkit-scrollbar-track {
    background: #222a33;
}
.PopupItem.QuickBettingHistoryPopup .BettingHistory::-webkit-scrollbar-thumb {
    background: #53647a;
}
.PopupItem.BettingHistoryAttachmentPopup {
    position: relative;
    height: calc(100vh - 80px);
    overflow: scroll;
    overflow-x: hidden;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    background: rgba(4, 4, 7, 0.1);
}
.PopupItem.BettingHistoryAttachmentPopup::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.BettingHistoryAttachmentPopup::-webkit-scrollbar-track {
    background: #000 !important;
    border-radius: 3px !important;
}
.PopupItem.BettingHistoryAttachmentPopup::-webkit-scrollbar-thumb {
    background: #8600f7;
    border-radius: 3px;
}
.PopupItem.BettingHistoryAttachmentPopup .header {
    position: relative;
    margin: 30px 20px;
}
.PopupItem.BettingHistoryAttachmentPopup .header .title {
    color: #fff;
}
.PopupItem.BettingHistoryAttachmentPopup .BettingHistory .BettingHistoryNav {
    margin-top: 0 !important;
}
.PopupItem.BettingHistoryAttachmentPopup .BettingHistory .select-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.PopupItem.BettingHistoryAttachmentPopup
    .BettingHistory
    .select-box
    input[type='checkbox'] {
    padding: 20px !important;
    filter: invert(1) hue-rotate(150deg) brightness(1.3);
    width: 18px;
    height: 18px;
    cursor: pointer;
    outline: none !important;
    border: none !important;
}
.PopupItem.BettingHistoryAttachmentPopup .BettingHistory .select-box label {
    color: hsla(0, 0%, 100%, 0.584);
}
.PopupItem.BettingHistoryAttachmentPopup .BettingHistory .multi-select-control {
    margin: 0 20px;
}
.PopupItem.BettingHistoryAttachmentPopup
    .BettingHistory
    .multi-select-control
    .btn-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: -40px;
}
.PopupItem.BettingHistoryAttachmentPopup
    .BettingHistory
    .multi-select-control
    .btn-group
    .btn {
    border: 1px solid #8600f7;
    border-radius: 4px;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.25s;
}
.PopupItem.BettingHistoryAttachmentPopup
    .BettingHistory
    .multi-select-control
    .btn-group
    .btn.disabled {
    opacity: 0.75;
    cursor: not-allowed;
}
.PopupItem.BettingHistoryAttachmentPopup
    .BettingHistory
    .multi-select-control
    .btn-group
    .btn.disabled:hover {
    background-color: transparent !important;
}
.PopupItem.BettingHistoryAttachmentPopup
    .BettingHistory
    .multi-select-control
    .btn-group
    .btn:hover {
    background-color: rgba(195, 124, 255, 0.149);
    transition: all 0.25s;
}
.MinigameBettingHistory {
    color: #fff;
    font-size: 12px;
}
.MinigameBettingHistory .bet-detail-box {
    border: 1px solid #2f3334;
    margin: 10px 20px;
    overflow: hidden;
}
.MinigameBettingHistory .bet-detail-box .select-box {
    align-items: center;
    display: flex;
    gap: 5px;
}
.MinigameBettingHistory .bet-header {
    align-items: center;
    background-color: rgba(16, 23, 23, 0.333);
    color: #fff;
    display: none;
    justify-content: space-between;
    padding: 15px;
}
.MinigameBettingHistory .bet-header.active {
    display: flex;
}
.MinigameBettingHistory .bet-header .league-detail {
    align-items: center;
    display: flex;
    justify-content: flex-start;
}
.MinigameBettingHistory .bet-header .league-detail .country {
    border-radius: 5px;
    height: 20px;
    margin-right: 10px;
    width: 30px;
}
.MinigameBettingHistory .bet-header .league-detail .sport {
    height: 20px;
    margin-right: 10px;
    width: 20px;
}
.MinigameBettingHistory .bet-header .league-detail .league {
    text-transform: uppercase;
}
.MinigameBettingHistory .bet-header .date {
    color: rgba(190, 205, 216, 0.314);
    font-weight: 600;
}
.MinigameBettingHistory .bet-detail {
    background: #1b222c;
    color: #becdd8;
    display: flex;
    margin-bottom: 1px;
    min-height: 55px;
    padding-bottom: 0;
    padding-right: 0;
    padding-top: 0;
}
.MinigameBettingHistory .bet-detail .bet-status-data {
    display: flex;
    flex-shrink: 0;
    justify-content: flex-start;
    margin-right: 1px;
}
.MinigameBettingHistory .bet-detail .bet-status-data > div {
    font-size: 13px;
    font-weight: 600;
    width: 70px;
}
.MinigameBettingHistory .bet-detail .bet-status-data .status {
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 60px;
}
.MinigameBettingHistory .bet-detail .bet-status-data .status.WON {
    background-color: #640ea9;
    color: #fff;
}
.MinigameBettingHistory .bet-detail .bet-status-data .status.DRAW,
.MinigameBettingHistory .bet-detail .bet-status-data .status.LOSE,
.MinigameBettingHistory .bet-detail .bet-status-data .status.VOID {
    background-color: #4c4c4c;
}
.MinigameBettingHistory .bet-detail .game-detail-box {
    display: flex;
    justify-content: left;
    width: 100%;
}
.MinigameBettingHistory .bet-detail .game-detail-box .team-box {
    align-items: center;
    display: flex;
    justify-content: center;
    min-width: 300px;
}
.MinigameBettingHistory .bet-detail .game-detail-box .team-box.home {
    background: linear-gradient(90deg, rgba(27, 34, 44, 0), #1b222c 80%),
        linear-gradient(
            90deg,
            rgba(0, 191, 254, 0.05),
            rgba(27, 34, 44, 0.05) 80%
        );
}
.MinigameBettingHistory .bet-detail .game-detail-box .team-box.home.active {
    background: linear-gradient(90deg, rgba(27, 34, 44, 0), #1b222c 80%),
        linear-gradient(
            90deg,
            rgba(195, 124, 255, 0.149),
            rgba(27, 34, 44, 0.5) 80%
        );
}
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .team-box.home.active
    .team-name {
    color: #fff;
    text-shadow: 0 0 3px hsla(0, 0%, 100%, 0.333), 0 0 10px #8600f7;
}
.MinigameBettingHistory .bet-detail .game-detail-box .team-box.away {
    background: linear-gradient(-90deg, rgba(27, 34, 44, 0), #1b222c 80%),
        linear-gradient(
            -90deg,
            rgba(0, 191, 254, 0.05),
            rgba(27, 34, 44, 0.05) 80%
        );
}
.MinigameBettingHistory .bet-detail .game-detail-box .team-box.away.active {
    background: linear-gradient(-90deg, rgba(27, 34, 44, 0), #1b222c 80%),
        linear-gradient(
            -90deg,
            rgba(195, 124, 255, 0.149),
            rgba(27, 34, 44, 0.5) 80%
        );
}
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .team-box.away.active
    .team-name {
    color: #fff;
    text-shadow: 0 0 3px hsla(0, 0%, 100%, 0.333), 0 0 10px #8600f7;
}
.MinigameBettingHistory .bet-detail .game-detail-box .team-box .team-name {
    align-items: center;
    color: #aaa;
    display: flex;
    font-size: 12px;
    justify-content: flex-start;
    margin-left: 10px;
    margin-right: 10px;
    width: 100%;
}
.MinigameBettingHistory .bet-detail .game-detail-box .team-box .team-name.home {
    justify-content: flex-end;
}
.MinigameBettingHistory .bet-detail .game-detail-box .team-box .team-logo-box {
    align-items: center;
    background: #1b222c;
    border: 1px solid #151a23;
    border-radius: 40px;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    height: 50px;
    justify-content: center;
    width: 50px;
}
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .team-box
    .team-logo-box
    img {
    background-color: #0b0f17;
    border-radius: 40px;
    height: 40px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    -o-object-position: center;
    object-position: center;
    padding: 5px;
    width: 40px;
}
.MinigameBettingHistory .bet-detail .game-detail-box .score {
    align-items: center;
    color: #fff;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    width: 60px;
}
.MinigameBettingHistory .bet-detail .game-detail-box .score .score-separator {
    align-items: center;
    color: #888;
    display: flex;
    justify-content: center;
    padding-left: 8px;
    padding-right: 8px;
}
.MinigameBettingHistory .bet-detail .game-detail-box .game-icon {
    align-items: center;
    background: #1b202a;
    display: flex;
    flex-shrink: 0;
    min-height: 55px;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 120px;
}
.MinigameBettingHistory .bet-detail .game-detail-box .game-icon img {
    height: 55px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    width: 100px;
}
.MinigameBettingHistory .bet-detail .game-detail-box .event-name {
    align-items: center;
    background: #2b2e36;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 150px;
}
.MinigameBettingHistory .bet-detail .game-detail-box .event-at,
.MinigameBettingHistory .bet-detail .game-detail-box .round {
    align-items: center;
    background: #2b2e36;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    margin-left: 1px;
    overflow: hidden;
    position: relative;
    width: 100px;
}
.MinigameBettingHistory .bet-detail .game-detail-box .market-label {
    align-items: center;
    background-color: #1b232d;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 150px;
}
.MinigameBettingHistory .bet-detail .game-detail-box .odds-box {
    align-items: center;
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 1px;
    justify-content: flex-start;
    margin-bottom: -1px;
    margin-top: -2px;
}
.MinigameBettingHistory .bet-detail .game-detail-box .odds-box .market-item {
    align-items: center;
    background: #0d121b;
    border: 1px solid #0d121b;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    height: 54px;
    justify-content: space-between;
    margin-bottom: -1px;
    margin-top: -1px;
    padding-left: 15px;
    padding-right: 15px;
    transition: all 0.1s;
    width: 150px;
}
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item
    .label {
    color: #aaa;
    transition: all 0.1s;
}
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item
    .value {
    box-sizing: border-box;
    font-family: Pretendard, sans-serif;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item
    .market-option {
    box-sizing: border-box;
    color: #c37cff;
    font-family: NanumGothic, sans-serif;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.active {
    background: rgba(195, 124, 255, 0.149);
    border: 1px solid #8600f7;
    transition: all 0.1s;
}
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.dragon,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.large,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.left,
.MinigameBettingHistory .bet-detail .game-detail-box .odds-box .market-item.odd,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.player,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.scissors,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.win {
    order: 1;
}
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.draw,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.medium,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.right,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.rock,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.tie {
    order: 2;
}
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.banker,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.even,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.lose,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.paper,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.small,
.MinigameBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.tiger {
    order: 3;
}
.MinigameBettingHistory .bet-footer {
    border-radius: 0 0 6px 6px;
}
.MinigameBettingHistory .bet-footer.active {
    filter: brightness(1);
}
.MinigameBettingHistory .bet-footer .footer-content {
    align-items: center;
    color: #fff;
    display: flex;
    justify-content: space-between;
}
.MinigameBettingHistory .bet-footer .footer-content > div {
    height: 60px;
}
.MinigameBettingHistory .bet-footer .footer-content .bet-summary {
    align-items: center;
    display: flex;
    font-size: 13px;
    justify-content: flex-start;
    padding-left: 20px;
}
.MinigameBettingHistory .bet-footer .footer-content .bet-summary.notification {
    justify-content: space-between;
    padding: 0 20px;
    width: 100%;
}
.MinigameBettingHistory
    .bet-footer
    .footer-content
    .bet-summary.notification
    > div {
    margin-right: 0;
}
.MinigameBettingHistory .bet-footer .footer-content .bet-summary > div {
    margin-right: 30px;
}
.MinigameBettingHistory .bet-footer .footer-content .bet-summary .value {
    color: #c37cff;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
}
.MinigameBettingHistory .bet-footer .footer-content .bet-summary .dt {
    align-items: center;
    display: flex;
}
.MinigameBettingHistory .bet-footer .footer-content .btn-group {
    align-items: center;
    display: flex;
    gap: 10px;
    margin: auto 10px auto 0;
}
.MinigameBettingHistory .bet-footer .footer-content .btn-group .btn {
    align-items: center;
    background-color: #0d121b;
    border: 1px solid #0d121b;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-weight: 600;
    justify-content: center;
    padding: 10px 15px;
    width: 80px;
}
.MinigameBettingHistory .bet-footer .footer-content .btn-group .btn.btn-cancel {
    background-color: #1b222c;
}
.MinigameBettingHistory
    .bet-footer
    .footer-content
    .btn-group
    .btn.btn-cancel:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border-color: #8600f7;
    color: #fff;
    transition: all 0.2s;
    z-index: 10;
}
.MinigameBettingHistory
    .bet-footer
    .footer-content
    .btn-group
    .btn.btn-cancel:active {
    background: #155a75;
}
.MinigameBettingHistory .bet-footer .footer-content .btn-group .btn.btn-attach {
    background-color: #1b222c;
}
.MinigameBettingHistory
    .bet-footer
    .footer-content
    .btn-group
    .btn.btn-attach:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border-color: #8600f7;
    color: #fff;
    transition: all 0.2s;
    z-index: 10;
}
.MinigameBettingHistory
    .bet-footer
    .footer-content
    .btn-group
    .btn.btn-attach:active {
    background: #8600f7;
}
.MinigameBettingHistory
    .bet-footer
    .footer-content
    .btn-group
    .btn.btn-disallowed {
    cursor: not-allowed;
    opacity: 0.5;
}
.MinigameBettingHistory .bet-footer .footer-content .btn-group .delete-icon {
    cursor: pointer;
    padding: 6px 12px;
    background-color: #1b222c;
    border: 1px solid #0d121b;
    border-radius: 5px;
    margin-bottom: -3px;
}
.MinigameBettingHistory
    .bet-footer
    .footer-content
    .btn-group
    .delete-icon:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border-color: #8600f7;
    color: #fff;
    z-index: 10;
    transition: all 0.2s;
}
.MinigameBettingHistory .deleted-bet-notice {
    align-items: center;
    border: 1px solid #2f3334;
    border-radius: 4px;
    color: #c37cff;
    display: flex;
    height: 45px;
    justify-content: center;
    margin-top: 10px;
}
.SportBettingHistory {
    color: #fff;
    font-size: 12px;
}
.SportBettingHistory .bet-detail-box {
    margin: 10px 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #2f3334;
}
.SportBettingHistory .bet-detail-box .bonus-item-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 25px;
    background-color: #0e151f;
}
.SportBettingHistory .bet-detail-box .bonus-item-box .name {
    color: #ffe400;
}
.SportBettingHistory .bet-detail-box .bonus-item-box .odds,
.SportBettingHistory .bet-detail-box .select-box {
    display: flex;
    align-items: center;
    gap: 5px;
}
.SportBettingHistory .bet-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 15px;
    background-color: rgba(16, 23, 23, 0.333);
}
.SportBettingHistory .bet-header.active {
    display: flex;
}
.SportBettingHistory .bet-header .league-detail {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.SportBettingHistory .bet-header .league-detail .country {
    width: 30px;
    height: 20px;
    border-radius: 5px;
    margin-right: 10px;
}
.SportBettingHistory .bet-header .league-detail .sport {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.SportBettingHistory .bet-header .league-detail .league {
    text-transform: uppercase;
}
.SportBettingHistory .bet-header .date {
    color: rgba(190, 205, 216, 0.314);
    font-weight: 600;
}
.SportBettingHistory .bet-detail {
    display: flex;
    color: #becdd8;
    background: #1b222c;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    margin-bottom: 1px;
}
.SportBettingHistory .bet-detail .bet-status-data {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    margin-right: 1px;
}
.SportBettingHistory .bet-detail .bet-status-data > div {
    font-weight: 600;
    font-size: 13px;
    width: 70px;
}
.SportBettingHistory .bet-detail .bet-status-data .status {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 60px;
    background-color: #4c4c4c;
}
.SportBettingHistory .bet-detail .bet-status-data .status.WON {
    background-color: #640ea9;
    color: #fff;
}
.SportBettingHistory .bet-detail .bet-status-data .status.VOID {
    background-color: #8b751b;
    color: #fff;
}
.SportBettingHistory .bet-detail .game-detail-box {
    display: flex;
    justify-content: left;
    width: 100%;
}
.SportBettingHistory .bet-detail .game-detail-box .team-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    flex-shrink: 0;
}
.SportBettingHistory .bet-detail .game-detail-box .team-box.home {
    background: linear-gradient(90deg, rgba(27, 34, 44, 0), #1b222c 80%),
        linear-gradient(
            90deg,
            rgba(0, 191, 254, 0.05),
            rgba(27, 34, 44, 0.05) 80%
        );
}
.SportBettingHistory .bet-detail .game-detail-box .team-box.home.active {
    background: linear-gradient(90deg, rgba(27, 34, 44, 0), #1b222c 80%),
        linear-gradient(
            90deg,
            rgba(195, 124, 255, 0.149),
            rgba(27, 34, 44, 0.5) 80%
        );
}
.SportBettingHistory
    .bet-detail
    .game-detail-box
    .team-box.home.active
    .team-name {
    color: #fff;
    text-shadow: 0 0 3px hsla(0, 0%, 100%, 0.333), 0 0 10px #8600f7;
}
.SportBettingHistory .bet-detail .game-detail-box .team-box.away {
    background: linear-gradient(-90deg, rgba(27, 34, 44, 0), #1b222c 80%),
        linear-gradient(
            -90deg,
            rgba(0, 191, 254, 0.05),
            rgba(27, 34, 44, 0.05) 80%
        );
}
.SportBettingHistory .bet-detail .game-detail-box .team-box.away.active {
    background: linear-gradient(-90deg, rgba(27, 34, 44, 0), #1b222c 80%),
        linear-gradient(
            -90deg,
            rgba(195, 124, 255, 0.149),
            rgba(27, 34, 44, 0.5) 80%
        );
}
.SportBettingHistory
    .bet-detail
    .game-detail-box
    .team-box.away.active
    .team-name {
    color: #fff;
    text-shadow: 0 0 3px hsla(0, 0%, 100%, 0.333), 0 0 10px #8600f7;
}
.SportBettingHistory .bet-detail .game-detail-box .team-box .team-name {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    color: #aaa;
}
.SportBettingHistory .bet-detail .game-detail-box .team-box .team-name.home {
    justify-content: flex-end;
    text-align: end;
}
.SportBettingHistory .bet-detail .game-detail-box .team-box .team-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 40px;
    background: #1b222c;
    border: 1px solid #151a23;
    flex-shrink: 0;
    flex-grow: 0;
}
.SportBettingHistory .bet-detail .game-detail-box .team-box .team-logo-box img {
    width: 40px;
    height: 40px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    -o-object-position: center;
    object-position: center;
    background-color: #0b0f17;
    border-radius: 40px;
    padding: 5px;
}
.SportBettingHistory .bet-detail .game-detail-box .score {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 60px;
    flex-shrink: 0;
    margin-left: 8px;
    margin-right: 8px;
}
.SportBettingHistory .bet-detail .game-detail-box .score .score-separator {
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    color: #888;
    align-items: center;
    justify-content: center;
}
.SportBettingHistory .bet-detail .game-detail-box .market-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1b232d;
    position: relative;
    width: 120px;
    flex-shrink: 0;
    padding-left: 15px;
    padding-right: 15px;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.SportBettingHistory .bet-detail .game-detail-box .odds-box {
    display: flex;
    flex-grow: 1;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1px;
    padding: 0;
}
.SportBettingHistory .bet-detail .game-detail-box .odds-box .market-item {
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: space-between;
    height: 49px;
    background: #0d121b;
    border: 1px solid #0d121b;
    cursor: pointer;
    transition: all 0.1s;
    font-size: 12px;
    font-weight: 600;
    width: 150px;
    flex-direction: row;
    align-items: center;
    padding: 10px;
}
.SportBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item
    .label {
    font-size: 12px;
    padding-bottom: 3px;
    color: #aaa;
    transition: all 0.1s;
    margin-right: 10px;
}
.SportBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item
    .value {
    flex-shrink: 0;
    color: #8600f7;
}
.SportBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item
    .market-option,
.SportBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item
    .value {
    font-family: Pretendard, sans-serif;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.SportBettingHistory
    .bet-detail
    .game-detail-box
    .odds-box
    .market-item.active {
    background: rgba(195, 124, 255, 0.149);
    border: 1px solid #8600f7;
    transition: all 0.1s;
}
.SportBettingHistory .bet-footer {
    border-radius: 0 0 6px 6px;
}
.SportBettingHistory .bet-footer.active {
    filter: brightness(1);
}
.SportBettingHistory .bet-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.SportBettingHistory .bet-footer .footer-content > div {
    height: 60px;
}
.SportBettingHistory .bet-footer .footer-content .bet-summary {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 13px;
    padding-left: 20px;
}
.SportBettingHistory .bet-footer .footer-content .bet-summary.notification {
    justify-content: space-between;
}
.SportBettingHistory .bet-footer .footer-content .bet-summary > div {
    margin-right: 30px;
}
.SportBettingHistory .bet-footer .footer-content .bet-summary .value {
    color: #c37cff;
    margin-left: 10px;
    font-size: 13px;
    font-weight: 600;
}
.SportBettingHistory .bet-footer .footer-content .bet-summary .dt {
    display: flex;
    align-items: center;
}
.SportBettingHistory .bet-footer .footer-content .btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: auto 10px auto 0;
}
.SportBettingHistory .bet-footer .footer-content .btn-group .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #0d121b;
    font-weight: 600;
    border: 1px solid #0d121b;
    border-radius: 5px;
    width: 80px;
    padding: 10px 15px;
    cursor: pointer;
}
.SportBettingHistory .bet-footer .footer-content .btn-group .btn.btn-cancel {
    background-color: #1b222c;
}
.SportBettingHistory
    .bet-footer
    .footer-content
    .btn-group
    .btn.btn-cancel:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border-color: #8600f7;
    color: #fff;
    z-index: 10;
    transition: all 0.2s;
}
.SportBettingHistory
    .bet-footer
    .footer-content
    .btn-group
    .btn.btn-cancel:active {
    background: #155a75;
}
.SportBettingHistory .bet-footer .footer-content .btn-group .btn.btn-attach {
    background-color: #1b222c;
}
.SportBettingHistory
    .bet-footer
    .footer-content
    .btn-group
    .btn.btn-attach:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border-color: #8600f7;
    color: #fff;
    z-index: 10;
    transition: all 0.2s;
}
.SportBettingHistory
    .bet-footer
    .footer-content
    .btn-group
    .btn.btn-attach:active {
    background: #8600f7;
}
.SportBettingHistory
    .bet-footer
    .footer-content
    .btn-group
    .btn.btn-disallowed {
    opacity: 0.5;
    cursor: not-allowed;
}
.SportBettingHistory .bet-footer .footer-content .btn-group .delete-icon {
    cursor: pointer;
    padding: 6px 12px;
    background-color: #1b222c;
    border: 1px solid #0d121b;
    border-radius: 5px;
    margin-bottom: -3px;
}
.SportBettingHistory .bet-footer .footer-content .btn-group .delete-icon:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border-color: #8600f7;
    color: #fff;
    z-index: 10;
    transition: all 0.2s;
}
.SportBettingHistory .deleted-bet-notice {
    align-items: center;
    border: 1px solid #2f3334;
    border-radius: 4px;
    color: #c37cff;
    display: flex;
    height: 45px;
    justify-content: center;
    margin-top: 10px;
}
.BettingHistory {
    display: block;
    margin: 40px auto 80px;
    max-width: 1400px;
    min-width: 1200px;
    position: relative;
    width: 100%;
}
@media screen and (min-width: 2000px) {
    .BettingHistory {
        min-height: calc(100vh - 130px - 240px - 120px);
    }
}
@media screen and (max-width: 1999px) {
    .BettingHistory {
        min-height: calc(100vh - 130px - 240px - 120px);
    }
}
@media screen and (min-width: 1900px) {
    .BettingHistory {
        min-height: calc(100vh - 240px - 130px - 120px);
    }
}
.BettingHistory .BettingHistoryNav {
    margin: 15px 20px 13px;
}
.BettingHistory .BettingHistoryNav .nav {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.BettingHistory .BettingHistoryNav .nav .nav-item {
    background-color: #0b0e18;
    border: 1px solid #1b222c;
    color: #444f59;
    cursor: pointer;
    display: block;
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    padding: 20px;
    position: relative;
    text-align: center;
    transition: all 0.3s;
}
.BettingHistory .BettingHistoryNav .nav .nav-item .special-stroke {
    background-color: #8600f7;
    bottom: 2px;
    box-shadow: 0 0 20px #8600f7;
    height: 5px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 3px);
    visibility: hidden;
    width: calc(100% + 2px);
}
.BettingHistory .BettingHistoryNav .nav .nav-item:hover {
    color: #fff;
    transition: all 0.3s;
}
.BettingHistory .BettingHistoryNav .nav .nav-item:hover .special-stroke {
    visibility: visible;
}
.BettingHistory .BettingHistoryNav .nav .nav-item.Active {
    color: #fff;
    transition: all 0.3s;
}
.BettingHistory .BettingHistoryNav .nav .nav-item.Active .special-stroke {
    visibility: visible;
}
.BettingHistory .PageNation {
    background-color: transparent;
    bottom: 0;
    margin-left: calc((100% - 100vw) / 2);
    position: sticky;
    width: 100vw;
    z-index: 90;
}
.BettingHistory .btn-group {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    margin-left: 20px;
    margin-right: 20px;
}
.BettingHistory .btn-group .btn {
    align-items: center;
    background-color: transparent;
    border: 1px solid #1b222c;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    height: 40px;
    justify-content: center;
    padding: 0 15px;
}
.BettingHistory .btn-group .btn .icon {
    height: 25px;
    margin-right: 10px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    width: 25px;
}
.BettingHistory .btn-group .btn:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border-color: #8600f7;
    color: #fff;
    transition: all 0.2s;
}
.PopupItem.SignInPopupNew {
    width: 900px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: #000;
}
@media screen and (max-width: 1400px) {
    .PopupItem.SignInPopupNew {
        top: 60vh;
    }
}
.PopupItem.SignInPopupNew .form-header {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}
.PopupItem.SignInPopupNew .form-header .logo {
    margin-top: 20px;
    height: 28px;
}
.PopupItem.SignInPopupNew .form-header .close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.PopupItem.SignInPopupNew .form-body {
    flex-shrink: 1;
    padding: 40px;
    width: 450px;
}
@media screen and (max-width: 1400px) {
    .PopupItem.SignInPopupNew .form-body {
        padding: 20px;
    }
}
.PopupItem.SignInPopupNew .form-body .input-group {
    margin-bottom: 10px;
}
@media screen and (max-width: 1400px) {
    .PopupItem.SignInPopupNew .form-body .input-group {
        margin-bottom: 8px;
    }
}
.PopupItem.SignInPopupNew .form-body input {
    width: 100%;
    height: 50px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #fff;
    outline: none;
    font-size: 14px;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;

    border: 2px solid rgb(15, 61, 113);
    border-radius: 10px;
    background-color: rgb(0, 0, 0);
}
.PopupItem.SignInPopupNew .form-body input::-moz-placeholder {
    color: #8d8d8d;
}
.PopupItem.SignInPopupNew .form-body input::placeholder {
    color: #8d8d8d;
}
.PopupItem.SignInPopupNew .form-body .btn-login {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    width: 100%;
    background: #000;
    height: 50px;
    cursor: pointer;
    transition: all 0.5s;
    margin-bottom: 10px;
    border-radius: 10px;
    background-image: -moz-linear-gradient(
        90deg,
        rgb(12, 48, 95) 0%,
        rgb(22, 90, 156) 55%,
        rgb(32, 132, 216) 100%
    );
    background-image: -webkit-linear-gradient(
        90deg,
        rgb(12, 48, 95) 0%,
        rgb(22, 90, 156) 55%,
        rgb(32, 132, 216) 100%
    );
    background-image: -ms-linear-gradient(
        90deg,
        rgb(12, 48, 95) 0%,
        rgb(22, 90, 156) 55%,
        rgb(32, 132, 216) 100%
    );
    box-shadow: inset 0px 2px 0px 0px rgba(255, 255, 255, 0.64);
}

.PopupItem.SignInPopupNew .form-body .btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-image: -moz-linear-gradient(90deg, rgb(134,88,0) 0%, rgb(207,175,0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(134,88,0) 0%, rgb(207,175,0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(134,88,0) 0%, rgb(207,175,0) 100%);
    box-shadow: inset 0px 2px 0px 0px rgba(255, 255, 255, 0.64);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.PopupItem.SignInPopupNew .form-body .btn-login:hover::before {
    opacity: 1;
}

.PopupItem.SignInPopupNew .form-body .btn-login > * {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1400px) {
    .PopupItem.SignInPopupNew .form-body .btn-login {
        margin-bottom: 8px;
    }
    .PopupItem.SignInPopupNew .form-body .btn-login:last-child {
        margin-bottom: 0;
    }
}
.PopupItem.SignInPopupNew .form-body .btn-login .btn-login-inside {
    width: 97%;
    height: 80%;
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.PopupItem.SignInPopupNew .form-body .btn-login:active {
    background-color: #181e25;
}
.PopupItem.SignInPopupNew .form-body > .spinner-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #000;
    margin-bottom: 10px;
    border: 1px solid #394558;
}
.PopupItem.SignInPopupNew .form-body > .spinner-box .spinner-box-inside {
    background: #10091b;
    width: 97%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #351863;
}
.PopupItem.SignInPopupNew
    .form-body
    > .spinner-box
    .spinner-box-inside
    > .spinner2 {
    width: 3px;
    height: 3px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 14px 0 0 5px, 28px 0 0 3px, 42px 0 0 0;
    transform: translateX(-28px);
    animation: dot_animation_normal 0.5s linear infinite alternate;
}
.PopupItem.SignInPopupNew .form-body2 {
    width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 40px;
    position: relative;
}
.PopupItem.SignInPopupNew .form-body2 .logo-login2 {
    z-index: 11;
    width: 250px;
    position: absolute;
    bottom: 10px;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 1400px) {
    .PopupItem.SignInPopupNew .form-body2 .logo-login2 {
        top: 136px;
    }
}
.PopupItem.SignInPopupNew .form-body2 .title {
    font-size: 50px;
}
.PopupItem.SignInPopupNew .form-body2 .subtitle,
.PopupItem.SignInPopupNew .form-body2 .title {
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
    text-shadow: 0 0 10px #c37cff, 0 0 10px #c37cff, 0 0 10px #c37cff;
}
.PopupItem.SignInPopupNew .form-body2 .login-gif {
    position: absolute;
    inset: 0;
    top: -240px;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
}
@media screen and (max-width: 1400px) {
    .PopupItem.SignInPopupNew .form-body2 .login-gif {
        width: 81%;
        top: -195px;
    }
}
.PopupItem.SignInPopupNew .form-footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 20px;
}
.PopupItem.SignInPopupNew .form-footer .guide {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    height: 26px;
    align-items: center;
}
.PopupItem.SignInPopupNew .form-footer .guide .guide-text {
    font-weight: 200;
    color: #e0ebff;
}
.PopupItem.SignInPopupNew .form-footer .guide .link-btn {
    font-weight: 400;
    color: #c37cff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.1s;
}
.PopupItem.SignInPopupNew .form-footer .guide .link-btn:hover {
    color: #640ea9;
    transition: all 0.1s;
}
.PopupItem.SignInPopupNew .form-footer .guide .link-btn:active {
    color: #c37cff;
    transition: all 0.1s;
}
.PopupItem.FindPasswordPopup {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
}
.PopupItem.FindPasswordPopup .form-header {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}
.PopupItem.FindPasswordPopup .form-header .logo {
    margin-top: 20px;
    height: 28px;
}
.PopupItem.FindPasswordPopup .form-header .close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.PopupItem.FindPasswordPopup .form-body {
    flex-shrink: 1;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
}
.PopupItem.FindPasswordPopup .form-body .input-group {
    margin-bottom: 10px;
}
.PopupItem.FindPasswordPopup .form-body .input-group input {
    width: 100%;
    height: 50px;
    font-weight: 400;
    outline: none;
    text-align: start;
    padding-left: 10px;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
}
.PopupItem.FindPasswordPopup .form-body .input-group input::-moz-placeholder {
    color: #fff;
}
.PopupItem.FindPasswordPopup .form-body .input-group input::placeholder {
    color: #fff;
}
.PopupItem.FindPasswordPopup .form-body .input-group.phone-number-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.PopupItem.FindPasswordPopup
    .form-body
    .input-group.phone-number-box
    .send-btn {
    max-width: 120px;
    flex-shrink: 0;
}
.PopupItem.FindPasswordPopup .form-footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 10px 20px 30px;
}
.PopupItem.FindPasswordPopup .btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    width: 100%;
    background: #15a9fe;
    color: #000;
    font-weight: 800;
    height: 50px;
    cursor: pointer;
    transition: all 0.2s;
    border: 0;
    white-space: nowrap;
}
.PopupItem.FindPasswordPopup .btn-primary:hover {
    color: #fff;
    background-color: #222a33;
    transition: all 0.2s;
}
.PopupItem.FindPasswordPopup .btn-primary:active {
    background-color: #181e25;
}
.PopupItem.AskFormPopup {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
}
.PopupItem.AskFormPopup .form-header {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}
.PopupItem.AskFormPopup .form-header .logo {
    margin-top: 20px;
    height: 28px;
}
.PopupItem.AskFormPopup .form-body {
    flex-shrink: 1;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
}
.PopupItem.AskFormPopup .form-body .input-group {
    margin-bottom: 10px;
}
.PopupItem.AskFormPopup .form-body .input-group .file-placeholder,
.PopupItem.AskFormPopup .form-body .input-group input,
.PopupItem.AskFormPopup .form-body .input-group select,
.PopupItem.AskFormPopup .form-body .input-group textarea {
    width: 100%;
    height: 50px;
    background-color: #5d636e;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: none;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    font-weight: 400;
    outline: none;
    font-size: 14px;
    text-align: start;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.AskFormPopup
    .form-body
    .input-group
    .file-placeholder::-moz-placeholder,
.PopupItem.AskFormPopup .form-body .input-group input::-moz-placeholder,
.PopupItem.AskFormPopup .form-body .input-group select::-moz-placeholder,
.PopupItem.AskFormPopup .form-body .input-group textarea::-moz-placeholder {
    color: #fff;
}
.PopupItem.AskFormPopup .form-body .input-group .file-placeholder::placeholder,
.PopupItem.AskFormPopup .form-body .input-group input::placeholder,
.PopupItem.AskFormPopup .form-body .input-group select::placeholder,
.PopupItem.AskFormPopup .form-body .input-group textarea::placeholder {
    color: #fff;
}
.PopupItem.AskFormPopup
    .form-body
    .input-group
    .file-placeholder::-webkit-scrollbar,
.PopupItem.AskFormPopup .form-body .input-group input::-webkit-scrollbar,
.PopupItem.AskFormPopup .form-body .input-group select::-webkit-scrollbar,
.PopupItem.AskFormPopup .form-body .input-group textarea::-webkit-scrollbar {
    width: 5px;
    height: 0;
}
.PopupItem.AskFormPopup
    .form-body
    .input-group
    .file-placeholder::-webkit-scrollbar-track,
.PopupItem.AskFormPopup .form-body .input-group input::-webkit-scrollbar-track,
.PopupItem.AskFormPopup .form-body .input-group select::-webkit-scrollbar-track,
.PopupItem.AskFormPopup
    .form-body
    .input-group
    textarea::-webkit-scrollbar-track {
    background: #797979;
}
.PopupItem.AskFormPopup
    .form-body
    .input-group
    .file-placeholder::-webkit-scrollbar-thumb,
.PopupItem.AskFormPopup .form-body .input-group input::-webkit-scrollbar-thumb,
.PopupItem.AskFormPopup .form-body .input-group select::-webkit-scrollbar-thumb,
.PopupItem.AskFormPopup
    .form-body
    .input-group
    textarea::-webkit-scrollbar-thumb {
    background: #323131;
}
.PopupItem.AskFormPopup .form-body .input-group textarea {
    min-height: 250px;
    padding-top: 10px;
    padding-bottom: 10px;
    resize: none;
}
.PopupItem.AskFormPopup .form-body .input-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/assets/images/icons/angle-small-down.png');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 10px;
}
.PopupItem.AskFormPopup .form-body .input-group select option:disabled {
    color: hsla(0, 0%, 100%, 0.5);
}
.PopupItem.AskFormPopup .form-body .input-group select option:nth-child(odd) {
    background-color: #333;
}
.PopupItem.AskFormPopup .form-body .input-group select option:nth-child(2n) {
    background-color: #4f4f4f;
}
.PopupItem.AskFormPopup .form-body .input-group.subject-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.PopupItem.AskFormPopup .form-body .input-group.subject-box .value {
    min-width: 350px;
}
.PopupItem.AskFormPopup .form-body .input-group.file-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.PopupItem.AskFormPopup .form-body .input-group.file-box .file-placeholder {
    flex-shrink: 0;
    width: 350px;
}
.PopupItem.AskFormPopup .form-footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 10px 20px 20px;
}
.PopupItem.AskFormPopup .btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    width: 100%;
    background: #15a9fe;
    color: #000;
    border: 0;
    font-weight: 800;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s;
}
.PopupItem.AskFormPopup .btn-primary:hover {
    color: #fff;
    background-color: #222a33;
    transition: all 0.3s;
}
.PopupItem.AskFormPopup .btn-primary:active {
    background-color: #181e25;
}
.PopupItem.casino_transfer_popup {
    flex-direction: column;
    width: 550px;
    height: 850px;
}
.PopupItem.casino_transfer_popup .popup_nav {
    flex-shrink: 0;
    display: flex;
    height: 40px;
}
.PopupItem.casino_transfer_popup .popup_nav > .nav_item {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    border: 1px solid #394558;
    color: #8b8b8b;
    font-size: 12px;
    transition: all 0.2s;
    cursor: pointer;
    z-index: 0;
    margin-left: -1px;
}
.PopupItem.casino_transfer_popup .popup_nav > .nav_item:first-child {
    margin-left: 0;
}
.PopupItem.casino_transfer_popup .popup_nav > .nav_item.active {
    color: #fff;
    background: #8600f7;
    border: 1px solid #8600f7;
    font-weight: 600;
    transition: all 0.2s;
    z-index: 10;
}
.PopupItem.casino_transfer_popup .casino-money-transaction {
    flex-direction: column;
}
.PopupItem.casino_transfer_popup .casino-money-transaction .coupon {
    flex-shrink: 0;
    background-color: #0b0e18;
    border: 1px solid #394558;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 50px;
    margin-top: -1px;
    box-shadow: inset 0 0 0 5px #1b222c;
    padding: 0 30px;
}
.PopupItem.casino_transfer_popup .casino-money-transaction .coupon .label-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .coupon
    .label-box
    .label {
    text-align: start;
    width: 150px;
    color: #acb5c1;
    font-weight: 600;
}
.PopupItem.casino_transfer_popup .casino-money-transaction .coupon .dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 50%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .coupon
    .dropdown
    select {
    flex-shrink: 0;
    width: 200px;
    background-color: #1b222a;
    color: #acb5c1;
    border: 1px solid #454462;
    padding: 5px 20px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .coupon
    .dropdown
    select
    option {
    background-color: #1b222a;
    color: #acb5c1;
}
.PopupItem.casino_transfer_popup .casino-money-transaction .transaction-box {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-box
    .money {
    display: flex;
    justify-content: space-around;
    background-color: #0b0e18;
    border: 1px solid #394558;
    padding: 0 30px;
    height: 50px;
    margin-top: -1px;
    box-shadow: inset 0 0 0 5px #1b222c;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-box
    .money
    .label-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-box
    .money
    .label-box
    .label {
    text-align: start;
    width: 150px;
    color: #acb5c1;
    font-weight: 600;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-box
    .money
    .amount-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    color: #c37cff;
    font-size: 18px;
    font-weight: 600;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-box
    .money
    .amount-box
    .krw {
    background-color: transparent;
    outline: 0;
    text-align: end;
    width: 150px;
    margin-right: 8px;
    border: none;
    color: #c37cff;
    font-size: 18px;
    font-weight: 600;
    display: block;
    position: relative;
    overflow: hidden;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-box
    .fast-cash {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #6d747b;
    border: 1px solid #394558;
    margin-top: -1px;
    gap: 1px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-box
    .fast-cash
    > div {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    color: #8d8d8d;
    height: 40px;
    font-size: 14px;
    width: 100%;
    background-color: #1b222c;
    font-weight: bolder;
    border: 1px solid #394558;
    cursor: pointer;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-box
    .fast-cash
    > div:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border: 1px solid #8600f7;
    color: #fff;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-box
    .spinner-box {
    display: block;
    position: absolute;
    top: 50%;
    left: 110px;
    transform: translateY(-50%);
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-box
    .spinner-box
    .spinner {
    display: flex;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #8600f7 94%, #8600f7) top/8px 8px
            no-repeat,
        conic-gradient(transparent 30%, #8600f7);
    -webkit-mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 4px),
        #000 0
    );
    animation: loader-animation 1s linear infinite;
}
.PopupItem.casino_transfer_popup .casino-money-transaction .transaction-btn {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    padding: 20px;
    background-color: #1b222c;
    color: #fff;
    border: 1px solid #394558;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: -1px;
    height: 60px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-btn:hover {
    background-color: rgba(195, 124, 255, 0.149);
    border: 1px solid #8600f7;
    color: #fff;
}
.PopupItem.casino_transfer_popup .casino-money-transaction > .spinner-box {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #1b222c;
    border: 1px solid #394558;
    width: 100%;
    height: 60px !important;
    margin-top: -1px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    > .spinner-box
    > .spinner2 {
    width: 3px;
    height: 3px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 14px 0 0 5px, 28px 0 0 3px, 42px 0 0 0;
    transform: translateX(-28px);
    animation: dot_animation_normal 0.5s linear infinite alternate;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history {
    overflow: scroll;
    overflow-x: hidden;
    background: #1b222c;
    padding: 0;
    flex-shrink: 1;
    height: 100%;
    border-top: 2px solid #3e3e3e;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history
    .btn-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 20px;
    position: fixed;
    z-index: 999;
    bottom: 54px;
    right: 10px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history
    .btn-group
    .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: #8600f7;
    border: 1px solid #8600f7;
    padding: 0 11px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.5s;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history
    .btn-group
    .btn
    .icon {
    width: 20px;
    height: 20px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    margin-right: 5px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history
    .btn-group
    .btn:hover {
    background-color: #640ea9;
    border-color: #640ea9;
    color: #fff;
    transition: all 0.5s;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history::-webkit-scrollbar-track {
    background: #000 !important;
    border-radius: 3px !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history::-webkit-scrollbar-thumb {
    background: #8600f7;
    border-radius: 3px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history
    > .Tag.EntityDataGrid {
    display: flex;
    flex-direction: column;
    background: rgba(27, 34, 44, 0.333);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    height: 100%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table {
    flex-shrink: 1;
    background-color: #1b222c;
    height: 100% !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table
    tr.dx-header-row {
    border-right: 0 !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table
    .dx-datagrid-rowsview {
    overflow: hidden;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table::-webkit-scrollbar-track {
    background: #000 !important;
    border-radius: 3px !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table::-webkit-scrollbar-thumb {
    background: #15a9fe;
    border-radius: 3px;
}
.PopupItem.casino_transfer_popup {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(27, 34, 44, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: flex-start;
    left: 50vw;
    position: absolute;
    top: 50vh;
    transform: translate(-50%, -50%);
    width: 1000px;
}
.PopupItem.casino_transfer_popup > .spinner-box {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.55);
    border-radius: 10px;
    display: block;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 999;
}
.PopupItem.casino_transfer_popup > .spinner-box .spinner {
    animation: loader-animation 1s linear infinite;
    background: radial-gradient(farthest-side, #8600f7 94%, #8600f7) top/8px 8px
            no-repeat,
        conic-gradient(transparent 30%, #8600f7);
    border-radius: 50%;
    display: flex;
    height: 50px;
    justify-content: center;
    left: 250px;
    margin: 0 auto;
    -webkit-mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 8px),
        #000 0
    );
    position: absolute;
    top: 45%;
    width: 50px;
}
.PopupItem.casino_transfer_popup > .spinner-box .spinner-guide {
    color: hsla(0, 0%, 100%, 0.75);
    display: flex;
    flex-shrink: 0;
    font-size: 13px;
    justify-content: center;
    left: 50%;
    margin-top: 10px;
    position: absolute;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 120px;
}
.PopupItem.casino_transfer_popup .popup_header {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    height: 60px;
    position: relative;
}
.PopupItem.casino_transfer_popup .popup_header > .title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-left: 20px;
    margin-right: 20px;
}
.PopupItem.casino_transfer_popup .popup_header > .title > span {
    color: #c37cff;
    font-weight: 600;
}
.PopupItem.casino_transfer_popup .popup_header .close-btn {
    display: block;
    position: absolute;
    right: 15px;
    top: 18px;
}
.PopupItem.casino_transfer_popup .popup_header .close-btn div {
    align-items: center;
    background-color: #050505;
    border: 2px solid #657182;
    border-radius: 50%;
    color: #657182;
    cursor: pointer;
    display: flex;
    font-size: 10px;
    font-weight: 900;
    height: 10px;
    justify-content: center;
    padding: 10px;
    text-align: center;
    transition: all 0.3s;
    width: 10px;
}
.PopupItem.casino_transfer_popup .popup_header .close-btn div:hover {
    border-color: #fff;
    color: #ffb600;
    transition: all 0.3s;
}
.PopupItem.casino_transfer_popup .casino-money-transaction {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-shrink: 1;
    height: 100%;
    overflow: hidden;
}
.PopupItem.casino_transfer_popup .casino-money-transaction .wrapper {
    display: flex;
    flex-direction: row;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1 {
    display: flex;
    flex-direction: column;
    width: 40%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .popup_nav {
    display: flex;
    height: 40px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .popup_nav
    > .nav_item {
    align-items: center;
    border: 1px solid #394558;
    color: #8b8b8b;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    justify-content: center;
    margin-left: -1px;
    position: relative;
    transition: all 0.2s;
    z-index: 0;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .popup_nav
    > .nav_item:first-child {
    margin-left: 0;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .popup_nav
    > .nav_item.active {
    background: #8600f7;
    border: 1px solid #8600f7;
    color: #fff;
    font-weight: 600;
    transition: all 0.2s;
    z-index: 10;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .coupon {
    align-items: center;
    background-color: #0b0e18;
    border: 1px solid #394558;
    box-shadow: inset 0 0 0 5px #1b222c;
    display: flex;
    flex-shrink: 0;
    height: 50px;
    justify-content: space-around;
    margin-top: -1px;
    padding: 0 30px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .coupon
    .label-box {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .coupon
    .label-box
    .label {
    color: #acb5c1;
    font-weight: 600;
    text-align: start;
    width: 150px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .coupon
    .dropdown {
    align-content: center;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .coupon
    .dropdown
    select {
    background-color: #1b222a;
    border: 1px solid #454462;
    color: #acb5c1;
    flex-shrink: 0;
    padding: 5px 20px;
    width: 200px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .coupon
    .dropdown
    select
    option {
    background-color: #1b222a;
    color: #acb5c1;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-box {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-box
    .money {
    background-color: #0b0e18;
    border: 1px solid #394558;
    box-shadow: inset 0 0 0 5px #1b222c;
    display: flex;
    height: 50px;
    justify-content: space-around;
    margin-top: -1px;
    padding: 0 30px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-box
    .money
    .label-box {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-box
    .money
    .label-box
    .label {
    color: #acb5c1;
    font-weight: 600;
    text-align: start;
    width: 150px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-box
    .money
    .amount-box {
    align-items: center;
    color: #c37cff;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    width: 50%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-box
    .money
    .amount-box
    .krw {
    background-color: transparent;
    border: none;
    color: #c37cff;
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-right: 8px;
    outline: 0;
    overflow: hidden;
    position: relative;
    text-align: end;
    width: 150px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-box
    .fast-cash {
    background: #6d747b;
    border: 1px solid #394558;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -1px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-box
    .fast-cash
    > div {
    align-items: center;
    background-color: #1b222c;
    border: 1px solid #394558;
    box-sizing: border-box;
    color: #8d8d8d;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: bolder;
    height: 40px;
    justify-content: center;
    transition: all 0.3s;
    width: 100%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-box
    .fast-cash
    > div:hover {
    background-color: #8600f7;
    border: 1px solid #8600f7;
    color: #fff;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-box
    .spinner-box {
    display: block;
    left: 110px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-box
    .spinner-box
    .spinner {
    animation: loader-animation 1s linear infinite;
    background: radial-gradient(farthest-side, #8600f7 94%, #8600f7) top/8px 8px
            no-repeat,
        conic-gradient(transparent 30%, #8600f7);
    border-radius: 50%;
    display: flex;
    height: 30px;
    justify-content: center;
    -webkit-mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 4px),
        #000 0
    );
    width: 30px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-btn {
    align-items: center;
    background-color: #1b222c;
    border: 1px solid #394558;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    font-weight: 600;
    height: 66px;
    justify-content: center;
    margin-top: -1px;
    padding: 20px;
    transition: all 0.3s;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    .transaction-btn:hover {
    background-color: #8600f7;
    border: 1px solid #8600f7;
    color: #fff;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    > .spinner-box {
    align-items: center;
    background-color: #1b222c;
    border: 1px solid #394558;
    display: flex;
    flex-shrink: 0;
    height: 60px !important;
    justify-content: center;
    margin-top: -1px;
    padding: 20px;
    width: 100%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-1
    > .spinner-box
    > .spinner2 {
    animation: dot_animation_normal 0.5s linear infinite alternate;
    border-radius: 50%;
    box-shadow: 14px 0 0 5px, 28px 0 0 3px, 42px 0 0 0;
    color: #fff;
    height: 3px;
    transform: translateX(-28px);
    width: 3px;
}
@keyframes dot_animation_normal {
    50% {
        box-shadow: 14px 0 0 3px, 28px 0 0 5px, 42px 0 0 3px;
    }
    to {
        box-shadow: 14px 0 0 0, 28px 0 0 3px, 42px 0 0 5px;
    }
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2 {
    width: 60%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history {
    background: #1b222c;
    border-top: 2px solid #3e3e3e;
    flex-shrink: 1;
    height: 100%;
    margin-right: -5px;
    overflow: scroll;
    overflow-x: hidden;
    padding: 0;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    .btn-group {
    align-items: center;
    bottom: 54px;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 27px;
    margin-top: 10px;
    position: fixed;
    right: 10px;
    z-index: 999;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    .btn-group
    .btn {
    align-items: center;
    background: #8600f7;
    border: 1px solid #8600f7;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    height: 40px;
    justify-content: center;
    padding: 0 11px;
    transition: all 0.5s;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    .btn-group
    .btn
    .icon {
    height: 20px;
    margin-right: 5px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    width: 20px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    .btn-group
    .btn:hover {
    background-color: #640ea9;
    border-color: #640ea9;
    color: #fff;
    transition: all 0.5s;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    .btn-group.withdraw {
    align-items: center;
    bottom: 54px;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 22px;
    margin-top: 10px;
    position: fixed;
    right: 10px;
    z-index: 999;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    .btn-group.withdraw
    .btn {
    align-items: center;
    background: #8600f7;
    border: 1px solid #8600f7;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    height: 40px;
    justify-content: center;
    padding: 0 11px;
    transition: all 0.5s;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    .btn-group.withdraw
    .btn
    .icon {
    height: 20px;
    margin-right: 5px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    width: 20px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    .btn-group.withdraw
    .btn:hover {
    background-color: #640ea9;
    border-color: #640ea9;
    color: #fff;
    transition: all 0.5s;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history::-webkit-scrollbar {
    border-radius: 3px !important;
    width: 5px !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history::-webkit-scrollbar-track {
    background: #000 !important;
    border-radius: 3px !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history::-webkit-scrollbar-thumb {
    background: #8600f7;
    border-radius: 3px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    > .Tag.EntityDataGrid {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(27, 34, 44, 0.333);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table {
    background-color: #1b222c;
    flex-shrink: 1;
    height: 100% !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table
    .empty-message {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    margin: 0;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table
    tr.dx-header-row {
    border-right: 0 !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table
    .dx-datagrid-rowsview {
    overflow: hidden;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table::-webkit-scrollbar {
    border-radius: 3px !important;
    width: 5px !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table::-webkit-scrollbar-track {
    background: #000 !important;
    border-radius: 3px !important;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    > .Tag.EntityDataGrid
    .datagrid-table::-webkit-scrollbar-thumb {
    background: #8600f7;
    border-radius: 3px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    #dx-col-22 {
    width: 65px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    [aria-colindex='8'] {
    border-radius: 0 !important;
    transition: all 0.5s;
    width: 65px;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    [aria-colindex='8']:hover {
    background: rgba(195, 124, 255, 0.149);
    transition: all 0.5s;
}
.PopupItem.casino_transfer_popup
    .casino-money-transaction
    .wrapper
    .container-2
    .transaction-history
    .clearEach {
    align-items: center;
    display: flex;
    justify-content: center;
}
.PopupItem.casino_transfer_popup select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('/assets/images/icons/angle-small-down.png');
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 10px;
    cursor: pointer;
    outline: 0;
}
.PopupItem.casino_transfer_popup select option {
    cursor: pointer;
}
@keyframes loader-animation {
    to {
        transform: rotate(1turn);
    }
}
.CSCenter {
    display: block;
    margin: 40px auto;
    max-width: 1400px;
    min-height: 100vh;
    position: relative;
    width: 100%;
}
.CSCenter .test {
    background-color: orange;
    transition: all 0.45s;
}
.CSCenter .test.show {
    height: 100%;
    transition: all 0.45s;
}
.CSCenter .test.hide {
    height: 0;
    transition: all 0.45s;
}
.CSCenterNav {
    align-items: center;
    background: linear-gradient(
            90deg,
            rgba(27, 30, 40, 0),
            rgba(27, 30, 40, 0.667) 70%
        ),
        repeating-linear-gradient(
            -45deg,
            hsla(0, 0%, 100%, 0.012),
            hsla(0, 0%, 100%, 0.012) 10px,
            transparent 0,
            transparent 20px
        );
    border: 1px solid #2f3334;
    border-radius: 4px;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 0;
}
.CSCenterNav .left-side {
    display: flex;
    gap: 10px;
    margin-left: 25px;
}
.CSCenterNav .left-side .label {
    color: #ded9e3;
    font-size: 16px;
}
.CSCenterNav .left-side .count {
    color: #ffea00;
    font-size: 16px;
}
.CSCenterNav .right-side {
    margin-right: 10px;
}
.CSCenterNav .right-side .btn-group {
    display: flex;
    gap: 5px;
}
.CSCenterNav .right-side .btn-group .btn-item {
    background-color: #0d121b;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.1s;
}
.CSCenterNav .right-side .btn-group .btn-item.active,
.CSCenterNav .right-side .btn-group .btn-item:hover {
    background: #1c7293;
    border: 1px solid #15b1e9;
    color: #fff;
    transition: all 0.1s;
}
.CSCenterNav .right-side .btn-group .btn-item:active {
    background: #155a75;
    transition: all 0.1s;
}
.CSCenterHeader {
    display: block;
    position: relative;
}
.CSCenterHeader .header-title {
    align-items: center;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
}
.CSCenterHeader .header-title .header-icon {
    height: 24px;
    width: 24px;
}
.CSCenterHeader .header-title .header-label {
    color: #fff;
    font-size: 20px;
}
.CSCenterCategory .category-list {
    background-color: #1b222c;
    border-radius: 5px;
    color: #5a697d;
    display: flex;
    font-weight: 600;
    gap: 20px;
    padding: 20px 30px;
    transition: all 0.3s;
}
.CSCenterCategory .category-list .category-item {
    color: #a1a8ba;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
}
.CSCenterCategory .category-list .category-item:hover {
    color: #b3c8e9;
    transition: all 0.3s;
}
.CSCenterCategory .category-list .category-item.Active {
    color: #15a9fe;
}
.PopupItem.cscenter-form {
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: all 0.45s;
}
.PopupItem.cscenter-form.show {
    margin-bottom: 10px;
    margin-top: 10px;
    max-height: 500px;
    opacity: 1;
    transition: all 0.45s;
}
.PopupItem.cscenter-form.hide {
    max-height: 0;
    opacity: 0;
    transition: all 0.45s;
}
.PopupItem.cscenter-form .content-box {
    border-right: 0;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    gap: 1px;
    justify-content: center;
    max-height: calc(100vh - 300px);
}
.PopupItem.cscenter-form .content-box .panel {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 12px;
    height: 50px;
    justify-content: space-between;
    padding: 15px 0;
}
.PopupItem.cscenter-form .content-box .panel .breadcrumb-group {
    display: flex;
    gap: 10px;
}
.PopupItem.cscenter-form
    .content-box
    .panel
    .breadcrumb-group
    .breadcrumb-item {
    color: #ded9e3;
}
.PopupItem.cscenter-form
    .content-box
    .panel
    .breadcrumb-group
    .breadcrumb-item.target {
    color: #ffea00;
    margin-left: 6px;
}
.PopupItem.cscenter-form .content-box .panel .panel-btn-group {
    align-items: center;
    display: flex;
    gap: 8px;
    transition: all 0.1s;
}
.PopupItem.cscenter-form
    .content-box
    .panel
    .panel-btn-group
    .panel-action-btn {
    background-color: #0d121b;
    border: 1px solid #363f4d;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 20px;
    text-align: center;
}
.PopupItem.cscenter-form
    .content-box
    .panel
    .panel-btn-group
    .panel-action-btn.submit:hover {
    background: #1c7293;
    border: 1px solid #15b1e9;
    color: #fff;
    transition: all 0.1s;
}
.PopupItem.cscenter-form
    .content-box
    .panel
    .panel-btn-group
    .panel-action-btn.cancel:hover {
    background: rgba(255, 35, 35, 0.369);
    border: 1px solid #d54444;
    color: #fff;
    transition: all 0.1s;
}
.PopupItem.cscenter-form
    .content-box
    .panel
    .panel-btn-group
    .panel-action-btn:hover {
    background: #1c7293;
    border: 1px solid #15b1e9;
    color: #fff;
    transition: all 0.1s;
}
.PopupItem.cscenter-form
    .content-box
    .panel
    .panel-btn-group
    .panel-action-btn:active {
    background: #155a75;
    transition: all 0.1s;
}
.PopupItem.cscenter-form .content-box .subject {
    background-color: #1b222c;
    display: flex;
}
.PopupItem.cscenter-form .content-box .subject .label {
    align-items: center;
    background: #272f3d;
    color: #fff;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 13px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100px;
}
.PopupItem.cscenter-form .content-box .subject input {
    background-color: transparent;
    color: #fff;
    font-size: 13px;
    outline: none;
    padding: 15px;
    width: 100%;
}
.PopupItem.cscenter-form .content-box .subject input::-moz-placeholder {
    color: #a5adbe;
}
.PopupItem.cscenter-form .content-box .subject input::placeholder {
    color: #a5adbe;
}
.PopupItem.cscenter-form .content-box .message {
    background-color: #1b222c;
    color: hsla(0, 0%, 100%, 0.75);
    display: flex;
    width: 100%;
}
.PopupItem.cscenter-form .content-box .message .label {
    align-items: center;
    background: #272f3d;
    color: #fff;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 13px;
    height: auto;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100px;
}
.PopupItem.cscenter-form .content-box .message textarea {
    background-color: transparent;
    border: 0;
    color: #fff;
    font-size: 13px;
    min-height: 200px;
    outline: none;
    padding: 15px;
    resize: none;
    width: 100%;
}
.PopupItem.cscenter-form .content-box .message textarea::-moz-placeholder {
    color: #a5adbe;
}
.PopupItem.cscenter-form .content-box .message textarea::placeholder {
    color: #a5adbe;
}
.CSCenterTable {
    display: block;
    flex-shrink: 1;
    position: relative;
}
.CSCenterTable .EntityDataGrid .dx-datagrid .dx-datagrid-rowsview {
    max-height: 800px !important;
    min-height: 250px !important;
}
.CSCenterPostView {
    animation: fadeInCSCenterPostView 0.3s ease-in;
    border-right: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
    padding: 0;
}
@keyframes fadeInCSCenterPostView {
    0% {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}
.CSCenterPostView .cs-content-box {
    border-right: 0;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    padding: 0;
}
.CSCenterPostView .cs-content-box .topic-details {
    background-color: #0b0e18;
    border-bottom: 1px solid #6d747b;
    color: #fff;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    justify-content: space-between;
    padding: 15px 10px;
}
.CSCenterPostView .cs-content-box .topic-details .feature {
    color: #ded9e3;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.CSCenterPostView .cs-content-box .topic-details .feature .parent-feature {
    flex-shrink: 0;
    margin-left: 10px;
    margin-right: 10px;
}
.CSCenterPostView .cs-content-box .topic-details .feature .target-feature {
    color: #ffea00;
    flex-shrink: 0;
    margin-left: 6px;
}
.CSCenterPostView .cs-content-box .topic-details .feature .expand {
    flex-shrink: 1;
    width: 100%;
}
.CSCenterPostView .cs-content-box .topic-details .feature .date {
    color: #aaa;
    flex-shrink: 0;
    margin-right: 15px;
}
.CSCenterPostView .cs-content-box .topic-details .panel-btn-group {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    transition: all 0.1s;
}
.CSCenterPostView
    .cs-content-box
    .topic-details
    .panel-btn-group
    .panel-action-btn {
    background-color: #0d121b;
    border: 1px solid #0d121b;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px 8px;
    text-align: center;
    width: 90px;
}
.CSCenterPostView
    .cs-content-box
    .topic-details
    .panel-btn-group
    .panel-action-btn:hover {
    background: #1c7293;
    border: 1px solid #15b1e9;
    color: #fff;
    transition: all 0.1s;
}
.CSCenterPostView
    .cs-content-box
    .topic-details
    .panel-btn-group
    .panel-action-btn:active {
    background: #155a75;
    transition: all 0.1s;
}
.CSCenterPostView .cs-content-box .thread {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-height: 500px;
    overflow: scroll;
    overflow-x: hidden;
}
.CSCenterPostView .cs-content-box .thread .chat-item {
    align-items: flex-start;
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    padding: 15px 40px;
}
.CSCenterPostView .cs-content-box .thread .chat-item .user img {
    width: 70px;
}
.CSCenterPostView .cs-content-box .thread .chat-item .date {
    color: #aaa;
    margin-right: -15px;
    text-align: right;
    width: 80px;
}
.CSCenterPostView .cs-content-box .thread .chat-item div.content {
    width: 100%;
}
.CSCenterPostView .cs-content-box .thread .chat-item div.content .message {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.CSCenterPostView .cs-content-box .thread .chat-item div.content .message p {
    overflow-wrap: break-word;
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
}
.CSCenterPostView .cs-content-box .thread .user-message {
    background-color: #1b222c;
    display: flex;
    margin-bottom: 1px;
}
.CSCenterPostView .cs-content-box .thread .admin-message {
    background-color: #0b0e18;
}
.CSCenterPostView .cs-content-box .thread .admin-message .content .message {
    color: #fe5454;
    font-weight: 700;
    text-shadow: 0 0 5px red, 0 0 7px red;
}
.CSCenterPostView .cs-content-box .thread::-webkit-scrollbar {
    border-radius: 3px !important;
    width: 5px !important;
}
.CSCenterPostView .cs-content-box .thread::-webkit-scrollbar-track {
    background: #000 !important;
    border-radius: 3px !important;
}
.CSCenterPostView .cs-content-box .thread::-webkit-scrollbar-thumb {
    background: #063244;
    border-radius: 3px;
}
.CSCenterPostView .cs-content-box .chatbox {
    align-items: center;
    background-color: #1b222c;
    border: 1px solid hsla(210, 6%, 45%, 0.188);
    border-radius: 4px;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    position: relative;
}
.CSCenterPostView .cs-content-box .chatbox .label {
    align-items: center;
    color: hsla(0, 0%, 100%, 0.75);
    display: flex;
    height: 60px !important;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100px !important;
}
.CSCenterPostView .cs-content-box .chatbox textarea {
    background-color: transparent;
    border: none;
    color: #fff;
    flex: 1;
    height: 60px;
    outline: 0;
    outline: none;
    overflow: scroll;
    overflow-x: hidden;
    padding: 20px 10px 15px;
    resize: none;
}
.CSCenterPostView .cs-content-box .chatbox textarea::-moz-placeholder {
    color: #a5adbe;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600 !important;
    text-transform: uppercase;
}
.CSCenterPostView .cs-content-box .chatbox textarea::placeholder {
    color: #a5adbe;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600 !important;
    text-transform: uppercase;
}
.CSCenterPostView .cs-content-box .chatbox textarea::-webkit-scrollbar {
    border-radius: 3px !important;
    width: 5px !important;
}
.CSCenterPostView .cs-content-box .chatbox textarea::-webkit-scrollbar-thumb {
    background: #063244;
    border-radius: 3px;
}
.CSCenterPostView .cs-content-box .chatbox .btn-primary {
    margin-right: 10px;
}
.CSCenterPostView .cs-content-box .spinner-box {
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.CSCenterPostView .cs-content-box .spinner-box .spinner {
    animation: loader-animation 1s linear infinite;
    background: radial-gradient(farthest-side, #14a9fc 94%, #14a9fc) top/8px 8px
            no-repeat,
        conic-gradient(transparent 30%, #14a9fc);
    border-radius: 50%;
    display: flex;
    height: 50px;
    justify-content: center;
    -webkit-mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 7px),
        #000 0
    );
    width: 50px;
}
.CSCenterPostView .cs-content-box .spinner-box .spinner-guide {
    color: hsla(0, 0%, 100%, 0.5);
    flex-shrink: 0;
    font-size: 7px;
    left: 50%;
    margin-top: 10px;
    position: absolute;
    text-align: center;
    top: 120%;
    transform: translate(-50%, -50%);
    width: 150%;
}
.CSCenterPostView .cs-content-box .spinner-box:before {
    margin: 200px 0;
}
.CSCenterPostView .btn-primary {
    background-color: #0d121b;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.1s;
}
.CSCenterPostView .btn-primary:hover {
    background: #1c7293;
    border: 1px solid #15b1e9;
    color: #fff;
    transition: all 0.1s;
}
.CSCenterPostView .btn-primary:active {
    background: #155a75;
    transition: all 0.1s;
}
.CSCenterPostView p {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
.screenguard {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(3, 14, 16, 0.4);
    -webkit-backdrop-filter: blur(3px) !important;
    backdrop-filter: blur(3px) !important;
}
.PopupItem.GlobalChat {
    width: 600px;
    height: calc(100vh - 300px);
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
}
.PopupItem.GlobalChat .chat-wrapper {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
}
.PopupItem.GlobalChat .chat-wrapper .popup-header {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-bottom: 20px;
}
.PopupItem.GlobalChat .chat-wrapper .popup-header .logo {
    height: 28px;
}
.PopupItem.GlobalChat .chat-wrapper .chat-header {
    flex-shrink: 0;
    position: relative;
    border: 1px solid hsla(0, 0%, 100%, 0.5);
    border-radius: 4px;
    padding: 5px 20px;
    margin-bottom: 20px;
}
.PopupItem.GlobalChat .chat-wrapper .chat-header .chat-member-search-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.PopupItem.GlobalChat
    .chat-wrapper
    .chat-header
    .chat-member-search-box
    .search-icon {
    flex-shrink: 0;
    margin-right: 20px;
    opacity: 0.75;
}
.PopupItem.GlobalChat
    .chat-wrapper
    .chat-header
    .chat-member-search-box
    .search-input {
    flex-shrink: 1;
    width: 100%;
    height: 30px;
    background-color: transparent;
    outline: none;
    color: hsla(0, 0%, 100%, 0.8);
}
.PopupItem.GlobalChat .chat-wrapper .chat-header .option-list {
    display: block;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    max-height: 250px;
    height: auto;
    overflow: scroll;
    overflow-x: hidden;
    background-color: rgba(20, 21, 30, 0.95);
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 1px 1px 20px #000;
    border-radius: 5px;
}
.PopupItem.GlobalChat .chat-wrapper .chat-header .option-list .option-item {
    font-size: 11px;
    padding: 8px 20px;
    cursor: pointer;
}
.PopupItem.GlobalChat
    .chat-wrapper
    .chat-header
    .option-list
    .option-item:hover {
    color: #40aaff;
    background-color: rgba(68, 74, 82, 0.8);
}
.PopupItem.GlobalChat
    .chat-wrapper
    .chat-header
    .option-list::-webkit-scrollbar {
    width: 5px;
}
.PopupItem.GlobalChat
    .chat-wrapper
    .chat-header
    .option-list::-webkit-scrollbar-track {
    background: #222a33;
}
.PopupItem.GlobalChat
    .chat-wrapper
    .chat-header
    .option-list::-webkit-scrollbar-thumb {
    background: #53647a;
}
.PopupItem.GlobalChat .chat-wrapper .chat-header select {
    width: 100%;
    padding: 10px;
    background-color: #5d636e;
    color: #fff;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/assets/images/icons/angle-small-down.png');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 10px;
}
.PopupItem.GlobalChat .chat-wrapper .chat-header select option:disabled {
    color: hsla(0, 0%, 100%, 0.5);
}
.PopupItem.GlobalChat .chat-wrapper .chat-header select option:nth-child(odd) {
    background-color: #272a35;
}
.PopupItem.GlobalChat .chat-wrapper .chat-header select option:nth-child(2n) {
    background-color: #383e4f;
}
.PopupItem.GlobalChat .chat-wrapper .chat-body {
    flex-shrink: 1;
    height: 100%;
    overflow: scroll;
    overflow-x: hidden;
    margin-bottom: 20px;
}
.PopupItem.GlobalChat .chat-wrapper .chat-body .chat-thread {
    padding: 20px 10px 20px 0;
    display: flex;
    justify-content: flex-end;
    align-self: flex-end;
    flex-direction: column;
    gap: 15px;
}
.PopupItem.GlobalChat .chat-wrapper .chat-body .chat-thread .chat {
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: 80%;
}
.PopupItem.GlobalChat .chat-wrapper .chat-body .chat-thread .chat .chat-detail {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    margin-bottom: 3px;
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 10px;
}
.PopupItem.GlobalChat
    .chat-wrapper
    .chat-body
    .chat-thread
    .chat
    .chat-detail
    .user-detail {
    display: flex;
    align-items: center;
    gap: 5px;
}
.PopupItem.GlobalChat
    .chat-wrapper
    .chat-body
    .chat-thread
    .chat
    .chat-detail
    .user-detail
    .user-pic {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}
.PopupItem.GlobalChat
    .chat-wrapper
    .chat-body
    .chat-thread
    .chat
    .chat-detail
    .time {
    font-size: 9px;
}
.PopupItem.GlobalChat .chat-wrapper .chat-body .chat-thread .chat .message {
    padding: 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-bottom: 5px;
    color: hsla(0, 0%, 100%, 0.85);
}
.PopupItem.GlobalChat .chat-wrapper .chat-body .chat-thread .user {
    align-self: flex-end;
}
.PopupItem.GlobalChat .chat-wrapper .chat-body .chat-thread .user .message {
    background-color: #383e4f;
}
.PopupItem.GlobalChat .chat-wrapper .chat-body .chat-thread .user .chat-detail {
    flex-direction: row-reverse;
}
.PopupItem.GlobalChat .chat-wrapper .chat-body .chat-thread .other-user {
    align-self: flex-start;
}
.PopupItem.GlobalChat
    .chat-wrapper
    .chat-body
    .chat-thread
    .other-user
    .message {
    background-color: #272a35;
}
.PopupItem.GlobalChat
    .chat-wrapper
    .chat-body
    .chat-thread
    .other-user
    .user-detail {
    flex-direction: row-reverse;
}
.PopupItem.GlobalChat .chat-wrapper .chat-body::-webkit-scrollbar {
    width: 5px;
}
.PopupItem.GlobalChat .chat-wrapper .chat-body::-webkit-scrollbar-track {
    background: #222a33;
}
.PopupItem.GlobalChat .chat-wrapper .chat-body::-webkit-scrollbar-thumb {
    background: #53647a;
}
.PopupItem.GlobalChat .chat-wrapper .chat-footer {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}
.PopupItem.GlobalChat .chat-wrapper .chat-footer .chat-input {
    flex-shrink: 1;
    width: 100%;
    background-color: rgba(93, 99, 110, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 1px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    outline: 0;
    padding: 10px;
}
.PopupItem.GlobalChat .chat-wrapper .chat-footer .chat-send {
    flex-shrink: 0;
    padding: 10px 20px;
}
.PopupItem.GlobalChat .btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    background: #15a9fe;
    color: #000;
    border: 0;
    font-size: 12px;
    font-weight: 800;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s;
}
.PopupItem.GlobalChat .btn-primary:hover {
    color: #fff;
    background-color: #222a33;
    transition: all 0.3s;
}
.PopupItem.GlobalChat .btn-primary:active {
    background-color: #181e25;
}
.PopupItem.DailyEventPopup {
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    height: calc(80vh - 10px);
}
.PopupItem.DailyEventPopup img {
    height: inherit;
    scale: none;
    -o-object-fit: contain;
    object-fit: contain;
}
.PopupItem.BoardFormPopup {
    width: 900px;
    height: calc(100vh - 200px);
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 40px;
}
.PopupItem.BoardFormPopup .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.BoardFormPopup .form .form-header {
    flex-shrink: 0;
}
.PopupItem.BoardFormPopup .form .form-header .title {
    color: #14a9fc;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.PopupItem.BoardFormPopup .form .form-body {
    flex-shrink: 0;
    display: flex;
    gap: 20px;
}
.PopupItem.BoardFormPopup .form .form-body .form-group {
    width: 100%;
}
.PopupItem.BoardFormPopup .form .form-body .form-group .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.BoardFormPopup .form .form-body .form-group input,
.PopupItem.BoardFormPopup .form .form-body .form-group select {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.BoardFormPopup .form .form-body .form-group input::-moz-placeholder,
.PopupItem.BoardFormPopup
    .form
    .form-body
    .form-group
    select::-moz-placeholder {
    color: #fff;
}
.PopupItem.BoardFormPopup .form .form-body .form-group input::placeholder,
.PopupItem.BoardFormPopup .form .form-body .form-group select::placeholder {
    color: #fff;
}
.PopupItem.BoardFormPopup .form .form-body .form-group input {
    cursor: text;
}
.PopupItem.BoardFormPopup .form .form-body .form-group select {
    cursor: pointer;
}
.PopupItem.BoardFormPopup .form .form-body .new-category {
    display: flex;
    align-self: flex-end;
    width: 250px;
}
.PopupItem.BoardFormPopup .form .form-body .new-category .add-category-btn {
    width: 100%;
    border-radius: 2px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 36px;
    cursor: pointer;
    background: #15a9fe;
    border: 0;
    font-weight: 800;
    transition: all 0.3s;
    padding: 0 8px;
}
.PopupItem.BoardFormPopup
    .form
    .form-body
    .new-category
    .add-category-btn
    .label {
    display: flex;
    align-items: center;
    color: #000;
    padding: 0;
    margin: 0;
}
.PopupItem.BoardFormPopup .form .form-body .new-category .add-category-btn img {
    width: 17px;
    filter: brightness(0);
}
.PopupItem.BoardFormPopup .form .content {
    flex-shrink: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.PopupItem.BoardFormPopup .form .content > .BoardPostEditor {
    height: 100%;
}
.PopupItem.BoardFormPopup .form .content > .BoardPostEditor > .dx-htmleditor {
    border: none !important;
}
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .dx-toolbar-items-container {
    border: 1px solid #394558;
    background-color: #1a1b1e;
}
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .dx-htmleditor-toolbar-wrapper {
    margin-bottom: 20px;
}
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .dx-htmleditor-toolbar-wrapper:first-child {
    border-bottom: none !important;
}
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .ql-editor {
    background-color: rgba(82, 82, 82, 0.102);
    border: 1px solid #394558;
    height: 100%;
}
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .ql-editor
    div,
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .ql-editor
    h2,
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .ql-editor
    h3,
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .ql-editor
    h4,
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .ql-editor
    h5,
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .ql-editor
    h6,
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .ql-editor
    p,
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .ql-editor
    span,
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .ql-editor
    strong,
.PopupItem.BoardFormPopup
    .form
    .content
    > .BoardPostEditor
    > .dx-htmleditor
    .ql-editor
    > h1 {
    font-family: Pretendard, sans-serif !important;
}
.PopupItem.BoardFormPopup .form .form-footer {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.PopupItem.BoardFormPopup .form .form-footer .btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.PopupItem.BoardFormPopup .form .form-footer .btn-group .btn {
    width: 80px;
    border-radius: 2px;
    height: 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    cursor: pointer;
}
.PopupItem.BoardFormPopup .form .form-footer .btn-group .btn-save {
    background: rgba(26, 148, 217, 0.98);
    color: #000;
    border: 0;
    transition: all 0.3s;
}
.PopupItem.BoardFormPopup .form .form-footer .btn-group .btn-save.disabled {
    cursor: not-allowed !important;
}
.PopupItem.BoardFormPopup
    .form
    .form-footer
    .btn-group
    .btn-save.disabled:hover {
    background: #15a9fe;
    color: #000;
}
.PopupItem.BoardFormPopup .form .form-footer .btn-group .btn-save:hover {
    background-color: #15a9fe;
    transition: all 0.3s;
}
.PopupItem.BoardFormPopup .form .form-footer .btn-group .btn-delete {
    background: rgba(49, 65, 189, 0.612);
    color: #fff;
    border: 0;
    transition: all 0.3s;
}
.PopupItem.BoardFormPopup .form .form-footer .btn-group .btn-delete:hover {
    color: #fff;
    background-color: rgba(49, 65, 189, 0.459);
    transition: all 0.3s;
}
.PopupItem.BoardFormPopup .form .form-footer .btn-group .btn-delete:active {
    background-color: #181e25;
}
.PopupItem.BoardFormPopup .form .form-footer .btn-group .btn-cancel {
    background: #181b1c;
    color: #fff;
    border: 0;
    transition: all 0.3s;
}
.PopupItem.BoardFormPopup .form .form-footer .btn-group .btn-cancel:hover {
    color: #fff;
    background-color: #181b1c;
    transition: all 0.3s;
}
.PopupItem.BoardFormPopup .form .form-footer .btn-group .btn-cancel:active {
    background-color: #181e25;
}
.PopupItem.BoardFormPopup select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/assets/images/icons/angle-small-down.png');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 10px;
}
.PopupItem.BoardFormPopup select option:disabled {
    color: hsla(0, 0%, 100%, 0.5);
}
.PopupItem.BoardFormPopup select option:nth-child(odd) {
    background-color: #333;
}
.PopupItem.BoardFormPopup select option:nth-child(2n) {
    background-color: #4f4f4f;
}
.BoardPostEditor {
    width: 100%;
}
.BoardPostEditor .dx-htmleditor-content.ql-blank:before {
    color: #5a697d !important;
}
.BoardPostEditor .dx-htmleditor-toolbar-wrapper {
    padding: 0 !important;
}
.BoardPostEditor .dx-htmleditor-toolbar-wrapper:first-child {
    border-bottom: 1px solid #5e646e !important;
}
.BoardPostEditor .dx-htmleditor-toolbar .dx-htmleditor-toolbar-separator {
    border-left: 1px solid #5e646e;
}
.BoardPostEditor
    .dx-htmleditor-toolbar
    .dx-format-active:not(.dx-color-format):not(
        dx-background-format
    ).dx-button-mode-text {
    background-color: #0b0e18 !important;
}
.BoardPostEditor .ql-blank:before {
    font-style: normal;
}
.BoardPostEditor .dx-quill-container {
    height: 100%;
}
.BoardPostEditor .dx-quill-container .ql-editor {
    overflow: scroll;
    overflow-x: hidden;
}
.BoardPostEditor .dx-quill-container .ql-editor::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.BoardPostEditor .dx-quill-container .ql-editor::-webkit-scrollbar-track {
    background: #000 !important;
    border-radius: 3px !important;
}
.BoardPostEditor .dx-quill-container .ql-editor::-webkit-scrollbar-thumb {
    background: #15a9fe;
    border-radius: 3px;
}
.BoardPostEditor .dx-htmleditor {
    border: 1px solid #5e646e !important;
    outline: none;
    height: 100%;
}
.BoardPostEditor .dx-htmleditor .dx-htmleditor-content .ql-code-block,
.BoardPostEditor .dx-htmleditor .dx-htmleditor-content blockquote {
    color: #fff !important;
}
.BoardPostEditor .dx-htmleditor .dx-toolbar {
    display: flex;
    flex-wrap: wrap;
}
.BoardPostEditor .dx-htmleditor .dx-toolbar .dx-item {
    flex-grow: 1;
    width: 36px;
    max-width: 50px;
    border-bottom: 1px solid #5e646e;
    margin-bottom: -1px;
}
.BoardPostEditor .dx-htmleditor .dx-toolbar .dx-item.separator {
    width: 1px;
}
.BoardPostEditor .dx-htmleditor .dx-toolbar .dx-item.freesize {
    width: auto;
    max-width: 100%;
}
.BoardPostEditor
    .dx-htmleditor
    .dx-toolbar
    .dx-item.dx-toolbar-item
    .dx-toolbar-button {
    max-width: 250px;
    background-color: orange !important;
}
.BoardPostEditor
    .dx-htmleditor
    .dx-toolbar
    .dx-item
    .dx-button
    .dx-button-content
    .dx-icon {
    color: #aaa !important;
    transition: all 0.2s;
}
.BoardPostEditor
    .dx-htmleditor
    .dx-toolbar
    .dx-item
    .dx-button
    .dx-button-content
    .dx-icon:hover {
    color: #fafafa !important;
    transition: all 0.2s;
}
.BoardPostEditor .dx-htmleditor .dx-toolbar .dx-item .dx-dropdowneditor-button,
.BoardPostEditor .dx-htmleditor .dx-toolbar .dx-item .dx-placeholder {
    color: #ccc !important;
    font-weight: 200 !important;
}
.BoardPostEditor .dx-htmleditor .dx-toolbar .dx-item .dx-texteditor-input {
    color: #ccc !important;
}
.BoardPostEditor
    .dx-htmleditor
    .dx-toolbar
    .dx-item
    .dx-htmleditor-toolbar-separator {
    width: 1px !important;
}
.BoardPostEditor .dx-htmleditor .dx-toolbar .dx-dropdowneditor-icon {
    color: #f1ecff !important;
}
.BoardPostEditor .dx-state-focused {
    border-color: #5e646e !important;
}
.PopupItem.AddCategoryPopup {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 30px;
}
.PopupItem.AddCategoryPopup .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.AddCategoryPopup .form .form-header {
    color: #18a6f8;
    color: #14a9fc;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.PopupItem.AddCategoryPopup .form .form-body .form-group .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.AddCategoryPopup .form .form-body .form-group input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.AddCategoryPopup
    .form
    .form-body
    .form-group
    input::-moz-placeholder {
    color: #fff;
}
.PopupItem.AddCategoryPopup .form .form-body .form-group input::placeholder {
    color: #fff;
}
.PopupItem.AddCategoryPopup .form .form-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.PopupItem.AddCategoryPopup .form .form-footer .btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.PopupItem.AddCategoryPopup .form .form-footer .btn-group .btn {
    width: 80px;
    border-radius: 2px;
    height: 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    cursor: pointer;
}
.PopupItem.AddCategoryPopup .form .form-footer .btn-group .btn-save {
    background: rgba(26, 148, 217, 0.98);
    color: #000;
    border: 0;
    transition: all 0.3s;
}
.PopupItem.AddCategoryPopup .form .form-footer .btn-group .btn-save.disabled {
    cursor: not-allowed !important;
}
.PopupItem.AddCategoryPopup
    .form
    .form-footer
    .btn-group
    .btn-save.disabled:hover {
    background: #15a9fe;
    color: #000;
}
.PopupItem.AddCategoryPopup .form .form-footer .btn-group .btn-save:hover {
    background-color: #15a9fe;
    transition: all 0.3s;
}
.PopupItem.AddCategoryPopup .form .form-footer .btn-group .btn-delete {
    background: rgba(49, 65, 189, 0.612);
    color: #fff;
    border: 0;
    transition: all 0.3s;
}
.PopupItem.AddCategoryPopup .form .form-footer .btn-group .btn-delete:hover {
    color: #fff;
    background-color: rgba(49, 65, 189, 0.459);
    transition: all 0.3s;
}
.PopupItem.AddCategoryPopup .form .form-footer .btn-group .btn-delete:active {
    background-color: #181e25;
}
.PopupItem.AddCategoryPopup .form .form-footer .btn-group .btn-cancel {
    background: #181b1c;
    color: #fff;
    border: 0;
    transition: all 0.3s;
}
.PopupItem.AddCategoryPopup .form .form-footer .btn-group .btn-cancel:hover {
    color: #fff;
    background-color: #181b1c;
    transition: all 0.3s;
}
.PopupItem.AddCategoryPopup .form .form-footer .btn-group .btn-cancel:active {
    background-color: #181e25;
}
.PopupItem.CreateChatRoomPopup {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 30px;
}
.PopupItem.CreateChatRoomPopup > .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.CreateChatRoomPopup > .form > .form-header {
    color: #14a9fc;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.PopupItem.CreateChatRoomPopup > .form > .form-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.PopupItem.CreateChatRoomPopup > .form > .form-body > .form-group .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.CreateChatRoomPopup > .form > .form-body > .form-group input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.CreateChatRoomPopup
    > .form
    > .form-body
    > .form-group
    input::-moz-placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.CreateChatRoomPopup
    > .form
    > .form-body
    > .form-group
    input::placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.CreateChatRoomPopup > .form > .form-body > .form-group > .info {
    font-size: 12px;
    padding: 8px 0 0;
}
.PopupItem.CreateChatRoomPopup
    > .form
    > .form-body
    > .form-group
    > .info.error-msg {
    color: #fa4b4b;
}
.PopupItem.CreateChatRoomPopup
    > .form
    > .form-body
    > .form-group
    > .info.info-msg {
    color: #14a9fc;
}
.PopupItem.CreateChatRoomPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn {
    display: flex;
    gap: 10px;
}
.PopupItem.CreateChatRoomPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn
    .input-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    width: 80px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.CreateChatRoomPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid hsla(0, 0%, 40%, 0.34);
    border-radius: 4px;
    min-height: 40px;
    padding: 10px;
    gap: 5px;
}
.PopupItem.CreateChatRoomPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 20px;
    padding: 5px;
    border-radius: 5px;
    background-color: #303031;
}
.PopupItem.CreateChatRoomPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    margin: 0;
}
.PopupItem.CreateChatRoomPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .remove {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
    cursor: pointer;
}
.PopupItem.CreateChatRoomPopup > .form .form-footer .btn-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.PopupItem.CreateChatRoomPopup > .form .form-footer .btn-group .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.PopupItem.CreateChatRoomPopup > .form .form-footer .btn-group .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    min-width: 80px;
    padding: 10px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.CreateChatRoomPopup > .form .form-footer .btn-group .cancel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 80px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.InviteMemberPopup {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 30px;
}
.PopupItem.InviteMemberPopup > .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.InviteMemberPopup > .form > .form-header {
    color: #14a9fc;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.PopupItem.InviteMemberPopup > .form > .form-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.PopupItem.InviteMemberPopup > .form > .form-body > .form-group .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.InviteMemberPopup > .form > .form-body > .form-group > .warning {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}
.PopupItem.InviteMemberPopup > .form > .form-body > .form-group input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.InviteMemberPopup
    > .form
    > .form-body
    > .form-group
    input::-moz-placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.InviteMemberPopup
    > .form
    > .form-body
    > .form-group
    input::placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.InviteMemberPopup > .form > .form-body > .form-group > .info {
    font-size: 12px;
    padding: 8px 0 0;
}
.PopupItem.InviteMemberPopup
    > .form
    > .form-body
    > .form-group
    > .info.error-msg {
    color: #fa4b4b;
}
.PopupItem.InviteMemberPopup
    > .form
    > .form-body
    > .form-group
    > .info.info-msg {
    color: #14a9fc;
}
.PopupItem.InviteMemberPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn {
    display: flex;
    gap: 10px;
}
.PopupItem.InviteMemberPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn
    .input-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    width: 80px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.InviteMemberPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid hsla(0, 0%, 40%, 0.34);
    border-radius: 4px;
    min-height: 40px;
    padding: 10px;
    gap: 5px;
}
.PopupItem.InviteMemberPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 20px;
    padding: 5px;
    border-radius: 5px;
    background-color: #303031;
}
.PopupItem.InviteMemberPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    margin: 0;
}
.PopupItem.InviteMemberPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .remove {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
    cursor: pointer;
}
.PopupItem.InviteMemberPopup > .form .form-footer .btn-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.PopupItem.InviteMemberPopup > .form .form-footer .btn-group .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.PopupItem.InviteMemberPopup > .form .form-footer .btn-group .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    min-width: 80px;
    padding: 10px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.InviteMemberPopup > .form .form-footer .btn-group .cancel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 80px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.ChangeDisplayNamePopup {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 30px;
}
.PopupItem.ChangeDisplayNamePopup > .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.ChangeDisplayNamePopup > .form > .form-header {
    color: #14a9fc;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.PopupItem.ChangeDisplayNamePopup > .form > .form-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.PopupItem.ChangeDisplayNamePopup > .form > .form-body > .form-group .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.ChangeDisplayNamePopup
    > .form
    > .form-body
    > .form-group
    > .warning {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}
.PopupItem.ChangeDisplayNamePopup > .form > .form-body > .form-group input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.ChangeDisplayNamePopup
    > .form
    > .form-body
    > .form-group
    input::-moz-placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.ChangeDisplayNamePopup
    > .form
    > .form-body
    > .form-group
    input::placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.ChangeDisplayNamePopup > .form > .form-body > .form-group > .info {
    font-size: 12px;
    padding: 8px 0 0;
}
.PopupItem.ChangeDisplayNamePopup
    > .form
    > .form-body
    > .form-group
    > .info.error-msg {
    color: #fa4b4b;
}
.PopupItem.ChangeDisplayNamePopup
    > .form
    > .form-body
    > .form-group
    > .info.info-msg {
    color: #14a9fc;
}
.PopupItem.ChangeDisplayNamePopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn {
    display: flex;
    gap: 10px;
}
.PopupItem.ChangeDisplayNamePopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn
    .input-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    width: 80px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.ChangeDisplayNamePopup
    > .form
    > .form-body
    > .form-group
    > .collection-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid hsla(0, 0%, 40%, 0.34);
    border-radius: 4px;
    min-height: 40px;
    padding: 10px;
    gap: 5px;
}
.PopupItem.ChangeDisplayNamePopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 20px;
    padding: 5px;
    border-radius: 5px;
    background-color: #303031;
}
.PopupItem.ChangeDisplayNamePopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    margin: 0;
}
.PopupItem.ChangeDisplayNamePopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .remove {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
    cursor: pointer;
}
.PopupItem.ChangeDisplayNamePopup > .form .form-footer .btn-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.PopupItem.ChangeDisplayNamePopup > .form .form-footer .btn-group .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.PopupItem.ChangeDisplayNamePopup > .form .form-footer .btn-group .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    min-width: 80px;
    padding: 10px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.ChangeDisplayNamePopup > .form .form-footer .btn-group .cancel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 80px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.LeaveGroupConfirmationPopup {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 30px;
}
.PopupItem.LeaveGroupConfirmationPopup > .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.LeaveGroupConfirmationPopup > .form > .form-header {
    color: #14a9fc;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.PopupItem.LeaveGroupConfirmationPopup > .form > .form-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .warning {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    input::-moz-placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    input::placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .info {
    font-size: 12px;
    padding: 8px 0 0;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .info.error-msg {
    color: #fa4b4b;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .info.info-msg {
    color: #14a9fc;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn {
    display: flex;
    gap: 10px;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn
    .input-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    width: 80px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid hsla(0, 0%, 40%, 0.34);
    border-radius: 4px;
    min-height: 40px;
    padding: 10px;
    gap: 5px;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 20px;
    padding: 5px;
    border-radius: 5px;
    background-color: #303031;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    margin: 0;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .remove {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
    cursor: pointer;
}
.PopupItem.LeaveGroupConfirmationPopup > .form .form-footer .btn-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.PopupItem.LeaveGroupConfirmationPopup > .form .form-footer .btn-group .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    .form-footer
    .btn-group
    .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    min-width: 80px;
    padding: 10px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.LeaveGroupConfirmationPopup
    > .form
    .form-footer
    .btn-group
    .cancel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 60px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.TransferGroupOwnerShipPopup {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 30px;
}
.PopupItem.TransferGroupOwnerShipPopup > .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.TransferGroupOwnerShipPopup > .form > .form-header {
    color: #14a9fc;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.PopupItem.TransferGroupOwnerShipPopup > .form > .form-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    > .warning {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}
.PopupItem.TransferGroupOwnerShipPopup > .form > .form-body > .form-group input,
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    select {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    input::-moz-placeholder,
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    select::-moz-placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    input::placeholder,
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    select::placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    > .info {
    font-size: 12px;
    padding: 8px 0 0;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    > .info.error-msg {
    color: #fa4b4b;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    > .info.info-msg {
    color: #14a9fc;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn {
    display: flex;
    gap: 10px;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn
    .input-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    width: 80px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid hsla(0, 0%, 40%, 0.34);
    border-radius: 4px;
    min-height: 40px;
    padding: 10px;
    gap: 5px;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 20px;
    padding: 5px;
    border-radius: 5px;
    background-color: #303031;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    margin: 0;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .remove {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
    cursor: pointer;
}
.PopupItem.TransferGroupOwnerShipPopup > .form .form-footer .btn-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.PopupItem.TransferGroupOwnerShipPopup > .form .form-footer .btn-group .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    .form-footer
    .btn-group
    .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    min-width: 80px;
    padding: 10px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.TransferGroupOwnerShipPopup
    > .form
    .form-footer
    .btn-group
    .cancel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 80px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.TransferGroupOwnerShipPopup select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/assets/images/icons/angle-small-down.png');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 10px;
}
.PopupItem.TransferGroupOwnerShipPopup select option:disabled {
    color: hsla(0, 0%, 100%, 0.5);
}
.PopupItem.TransferGroupOwnerShipPopup select option:nth-child(odd) {
    background-color: #333;
}
.PopupItem.TransferGroupOwnerShipPopup select option:nth-child(2n) {
    background-color: #4f4f4f;
}
.PopupItem.NewContactPopup {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 30px;
}
.PopupItem.NewContactPopup > .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.NewContactPopup > .form > .form-header {
    color: #14a9fc;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.PopupItem.NewContactPopup > .form > .form-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.PopupItem.NewContactPopup > .form > .form-body > .form-group .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.NewContactPopup > .form > .form-body > .form-group input,
.PopupItem.NewContactPopup > .form > .form-body > .form-group textarea {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    input::-moz-placeholder,
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    textarea::-moz-placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    input::placeholder,
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    textarea::placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.NewContactPopup > .form > .form-body > .form-group textarea {
    padding-top: 10px;
    padding-bottom: 10px;
    resize: none;
    height: 80px;
    overflow: scroll;
    overflow-x: hidden;
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    textarea::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    textarea::-webkit-scrollbar-track {
    border-radius: 3px !important;
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    textarea::-webkit-scrollbar-thumb {
    background: #15a9fe;
    border-radius: 3px;
}
.PopupItem.NewContactPopup > .form > .form-body > .form-group > .info {
    font-size: 12px;
    padding: 8px 0 0;
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    > .info.error-msg {
    color: #fa4b4b;
}
.PopupItem.NewContactPopup > .form > .form-body > .form-group > .info.info-msg {
    color: #14a9fc;
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn {
    display: flex;
    gap: 10px;
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn
    .input-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    width: 80px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid hsla(0, 0%, 40%, 0.34);
    border-radius: 4px;
    min-height: 40px;
    padding: 10px;
    gap: 5px;
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 20px;
    padding: 5px;
    border-radius: 5px;
    background-color: #303031;
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    margin: 0;
}
.PopupItem.NewContactPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .remove {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
    cursor: pointer;
}
.PopupItem.NewContactPopup > .form .form-footer .btn-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.PopupItem.NewContactPopup > .form .form-footer .btn-group .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.PopupItem.NewContactPopup > .form .form-footer .btn-group .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    min-width: 80px;
    padding: 10px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.NewContactPopup > .form .form-footer .btn-group .cancel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 80px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.ConfirmationPopup {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 30px;
}
.PopupItem.ConfirmationPopup > .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.ConfirmationPopup > .form > .form-header {
    color: #14a9fc;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.PopupItem.ConfirmationPopup > .form > .form-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.PopupItem.ConfirmationPopup > .form > .form-body > .form-group .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.ConfirmationPopup > .form > .form-body > .form-group .warning {
    text-align: center;
}
.PopupItem.ConfirmationPopup > .form > .form-body > .form-group input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.ConfirmationPopup
    > .form
    > .form-body
    > .form-group
    input::-moz-placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.ConfirmationPopup
    > .form
    > .form-body
    > .form-group
    input::placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.ConfirmationPopup > .form > .form-body > .form-group > .info {
    font-size: 12px;
    padding: 8px 0 0;
}
.PopupItem.ConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .info.error-msg {
    color: #fa4b4b;
}
.PopupItem.ConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .info.info-msg {
    color: #14a9fc;
}
.PopupItem.ConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn {
    display: flex;
    gap: 10px;
}
.PopupItem.ConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn
    .input-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    width: 80px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.ConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid hsla(0, 0%, 40%, 0.34);
    border-radius: 4px;
    min-height: 40px;
    padding: 10px;
    gap: 5px;
}
.PopupItem.ConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 20px;
    padding: 5px;
    border-radius: 5px;
    background-color: #303031;
}
.PopupItem.ConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    margin: 0;
}
.PopupItem.ConfirmationPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .remove {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
    cursor: pointer;
}
.PopupItem.ConfirmationPopup > .form .form-footer .btn-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.PopupItem.ConfirmationPopup > .form .form-footer .btn-group .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.PopupItem.ConfirmationPopup > .form .form-footer .btn-group .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    min-width: 80px;
    padding: 10px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.ConfirmationPopup > .form .form-footer .btn-group .cancel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 80px;
    height: 40px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.KickMember {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 30px;
}
.PopupItem.KickMember > .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.KickMember > .form > .form-header {
    color: #14a9fc;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.PopupItem.KickMember > .form > .form-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.PopupItem.KickMember > .form > .form-body > .form-group .member-list {
    display: flex;
    flex-direction: column;
    min-height: 130px;
    max-height: 300px;
    overflow: scroll;
    overflow-x: hidden;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    .member-list
    .member-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    .member-list
    .member-item:hover
    .label {
    color: #15a9fe;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    .member-list
    .member-item
    .label {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: #e0ebff;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    .member-list
    .member-item
    .kick-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: transparent;
    border: 1px solid #15a9fe;
    min-width: 80px;
    padding: 10px;
    height: 30px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    .member-list
    .member-item
    .kick-btn:hover {
    color: #000;
    background: #15a9fe;
    transition: all 0.25s;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    .member-list::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    .member-list::-webkit-scrollbar-track {
    background: #000 !important;
    border-radius: 3px !important;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    .member-list::-webkit-scrollbar-thumb {
    background: #15a9fe;
    border-radius: 3px;
}
.PopupItem.KickMember > .form > .form-body > .form-group .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.KickMember > .form > .form-body > .form-group .label.notice {
    color: rgba(224, 235, 255, 0.314);
    font-weight: 300;
}
.PopupItem.KickMember > .form > .form-body > .form-group input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    input::-moz-placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.KickMember > .form > .form-body > .form-group input::placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.KickMember > .form > .form-body > .form-group > .info {
    font-size: 12px;
    padding: 8px 0 0;
}
.PopupItem.KickMember > .form > .form-body > .form-group > .info.error-msg {
    color: #fa4b4b;
}
.PopupItem.KickMember > .form > .form-body > .form-group > .info.info-msg {
    color: #14a9fc;
}
.PopupItem.KickMember > .form > .form-body > .form-group > .input-with-btn {
    display: flex;
    gap: 10px;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    > .input-with-btn
    .input-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    width: 80px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.KickMember > .form > .form-body > .form-group > .collection-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid hsla(0, 0%, 40%, 0.34);
    border-radius: 4px;
    min-height: 40px;
    padding: 10px;
    gap: 5px;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 20px;
    padding: 5px;
    border-radius: 5px;
    background-color: #303031;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    margin: 0;
}
.PopupItem.KickMember
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .remove {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
    cursor: pointer;
}
.PopupItem.InvitationListPopup {
    width: 500px;
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 30px;
}
.PopupItem.InvitationListPopup > .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.InvitationListPopup > .form > .form-header {
    color: #14a9fc;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.PopupItem.InvitationListPopup > .form > .form-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .invitation-list {
    display: flex;
    flex-direction: column;
    min-height: 130px;
    max-height: 300px;
    overflow: scroll;
    overflow-x: hidden;
    gap: 7px;
    margin-top: 10px;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .invitation-list
    .invitation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 5px;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .invitation-list
    .invitation-item
    .displayName {
    display: flex;
    justify-content: center;
    align-items: center;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .invitation-list
    .invitation-item
    .btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .invitation-list
    .invitation-item
    .btn-group
    .accept-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background: #15a9fe;
    min-width: 80px;
    padding: 10px;
    height: 30px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .invitation-list
    .invitation-item
    .btn-group
    .decline-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #181b1c;
    min-width: 80px;
    padding: 10px;
    height: 30px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .invitation-list::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .invitation-list::-webkit-scrollbar-track {
    background: #000 !important;
    border-radius: 3px !important;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .invitation-list::-webkit-scrollbar-thumb {
    background: #15a9fe;
    border-radius: 3px;
}
.PopupItem.InvitationListPopup > .form > .form-body > .form-group .member-list {
    display: flex;
    flex-direction: column;
    min-height: 130px;
    max-height: 300px;
    overflow: scroll;
    overflow-x: hidden;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .member-list
    .member-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .member-list
    .member-item:hover
    .label {
    color: #15a9fe;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .member-list
    .member-item
    .label {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: #e0ebff;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .member-list
    .member-item
    .kick-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: transparent;
    border: 1px solid #15a9fe;
    min-width: 80px;
    padding: 10px;
    height: 30px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .member-list
    .member-item
    .kick-btn:hover {
    color: #000;
    background: #15a9fe;
    transition: all 0.25s;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .member-list::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .member-list::-webkit-scrollbar-track {
    background: #000 !important;
    border-radius: 3px !important;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .member-list::-webkit-scrollbar-thumb {
    background: #15a9fe;
    border-radius: 3px;
}
.PopupItem.InvitationListPopup > .form > .form-body > .form-group .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    .label.notice {
    color: rgba(224, 235, 255, 0.314);
    font-weight: 300;
}
.PopupItem.InvitationListPopup > .form > .form-body > .form-group input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    input::-moz-placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    input::placeholder {
    font-size: 12px;
    color: hsla(0, 0%, 60%, 0.87);
}
.PopupItem.InvitationListPopup > .form > .form-body > .form-group > .info {
    font-size: 12px;
    padding: 8px 0 0;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    > .info.error-msg {
    color: #fa4b4b;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    > .info.info-msg {
    color: #14a9fc;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn {
    display: flex;
    gap: 10px;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    > .input-with-btn
    .input-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #15a9fe;
    width: 80px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid hsla(0, 0%, 40%, 0.34);
    border-radius: 4px;
    min-height: 40px;
    padding: 10px;
    gap: 5px;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 20px;
    padding: 5px;
    border-radius: 5px;
    background-color: #303031;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    margin: 0;
}
.PopupItem.InvitationListPopup
    > .form
    > .form-body
    > .form-group
    > .collection-box
    > .collection-item
    > .remove {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
    cursor: pointer;
}
.PopupItem.BettingHistoryPopup {
    height: calc(100vh - 200px);
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(10px);
    background: #040407;
    padding: 20px 20px 0;
    overflow: scroll;
    overflow-x: hidden;
}
.PopupItem.BettingHistoryPopup .header .title {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 20px 20px 30px;
}
.PopupItem.BettingHistoryPopup .header .title .user-icon {
    width: 40px;
}
.PopupItem.BettingHistoryPopup .header .title .nickname {
    color: #c37cff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.PopupItem.BettingHistoryPopup .header .title .sub-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.PopupItem.BettingHistoryPopup > .BettingHistory > .BettingHistoryNav {
    margin-top: 0;
}
.PopupItem.BettingHistoryPopup
    > .BettingHistory.popup
    > .SportBettingHistory
    > .bet-detail-box
    > .bet-box
    > .bet-detail
    > .game-detail-box
    > .team-box {
    min-width: 200px;
    max-width: 200px;
}
.PopupItem.BettingHistoryPopup
    > .BettingHistory.popup
    > .SportBettingHistory
    > .bet-detail-box
    > .bet-box
    > .bet-detail
    > .game-detail-box
    > .score {
    margin: 0 10px;
}
.PopupItem.BettingHistoryPopup
    > .BettingHistory.popup
    > .SportBettingHistory
    > .bet-detail-box
    > .bet-box
    > .bet-detail
    > .game-detail-box
    > .market-label {
    width: 150px;
    text-align: center;
}
.PopupItem.BettingHistoryPopup::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.BettingHistoryPopup::-webkit-scrollbar-track {
    border-radius: 3px !important;
}
.PopupItem.BettingHistoryPopup::-webkit-scrollbar-thumb {
    background: #8600f7;
    border-radius: 3px;
}
.PopupItem.BettingHistoryPopupUsers {
    height: calc(100vh - 200px);
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(10px);
    background: #040407;
    padding: 20px 20px 0;
    overflow: scroll;
    overflow-x: hidden;
}
.PopupItem.BettingHistoryPopupUsers .private-history-msg {
    width: 65vw;
    display: flex;
    justify-content: center;
    height: 90%;
    align-items: center;
}
.PopupItem.BettingHistoryPopupUsers .header .title {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 20px 20px 30px;
}
.PopupItem.BettingHistoryPopupUsers .header .title .user-icon {
    width: 40px;
}
.PopupItem.BettingHistoryPopupUsers .header .title .nickname {
    color: #c37cff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.PopupItem.BettingHistoryPopupUsers .header .title .sub-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.PopupItem.BettingHistoryPopupUsers > .BettingHistory > .BettingHistoryNav {
    margin-top: 0;
}
.PopupItem.BettingHistoryPopupUsers
    > .BettingHistory.popup
    > .SportBettingHistory
    > .bet-detail-box
    > .bet-box
    > .bet-detail
    > .game-detail-box
    > .team-box {
    min-width: 200px;
    max-width: 200px;
}
.PopupItem.BettingHistoryPopupUsers
    > .BettingHistory.popup
    > .SportBettingHistory
    > .bet-detail-box
    > .bet-box
    > .bet-detail
    > .game-detail-box
    > .score {
    margin: 0 10px;
}
.PopupItem.BettingHistoryPopupUsers
    > .BettingHistory.popup
    > .SportBettingHistory
    > .bet-detail-box
    > .bet-box
    > .bet-detail
    > .game-detail-box
    > .market-label {
    width: 150px;
    text-align: center;
}
.PopupItem.BettingHistoryPopupUsers::-webkit-scrollbar {
    width: 5px !important;
    border-radius: 3px !important;
}
.PopupItem.BettingHistoryPopupUsers::-webkit-scrollbar-track {
    border-radius: 3px !important;
}
.PopupItem.BettingHistoryPopupUsers::-webkit-scrollbar-thumb {
    background: #8600f7;
    border-radius: 3px;
}
.BettingHistoryPublic {
    display: block;
    margin: 0 auto;
    max-width: 1400px;
    min-width: 1200px;
    position: relative;
    width: 100%;
}
.BettingHistoryPublic .BettingHistoryNav {
    margin: 15px 20px 13px;
}
.BettingHistoryPublic .BettingHistoryNav .nav {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.BettingHistoryPublic .BettingHistoryNav .nav .nav-item {
    background-color: #0b0e18;
    border: 1px solid #1b222c;
    color: #444f59;
    cursor: pointer;
    display: block;
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    padding: 20px;
    position: relative;
    text-align: center;
    transition: all 0.3s;
}
.BettingHistoryPublic .BettingHistoryNav .nav .nav-item .special-stroke {
    background-color: #8600f7;
    bottom: 2px;
    box-shadow: 0 0 20px #8600f7;
    height: 5px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 3px);
    visibility: hidden;
    width: calc(100% + 2px);
}
.BettingHistoryPublic .BettingHistoryNav .nav .nav-item:hover {
    color: #fff;
    transition: all 0.3s;
}
.BettingHistoryPublic .BettingHistoryNav .nav .nav-item:hover .special-stroke {
    visibility: visible;
}
.BettingHistoryPublic .BettingHistoryNav .nav .nav-item.Active {
    color: #fff;
    transition: all 0.3s;
}
.BettingHistoryPublic .BettingHistoryNav .nav .nav-item.Active .special-stroke {
    visibility: visible;
}
.BettingHistoryPublic
    .MinigameBettingHistory
    .bet-detail-box
    .bet-footer
    .footer-content
    .btn-group,
.BettingHistoryPublic
    .SportBettingHistory
    .bet-detail-box
    .bet-footer
    .footer-content
    .btn-group {
    display: none;
}
.BettingHistoryPublic .PageNation {
    bottom: 0;
    margin-left: calc((100% - 100vw) / 2);
    position: sticky;
    width: 100vw;
    z-index: 90;
}
.empty-history-notice {
    align-items: center;
    color: #c37cff;
    display: flex;
    font-size: 25px;
    height: 500px;
    justify-content: center;
    margin: 30px auto;
}
.PopupItem.UserProfilePopup {
    width: calc(100vw - 100px);
    border: 1px solid #394558;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    padding: 30px;
}
.PopupItem.UserProfilePopup .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.PopupItem.UserProfilePopup .form .form-header {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.PopupItem.UserProfilePopup .form .form-header .form-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.PopupItem.UserProfilePopup .form .form-header .form-title .nickname {
    color: #14a9fc;
}
.PopupItem.UserProfilePopup .form .form-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.PopupItem.UserProfilePopup .form .form-body .user-form {
    flex-basis: 40%;
    flex-grow: 1;
}
.PopupItem.UserProfilePopup .form .form-body .user-form .btn {
    width: 80px;
    border-radius: 2px;
    height: 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    cursor: pointer;
}
.PopupItem.UserProfilePopup .form .form-body .user-form .btn-save {
    background: rgba(26, 148, 217, 0.98);
    color: #fff;
    border: 0;
    float: right;
    transition: all 0.3s;
}
.PopupItem.UserProfilePopup .form .form-body .user-form .btn-save.disabled {
    cursor: not-allowed !important;
}
.PopupItem.UserProfilePopup
    .form
    .form-body
    .user-form
    .btn-save.disabled:hover {
    background: #15a9fe;
    color: #000;
}
.PopupItem.UserProfilePopup .form .form-body .user-form .btn-save:hover {
    background-color: #15a9fe;
    transition: all 0.3s;
}
.PopupItem.UserProfilePopup .form .form-body .RollingQuest {
    flex-basis: 55%;
    flex-grow: 1;
}
.PopupItem.UserProfilePopup .form .form-body .form-group {
    margin-bottom: 20px;
}
.PopupItem.UserProfilePopup .form .form-body .form-group .label {
    color: #e0ebff;
    font-size: 14px;
    margin-bottom: 10px;
}
.PopupItem.UserProfilePopup .form .form-body .form-group input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    background-color: rgba(82, 82, 82, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.UserProfilePopup
    .form
    .form-body
    .form-group
    input::-moz-placeholder {
    color: #fff;
}
.PopupItem.UserProfilePopup .form .form-body .form-group input::placeholder {
    color: #fff;
}
.PopupItem.UserProfilePopup .form .form-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.PopupItem.UserProfilePopup .form .form-footer .btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.PopupItem.UserProfilePopup .form .form-footer .btn-group .btn {
    width: 80px;
    border-radius: 2px;
    height: 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    cursor: pointer;
}
.PopupItem.UserProfilePopup .form .form-footer .btn-group .btn-save {
    background: rgba(26, 148, 217, 0.98);
    color: #fff;
    border: 0;
    transition: all 0.3s;
}
.PopupItem.UserProfilePopup .form .form-footer .btn-group .btn-save.disabled {
    cursor: not-allowed !important;
}
.PopupItem.UserProfilePopup
    .form
    .form-footer
    .btn-group
    .btn-save.disabled:hover {
    background: #15a9fe;
    color: #000;
}
.PopupItem.UserProfilePopup .form .form-footer .btn-group .btn-save:hover {
    background-color: #15a9fe;
    transition: all 0.3s;
}
.PopupItem.UserProfilePopup .form .form-footer .btn-group .btn-delete {
    background: rgba(49, 65, 189, 0.612);
    color: #fff;
    border: 0;
    transition: all 0.3s;
}
.PopupItem.UserProfilePopup .form .form-footer .btn-group .btn-delete:hover {
    color: #fff;
    background-color: rgba(49, 65, 189, 0.459);
    transition: all 0.3s;
}
.PopupItem.UserProfilePopup .form .form-footer .btn-group .btn-delete:active {
    background-color: #181e25;
}
.PopupItem.UserProfilePopup .form .form-footer .btn-group .btn-cancel {
    background: #181b1c;
    color: #fff;
    border: 0;
    transition: all 0.3s;
}
.PopupItem.UserProfilePopup .form .form-footer .btn-group .btn-cancel:hover {
    color: #fff;
    background-color: #181b1c;
    transition: all 0.3s;
}
.PopupItem.UserProfilePopup .form .form-footer .btn-group .btn-cancel:active {
    background-color: #181e25;
}
.RollingQuest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.RollingQuest-header-status {
    display: flex;
    flex-basis: 40%;
    flex-shrink: 0;
}
.RollingQuest-header-status-image {
    width: 70px;
    max-width: 70px;
    min-width: 70px;
    align-self: center;
    margin-right: 10px;
}
.RollingQuest-header-status-image img {
    width: 100%;
    filter: invert(49%) sepia(84%) saturate(350%) hue-rotate(174deg)
        brightness(102%) contrast(102%);
}
.RollingQuest-header-status-subtext {
    margin: 0 0 5px;
    font-size: 13px;
}
.RollingQuest-header-status-title {
    font-size: 30px;
    color: #14a9fc;
    font-weight: 700;
    margin: 0 0 10px;
}
.RollingQuest-header-progress {
    flex-basis: 60%;
    flex-grow: 1;
    flex-shrink: 0;
}
.RollingQuest-header-progress-title {
    font-weight: bolder;
    text-align: right;
}
.RollingQuest-header-progress-title--blue {
    color: #14a9fc;
}
.RollingQuest-header-progress-bar-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.RollingQuest-header-progress-bar-label-text {
    margin: 0 0 5px;
    font-size: 10px;
    color: #7d7d7d;
}
.RollingQuest-header-progress-bar-indicator {
    width: 100%;
    height: 20px;
    background: #293442;
}
.RollingQuest-header-progress-bar-indicator-value {
    background: #14a9fc;
    height: 20px;
}
.RollingQuest-header-progress-bar-total {
    text-align: right;
    margin-right: -8px;
}
.RollingQuest-header-progress-bar-total-icon {
    width: 17px;
    margin-top: 5px;
    filter: invert(49%) sepia(84%) saturate(350%) hue-rotate(174deg)
        brightness(102%) contrast(102%);
}
.RollingQuest-header-progress-bar-total-indicator {
    color: #14a9fc;
    font-weight: bolder;
    margin: 4px 0;
}
.RollingQuest-header-progress-bar-total-percentage {
    margin: 0;
    font-size: 12px;
}
.PopupItem.NotificationMessage {
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    border: 1px solid #394558;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    color: #fff;
    display: flex;
    flex-direction: column;
    left: 50vw;
    top: 50vh;
    padding: 60px 30px 30px;
    transform: translate(-50%, -50%);
    width: 1150px;
}
.PopupItem.NotificationMessage .notification-subject {
    font-weight: 700;
    text-shadow: rgba(22, 184, 242, 0.333) 0 0 10px,
        hsla(0, 0%, 100%, 0.333) 0 0 15px, rgba(22, 184, 242, 0.333) 0 0 30px;
}
.PopupItem.NotificationMessage .notification-message {
    margin-bottom: 10px;
    white-space: pre-wrap;
}
.PopupItem.NotificationMessage .notification-content {
    display: flex;
    margin-top: 10px;
}
.PopupItem.NotificationMessage .notification-content .bet-detail-box {
    margin: 0;
}
.PopupItem.NotificationMessage .notification-content .MinigameBettingHistory,
.PopupItem.NotificationMessage .notification-content .SportBettingHistory {
    flex: 1;
}
.PopupItem.NotificationMessage .notification-content .CouponCard {
    margin: 0 auto;
}
.PopupItem.NotificationMessage .notification-content .CouponCard img {
    margin: 0;
}
.CouponCard {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.CouponCard .coupon-img {
    margin: 0 auto;
}
.CouponCard .category {
    position: absolute;
    top: 13px;
    left: 44px;
    width: 68px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.CouponCard .coupon-info {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #fff;
    width: 100%;
    padding: 0 50px;
}
.CouponCard .coupon-info .coupon_title {
    overflow: hidden;
    max-width: 395px;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.CouponCard .coupon-info .label {
    padding-right: 15px;
    font-weight: 700;
    font-size: 22px;
}
.CouponCard .coupon-info .value {
    font-weight: lighter;
    font-size: 22px;
}
.CouponCard .coupon-info .value.coupon_type {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.CouponCard:not(.expired) {
    cursor: pointer;
}
.CouponCard.expired {
    cursor: not-allowed;
}
.CouponCard.expired div,
.CouponCard.expired table {
    color: hsla(0, 0%, 100%, 0.5) !important;
}
.PopupItem.ViewConcernPopup {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #394558;
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
    left: 50vw;
    margin: 12px;
    padding: 30px;
    top: 50vh;
    transform: translate(-50%, -50%);
    width: 1100px;
}
.PopupItem.ViewConcernPopup > .cscenter-concern-title {
    align-items: center;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.459);
    color: #fff;
    display: flex;
    font-size: 20px;
    height: 50px;
    line-height: 70px;
    position: relative;
    text-transform: capitalize;
}
.PopupItem.ViewConcernPopup > .cscenter-concern-title > span {
    color: #c37cff;
    font-weight: 600;
}
.PopupItem.ViewConcernPopup .concern-header {
    background: hsla(188, 9%, 64%, 0.082);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.459);
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    height: 40px;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.ViewConcernPopup .concern-header .left {
    align-items: center;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    gap: 10px;
    height: 40px;
    width: 90%;
}
.PopupItem.ViewConcernPopup .concern-header .left .subject {
    font-size: 14px;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    max-width: 490px;
    overflow: hidden;
    padding-right: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.PopupItem.ViewConcernPopup .concern-header .left .category,
.PopupItem.ViewConcernPopup .concern-header .left .page-title {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}
.PopupItem.ViewConcernPopup .concern-header .left .arrow {
    color: hsla(0, 0%, 100%, 0.459);
    font-weight: 600;
    margin-left: 1px;
    transform: scaleY(0.5);
}
.PopupItem.ViewConcernPopup .concern-header .right {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    justify-content: flex-end;
}
.PopupItem.ViewConcernPopup .concern-header .right .date {
    font-size: 14px;
    font-weight: 400;
}
.PopupItem.ViewConcernPopup .main-message {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    height: 50vh;
    justify-content: space-between;
    margin-bottom: 10px;
    overflow: auto;
    overflow-x: hidden;
}
.PopupItem.ViewConcernPopup .main-message .concern-message {
    color: #fff;
    flex-grow: 1;
    font-size: 14px;
    margin-right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    white-space: pre-wrap;
    word-break: break-all;
}
.PopupItem.ViewConcernPopup .main-message .concern-message::-webkit-scrollbar {
    border-radius: 3px !important;
    width: 5px !important;
}
.PopupItem.ViewConcernPopup
    .main-message
    .concern-message::-webkit-scrollbar-track {
    background: transparent !important;
    border-radius: 3px !important;
}
.PopupItem.ViewConcernPopup
    .main-message
    .concern-message::-webkit-scrollbar-thumb {
    background: #8600f7 !important;
    border-radius: 3px;
}
.PopupItem.ViewConcernPopup .main-message .concern-message .main-message-sign {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    position: sticky;
}
.PopupItem.ViewConcernPopup
    .main-message
    .concern-message
    .main-message-sign
    .user {
    color: #fff;
    font-size: 14px;
    margin-left: 10px;
    margin-top: 5px;
}
.PopupItem.ViewConcernPopup
    .main-message
    .concern-message
    .main-message-sign
    img {
    height: 18px;
    margin-top: 3px;
    width: 18px;
}
.PopupItem.ViewConcernPopup .form {
    border-top: 1px solid #59595b;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    gap: 10px;
    height: 50vh;
    overflow-y: hidden;
}
.PopupItem.ViewConcernPopup .form .thread {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
    overflow: scroll;
    overflow-x: hidden;
}
.PopupItem.ViewConcernPopup .form .thread .chat-item {
    align-items: flex-start;
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    padding: 15px 40px;
}
.PopupItem.ViewConcernPopup .form .thread .chat-item .user {
    flex-shrink: 0;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 120px;
}
.PopupItem.ViewConcernPopup .form .thread .chat-item .user img {
    width: 70px;
}
.PopupItem.ViewConcernPopup .form .thread .chat-item .date {
    color: #aaa;
    flex-shrink: 0;
    font-size: 12px;
    margin-right: -15px;
    text-align: right;
    width: 80px;
}
.PopupItem.ViewConcernPopup .form .thread .chat-item div.content {
    width: 100%;
}
.PopupItem.ViewConcernPopup .form .thread .chat-item div.content .message {
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    text-align: justify;
    white-space: pre-wrap;
    word-break: break-all;
}
.PopupItem.ViewConcernPopup .form .thread .chat-item div.content .message p {
    overflow-wrap: break-word;
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
}
.PopupItem.ViewConcernPopup .form .thread .user-message {
    background-color: rgba(27, 34, 44, 0.333);
    display: flex;
    margin-bottom: 1px;
}
.PopupItem.ViewConcernPopup .form .thread .admin-message {
    background-color: #0b0e18;
}
.PopupItem.ViewConcernPopup .form .thread .admin-message .content .message {
    color: #c37cff;
    font-weight: 200;
    text-shadow: 0 0 5px #c37cff, 0 0 4px #000;
}
.PopupItem.ViewConcernPopup .form .thread .admin-message .content .message > a {
    color: #c37cff;
}
.PopupItem.ViewConcernPopup .form .thread::-webkit-scrollbar {
    border-radius: 3px !important;
    width: 5px !important;
}
.PopupItem.ViewConcernPopup .form .thread::-webkit-scrollbar-track {
    background: hsla(0, 0%, 100%, 0.2) !important;
    border-radius: 3px !important;
}
.PopupItem.ViewConcernPopup .form .thread::-webkit-scrollbar-thumb {
    background: hsla(0, 0%, 100%, 0.4) !important;
    border-radius: 3px;
}
.PopupItem.ViewConcernPopup .form .chatbox {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
    height: 40px;
    justify-self: center;
}
.PopupItem.ViewConcernPopup .form .chatbox .message-area {
    background: transparent;
    border: 1px solid #394558;
    border-radius: 6px;
    color: #fff;
    flex-shrink: 0;
    outline: none;
    padding: 0 15px;
    width: 80%;
}
.PopupItem.ViewConcernPopup .form .chatbox .send-btn {
    align-items: center;
    background: #8600f7;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    transition: all 0.3s;
}
.PopupItem.ViewConcernPopup .form .chatbox .send-btn:hover {
    background: #c37cff;
}
.PopupItem.ViewConcernPopup .content-box {
    align-items: flex-start;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.459);
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    margin-bottom: 20px;
    min-height: 200px;
    padding: 15px 40px;
}
.PopupItem.ViewConcernPopup .content-box .user {
    flex-shrink: 0;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 120px;
}
.PopupItem.ViewConcernPopup .content-box .user img {
    width: 70px;
}
.PopupItem.ViewConcernPopup .content-box .date {
    color: #aaa;
    flex-shrink: 0;
    font-size: 12px;
    margin-right: -15px;
    text-align: right;
    width: 80px;
}
.PopupItem.ViewConcernPopup .content-box div.content {
    width: 100%;
}
.PopupItem.ViewConcernPopup .content-box div.content .message {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 13px;
    white-space: pre-wrap;
}
.PopupItem.ViewConcernPopup .content-box div.content .message p {
    overflow-wrap: break-word;
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
}
.PopupItem.ViewConcernPopup p {
    margin: 0;
    padding: 0;
}
.PopupItem.ViewConcernPopup
    .MinigameBettingHistory
    .bet-container
    .bet-detail-box,
.PopupItem.ViewConcernPopup
    .SportBettingHistory
    .bet-container
    .bet-detail-box {
    margin-left: 0;
    margin-right: 0;
}
.AttachBetHistoryPopup {
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(4, 4, 7, 0.1);
    border: 1px solid #394558;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    color: #fff;
    display: flex;
    flex-direction: column;
    left: 50vw;
    padding: 30px;
    top: 50vh;
    transform: translate(-50%, -50%);
    width: 970px;
}
.AttachBetHistoryPopup .SportBettingHistory {
    max-height: 25vh;
    overflow-y: scroll;
}
@media screen and (min-width: 1500px) {
    .AttachBetHistoryPopup .SportBettingHistory {
        max-height: 30vh;
    }
}
@media screen and (min-width: 1900px) {
    .AttachBetHistoryPopup .SportBettingHistory {
        max-height: 40vh;
    }
}
@media screen and (min-width: 2500px) {
    .AttachBetHistoryPopup .SportBettingHistory {
        max-height: 50vh;
    }
}
.AttachBetHistoryPopup .SportBettingHistory::-webkit-scrollbar {
    border-radius: 3px !important;
    width: 5px !important;
}
.AttachBetHistoryPopup .SportBettingHistory::-webkit-scrollbar-track {
    border-radius: 3px !important;
}
.AttachBetHistoryPopup .SportBettingHistory::-webkit-scrollbar-thumb {
    background: #15a9fe;
    border-radius: 3px;
}
.AttachBetHistoryPopup .cscenter-form {
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 20px;
}
.AttachBetHistoryPopup .cscenter-form .title {
    font-size: 25px;
    margin-bottom: 16px;
    text-transform: capitalize;
}
.AttachBetHistoryPopup .cscenter-form .title span {
    color: #16b8f2;
    font-weight: 600;
}
.AttachBetHistoryPopup .cscenter-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}
.AttachBetHistoryPopup .cscenter-form .form-group .label {
    font-size: 16px;
    text-transform: capitalize;
    width: 80px;
}
.AttachBetHistoryPopup .cscenter-form .form-group input,
.AttachBetHistoryPopup .cscenter-form .form-group select,
.AttachBetHistoryPopup .cscenter-form .form-group textarea {
    background-color: rgba(82, 82, 82, 0.3);
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.333),
        0 0 1px hsla(0, 0%, 81%, 0.5), 0 0 3px rgba(10, 40, 61, 0.333);
    color: #e0ebff;
    color: hsla(0, 0%, 100%, 0.75);
    font-size: 14px;
    font-weight: 400;
    height: 40px;
    margin-bottom: 4px;
    outline: none;
    padding-left: 6px;
    padding-right: 6px;
    text-align: start;
    width: 100%;
}
.AttachBetHistoryPopup .cscenter-form .form-group input:focus,
.AttachBetHistoryPopup .cscenter-form .form-group select:focus,
.AttachBetHistoryPopup .cscenter-form .form-group textarea:focus {
    color: #fff;
}
.AttachBetHistoryPopup .cscenter-form .form-group input::-moz-placeholder,
.AttachBetHistoryPopup .cscenter-form .form-group select::-moz-placeholder,
.AttachBetHistoryPopup .cscenter-form .form-group textarea::-moz-placeholder {
    color: hsla(0, 0%, 100%, 0.459);
    padding-left: 5px;
}
.AttachBetHistoryPopup .cscenter-form .form-group input::placeholder,
.AttachBetHistoryPopup .cscenter-form .form-group select::placeholder,
.AttachBetHistoryPopup .cscenter-form .form-group textarea::placeholder {
    color: hsla(0, 0%, 100%, 0.459);
    padding-left: 5px;
}
.AttachBetHistoryPopup .cscenter-form .form-group input {
    padding: 0 16px;
}
.AttachBetHistoryPopup .cscenter-form .form-group textarea {
    height: 200px;
    overflow: auto;
    padding: 12px 16px;
    resize: none;
}
.AttachBetHistoryPopup .cscenter-form .form-group textarea::-webkit-scrollbar {
    width: 1em;
}
.AttachBetHistoryPopup
    .cscenter-form
    .form-group
    textarea::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.AttachBetHistoryPopup
    .cscenter-form
    .form-group
    textarea::-webkit-scrollbar-thumb {
    background-color: #a9a9a9;
    outline: 1px solid #708090;
}
.AttachBetHistoryPopup .cscenter-form .form-group select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('/assets/images/icons/angle-small-down.png');
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 10px;
    padding-left: 16px;
    text-transform: capitalize;
}
.AttachBetHistoryPopup .cscenter-form .form-group select option:disabled {
    color: hsla(0, 0%, 100%, 0.5);
}
.AttachBetHistoryPopup .cscenter-form .form-group select option:nth-child(2n) {
    background-color: #4f4f4f;
}
.AttachBetHistoryPopup .cscenter-form .form-group select option:nth-child(odd) {
    background-color: #333232;
}
.AttachBetHistoryPopup .cscenter-form .form-group > .category-list {
    align-items: center;
    display: flex;
    font-size: 14px;
    gap: 15px;
}
.AttachBetHistoryPopup .cscenter-form .submit-btn {
    align-items: center;
    background: #8600f7;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 800;
    height: 50px;
    justify-content: center;
    line-height: 36px;
    position: relative;
    text-transform: capitalize;
    transition: all 0.2s;
    width: 100%;
}
.AttachBetHistoryPopup .cscenter-form .submit-btn:hover {
    background-color: #222a33;
    color: #fff;
    transition: all 0.2s;
}
.AttachBetHistoryPopup .cscenter-form .submit-btn:active {
    background-color: #181e25;
}
.PopupItem.SlotJackpotPopup {
    width: 500px;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}
.PopupItem.SlotJackpotPopup img {
    cursor: pointer;
    z-index: 999;
}
.PopupItem.SlotJackpotPopup .animated-container {
    text-shadow: #ff00e1 0 0 5px;
    position: absolute;
    top: 66.5%;
    left: 50%;
    letter-spacing: -1px;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
.PopupItem.SlotJackpotPopup .animated-container * {
    font-weight: 600;
}
.PopupItem.UserProfilePopup2 {
    background: #0b141c;
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.35) !important;
    color: #fff;
    display: flex;
    flex-direction: column;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    width: 700px;
}
.PopupItem.UserProfilePopup2 .PopupCloseButton {
    top: 0;
    height: 0;
    left: 0;
    right: 0;
}
.PopupItem.UserProfilePopup2 .Close-Btn-Icon {
    position: absolute;
    right: 0;
    top: -40px;
    filter: brightness(3) grayscale(1);
}
.PopupItem.UserProfilePopup2 .toggle-checkbox {
    position: absolute;
    bottom: 3px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: flex;
    align-self: center;
    height: 25px;
    align-items: center;
}
.PopupItem.UserProfilePopup2 .toggle-checkbox input {
    display: none;
}
.PopupItem.UserProfilePopup2 .toggle-checkbox-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
    width: 52px;
}
.PopupItem.UserProfilePopup2 .toggle-checkbox-slider:before {
    position: absolute;
    content: '';
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    transition: 0.4s;
    border-radius: 50%;
}
.PopupItem.UserProfilePopup2
    .toggle-checkbox
    input:checked
    + .toggle-checkbox-slider {
    background-color: #c37cff;
}
.PopupItem.UserProfilePopup2
    .toggle-checkbox
    input:checked
    + .toggle-checkbox-slider:before {
    transform: translateX(26px);
}
.PopupItem.UserProfilePopup2 .toggle-checkbox-label {
    margin-left: 60px;
    font-size: 13px;
}
.PopupItem.UserProfilePopup2 .form-header {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.PopupItem.UserProfilePopup2 .form {
    display: flex;
    flex-direction: column;
    position: relative;
}
.PopupItem.UserProfilePopup2 .form .form-body {
    align-items: center;
    display: flex;
    gap: 0;
}
.PopupItem.UserProfilePopup2 .form .form-body .user-info {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    padding-left: 20px;
    height: 350px;
    background: linear-gradient(45deg, #201a45, #1a2e45);
}
.PopupItem.UserProfilePopup2 .form .form-body .user-info .icon-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .icon-container
    .user-icon {
    border-radius: 50%;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100px;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .icon-container
    .edit-btn {
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    bottom: -10px;
    cursor: pointer;
    display: flex;
    height: 30px;
    justify-content: center;
    position: absolute;
    right: 10px;
    width: 30px;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .icon-container
    .edit-btn
    input[type='file'] {
    display: none;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .icon-container
    .edit-btn
    img {
    height: 15px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    width: 15px;
}
.PopupItem.UserProfilePopup2 .form .form-body .user-info .nickname-container {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .nickname-container
    .nickname-validation-message {
    color: red;
    font-size: 13px;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .nickname-container
    .nickname-input-container {
    display: flex;
    height: 40px;
    margin-top: 20px;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .nickname-container
    .nickname-input-container
    .nickname-text {
    align-items: center;
    display: flex;
    font-size: 16px;
    justify-content: center;
    width: 100%;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .nickname-container
    .nickname-value {
    align-items: center;
    background: transparent;
    border: 1px solid hsla(0, 0%, 100%, 0.278);
    border-bottom-left-radius: 4px;
    border-right: 0;
    border-top-left-radius: 4px;
    color: #fff;
    display: flex;
    font-size: 12px;
    height: 100%;
    justify-content: center;
    padding: 3px 0;
    text-align: center;
    width: 75%;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .nickname-container
    .edit-nickname-btn {
    align-items: center;
    background-color: #13a9fe;
    border: 1px solid #13a9fe;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    color: #000;
    cursor: pointer;
    display: flex;
    flex-grow: 1;
    font-size: 11px;
    height: 100%;
    padding: 3px 5px;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .nickname-container
    .edit-nickname-btn[disabled] {
    background: gray;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .nickname-container
    .edit-nickname-btn:hover:not([disabled]) {
    background-color: #0e97e5;
    transition: all 0.25s;
}
.PopupItem.UserProfilePopup2 .form .form-body .user-info .funds-container {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-around;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .funds-container
    .fund-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: nowrap;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .funds-container
    .fund-item
    .value {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.PopupItem.UserProfilePopup2
    .form
    .form-body
    .user-info
    .funds-container
    .fund-item
    .label {
    color: #ddd;
    font-size: 12px;
}
.PopupItem.UserProfilePopup2 .form .form-body hr {
    display: none;
}
.PopupItem.UserProfilePopup2 .form .form-body .rolling-info {
    flex-grow: 1;
    padding-left: 20px;
    padding-right: 20px;
}
.PopupItem.UserProfilePopup2 .form .show-rolling-history {
    align-items: center;
    background-color: #8600f7;
    border-radius: 6px;
    bottom: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    font-weight: 400;
    justify-content: center;
    padding: 10px;
    position: absolute;
    right: 0;
    transition: all 0.2s;
    width: auto;
}
.PopupItem.UserProfilePopup2 .form .show-rolling-history:hover {
    background: #8600f7;
    transition: all 0.2s;
}
