/* ----- Global styles ----- */
:root {
  font-size: 14px;
  --theme-color-1: #2943fe;
  --theme-color-2: #e9ecef;
  --theme-color-3: #6c757d;
  --theme-color-4: #e4510f;
  --theme-color-5: #fec229;
  --theme-color-6: #29fee5;
  --theme-color-7: #f6f6f6;
  --theme-color-8: #a8a8a8;
  --theme-color-9: #0056b3;
  --theme-color-10: #d7d7d7;
  --theme-color-11: #fff6e0;
  --theme-color-12: #f3f4ff;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  
  color: #000000;
  background-color: #ffffff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
p {
  margin-bottom: 0;
}
dl,
ol,
ul {
  margin-bottom: 0;
}
a:hover {
  text-decoration: none;
}
b,
strong {
  font-weight: bold;
}
.row {
  margin-left: 0;
  margin-right: 0;
}
.container,
.container-fluid,
.col,
[class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

/* ----- Bootstrap Global ----- */
.custom-control-label {
  color: var(--theme-color-3);
}

/* ----- Generic ----- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(125, 125, 125, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 255, 0.4);
}

/* ----- Utility classes ----- */
.divider-x {
  border-top: 1px solid var(--theme-color-2);
}
.box-center-middle {
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-middle {
  display: flex;
  align-items: center;
}
.post-relative {
  position: relative;
}
.color-good {
  color: var(--theme-color-1);
}
.color-bad {
  color: var(--theme-color-4);
}
.color-dull {
  color: var(--theme-color-8);
}

/* ----- Breadcrumbs ----- */
.cst-breadcrumb .breadcrumb {
  background-color: var(--theme-color-2);
  padding: 0.5rem 2rem;
  margin-bottom: 0;
}
.cst-breadcrumb a {
  color: var(--theme-color-1);
}
.cst-breadcrumb .breadcrumb-item.active {
  color: var(--theme-color-3);
}

/* ----- Buttons ----- */
.btn {
  color: #ffffff;
  border: 1px solid;
  border-radius: 0;
}
.btn[class*="theme-"].contrast {
  border-color: #ffffff;
}
.btn.theme-1 {
  background-color: var(--theme-color-1);
  border-color: var(--theme-color-1);
}
.btn.theme-1:hover,
.btn.theme-1:focus {
  background-color: #ffffff;
  color: var(--theme-color-1);
}
.btn.theme-1:focus {
  box-shadow: 0 0 0 0.2rem rgba(41, 67, 254, 0.5);
}
.btn.outlined.theme-1 {
  background-color: transparent;
  color: var(--theme-color-1);
  border-color: var(--theme-color-1);
}
.btn.outlined.theme-1:hover,
.btn.outlined.theme-1:focus {
  background-color: var(--theme-color-1);
  color: #ffffff;
}
.btn.outlined.theme-1:focus {
  box-shadow: 0 0 0 0.2rem rgba(41, 67, 254, 0.5);
}
.btn.theme-2 {
  background-color: var(--theme-color-3);
  border-color: var(--theme-color-3);
}
.btn.theme-2:hover,
.btn.theme-2:focus {
  background-color: #ffffff;
  color: var(--theme-color-3);
}
.btn.theme-2:focus {
  box-shadow: 0 0 0 0.2rem rgba(90, 98, 104, 0.5);
}
.btn.outlined.theme-2 {
  background-color: transparent;
  color: var(--theme-color-3);
  border-color: var(--theme-color-3);
}
.btn.outlined.theme-2:hover,
.btn.outlined.theme-2:focus {
  background-color: var(--theme-color-3);
  color: #ffffff;
}
.btn.outlined.theme-2:focus {
  box-shadow: 0 0 0 0.2rem rgba(90, 98, 104, 0.5);
}
.btn.theme-3 {
  background-color: var(--theme-color-4);
  border-color: var(--theme-color-4);
}
.btn.theme-3:hover,
.btn.theme-3:focus {
  background-color: #ffffff;
  color: var(--theme-color-4);
}
.btn.theme-3:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.5);
}
.btn.outlined.theme-3 {
  background-color: transparent;
  color: var(--theme-color-4);
  border-color: var(--theme-color-4);
}
.btn.outlined.theme-3:hover,
.btn.outlined.theme-3:focus {
  background-color: var(--theme-color-4);
  color: #ffffff;
}
.btn.outlined.theme-3:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.5);
}
.btn.theme-4 {
  background-color: var(--theme-color-5);
  border-color: var(--theme-color-5);
}
.btn.theme-4:hover,
.btn.theme-4:focus {
  background-color: #ffffff;
  color: var(--theme-color-5);
}
.btn.theme-4:focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 194, 41, 0.5);
}
.btn.outlined.theme-4 {
  background-color: transparent;
  color: var(--theme-color-5);
  border-color: var(--theme-color-5);
}
.btn.outlined.theme-4:hover,
.btn.outlined.theme-4:focus {
  background-color: var(--theme-color-5);
  color: #ffffff;
}
.btn.outlined.theme-4:focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 194, 41, 0.5);
}
.btn.theme-5 {
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn.theme-5:hover,
.btn.theme-5:focus {
  background-color: var(--theme-color-7);
  color: var(--theme-color-3);
}
.btn.theme-5:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn.theme-link {
  color: var(--theme-color-1);
  border: none;
}

/* ---- Links ----- */
.lnk.theme-1 {
  color: var(--theme-color-1);
}
.lnk.theme-1:hover {
  color: var(--theme-color-9);
}

.lnk-action {
  display: inline-block;
  text-align: left;
  padding: 0.2rem 1rem;
  border: 1px solid;
  border-radius: 15px;
  color: var(--theme-color-1);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.lnk-action:hover {
  background-color: var(--theme-color-1);
  color: #ffffff;
}
.lnk-action i.fa {
  margin-right: 0.5rem;
}

/* ----- Loader ----- */
.loader-async {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: -1;
  opacity: 0;
}
.loader-async.show {
  z-index: 99;
  opacity: 1;
}
.loader-async > img {
  width: 30%;
}

/* ----- No Data ----- */
.no-data-available > img {
  width: 40%;
}
.no-data-found {
  color: var(--theme-color-8);
}

/* ----- Modal ----- */
.modal .modal-dialog.aligned-y {
  top: 20%;
}
.modal .modal-dialog .loading-msg {
  flex-basis: 100%;
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
}
.modal.theme-1 .modal-content {
  border-radius: 0;
}
.modal.theme-1 .modal-header {
  padding: 0.5rem 1rem;
  border-radius: 0;
  background-color: var(--theme-color-1);
  color: #ffffff;
}
.modal.theme-1 .modal-header .close {
  color: #ffffff;
}
.modal.theme-1 .modal-header .close:hover {
  opacity: 1;
}
.modal.theme-1 .modal-body .form-control {
  border-radius: 0;
}
.modal.theme-1 .modal-body .txt-1 {
  color: var(--theme-color-3);
  font-size: 1.2rem;
}
.modal.theme-1 .modal-footer {
  padding: 0.5rem 1rem;
}
.modal.photo-enlarged .modal-title {
  text-transform: uppercase;
}
.modal.photo-enlarged .photo {
  width: 100%;
}
.modal.theme-1.header-center .modal-header {
  justify-content: center;
  position: relative;
}
.modal.theme-1.header-center .modal-header .close {
  position: absolute;
  right: 1rem;
}

/* ----- Video ----- */
.video-wrapper-1 {
  position: relative;
  width: 100%;
  padding-top: 66.66%;
}
.video-wrapper-1 .vd-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* ----- Form ----- */
form.theme-1 .form-control {
  border-radius: 0;
}
form.theme-1 .form-control:focus {
  border-color: var(--theme-color-1);
  box-shadow: 0 0 0 0.2rem rgba(41, 67, 254, 0.25);
}
form.theme-1 .form-control::-webkit-input-placeholder,
form.theme-1 .form-control:-ms-input-placeholder {
  color: var(--theme-color-10);
}
form.theme-1 .form-control::placeholder {
  color: var(--theme-color-10);
  opacity: 1;
}
form.theme-1 .ctrl-label {
  color: var(--theme-color-8);
  text-align: right;
  padding-right: 2rem;
}
form.theme-1 .ctrl-label-2 {
  color: var(--theme-color-8);
}
form.theme-1 .ddSelWrap {
  -webkit-border-radius: 0;
  border-radius: 0;
  padding: 0.2rem 0.3rem;
}
form.theme-1 .must-field {
  color: var(--theme-color-4);
  margin-left: 0.2rem;
  font-size: 1.4rem;
  line-height: 0;
}
form.theme-1 .frm-fieldset {
  min-width: auto;
  padding: 1rem;
  margin-bottom: 3rem;
  border: 1px solid var(--theme-color-2);
}
form.theme-1 .frm-legend {
  color: var(--theme-color-1);
  font-size: 1.2rem;
  text-align: center;
  margin: 1rem 0;
  width: auto;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--theme-color-2);
  background-color: var(--theme-color-7);
}

/* Modal-Form */
.modal-form .mf-caption {
  margin-bottom: 1rem;
}
.modal-form .mf-caption {
  color: var(--theme-color-8);
}
.modal-form .mf-caption span {
  color: var(--theme-color-5);
  margin-left: 0.5rem;
  font-weight: bold;
}
.modal-form .mf-options ul {
  list-style: none;
}
.modal-form .mf-options ul > li {
  color: var(--theme-color-3);
  margin-bottom: 0.5rem;
}
.modal-form .modal-footer {
  justify-content: flex-start;
}
.modal-form .modal-footer .btn:first-of-type {
  margin-left: auto;
}
.modal-form .modal-footer .dt {
  color: var(--theme-color-8);
}
.modal-form .modal-footer .dt span {
  color: var(--theme-color-5);
  font-weight: bold;
  margin-left: 0.5rem;
}
.modal-form .form-control {
  border-radius: 0;
}
.modal-form .form-control:focus {
  border-color: var(--theme-color-1);
  box-shadow: 0 0 0 0.2rem rgba(41, 67, 254, 0.25);
}
.modal-form .form-control::-webkit-input-placeholder,
.modal-form .form-control:-ms-input-placeholder {
  color: var(--theme-color-10);
}
.modal-form .form-control::placeholder {
  color: var(--theme-color-10);
  opacity: 1;
}
.modal-form .ctrl-label {
  color: var(--theme-color-8);
}
.modal-form .must-field {
  color: var(--theme-color-4);
  margin-left: 0.2rem;
  font-size: 1.4rem;
  line-height: 0;
}

/* ----- Table ----- */
.table.theme-1 {
  margin-bottom: 0;
  border: 1px solid var(--theme-color-2);
}
.table.theme-1 tr {
  border-bottom: 1px solid var(--theme-color-2);
}
.table.theme-1 td.tbl-key {
  width: 25%;
  color: var(--theme-color-8);
  text-align: right;
}

.master-wrapper {
  background-image: url("../img/background_pattern.png");
  /* background-size: contain; */
}

/* ----- Aside ----- */
.aside-wrapper {
  padding: 1rem 0.5rem;
}

/* ----- Section ----- */
.section-wrapper {
  padding: 1rem 0.5rem;
}

/* ----- Panel ----- */
.custom-panel {
  background-color: #ffffff;
  border: 1px solid var(--theme-color-2);
}
.custom-panel .cp-heading {
  background-color: var(--theme-color-1);
  padding: 0.6rem 1rem;
}
.custom-panel .cp-title {
  font-size: 1.2rem;
  color: #ffffff;
}
.custom-panel .cp-thumb {
  width: 1.8rem;
  height: auto;
  margin-right: 1rem;
}
.custom-panel .cp-body {
  background-color: #ffffff;
}
.custom-panel .cp-body:not(.video) {
  padding: 1rem;
}
.custom-panel .cp-text {
  background-color: var(--theme-color-11);
  color: var(--theme-color-3);
  padding: 0.25rem 0.5rem;
}
.custom-panel .cp-text-2 {
  color: var(--theme-color-8);
}
.custom-panel .cp-text-3 {
  color: #ffffff;
  font-style: italic;
}
.custom-panel .cp-text-4 {
  font-size: 0.9rem;
  color: var(--theme-color-4);
}
.custom-panel .cp-text-5 {
  background-color: var(--theme-color-12);
  color: var(--theme-color-9);
  padding: 0.25rem 0.5rem;
}

/* ----- Card ----- */
.custom-card {
  padding: 1rem;
}
.custom-card .cc-link {
  border: 1px solid var(--theme-color-2);
  display: flex;
  padding: 1rem;
}
.custom-card .cc-link:hover {
  background-color: var(--theme-color-7);
}
.custom-card .cc-title {
  font-size: 1.2rem;
  color: var(--theme-color-1);
  margin-bottom: 0.5rem;
}
.custom-card .cc-text {
  color: var(--theme-color-3);
}

/* ----- Featured Profiles Display ----- */
.photo-grid {
  text-align: center;
}
.photo-grid li {
  border: 5px solid white;
  display: inline-block;
  width: 100%;
  height: 150px;
}
.photo-grid img {
  height: auto;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
  max-width: 100%;
  width: 100px;
  height: 100px;
}
.photo-grid figure {
  overflow: hidden;
  position: relative;
}
.photo-grid figcaption {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: table;
  width: 200px;
  height: 200px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  transition-delay: 100ms;
  z-index: 100;
  width: 100px;
  height: 100px;
}
.photo-grid figcaption p {
  display: table-cell;
  position: relative;
  top: -40px;
  width: 100px;
  height: 100px;
  font-size: 12px;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  vertical-align: middle;
}
.photo-grid li:hover figcaption {
  opacity: 1;
  width: 100px;
  height: 100px;
}
.photo-grid li:hover img {
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  transform: scale(1.4);
  height: 100px;
  width: 100px;
}
.photo-grid li:hover figcaption p {
  -moz-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  width: 200px;
  height: 100px !important;
}

/* ----- Search Result ----- */
.search-result .search-info {
  padding: 0.6rem 1rem;
  background-color: var(--theme-color-1);
  color: #ffffff;
}
.search-result .search-info .lbl {
  margin-right: 1rem;
}
.search-result .search-info .bar {
  margin: 0 1rem;
}
.search-result .search-info .key {
  margin-right: 0.5rem;
}
.search-result .search-info .value {
  font-weight: bold;
  font-size: 1.1rem;
}
.search-result .result-info {
  color: var(--theme-color-3);
}
.search-result .result-info .value {
  font-weight: bold;
  margin-left: 1rem;
}
.search-result .result-item > div[class*="col-"] {
  padding: 0.7rem;
}
.search-result .result-item .ri-title {
  color: var(--theme-color-1);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.search-result .result-item .ri-image {
  display: block;
  padding: 0.3rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--theme-color-2);
}
.search-result .result-item .ri-info-section {
  position: relative;
}
.search-result .result-item .ri-verified {
  position: absolute;
  opacity: 0.4;
  right: -2rem;
  top: 10%;
}
.search-result .result-item .ri-member {
  margin-bottom: 1rem;
  text-align: center;
}
.search-result .result-item .ri-member .key {
  color: var(--theme-color-8);
  margin-right: 0.5rem;
  font-size: 0.95rem;
}
.search-result .result-item .ri-member .value {
  color: var(--theme-color-4);
  margin-right: 0.5rem;
}
.search-result .result-item .ri-icon {
  width: 1.5rem;
}
.search-result .result-item .ri-login-bar {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 1rem;
}
.search-result .result-item .ri-login-info .key {
  color: var(--theme-color-8);
  margin-right: 0.5rem;
  font-size: 0.95rem;
}
.search-result .result-item .ri-login-info .value {
  color: var(--theme-color-5);
  font-weight: bold;
}
.search-result .result-item .ri-info {
  margin-bottom: 0.5rem;
}
.search-result .result-item .ri-info .key {
  font-size: 0.95rem;
  color: var(--theme-color-8);
  text-align: right;
  margin-right: 1rem;
}
.search-result .result-item .ri-info .value {
  color: var(--theme-color-3);
}
.search-result .result-item .ri-actions {
  text-align: center;
}
.search-result .result-item .ri-actions > ul {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  justify-self: center;
}
.search-result .result-item .ri-actions > ul > li > a {
  display: block;
  text-align: left;
  margin-bottom: 0.3rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid;
  border-radius: 15px;
  color: var(--theme-color-1);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.search-result .result-item .ri-actions > ul > li > a:hover {
  background-color: var(--theme-color-1);
  color: #ffffff;
}
.search-result .result-item .ri-actions > ul > li > a i.fa {
  margin-right: 0.5rem;
}
.sr-filter-block {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--theme-color-2);
}
.sr-filter-block:last-of-type {
  border-bottom: none;
}
.sr-filter-block .srf-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--theme-color-8);
  margin-bottom: 0.5rem;
}
.sr-filter-block .srf-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  color: var(--theme-color-3);
  max-height: 9rem;
  overflow-y: auto;
}
.sr-filter-block .srf-list > li {
  margin-bottom: 0.5rem;
  margin-left: 0.3rem;
}
.sr-filter-block .srf-list > li:last-of-type {
  margin-bottom: 0;
}

/* ----- Pagination ----- */
.pagination-thm-1.top {
  margin-bottom: 1rem;
}
.pagination-thm-1 nav {
  text-align: right;
}
.pagination-thm-1 ul {
  list-style: none;
  display: inline-flex;
  margin-bottom: 0;
  border: 1px solid var(--theme-color-2);
  border-right: none;
}
.pagination-thm-1 a.page-numbers,
.pagination-thm-1 span {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-right: 1px solid var(--theme-color-2);
}
.pagination-thm-1 a.page-numbers:hover {
  background-color: var(--theme-color-7);
}

/* ----- My Home ----- */
.profile-pane .custom-panel {
  border: 1px solid var(--theme-color-5);
}
.profile-pane .pp-image {
  text-align: center;
}
.profile-pane .pp-image img {
  width: 70%;
}

.pp-progress .lbl {
  color: var(--theme-color-8);
}
.pp-progress .progress {
  background-color: var(--theme-color-5);
  height: 1.2rem;
}
.pp-progress .progress-bar {
  background-color: var(--theme-color-1);
}

/* List with Key-Value */
.list-key-val > .row {
  margin-bottom: 0.5rem;
}
.list-key-val .key {
  color: var(--theme-color-8);
}
.list-key-val .val {
  color: var(--theme-color-1);
}
.my-home .ms-lnk {
  display: block;
}
.my-home .ms-lnk img {
  max-height: 200px;
  width: 100%;
}
.my-home .ms-header {
  display: flex;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--theme-color-2);
}
.my-home .ms-header img {
  height: 24px;
  width: 24px;
  margin-right: 1rem;
}
.my-home .ms-header span {
  color: var(--theme-color-1);
  font-size: 1.3rem;
  text-transform: uppercase;
}
.my-home .ms-list {
  padding: 0.5rem;
}
.my-home .ms-list .inner {
  padding: 0.5rem;
  border: 1px solid var(--theme-color-2);
}
.my-home .ms-list .title {
  font-size: 1.2rem;
  background-color: var(--theme-color-2);
  color: var(--theme-color-1);
  padding: 0.3rem 0.5rem;
  margin-bottom: 0.5rem;
}
.my-home .ms-list .item {
  display: flex;
  margin-bottom: 0.2rem;
}
.my-home .ms-list .key {
  flex: 5;
  color: var(--theme-color-3);
}
.my-home .ms-list .value {
  flex: 2;
  color: var(--theme-color-4);
}

/* Profile slider */
.slkc-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
  right: 0;
  display: inline-block;
}
.slkc-wrapper .slkc-slide {
  padding: 1rem;
  text-align: center;
  background-color: var(--theme-color-7);
  border-radius: 15px;
}
.slkc-wrapper .slkc-link {
  display: block;
  color: var(--theme-color-1);
}
.slkc-wrapper .slkc-link:hover {
  color: var(--theme-color-9);
}
.slkc-wrapper .slkc-text {
  color: var(--theme-color-5);
}
.slkc-wrapper .slkc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: rgb(108, 117, 125, 0.1);
  color: #fff;
  height: 100%;
  z-index: 1;
  padding: 0 0.5rem;
}
.slkc-wrapper .slkc-nav:hover {
  background-color: rgb(108, 117, 125, 0.2);
}
.slkc-wrapper .slkc-nav.prev {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.slkc-wrapper .slkc-nav.next {
  right: 0;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.slkc-wrapper .slkc-nav .fa {
  font-size: 3rem;
}

/* ----- Media List ----- */
.media-lst .cp-title {
  text-transform: uppercase;
}
.media-lst .ml-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--theme-color-2);
}
.media-lst .ml-item:last-of-type {
  border-bottom: none;
}
.media-lst .ml-img {
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-lst .ml-img img {
  width: 75%;
  height: auto;
}
.media-lst .ml-info {
  padding: 0 0.5rem;
}
.media-lst .ml-info .nme {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--theme-color-1);
}
.media-lst .ml-info .txt {
  color: var(--theme-color-8);
  margin-bottom: 0.2rem;
}
.media-lst .ml-info .lnk {
  color: var(--theme-color-5);
}
.media-lst .ml-no-data {
  color: var(--theme-color-8);
}

/* List with Font-Text */
.custom-panel .cp-body .list-font-text {
  padding-left: 0.75rem;
}
.list-font-text {
  list-style: none;
}
.list-font-text > li {
  margin-bottom: 0.5rem;
}
.list-font-text > li i.fa {
  color: var(--theme-color-8);
  margin-right: 0.5rem;
}
.list-font-text > li a {
  color: var(--theme-color-1);
}
.list-font-text > li:hover a {
  color: var(--theme-color-9);
}
.list-font-text > li:hover i.fa {
  color: var(--theme-color-5);
}

/* List with Key-Value-2 */
.row-key-val {
  display: flex;
}
.row-key-val:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.row-key-val .key {
  flex: 4;
  color: var(--theme-color-8);
}
.row-key-val .val {
  flex: 6;
  font-weight: bold;
  color: var(--theme-color-3);
}
.row-key-val.type-2 .key {
  flex: 3;
}
.row-key-val.type-2 .val {
  flex: 9;
}
.row-key-val.type-3 .key {
  flex: 2;
}
.row-key-val.type-3 .val {
  flex: 8;
}

.actions-box {
  text-align: center;
}
.actions-box ul {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  justify-self: center;
}
.actions-box ul > li a {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid;
  border-radius: 15px;
  color: var(--theme-color-1);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.actions-box ul > li a:hover {
  background-color: var(--theme-color-1);
  color: #ffffff;
}
.actions-box ul > li a i.fa {
  margin-right: 0.5rem;
}

/* ----- Chosen multiselect ----- */
.chosen-select-wrapper .chosen-container-multi .chosen-choices {
  width: 100%;
  border-radius: 0;
  font-size: 1rem;
  background-image: none;
}
.chosen-select-wrapper
  .chosen-container-multi
  .chosen-choices
  li.search-field
  input[type="text"] {
  height: auto;
  padding: 0.375rem 0.75rem;
}
.chosen-select-wrapper .chosen-container-active .chosen-choices {
  border-color: var(--theme-color-1);
  box-shadow: 0 0 0 0.2rem rgba(41, 67, 254, 0.25);
}
.chosen-select-wrapper
  .chosen-container-multi
  .chosen-choices
  li.search-choice {
  border: 1px solid var(--theme-color-10);
  border-radius: 0;
  background-color: var(--theme-color-7);
  box-shadow: none;
  color: var(--theme-color-3);
  line-height: 1rem;
}
.chosen-select-wrapper .chosen-container .chosen-results li.highlighted {
  background-image: none;
  background-color: var(--theme-color-1);
}

/* ----- Dropdown Bootstrap ----- */
.dropdown.theme-1 .dropdown-menu {
  border-radius: 0;
  border: 1px solid var(--theme-color-10);
}
.dropdown.theme-1 .dropdown-item {
  color: var(--theme-color-3);
}
.dropdown.theme-1 .dropdown-item:focus,
.dropdown.theme-1 .dropdown-item:hover {
  background-color: var(--theme-color-8);
  color: #ffffff;
}

/* ----- List with Key-Badge ----- */
.list-link-badge {
  border: 1px solid var(--theme-color-2);
}
.list-link-badge .llb-heading {
  color: var(--theme-color-1);
  background-color: var(--theme-color-2);
  padding: 0.5rem 0;
}
.list-link-badge .llb-row {
  color: var(--theme-color-9);
  padding: 0.5rem 1rem;
}
.list-link-badge .llb-row:hover {
  background-color: var(--theme-color-7);
}
.list-link-badge .llb-row .val {
  text-align: right;
}
.list-link-badge .llb-row .bdg {
  background-color: var(--theme-color-9);
  color: #ffffff;
  padding: 0.2rem 1rem;
  border-radius: 10px;
}

/* ----- Profile Item */
.profile-item .pit-info {
  padding-left: 2rem;
}
.profile-item .pit-row {
  margin-bottom: 0.5rem;
}
.profile-item .pit-row .key {
  color: var(--theme-color-8);
}
.profile-item .pit-row .val {
  color: var(--theme-color-3);
}

/* ----- Media Responsive ----- */
@media (min-width: 768px) {
  .photo-grid li {
    width: 200px;
    height: 250px;
  }
  .photo-grid img {
    width: 200px;
    height: 200px;
  }
  .photo-grid figcaption {
    width: 200px;
    height: 200px;
  }
  .photo-grid figcaption p {
    width: 200px;
    height: 200px;
    font-size: 1.5em;
  }
  .photo-grid li:hover figcaption {
    width: 200px;
    height: 200px;
  }
  .photo-grid li:hover img {
    height: 200px;
    width: 200px;
  }
  .photo-grid li:hover figcaption p {
    height: 200px;
  }
}
/* Lastest Update */
.border_dotted{
  border:1px solid #eee;
  margin-bottom:20px;
  
}
.msg-detail{
  padding:10px
}
.msg-to{
  padding:10px;
  padding-bottom:10px;
}


.pagination{
  display: flex;
  padding-left: 0;
  list-style: none;		
  border-radius: 0.25rem;
}
.pagination > li{	
  display: inline;
}

.pagination > li:first-child > a,.pagination > li:first-child > span{		
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination > li > a,.pagination > li > span{
  position: relative;
  float: left;padding: 6px 12px;
  line-height: 1.428571429;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;	
}

.pagination > .active > a,.pagination > .active > span,.pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{
    z-index: 2;		
    color: #ffffff;	
    background-color: #2943fe;		
    border-color: #2943fe;
    cursor: default;
}


.pagination > li > a,.pagination > li > span{
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.428571429;
  text-decoration: none;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
