/**
* Design By Eggda-Studio
**/
@import url("https://fonts.googleapis.com/css?family=Prompt:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=thai");
@import url("https://fonts.googleapis.com/css?family=Mitr:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=thai");
@import url("https://fonts.googleapis.com/css?family=Asap:400,700|Roboto");

body {
    font-family: "Prompt", sans-serif;
    color: #fff;
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0
}

a:link {
    text-decoration: none;
    outline: 0 !important;
}

a:visited {
    text-decoration: none;
    outline: 0 !important;
}

a:hover {
    text-decoration: none;
    outline: 0 !important;
}

a:active {
    text-decoration: none;
    outline: 0 !important;
}

/**
*  Particles JS
**/
#particles-js {
    position: absolute;
    width: 100%;
    height: 650px;
    top: 82px;
    background-image: url('');
    background-repeat: repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 2;
    pointer-events: none;
}

/**
* Header Box Wrapper
**/
.warpper-table {
    width: 1200px;
    border-spacing: 0;
    border-collapse: collapse;
}

.wrapper {
    width: 100%;
    min-width: 1200px;
    height: 1200px;
    background-image: url(../../images/bg_page.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.change {
    position: absolute;
    width: 100%;
    min-width: 1200px;
    height: 1200px;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url(../../images/bg_page1.jpg);
    z-index: 1;
    -webkit-animation: 5s change infinite linear;
    -moz-animation: 5s change infinite linear;
    -o-animation: 5s change infinite linear;
    -ms-animation: 5s change infinite linear;
    animation: 5s change infinite linear;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes change {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes change {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.header_table {
    width: 1200px;
    position: relative;
    z-index: 2;
    margin: -85.5em auto;
}

.footer_table {
    width: auto;
    position: relative;
    z-index: 2;
    margin: 79.5em auto;
    background-image: url(../../images/bg_footer.png);
    background-position: top center;
    background-repeat: no-repeat;
    height: 78px;
}

.header_img {
    width: 1200px;
    height: 0;
    position: absolute;
    z-index: 3;
}

.header_img>div {
    position: absolute;
}

.header_logo {
    background: url(../../images/logo.png);
    width: 500px;
    height: 500px;
    position: absolute;
    z-index: 99;
    top: 3em;
    left: 24em;
    -webkit-animation: 8s heart infinite linear;
    -moz-animation: 8s heart infinite linear;
    animation: 8s heart infinite linear;
}

@-webkit-keyframes heart {

    0%,
    100% {
        -webkit-transform: scale(1);
        opacity: 0.95;
        transform: scale(1);
        opacity: 0.95;
        transform: translate(5%, 0%) rotate(1deg);
    }

    30%,
    80% {
        -webkit-transform: scale(0.95);
        opacity: 1;
        transform: scale(0.95);
        opacity: 1;
    }

    40%,
    60% {
        -webkit-transform: scale(1);
        opacity: 0.95;
        transform: scale(1);
        opacity: 0.95;
    }

    50%,
    70% {
        -webkit-transform: scale(0.95);
        opacity: 1;
        transform: scale(0.95);
        opacity: 1;
        transform: translate(-5%, 0%) rotate(1deg);
    }
}

@keyframes heart {

    0%,
    100% {
        -webkit-transform: scale(1);
        opacity: 0.95;
        transform: scale(1);
        opacity: 0.95;
        transform: translate(5%, 0%) rotate(1deg);
    }

    30%,
    80% {
        -webkit-transform: scale(0.95);
        opacity: 1;
        transform: scale(0.95);
        opacity: 1;
    }

    40%,
    60% {
        -webkit-transform: scale(1);
        opacity: 0.95;
        transform: scale(1);
        opacity: 0.95;
    }

    50%,
    70% {
        -webkit-transform: scale(0.95);
        opacity: 1;
        transform: scale(0.95);
        opacity: 1;
        transform: translate(-5%, 0%) rotate(1deg);
    }
}

::selection {
    background: #87b21f;
    color: #f3ffc9;
}

::-moz-selection {
    background: #87b21f;
    color: #f3ffc9;
}

/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #000;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #007bff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/**
* Event Box
**/
.events-row {
    margin-right: 5px;
    margin-left: 0px;
    margin-top: 20px;
}

.events-col {
    position: relative;
    min-height: 1px;
    padding-right: 8px;
    padding-left: 8px;
    float: left;
    width: 25%;
}

.events-box {
    margin-top: 10px;
    width: 287px;
    height: 350px;
    position: relative;
    padding: 10px;
    margin-bottom: 1.5em;
    background-color: #141414;
    border: solid 1px #2a2a2a;
    -webkit-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.events-box:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

figure {
    margin: -10px 0 0 -10px;
}

figure {
    padding: 0;
    background: transparent;
    overflow: hidden;
    -webkit-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}

.boximg-shine2 {
    margin-bottom: 5px;
    width: 275px;
    height: 200px;
}

.boximg-shine2 figure {
    position: relative;
}

.boximg-shine2 figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.boximg-shine2 figure:hover::before {
    -o-animation: shine .75s ease-in-out;
    -ms-animation: shine .75s ease-in-out;
    -moz-animation: shine .75s ease-in-out;
    -webkit-animation: shine .75s ease-in-out;
    animation: shine .75s ease-in-out;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.events-text-harder {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #52dfff;
    padding: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-overflow: '...';
}

.events-text {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.8px;
    color: #d2d2d2;
    padding: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-overflow: '...';
}

.events-time {
    font-family: Tahoma;
    font-size: 11px;
    color: #c3c3c3;
    padding: 5px;
}

.events-botton {
    padding: 5px;
}

.btn-view {
    color: #f9ff97;
    background-color: #1b1b1b;
    border-color: #353535;
    letter-spacing: 0.5px;
    font-weight: 200;
}

.btn-view:hover {
    color: #fff;
    background-color: #212121;
    border-color: #000000;
}

.btn-view:focus,
.btn-view.focus {
    color: #fffa57;
    background-color: #292929;
    border-color: #000000;
    outline: 0 !important;
}

.btn-view:active,
.btn-view.active {
    color: #fffa57;
    background-color: #292929;
    border-color: #000000;
}

.btn:active,
.btn.active {
    background-image: none;
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.events-time span {
    font-family: Tahoma;
    float: right;
}

.status-event {
    display: inline;
    padding: .2em .8em .3em .8em;
    font-size: 85%;
    font-weight: 300;
    line-height: 1em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    vertical-align: baseline;
    -webkit-border-radius: 50em;
    border-radius: 50em;
    -webkite-text-shadow: 0 1px 0 rgba(0, 0, 0, 0.20);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.20);
    -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.bg-notice {
    background-color: #2495cc;
}

.bg-update {
    background-color: #65a72a;
}

.bg-event {
    background-color: #fd973f;
}

.bg-promotion {
    background-color: #ff6b6b;
}

/**
* Allnews Box
**/
.allnews-row {
    margin-right: 20px;
    margin-left: 60px;
}

.allnews-col {
    position: relative;
    min-height: 1px;
    padding-right: 8px;
    padding-left: 8px;
    float: left;
    width: 33.33333333%;
}

.allnews-box {
    margin-top: 15px;
    width: 320px;
    height: 350px;
    position: relative;
    padding: 10px;
    margin-bottom: 1.5em;
    background-color: #fff;
    border: solid 1px rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.05);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.allnews-box:hover {
    margin-top: 15px;
    width: 320px;
    height: 350px;
    position: relative;
    padding: 10px;
    margin-bottom: 1.5em;
    background-color: #fff;
    border: solid 1px rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 7px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 7px 0 rgba(0, 0, 0, 0.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

figure {
    margin: -10px 0 0 -10px;
}

figure {
    padding: 0;
    background: transparent;
    overflow: hidden;
    -webkit-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}

.boximg-shine {
    margin-bottom: 5px;
    width: 308px;
    height: 200px;
}

.boximg-shine figure {
    position: relative;
}

.boximg-shine figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.boximg-shine figure:hover::before {
    -o-animation: shine .75s ease-in-out;
    -ms-animation: shine .75s ease-in-out;
    -moz-animation: shine .75s ease-in-out;
    -webkit-animation: shine .75s ease-in-out;
    animation: shine .75s ease-in-out;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.allnews-text-harder {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #000;
    padding: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-overflow: '...';
}

.allnews-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: #636363;
    padding: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-overflow: '...';
}

.allnews-time {
    font-family: Tahoma;
    font-size: 11px;
    color: #c3c3c3;
    padding: 5px;
}

.allnews-botton {
    padding: 5px;
}

.btn-view2 {
    color: #ff5757;
    background-color: #fff;
    border-color: #e8e8e8;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.btn-view2:hover {
    color: #333;
    background-color: #e8e8e8;
    border-color: #e8e8e8;
}

.btn-view2:focus,
.btn-view.focus {
    color: #ff5757;
    background-color: #fff;
    border-color: #e8e8e8;
    outline: 0 !important;
}

.btn-view2:active,
.btn-view.active {
    color: #ff5757;
    background-color: #fff;
    border-color: #e8e8e8;
}

.btn:active,
.btn.active {
    background-image: none;
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.allnews-time span {
    font-family: Tahoma;
    float: right;
}

/**
* Login Form
**/
.box-form {
    width: 90%;
    padding-right: 15px;
    padding-top: 1.5em;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 2px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #000;
}

.form-login {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.42857143;
    color: #3a9aff;
    background-color: #fff;
    background-image: none;
    border: 1px solid #a3d9ff;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 0 2px #ebf7ff;
    box-shadow: 0 0 0 2px #ebf7ff;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-login:focus {
    border-color: #b2d8ff;
    outline: 0 !important;
    -webkit-box-shadow: 0 0 4px #a2cfff;
    box-shadow: 0 0 4px #a2cfff;
}

.form-login::-moz-placeholder {
    color: #3a9aff;
    opacity: 1;
}

.form-login:-ms-input-placeholder {
    color: #3a9aff;
}

.form-login::-webkit-input-placeholder {
    color: #3a9aff;
}

.form-login::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-login[disabled],
.form-login[readonly],
fieldset[disabled] .form-login {
    background-color: #ebf7ff;
    opacity: 1;
}

.form-login[disabled],
fieldset[disabled] .form-login {
    cursor: not-allowed;
}

textarea.form-login {
    height: auto;
}

.list-group-item {
    padding: 4.8px 10px;
    font-size: 14px;
    font-weight: 300;
}

a.list-group-item {
    color: #555;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    outline: 0 !important;
}

a.list-group-item:hover {
    color: #ff4b4b;
    text-decoration: none;
    background-color: #f5f5f5;
    padding-left: 15px;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

a.list-group-item:focus {
    color: #ff4b4b;
    text-decoration: none;
    background-color: #f5f5f5;
    padding-left: 15px;
    outline: 0 !important;
}

.badge-online {
    display: inline-block;
    min-width: 10px;
    padding: 4px 11px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #0da249;
    border-radius: 10px;
    -webkit-text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.badge-offline {
    display: inline-block;
    min-width: 10px;
    padding: 4px 11px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #f34343;
    border-radius: 10px;
    -webkit-text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.badge-cash {
    display: inline-block;
    min-width: 10px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #21a4f1;
    border-radius: 10px;
    -webkit-text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.badge-log {
    display: inline-block;
    min-width: 10px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #ff9800;
    border-radius: 10px;
    -webkit-text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.badge-old {
    display: inline-block;
    min-width: 10px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #808080;
    border-radius: 10px;
    -webkit-text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

/**
* Button Login From
**/
.btn-submit {
    color: #fff;
    background-color: #55d465;
    border-color: #55d465;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-submit:hover {
    color: #fff;
    background-color: #3dbb4d;
    border-color: #3dbb4d;
}

.btn-submit:focus,
.btn-submit.focus {
    color: #fff;
    background-color: #2ac13d;
    border-color: #2ac13d;
    outline: 0 !important;
}

.btn-submit:active,
.btn-submit.active {
    color: #fff;
    background-color: #2ac13d;
    border-color: #2ac13d;
}

.btn-reset {
    color: #333;
    background-color: #eaeaea;
    border-color: #eaeaea;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.15);
}

.btn-reset:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #e6e6e6;
}

.btn-reset:focus,
.btn-reset.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #e6e6e6;
    outline: 0 !important;
}

.btn-reset:active,
.btn-reset.active {
    color: #333;
    background-color: #e2e2e2;
    border-color: #e2e2e2;
}

.btn-register {
    color: #fff;
    background-color: #75d3ff;
    border-color: #75d3ff;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-register:hover {
    color: #fff;
    background-color: #5fccff;
    border-color: #5fccff;
}

.btn-register:focus,
.btn-register.focus {
    color: #fff;
    background-color: #51c1f5;
    border-color: #51c1f5;
    outline: 0 !important;
}

.btn-register:active,
.btn-register.active {
    color: #fff;
    background-color: #51c1f5;
    border-color: #51c1f5;
}

.btn:active,
.btn.active {
    background-image: none;
    outline: 0 !important;
    -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.125);
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.125);
}

/**
* Alert Group
**/
.eddga-alert {
    padding: 9px;
    margin-bottom: 5px;
    margin-top: 8px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.eddga-alert-warning {
    color: #90723d;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.eddga-alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.eddga-alert-danger {
    color: #db2828;
    background-color: #ffe8e6;
    border-color: #ffa5a5;
}

.eddga-alert-plain {
    background: #f8f8f8;
    border-color: #d1d1d1;
    color: #8c8c8c
}

/**
* Modal
**/
.modal-body {
    padding: 0px 15px 0px;
}

.modal-lg {
    width: 900px;
    margin: 100px auto 0;
}

.modal-old {
    width: 813px;
    margin: 8em auto;
}

.modal-body2 .close {
    margin-top: -11px;
}

.modal-body2 {
    padding: 5px;
}

.modal-header {
    border-bottom: none;
}

.modal-header .close {
    margin-top: -10px;
}

.modal-open {
    overflow: hidden;
    overflow-y: scroll;
    padding-right: 0 !important;
}

.modal.fade .modal-dialog {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    top: 300px;
    opacity: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
}

.modal.fade.in .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: translate3d(0, -300px, 0);
    transform: translate3d(0, -300px, 0);
    opacity: 1;
}

.close {
    float: right;
    font-size: 30px;
    font-weight: normal;
}

.close:hover,
.close:focus {
    outline: 0 !important;
}

.panel2 {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.panel-modal {
    border-color: #fff;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #3c64ff;
}

.table>thead>tr>th {
    vertical-align: bottom;
    color: #ff7736;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f9f9f9;
}

.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: middle;
    font-size: 12px;
    border-top: 1px solid #f9f9f9;
}

.btn-save {
    color: #ff8581;
    background-color: #fff;
    border-color: #ffb3b1;
    border-width: 1px;
    letter-spacing: 0.5px;
    -webkit-transition: .5s all;
    transition: .5s all;
}

.btn-save:hover {
    color: #fff;
    background-color: #ef706d;
    border-color: #ef706d;
    border-width: 1px;
    -webkit-text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.btn-save:focus {
    color: #bb4b48;
    background-color: #ffafad;
    border-color: #ec9492;
    border-width: 1px;
    outline: 0 !important;
    -webkit-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.45);
}

.btn-save:active {
    color: #fff;
    background-color: #ff9491;
    border-color: #ff9491;
    border-width: 1px;
    -webkit-text-shadow: 0 1px 0 rgba(0, 0, 0, 0.20);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.20);
}

.btn:active {
    background-image: none;
    outline: 0 !important;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .20);
}

.swal2-container.swal2-shown {
    background: linear-gradient(to right, #9655ff, #657ef9);
}

/* Scrollbar */
body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #fff;
}

body::-webkit-scrollbar-track {
    background-color: #fff;
}

body::-webkit-scrollbar-thumb {
    background: #eee;
}

/**
* Dashboard System
**/
.ui.message {
    background: #fff;
    box-shadow: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.ui.text.container {
    max-width: 1100px !important;
    font-size: 1.5rem;
}

.ui.form {
    font-size: 1.5rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.ui.button,
.ui.buttons .button,
.ui.buttons .or {
    font-size: 1.5rem;
}

.ui.menu {
    font-size: 1.5rem;
}

.ui.segment,
.ui.segments .segment {
    font-size: 1.5rem;
    margin-bottom: 100px !important;
}

.ui.statistic>.value,
.ui.statistics .statistic>.value {
    font-size: 6rem !important;
}

.ui-red-status {
    color: #DB2828 !important;
    font-size: 1em;
    font-weight: 400;
}

.ui-green-status {
    color: #21BA45 !important;
    font-size: 1em;
    font-weight: 400;
}

.ui-org-status {
    color: #ff8433 !important;
    font-size: 1em;
    font-weight: 400;
}

.ui.breadcrumb .active.section {
    font-weight: 400;
}

.ui.breadcrumb a {
    color: #657ef9;
}

.date-right {
    color: #000000;
    font-size: 1.28571429rem;
    font-weight: 400;
    padding-top: 5px;
    padding-right: 5px;
}

.ui.label {
    font-weight: 300;
}

.swal2-container.swal2-shown {
    background: linear-gradient(to right, #9655ff, #657ef9);
}

.ui.form .field>label {
    font-weight: 400;
}

.ui.selection.dropdown .menu>.item {
    font-size: 14px;
}

.ui.dropdown .menu .selected.item,
.ui.dropdown.selected {
    color: rgba(255, 0, 0, 0.95);
}

.ui.dropdown .menu .active.item {
    font-weight: normal;
}

.ui.checkbox label {
    padding-left: 2em;
    font-size: 1.5em;
}

.ui.table thead th {
    font-weight: 600;
}

b,
strong {
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.ui.basic.table {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.main-header {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 20px 0 25px;
    padding-bottom: 7px;
    text-align: center;
}

.box-sv {
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 8px rgba(214, 214, 214, 0.2);
    box-shadow: 0 1px 8px rgba(214, 214, 214, 0.2);
}

.box-green {
    border-color: #eee;
}

.line-box {
    margin-top: 12px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #f5f5f5;
}

.box-sv-body {
    padding: 10px;
}

.box-text-header {
    font-size: 16px;
    margin-top: 3px;
    margin-bottom: -5px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #636363;
}

.box-text-haeder {
    font-size: 16px;
    margin-top: 3px;
    margin-bottom: -5px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #636363;
}

.box-text-haeder small {
    font-size: 75%;
    color: #757575;
}

/* Grid System */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.col {
    padding-left: 15px;
    padding-right: 15px;
    flex: 1;
}

/* Column Widths */
.col-1 {
    flex: 0 0 8.33%;
    max-width: 8.33%;
}

.col-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.col-5 {
    flex: 0 0 41.66%;
    max-width: 41.66%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
}

.col-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33%;
    max-width: 83.33%;
}

.col-11 {
    flex: 0 0 91.66%;
    max-width: 91.66%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Card Component */
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 15px 0;
}

.card-header {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-body {
    font-size: 1rem;
    color: #333;
}

/* Card Image Top */
.card-img-top {
    width: 100%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: block;
}

/* List Group */
.list-group {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #ddd;
}

.list-group-item {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    background: #f9f9f9;
}

.list-group-item:last-child {
    border-bottom: none;
}

@media(max-width:1170px) {

    body,
    html {
        width: 1200px;
    }
}