@import url(//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,cyrillic-ext,greek-ext,vietnamese);
@import url('https://fonts.googleapis.com/css?family=Roboto');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #545454;
    letter-spacing: 1px;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}

fieldset {
    margin-bottom: 20px;
}

legend {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
}

#container {
    min-height: 100%;
    width: 100%;
    position: relative;
    background: #f6f6f6;
    overflow: hidden;
}

.container-fluid {
    padding: 0 20px;
}

#alert {
    z-index: 9999;
    pointer-events: all;
}

#alert .alert {
    margin-bottom: 15px;
}

#header {
    border-bottom: 1px solid #d8d8d8;
    box-shadow: 0px 0px 3px #CCCCCC;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

#header .navbar-nav > li > .nav-link {
    color: #6D6D6D;
}

#header .navbar-nav li > .nav-link:hover, #header .navbar-nav li.show > .nav-link {
    background: #EEEEEE;
}

/* Header Notification */
#nav-notification .nav-link {
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
    font-size: 24px;
}

#nav-notification > .nav-link .badge {
    position: absolute;
    top: 7px;
    right: 12px;
    padding: 3px 4px 2px 4px;
    opacity: 0.8;
    border-radius: 6px;
}

/* Desktop */
@media (min-width: 992px) {
    #nav-notification .nav-link {
        line-height: 50px;
    }

    #nav-notification > .nav-link .badge {
        top: 14px;
        right: 11px;
    }
}

#nav-language .nav-link {
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
}

@media (min-width: 992px) {
    #nav-language .nav-link {
        line-height: 50px;
    }
}

/* Header Profile */
#nav-profile .nav-link {
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
}

#nav-profile img {
    max-width: 30px;
}

/* Desktop */
@media (min-width: 992px) {
    #nav-profile .nav-link {
        padding-left: 10px;
        padding-right: 10px;
        line-height: 50px;
    }

    #nav-profile img {
        max-width: 35px;
    }
}

/* Header Logout / Login */
#nav-logout > .nav-link, #nav-login > .nav-link {
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
    font-weight: 600;
}

/* Desktop */
@media (min-width: 992px) {
    #nav-logout > .nav-link, #nav-login > .nav-link {
        padding-left: 10px;
        padding-right: 10px;
        line-height: 50px;
    }
}

/* Menu Button */
#button-menu {
    font-size: 25px;
    padding: 0px 16px;
    margin: 2px;
    cursor: pointer;
    color: #6D6D6D;
}

/* Desktop */
@media (min-width: 992px) {
    #button-menu {
        padding: 10px 16px;
    }
}

#column-left {
    width: 235px;
    height: 100%;
    overflow: auto;
    background-color: #242d37;
    position: absolute;
    top: 0px;
    left: -235px;
    padding-top: 60px;
}

#column-left::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(200, 200, 200, 0);
}

#column-left::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(128, 139, 156, 0.2);
}

#content {
    padding-bottom: 40px;
}

#column-left, #content, #footer {
    transition: all 0.3s;
}

#column-left + #content, #column-left + #content + #footer {
    position: relative;
    left: 0px;
}

#column-left.active {
    left: 0px;
}

#column-left.active + #content, #column-left.active + #content + #footer {
    left: 235px;
}

/* Desktop */
@media (min-width: 992px) {
    #column-left {
        left: 0px;
    }

    #column-left + #content, #column-left + #content + #footer {
        left: 0px;
        margin-left: 235px;
    }

    #column-left.active + #content, #column-left.active + #content + #footer {
        left: 0px;
        margin-left: 235px;
    }
}

/* Navigation */
#navigation {
    text-transform: uppercase;
    padding: 15px 15px 15px 15px;
    color: #FFFFFF;
    background: #19222E;
    display: block;
}

/* Menu */
#menu, #menu ul, #menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

#menu {
    margin-bottom: 25px;
}

#menu li a {
    text-decoration: none;
    display: block;
    padding: 10px;
    cursor: pointer;
    border-bottom: 0px solid #515151;
}

#menu li a.parent:after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    float: right;
    margin-right: 8px;
}

#menu li a.parent:after {
    content: "\f107";
}

#menu li a.collapsed:after {
    content: "\f105";
}

/* 1st lvl */
#menu > li {
    position: relative;
    border-bottom: 1px solid #2b3642;
}

#menu > li > a {
    font-size: 14px;
    color: #b3cbdd;
    padding-left: 20px;
    border-bottom: 0px solid #585858;
}

#menu > li > a:hover {
    background-color: #1B2127;
}

#menu > li > a > i {
    font-size: 16px;
    width: 18px;
    margin-right: 5px;
    /*color: #b3cbdd;*/
}

#menu > li.active > a {
    color: #0b91d2;

    background-color: #171b21;
}

#menu > li > ul {
    background-color: #293141;
}

/* 2nd lvl */
#menu li li a {
    color: #7f8a9b;
}

#menu li li a:before {
    font-family: 'Font Awesome 6 Free';
    content: "\f101";
    font-weight: 900;
    font-size: 13px;
    margin-left: 10px;
    margin-right: 10px;
    transition: margin ease 0.5s;
}

#menu li li a:hover:before {
    margin-right: 20px;
}

#menu li li a:hover {
    color: #FFFFFF;
    background-color: #242d37;
}

#menu li li.active > a {
    color: #0b91d2;
    background-color: #242d37;
}

#menu li ul a {
    padding-left: 20px;
}

#menu li li ul a {
    padding-left: 40px;
}

#menu li li li ul a {
    padding-left: 60px;
}

#menu li li li li ul a {
    padding-left: 80px;
}

#stats {
    border-radius: 2px;
    color: #808b9c;
    background: #2e3a47;
    margin: 15px 20px;
    padding: 5px 0;
}

#stats ul, #stats li {
    padding: 0;
    margin: 0;
    list-style: none;
}

#stats li {
    font-size: 11px;
    color: #9d9d9d;
    padding: 5px 10px;
    border-bottom: 1px dotted #373737;
}

#stats div:first-child {
    margin-bottom: 4px;
}

#stats .progress {
    height: 3px;
    margin-bottom: 0;
}

/* footer */
#footer {
    margin-top: 20px;
    height: 100px;
    text-align: center;
}

.page-header {
    vertical-align: middle;
    margin: 20px 0 15px 0;
    padding: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9e9e9;
}

.page-header h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 30px;
    color: #4c4d5a;
    display: inline-block;
    margin-bottom: 15px;
    text-shadow: 0 1px #fff;
}

/* Navs
/* Tabs*/
.nav-tabs > li > a {
    color: #a5a5a5;
}

.nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd;
}

.nav-tabs {
    margin-bottom: 25px;
}

.nav-tabs li.nav-item a.active {
    color: #333;
}

.form-label, .col-form-label {
    font-weight: bold;
}

.form-switch-lg {
    font-size: 26px;
    min-height: 36px;
    line-height: 36px;
}

@media (min-width: 992px) {
    .col-form-label {
        text-align: right;
    }
}

.row.mb-3 {
    position: relative;
}

.row.mb-3 + .row.mb-3 {
    padding-top: 1rem;
}

.row.mb-3 + .row.mb-3:before {
    display: block;
    content: '';
    position: absolute;
    width: calc(100% - calc(var(--bs-gutter-x) / 1));
    height: 0px;
    left: calc(var(--bs-gutter-x) / 2);
    top: 0;
    border-bottom: 1px solid #ededed;
}

.form-control:hover {
    border: 1px solid #b9b9b9;
    border-top-color: #a0a0a0;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

div.required .col-form-label:not(span):before, td.required:before {
    content: '* ';
    color: #F00;
    font-weight: bold;
}

.image {
    width: 12rem;
}

.table thead td span[data-toggle='tooltip']:after, label.form-label span:after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    content: "\f059";
    color: #1E91CF;
    margin-left: 4px;
}

.table thead td {
    font-weight: bold;
}

.table thead > tr > td, .table tbody > tr > td {
    vertical-align: middle;
}

.table a.asc:after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    content: " \f106";
}

.table a.desc:after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    content: " \f107";
}

.pagination {
    margin: 0;
}

/* Cards */
.card {
    border-radius: 0px;
}

.card-header > i {
    margin-right: 5px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.card-body {

}

.bootstrap-datetimepicker-widget {
    position: absolute;
    float: right;
    z-index: 9999;
    height: 200px;
    width: 250px;
}


/* Tiles */
.tile {
    margin-bottom: 15px;
    border-radius: 3px;
    color: #FFFFFF;
    transition: all 1s;
}

.tile-primary {
    background-color: #1b80c2;
}

.tile-success {
    background-color: #53b953;
}

.tile-warning {
    background-color: #f3aa41;
}

.tile-danger {
    background-color: #e45847;
}

.tile:hover {
    opacity: 0.95;
}

.tile a {
    color: #FFFFFF;
}

.tile-heading {
    padding: 5px 8px;
    text-transform: uppercase;
    color: #FFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
    background-color: rgba(255, 255, 255, 0.1);
}

.tile .tile-heading .pull-right {
    transition: all 1s;
    opacity: 0.7;
}

.tile:hover .tile-heading .pull-right {
    opacity: 1;
}

.tile-body {
    padding: 15px;
    color: #FFFFFF;
    line-height: 48px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
}

.tile .tile-body i {
    font-size: 50px;
    opacity: 0.3;
    transition: all 1s;
}

.tile:hover .tile-body i {
    color: #FFFFFF;
    opacity: 1;
}

.tile .tile-body h2 {
    font-size: 42px;
}

.tile-footer {
    padding: 5px 8px;
    background-color: rgba(0, 0, 0, 0.1);
}

.list-check {
    list-style: none;
}

.list-check li::before {
    font-family: 'Font Awesome 6 Solid';
    content: "\f00c";
    margin-left: -30px;
    width: 29px;
    display: inline-block;
    color: #7ebd38;
}

.list-check.list-color-blue li::before {
    color: #02afe9;
}

td {
    position: relative;
}


#header .brand .brand-text-brand {
    color: #FFAA0B;
    font-weight: 600;
    font-size:16px;
}
#header .brand .dot {
    color:#77A581;
}

#header .brand-logo {
    padding:0px 5px;
    text-wrap: wrap;
    color: #000;
    font-weight: 600;
    font-size: 24px;
}

#header .brand-text {
    text-wrap: wrap;
    color:#000;
    font-size:11px;
}
#top-menu .nav-link {
    line-height: 30px;
}
@media (min-width: 992px) {
    #top-menu .nav-link {
        line-height: 50px;
    }
}

tr.row-deleted {
    text-decoration: line-through;
    background: #FFCCCB;
}
tr.row-deleted:hover {
    text-decoration: none;
}

ul.image-list {
    list-style-type: none;
    margin:0px;
    padding:0px;
    height: 30vh;
    overflow-x: auto;
}

ul.image-list li {
    padding:5px;
}
ul.image-list li:hover {
    background: #ccc;
    cursor: pointer;
}

#form-gallery .images {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    overflow-y: auto;
    border-top:1px solid #ccc;
    margin-bottom: 20px;

}
#form-gallery .images .image-item {
    display:inline-block;
    margin:5px;
}
#form-gallery .images .image-item textarea {
    margin:5px 0px 5px 0px;
}
#form-gallery .images  img {
    height: 150px;
    width: 290px;
    margin: 5px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

#form-gallery .images img:hover {
    transform: scale(1.05);
}

.gallery-category-item .card img:hover {
    transition: transform 0.3s ease-in-out;
    transform: scale(1.02);
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.breadcrumb {
    display: block;
    padding: 0;
}
.sortable .list-group-item {
    border-radius: 0;
}
.sortable .list-group-item span {
    display:inline-block;
    font-size: 14px;
    margin: 10px 0px;
}
.gallery-category-item {
    padding-bottom:20px;
}

.gallery-category-item .card .card-text {
    max-height: 100px;
    overflow: hidden;
}
.gallery-category-item .card-image {
    max-height: 200px;
    overflow: hidden;
}

.gallery-item .description .card {
    margin-bottom:20px;
}

.gallery-item .thumb {
    margin-top: 20px;
}

.card.rating {
    margin-bottom:20px;
}

.ck-editor__editable_inline:not(.ck-comment__input *) {
    min-height: 200px;
    overflow-y: auto;
}
#rating-editor {
    margin:20px 0px;
}
#rating-editor input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(90deg, rgb(0, 36, 65) 0%, #e0e0e0 0%);
    outline: none;
    transition: background 0.2s ease-in-out;
}
#rating-editor  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0c72c6;
    cursor: pointer;
    border: 2px solid #fff;
}
#rating-editor .range-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}
#rating-editor label {
    font-size: 14px;
}
#rating-editor .point {
    font-size: 14px;
    font-weight: bold;
    color: #002e57;
    cursor: text;
}
#rating-editor ol li {
    padding-bottom: 20px;
}
#rating-editor textarea {
    min-height: 200px;
}

.card.rating .profile-image {
    border:1px solid #ccc;
    padding:2px;
}

div[class|='feedback'] {
    display:none;
}



.rank-1:before {
    position: absolute;
    content:'★';
    color: #FFD700;
    font-size: 80px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #000;
    text-shadow: 2px 2px 2px #000;
    top:-50px;
    left:-25px;
    z-index:100;
}
.rank-2:before {
    z-index:100;
    position: absolute;
    content:'★';
    color: #C0C0C0;
    font-size: 80px;

    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #000;
    text-shadow: 2px 2px 2px #000;
    top:-50px;
    left:-25px;
}
.rank-3:before {
    z-index:100;
    position: absolute;
    content:'★';
    color: #FF5733;
    font-size: 80px;

    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: white;
    text-shadow: 2px 2px 2px #000;
    top:-50px;
    left:-25px;
}
.rank-1:after {
    z-index:100;
    position: absolute;
    content: '1';
    font-size: 18px;
    color: #fff;
    top:-2px;
    left:3px;
    text-shadow: 2px 2px 2px #000;
}
.rank-2:after {
    z-index:100;
    position: absolute;
    content: '2';
    font-size: 18px;
    color: #fff;
    top:-2px;
    left:3px;
    text-shadow: 2px 2px 2px #000;
}
.rank-3:after {
    z-index:100;
    position: absolute;
    content: '3';
    font-size: 18px;
    color: #fff;
    top:-2px;
    left:3px;
    text-shadow: 2px 2px 2px #000;
}

.ranked .page-header h1 {
    padding-left: 80px;
}

.ranked .gallery-rank-1:before {
    position:absolute;
    content:'★';
    color: #FFD700;
    font-size: 80px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #000;
    text-shadow: 2px 2px 2px #000;
    top:-40px;
    left:20px;
}
.ranked .gallery-rank-1:after {
    position: absolute;
    content: '1';
    font-size: 22px;
    color: #fff;
    top:0px;
    left:46px;
    text-shadow: 2px 2px 2px #000;
}

.ranked .gallery-rank-2:before {
    position:absolute;
    content:'★';
    color: #C0C0C0;
    font-size: 80px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #000;
    text-shadow: 2px 2px 2px #000;
    top:-40px;
    left:20px;
}
.ranked .gallery-rank-2:after {
    position: absolute;
    content: '2';
    font-size: 22px;
    color: #fff;
    top:0px;
    left:46px;
    text-shadow: 2px 2px 2px #000;
}
.ranked .gallery-rank-3:before {
    position:absolute;
    content:'★';
    color: #FF5733;
    font-size: 80px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #000;
    text-shadow: 2px 2px 2px #000;
    top:-40px;
    left:20px;
}
.ranked .gallery-rank-3:after {
    position: absolute;
    content: '3';
    font-size: 22px;
    color: #fff;
    top:0px;
    left:46px;
    text-shadow: 2px 2px 2px #000;
}
