/*#region ----------------- Forms */
@import url(../../css/fontface.css);
.inputgroup {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
.inputgroup .input {
  width: 100%;
  height: 50px;
  border: 1px solid #d1d1d1;
  background-color: white;
  font-size: 14px;
  padding: 5px 55px 5px 15px;
}
.inputgroup .input:hover, .inputgroup .input:focus {
  border-color: #ddad6d;
}
.inputgroup .input:hover ~ .icon, .inputgroup .input:focus ~ .icon {
  color: #ddad6d;
}
.inputgroup .input:disabled {
  background-color: rgba(0, 0, 0, 0.1);
}
.inputgroup .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #a1a0a1;
}
.inputgroup label {
  font-size: 13px;
  font-weight: 500;
  color: #636063;
  margin-bottom: 5px;
}
.inputgroup.type-2 .input {
  padding-right: 15px;
  height: 40px;
}

.form-alert {
  font-size: 12px;
  font-weight: 400;
  margin: 5px;
}
.form-alert.error {
  color: #ff3333;
}
.form-alert.success {
  color: #00bd79;
}
.form-alert.warning {
  color: orange;
}
.form-alert.info {
  color: #009cf2;
}

.select-group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
.select-group label {
  font-size: 13px;
  font-weight: 500;
  color: #636063;
  margin-bottom: 5px;
}
.select-group .form-select {
  height: 50px;
  border-color: #d1d1d1;
  border-radius: 0;
  transition: all 0.3s linear;
  color: #1f1b18;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  padding-right: 20px;
  padding-left: 30px;
  background-position: left 0.75rem center;
}
.select-group .form-select:hover, .select-group .form-select:focus {
  border-color: #ddad6d;
  box-shadow: none !important;
}
.select-group.type-2 .form-select {
  height: 40px;
}

.selectgroup-row {
  position: relative;
  width: 100%;
}
.selectgroup-row label {
  font-size: 13px;
  font-weight: 500;
  color: #636063;
  margin-bottom: 5px;
}

.multiselect-content label {
  font-size: 13px;
  font-weight: 500;
  color: #636063;
  margin-bottom: 5px;
  display: block;
}
.multiselect-content .select2-container--default .select2-selection--single {
  border-radius: 0;
  height: 40px;
}
.multiselect-content .select2-container--default .select2-selection__rendered {
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 20px;
}
.multiselect-content .select2-container--default .select2-selection__arrow {
  top: 7px !important;
}

.textarea-group {
  position: relative;
  margin-top: 20px;
  width: 100%;
}
.textarea-group label {
  font-size: 13px;
  font-weight: 500;
  color: #636063;
  margin-bottom: 5px;
}
.textarea-group .form-control {
  text-align: right;
  font-size: 15px;
  font-weight: 400;
  border-radius: 0;
  padding: 10px;
}
.textarea-group .form-control:hover, .textarea-group .form-control:focus {
  border-color: #ddad6d;
  box-shadow: none !important;
}

.texteditor-content label {
  font-size: 13px;
  font-weight: 500;
  color: #636063;
  margin-bottom: 5px;
}

.form-check .form-check-label {
  font-size: 14px;
  font-weight: 400;
  color: #636063;
}
.form-check .form-check-input:checked {
  background-color: #ddad6d;
  border-color: #ddad6d;
}
.form-check .form-check-input:focus {
  box-shadow: none;
}

.radios-group {
  margin-top: 30px;
}
.radios-group .label {
  font-size: 14px;
  font-weight: 500;
  background-color: #fff;
  color: #1f1b18;
  margin-bottom: 5px;
}
.radios-group .radio-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}
.radios-group .form-check {
  margin: 0 0 10px 30px;
  cursor: pointer;
}
.radios-group .form-check .form-check-input,
.radios-group .form-check .form-check-label {
  cursor: pointer;
}
.radios-group .form-check .form-check-input {
  background-color: #f4f4f6;
}
.radios-group .form-check .form-check-input:checked {
  background-color: #ddad6d;
}

/*#endregion -------------- Forms */
/*#region ----------------- Animation */
.smooth-anim-3s {
  transition: all 0.3s ease-in-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.7);
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes swipeup {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes swipeupsmall {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes swipeRightsmall {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes swipeLeftsmall {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotatebg {
  from {
    transform: translate(50%, -50%) rotate(0);
  }
  to {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 36, 77, 0.1), 0 0 0 0 rgba(22, 36, 77, 0.1);
  }
  40% {
    box-shadow: 0 0 0 10px rgba(22, 36, 77, 0), 0 0 0 0 rgba(22, 36, 77, 0.1);
  }
  80% {
    box-shadow: 0 0 0 10px rgba(22, 36, 77, 0), 0 0 0 10px rgba(22, 36, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 36, 77, 0), 0 0 0 10px rgba(22, 36, 77, 0);
  }
}
@keyframes dropanim {
  from {
    opacity: 1;
    width: 10px;
    height: 10px;
  }
  to {
    opacity: 0;
    width: 120px;
    height: 120px;
  }
}
@keyframes bilink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/*#endregion -------------- Animation */
/*#region ----------------- Pagination */
.mypagination {
  padding: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 0 0;
  background-color: white;
  border-radius: 0;
}
.mypagination.br-top {
  border-top: 1px solid #d1d1d1;
  border-radius: 0;
  padding-top: 20px;
}
.mypagination .pagination-info {
  display: flex;
  align-items: center;
}
.mypagination .pagination-info span {
  padding: 0 5px;
  font-size: 14px;
  font-weight: 500;
  color: #1f1b18;
}
.mypagination .pagination-input {
  height: 40px;
  border: 1px solid #d1d1d1;
  border-radius: 0;
  width: 50px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #636063;
  margin: 0 10px;
  background-color: white;
}
.mypagination .pagination-input:hover, .mypagination .pagination-input:focus {
  border-color: #ddad6d;
}
.mypagination .btn-pagination {
  background-color: #ddad6d;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  position: relative;
  min-width: 125px;
  display: inline-block;
}
.mypagination .btn-pagination.prev {
  padding: 10px 40px 10px 15px;
}
.mypagination .btn-pagination.prev .fi {
  right: 12px;
  top: 11px;
}
.mypagination .btn-pagination.next {
  padding: 10px 15px 10px 40px;
}
.mypagination .btn-pagination.next .fi {
  left: 12px;
  top: 11px;
}
.mypagination .btn-pagination .fi {
  font-size: 20px;
  line-height: 0;
  position: absolute;
}
.mypagination .btn-pagination:hover {
  background-color: #d49848;
  color: #fff;
}
.mypagination .btn-pagination.disabled {
  background-color: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 575px) {
  .mypagination {
    flex-direction: column;
  }
  .mypagination .pagination-prev,
  .mypagination .pagination-next {
    width: 100%;
    text-align: center;
  }
  .mypagination .btn-pagination {
    max-width: 100%;
    width: 100%;
  }
  .mypagination .btn-pagination.prev {
    margin-bottom: 10px;
  }
  .mypagination .btn-pagination.next {
    margin-top: 10px;
  }
}
/*#endregion -------------- Pagination */
/*#region ----------------- Breadcrumb */
.mybreadcrumb {
  margin-bottom: 1rem;
}
.mybreadcrumb .breadcrumb-item {
  padding: 0 20px 0 0;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.mybreadcrumb .breadcrumb-item::before {
  content: "\f12d";
  font-family: uicons-regular-rounded;
  position: absolute;
  right: -7px;
  top: -2px;
  font-size: 18px;
  color: white;
  padding-right: 0.5rem;
  padding-left: 0;
}
.mybreadcrumb .breadcrumb-item:first-child::before {
  display: none;
}
.mybreadcrumb .breadcrumb-item a {
  font-size: 14px;
  font-weight: 500;
}
.mybreadcrumb.type-2 {
  padding-right: 20px;
  margin-bottom: 0;
}
.mybreadcrumb.type-2 .breadcrumb {
  margin-bottom: 0;
}
.mybreadcrumb.type-2 .breadcrumb-item::before {
  color: #636063;
}
.mybreadcrumb.type-2 .breadcrumb-item a {
  color: #ddad6d;
}

@media (max-width: 575px) {
  .mybreadcrumb .breadcrumb-item {
    font-size: 12px;
  }
  .mybreadcrumb .breadcrumb-item::before {
    font-size: 15px;
  }
  .mybreadcrumb .breadcrumb-item a {
    font-size: 12px;
  }
}
/*#endregion -------------- Breadcrumb */
/*#region ----------------- Alert */
.alert {
  border-left: none;
  border-top: none;
  border-bottom: none;
  border-right-width: 4px;
  border-radius: 0;
  color: #1f1b18;
  font-weight: 400;
  padding: 1rem 1rem 1rem 3rem;
}
.alert.alert-danger {
  background: rgba(255, 51, 51, 0.3);
  border-color: #ff3333;
}
.alert .btn-close {
  position: absolute;
  left: 1rem;
  top: 1rem;
}

/*#endregion -------------- Alert */
/*#region ----------------- General */
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: IRANYEKAN !important;
  font-weight: 300;
  direction: rtl;
  margin: 0;
  padding: 0;
  background-color: #f4f4f6;
  text-align: right;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
p {
  font-family: IRANYEKAN !important;
}

h1 {
  font-size: 38px;
  font-weight: 800;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 26px;
}

b,
strong {
  font-weight: bolder;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav {
  display: block;
}

a {
  text-decoration: none !important;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

::-moz-selection {
  background-color: #ddad6d;
  color: white;
}

::selection {
  background-color: #ddad6d;
  color: white;
}

@media (max-width: 992px) {
  .container {
    max-width: 95%;
  }
}
.my-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-pagination .pagination {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.my-pagination .pagination .next .page-link,
.my-pagination .pagination .prev .page-link {
  width: auto;
}
.my-pagination .pagination .next .page-link .mdi,
.my-pagination .pagination .prev .page-link .mdi {
  position: relative;
  top: 2px;
}
.my-pagination .pagination .next span,
.my-pagination .pagination .prev span {
  font-size: 14px;
  font-weight: 600;
  color: #a1a0a1;
}
.my-pagination .pagination .next .page-link {
  color: #a1a0a1;
  padding: 0 10px 0 15px;
}
.my-pagination .pagination .next .page-link .mdi {
  margin-left: 5px;
  color: #ddad6d;
}
.my-pagination .pagination .prev .page-link {
  color: #636063;
  padding: 0 15px 0 10px;
}
.my-pagination .pagination .prev .page-link .mdi {
  margin-right: 5px;
  color: #ddad6d;
}
.my-pagination .pagination .page-item.active .page-link {
  background-color: #ddad6d;
  color: white;
}
.my-pagination .pagination .page-link {
  background-color: white;
  border-radius: 10px;
  margin: 5px;
  font-weight: 600;
  color: #636063;
}
.my-pagination .pagination .page-link:hover {
  background-color: rgba(221, 173, 109, 0.2);
}

.fixedposition {
  overflow: hidden;
  padding-right: 17px;
}

.custom-scollbar {
  scrollbar-color: #ddad6d rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
}
.custom-scollbar::-webkit-scrollbar {
  border-radius: 10px;
  width: 5px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
}
.custom-scollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: white;
}

.fi {
  line-height: 0 !important;
}

.tooltip-inner {
  font-family: IRANYEKAN;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.mb-9 {
  margin-bottom: 9rem !important;
}

.mb-10 {
  margin-bottom: 10rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.mt-9 {
  margin-top: 9rem !important;
}

.mt-10 {
  margin-top: 10rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.pb-9 {
  padding-bottom: 9rem !important;
}

.pb-10 {
  padding-bottom: 10rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.pt-9 {
  padding-top: 9rem !important;
}

.pt-10 {
  padding-top: 10rem !important;
}

/*#endregion -------------- General */
/*#region ----------------- Buttons */
.btn {
  font-size: 14px;
  font-weight: 400;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  border-radius: 0;
}
.btn .fi {
  font-size: 16px;
  position: relative;
  top: 4px;
}
.btn:focus {
  box-shadow: none !important;
}

.icon-left .fi {
  margin-right: 8px;
}

.icon-right .fi {
  margin-left: 8px;
}

.btn-primary {
  background: #ddad6d;
  border-color: transparent;
}
.btn-primary:hover, .btn-primary:focus {
  background: #e2b982 !important;
  border-color: transparent !important;
}

.btn-primary-outline {
  background-color: white;
  color: #009cf2;
  border-color: #009cf2;
}
.btn-primary-outline:hover {
  color: white;
  background-color: #009cf2;
}

.btn-danger {
  background-color: #ff3333;
  color: white;
}

.btn-success {
    background-color: #00bd79;
    color: white;
    border: none;
    font-size: 18px;
}

    .btn-success.mini {
        width: 32px;
        height: 32px;
        padding: 2px;
    }

    .btn-success .fi {
        line-height: 0 !important;
        position: relative;
        top: 4px;
    }

    .btn-success:hover, .btn-success:focus {
        background-color: #009760 !important;
        color: white !important;
    }

.btn-delete {
  background-color: #ff3333;
  color: white;
  border: none;
  font-size: 18px;
}
.btn-delete.mini {
  width: 32px;
  height: 32px;
  padding: 2px;
}
.btn-delete .fi {
  line-height: 0 !important;
  position: relative;
  top: 4px;
}
.btn-delete:hover, .btn-delete:focus {
  background-color: #d60000 !important;
  color: white !important;
}

.btn-edit {
  background-color: white;
  color: #009cf2;
  border: 1px solid #009cf2;
  font-size: 18px;
}
.btn-edit.mini {
  width: 32px;
  height: 32px;
  padding: 2px;
}
.btn-edit.color-red {
  border-color: #ff3333;
  color: #ff3333;
}
.btn-edit.color-red:hover, .btn-edit.color-red:focus {
  background-color: #ff3333 !important;
  color: white !important;
}
.btn-edit .fi {
  line-height: 0 !important;
  position: relative;
  top: 4px;
}
.btn-edit:hover, .btn-edit:focus {
  background-color: #009cf2 !important;
  color: white !important;
}

.btn-accent {
  background-color: #99daaf;
  color: white;
}
.btn-accent:hover {
  background-color: #74cc92;
  color: white;
}

.btn-acion {
  padding: 0.6rem 2.4rem 0.6rem 1rem;
  background-color: white;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}
.btn-acion .fi {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  display: flex;
}
.btn-acion.color-green {
  background-color: #00bd79;
  color: white;
  border-color: #008a58;
}
.btn-acion.color-green:hover {
  background-color: #008a58;
}
.btn-acion.color-red {
  background-color: #ff3333;
  color: white;
  border-color: red;
}
.btn-acion.color-red:hover {
  background-color: #e60000;
}
.btn-acion.color-info {
  background-color: #009cf2;
  color: white;
  border-color: #007bbf;
}
.btn-acion.color-info:hover {
  background-color: #007bbf;
}
.btn-acion.color-white {
  background-color: white;
  color: #009cf2;
  border-color: #009cf2;
}
.btn-acion.color-white:hover {
  background-color: rgba(0, 156, 242, 0.1);
}

.btn-info {
  background-color: #009cf2;
  color: white;
}
.btn-info:hover, .btn-info:focus {
  background-color: #0092e3;
  color: white;
}

@media (max-width: 768px) {
  .btn-acion {
    font-size: 13px;
    padding: 0.5rem 2.2rem 0.5rem 1rem;
  }
  .btn-acion .fi {
    font-size: 18px;
    top: 9px;
  }
}
@media (max-width: 575px) {
  .btn-acion {
    font-size: 13px;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-acion span {
    display: none;
  }
  .btn-acion .fi {
    font-size: 18px;
    position: unset;
    top: unset;
    right: unset;
  }
}
/*#endregion -------------- Buttons */
/*#region ----------------- Dashboard */
.wrapper {
  width: 100%;
}

#contentDash {
  width: calc(100% - 280px);
  padding: 10px 20px;
  min-height: 100vh;
  transition: all 0.3s ease-in-out !important;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f4f4f6;
}
#contentDash.active {
  width: 100%;
}

#sidebarDash {
    width: 280px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 990;
    background: #110e0d;
    color: white;
    transition: all 0.3s ease-in-out;
    scrollbar-color: #777 rgba(38, 144, 186, 0.3);
    scrollbar-width: thin;
    direction: ltr;
    overflow-y = scroll;
}
#sidebarDash::-webkit-scrollbar {
  border-radius: 10px;
  width: 5px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
}
#sidebarDash::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: white;
}
#sidebarDash.active {
  margin-right: -280px;
}
#sidebarDash .sidebar-header {
  padding: 10px 20px;
  border-bottom: 1px solid #ddad6d;
}
#sidebarDash .sidebar-header .logo {
  text-align: center;
}
#sidebarDash .sidebar-header .logo img {
  width: 80px;
}
#sidebarDash .list-nav {
  margin: 20px 0;
  direction: rtl;
  overflow-y: auto;
  height: 100%;
}
#sidebarDash .nav-item {
  position: relative;
}
#sidebarDash .nav-item .sub-item {
  padding: 3px 10px 3px 10px;
  font-size: 0.9em;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0;
  color: white;
  position: relative;
}
#sidebarDash .nav-item .sub-item:hover {
  color: #ddad6d;
  background: linear-gradient(90deg, rgba(221, 173, 109, 0), rgba(221, 173, 109, 0.3));
}
#sidebarDash .nav-item .sub-item:hover .icon .fi {
  color: white;
  opacity: 1;
}
#sidebarDash .nav-item .sub-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  color: white;
}
#sidebarDash .nav-item .sub-item .icon .fi {
  opacity: 0.7;
  font-size: 20px;
  position: relative;
  line-height: 0;
}
#sidebarDash .nav-item .sub-item .badge {
  width: 25px;
  height: 25px;
  background-color: #ff3333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: white;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#sidebarDash .nav-item .menu-collapse {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
}
#sidebarDash .nav-item .menu-collapse li a {
  display: block;
  padding: 10px 55px 10px 5px;
  font-size: 14px;
  font-weight: 400;
  color: white;
}
#sidebarDash .nav-item .menu-collapse li a:hover {
  color: #ddad6d;
}
#sidebarDash .nav-item .menu-collapse li.active a {
  color: #ddad6d;
}
#sidebarDash .nav-item .dropdown-toggle::after {
  margin-right: auto;
  position: relative;
  top: 2px;
}
#sidebarDash .nav-item.active .sub-item {
  background: #ddad6d;
  color: white;
}
#sidebarDash .nav-item.active .sub-item .icon i {
  color: white;
  opacity: 1;
}

#navbarDash {
  background-color: white;
  width: calc(100% - 280px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 980;
  display: flex;
  align-items: center;
  padding: 8px 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.08);
}
#navbarDash.active {
  width: 100%;
}
#navbarDash .collapse-sidebar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#navbarDash .user-menu-content {
  text-align: left;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#navbarDash .dropdown {
  margin-right: 10px;
}
#navbarDash .dropdown:first-child {
  margin-right: 0;
}
#navbarDash .dropdown .btn {
  background-color: #f4f4f6;
  border: 1px solid transparent;
  color: #1f1b18;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 0.6rem;
  border-radius: 5px;
}
#navbarDash .dropdown .btn:hover, #navbarDash .dropdown .btn:focus {
  box-shadow: none;
}
#navbarDash .dropdown .btn i {
  font-size: 22px;
  position: relative;
  display: flex;
}
#navbarDash .dropdown .btn::after {
  position: relative;
  top: 2px;
}
#navbarDash .dropdown .btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#navbarDash .dropdown .btn .icon .fi {
  position: relative;
  top: -1px;
}
#navbarDash .dropdown .btn:hover.bg-transparent {
  border-color: #d1d1d1 !important;
  background-color: #f4f4f6 !important;
}
#navbarDash .dropdown .dropdown-menu {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 0;
}
#navbarDash .dropdown .dropdown-menu.menu-big {
  width: 320px;
}
#navbarDash .dropdown .dropdown-item {
  padding: 0.3rem 1rem;
  font-size: 14px;
  font-weight: 400;
  color: #1f1b18;
}
#navbarDash .dropdown .dropdown-item i {
  margin-left: 10px;
  font-size: 18px;
  line-height: 0 !important;
  position: relative;
  top: 4px;
  color: #636063;
}
#navbarDash .dropdown .dropdown-item:hover {
  background-color: rgba(221, 173, 109, 0.15);
}
#navbarDash .dropdown .dropdown-item:focus {
  background-color: #ddad6d;
}
#navbarDash .dropdown .dropdown-notification {
  width: 350px;
}
#navbarDash .dropdown .dropdown-notification .dropdown-item {
  display: grid;
  grid-template-columns: 48px auto;
  white-space: normal;
}
#navbarDash .dropdown .dropdown-notification .dropdown-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f4f6;
}
#navbarDash .dropdown .dropdown-notification .dropdown-item .icon i {
  font-size: 20px;
  margin: 0;
  top: 0;
}
#navbarDash .dropdown .dropdown-notification .dropdown-item .text {
  padding-right: 15px;
}
#navbarDash .dropdown .dropdown-notification .dropdown-item .text p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0;
  color: #1f1b18;
  line-height: 20px;
  min-height: 40px;
}
#navbarDash .dropdown .dropdown-notification .dropdown-item .text .date {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
  color: #636063;
}
#navbarDash .dropdown .drop-title {
  font-size: 14px;
  color: #1f1b18;
  margin-bottom: 0;
  padding: 10px 15px;
}
#navbarDash .dropdown .message-list {
  max-height: 280px;
  overflow-y: auto;
}
#navbarDash .dropdown .message {
  border: 1px solid #d1d1d1;
  padding: 10px;
  border-radius: 0;
  margin-bottom: 2px;
}
#navbarDash .dropdown .message a {
  display: block;
}
#navbarDash .dropdown .message .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
#navbarDash .dropdown .message .name h6 {
  font-size: 13px;
  color: #1f1b18;
}
#navbarDash .dropdown .message .name .date {
  font-size: 11px;
  font-weight: 400;
  color: #a1a0a1;
}
#navbarDash .dropdown .message .text {
  font-size: 13px;
  font-weight: 400;
  color: #636063;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#navbarDash .dropdown .message.new {
  background-color: rgba(0, 156, 242, 0.1);
  border-color: #009cf2;
}
#navbarDash .dropdown .message.new:hover {
  background-color: rgba(0, 156, 242, 0.2);
}
#navbarDash .dropdown .message:hover {
  border-color: #ddad6d;
}
#navbarDash .dropdown .drop-footer {
  padding: 10px 10px 0 10px;
}
#navbarDash .dropdown .drop-footer .btn-primary {
  width: 100%;
  background: #ddad6d;
  color: white;
  border-radius: 0;
}
#navbarDash .dropdown .drop-footer .btn-primary:hover {
  background-color: #e5c08e;
}

#sidebarCollapse {
  border: none;
  border-radius: 50%;
  display: inline-block;
  padding: 0;
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  background-color: #f4f4f6;
}
#sidebarCollapse:hover {
  border-color: #ddad6d;
}
#sidebarCollapse:hover .menu-lines .line {
  background-color: #ddad6d;
}
#sidebarCollapse:focus {
  box-shadow: none;
}
#sidebarCollapse.active {
  transition: all 0.4s;
}
#sidebarCollapse.active .menu-lines .line {
  width: 24px;
}
#sidebarCollapse.active .menu-lines .line.line-1 {
  transform: rotate(0);
  top: unset;
  width: 24px;
  left: 0;
}
#sidebarCollapse.active .menu-lines .line.line-3 {
  transform: rotate(0);
  top: unset;
  width: 24px;
  left: 0;
}
#sidebarCollapse .menu-lines {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#sidebarCollapse .menu-lines .line {
  position: relative;
  display: inline-block;
  width: 23px;
  height: 2px;
  margin: 2px 0;
  background-color: #636063;
  transition: all 0.4s;
}
#sidebarCollapse .menu-lines .line.line-1 {
  transform: rotate(45deg);
  top: 2px;
  width: 10px;
  left: 7px;
}
#sidebarCollapse .menu-lines .line.line-2 {
  opacity: 1;
}
#sidebarCollapse .menu-lines .line.line-3 {
  transform: rotate(-45deg);
  top: -2px;
  width: 10px;
  left: 7px;
}
#sidebarCollapse .fi {
  font-size: 2em;
}

.btn-close-sidebar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  padding: 0;
  position: absolute;
  left: 10px;
  top: 13px;
  border: none;
  color: white;
  display: none;
  background-color: rgba(255, 255, 255, 0.2);
}
.btn-close-sidebar i {
  font-size: 20px;
  line-height: 0 !important;
  position: relative;
  top: 4px;
}

.main-body-content {
  margin-top: 75px;
}
.main-body-content .main-header {
  border-bottom: 1px solid #d1d1d1;
  padding: 10px 20px;
  background-color: white;
}
.main-body-content .main-header.bg-transparent {
  background-color: transparent;
  padding: 10px 0;
  border-bottom: none;
}
.main-body-content .main-header.bg-transparent .inner {
  min-height: unset;
  margin-bottom: 10px;
}
.main-body-content .main-header .inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.main-body-content .main-header .inner .title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
.main-body-content .main-header .inner .title i {
  font-size: 24px;
  margin-left: 10px;
  line-height: 0 !important;
  color: #636063;
  display: flex;
}
.main-body-content .main-header .inner .page-back {
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-body-content .main-header .inner .page-back .btn-back {
  margin-right: 10px;
  background-color: white;
  border: 1px solid #d1d1d1;
  font-size: 14px;
  font-weight: 400;
  padding: 0.5rem 1rem 0.5rem 2rem;
  color: #636063;
}
.main-body-content .main-header .inner .page-back .btn-back .fi {
  position: absolute;
  left: 10px;
  top: 11px;
  font-size: 16px;
}
.main-body-content .main-header .inner .page-back .btn-back:hover {
  background-color: #ddad6d;
  color: white;
  border-color: #ddad6d;
}
.main-body-content .main-inner {
  background-color: white;
  padding: 20px;
  border-radius: 0;
}
.main-body-content .page-actions-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.main-body-content .page-actions-btn .btn-acion {
  margin: 5px 5px 5px 0;
}
.main-body-content .page-actions-btn .btn-acion.color-red {
  background-color: transparent;
  color: #ff3333;
  border-color: #ff3333;
}
.main-body-content .page-actions-btn .btn-acion.color-red:hover {
  background-color: #ff3333;
  color: white;
}
.main-body-content .form-content {
  margin-top: 20px;
}
.main-body-content .form-content .form-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 20px;
}
.main-body-content .form-content .form-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(100% - 60px);
  height: 1px;
  background-color: #d1d1d1;
  z-index: 1;
}
.main-body-content .form-content .form-title .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  border-radius: 50%;
  background-color: #ddad6d;
  color: white;
  position: relative;
  z-index: 10;
}
.main-body-content .form-content .form-title h5 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ddad6d;
  background-color: white;
  padding-left: 20px;
  position: relative;
  z-index: 20;
}
.main-body-content .image-preview img {
  width: 100%;
}

.box-tips {
  padding: 0 10px;
}
.box-tips .upload-pic-help li {
  font-size: 13px;
  font-weight: 400;
  color: #1f1b18;
  margin-bottom: 10px;
}
.box-tips.color-red .upload-pic-help li {
  color: #ff3333;
}

.category-list-content {
  border-left: 1px solid #d1d1d1;
  padding-left: 20px;
}
.category-list-content .list-inner {
  overflow-y: auto;
  max-height: 325px;
}
.category-list-content .item {
  display: grid;
  grid-template-columns: auto 70px;
  align-items: center;
  background-color: #f4f4f6;
  margin-bottom: 5px;
  padding: 5px 10px 5px 5px;
}
.category-list-content .item h6 {
  font-size: 13px;
  color: #1f1b18;
  margin-bottom: 0;
}

#bookmark-reserve-description {
  display: none;
}
#bookmark-reserve-description.active {
  display: block;
}

@media (max-width: 1199px) {
  .chart-grid-layout.grid-3 {
    grid-template-columns: 100%;
    grid-template-areas: "chartyear" "chartusers" "chartmonth";
  }
  .chart-grid-layout .chart-sell-year canvas {
    max-height: 200px !important;
  }
  .box-upload-file .box-inner {
    grid-template-columns: 250px auto 250px;
  }
}
@media (max-width: 992px) {
  #navbarDash {
    width: 100%;
  }
  #navbarDash .logo {
    justify-content: center;
    margin-right: 0;
  }
  #sidebarDash {
    margin-right: -280px;
    position: fixed;
  }
  #sidebarDash.active {
    margin-right: 0;
  }
  #sidebarDash .sidebar-header {
    align-items: center;
    justify-content: flex-start;
  }
  #contentDash {
    width: 100%;
    padding: 10px;
  }
  #contentDash.active {
    width: 100%;
  }
  #sidebarCollapse .menu-lines .line.line-1 {
    transform: rotate(0);
    top: unset;
    width: 24px;
    left: 0;
  }
  #sidebarCollapse .menu-lines .line.line-3 {
    transform: rotate(0);
    top: unset;
    width: 24px;
    left: 0;
  }
  .main-body-content .main-inner {
    padding: 15px;
  }
  .sidebar-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 985;
    display: none;
  }
  .btn-close-sidebar {
    display: block;
  }
  .category-list-content {
    padding-left: 0;
    border-left: none;
    margin-bottom: 10px;
  }
  .category-list-content .list-inner {
    max-height: 200px;
  }
}
@media (max-width: 768px) {
  .main-body-content .main-inner {
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .main-body-content .main-header .inner .page-back .btn-back {
    padding: 5px;
    width: 38px;
    height: 38px;
  }
  .main-body-content .main-header .inner .page-back .btn-back span {
    display: none;
  }
  .main-body-content .main-header .inner .page-back .btn-back i {
    font-size: 24px;
    position: unset;
    left: unset;
    top: unset;
  }
  .main-body-content .main-header .inner .title {
    font-size: 16px;
  }
  .main-body-content .main-header .inner .controller {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 24px;
    flex-wrap: wrap;
  }
  .main-body-content .main-header .inner .controller .btn {
    padding: 0.3rem 0.8rem;
    margin: 5px 10px 5px 0;
  }
  .main-body-content .main-header .inner .search-action {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
  .main-body-content .main-header .inner .search-action .btn {
    padding: 0.2rem 1rem 0.3rem 1rem;
    font-size: 14px;
    font-weight: 400;
  }
}
/*#endregion -------------- Dashboard */
/*#region ----------------- Cards */
.mini-cards-layout {
  margin-bottom: 5px;
}
.mini-cards-layout.grid-4 {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  align-items: flex-start;
}

.card-mini-status {
  padding: 0 10px 10px 10px;
}
.card-mini-status .card-inner {
  background-color: white;
  border-radius: 0;
  padding: 20px;
  display: block;
  transition: all 0.2s ease-in-out;
}
.card-mini-status .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-mini-status .name h6 {
  margin-bottom: 0;
  color: #636063;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-mini-status .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ddad6d;
}
.card-mini-status .number {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-mini-status .number h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1f1b18;
  margin-bottom: 0;
}
.card-mini-status .arrow {
  background-color: #f4f4f6;
  color: #636063;
  width: 24px;
  height: 24px;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.card-mini-status.color-1 .icon {
  color: #eb6f33;
}
.card-mini-status.color-1 .arrow {
  background-color: #eb6f33;
  color: white;
}
.card-mini-status.color-2 .icon {
  color: #28a745;
}
.card-mini-status.color-2 .arrow {
  background-color: #28a745;
  color: white;
}
.card-mini-status.color-3 .icon {
  color: #ddad6d;
}
.card-mini-status.color-3 .arrow {
  background-color: #ddad6d;
  color: white;
}
.card-mini-status.color-4 .icon {
  color: #01b8ff;
}
.card-mini-status.color-4 .arrow {
  background-color: #01b8ff;
  color: white;
}
.card-mini-status:hover .card-inner {
  box-shadow: 0px 5px 20px rgba(34, 30, 34, 0.1);
}

.cards-list {
  display: grid;
  align-items: flex-start;
}
.cards-list.row-4 {
  grid-template-columns: 25% 25% 25% 25%;
}
.cards-list.row-3 {
  grid-template-columns: 33.33% 33.33% 33.33%;
}
.cards-list.row-2 {
  grid-template-columns: 50% 50%;
}

.card-information {
  margin-bottom: 10px;
}
.card-information .card-inner {
  border: 1px solid #d1d1d1;
  background: white;
}
.card-information .c-title {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  background-color: #f4f4f6;
  color: #1f1b18;
  display: inline-block;
  padding: 3px;
  margin-top: 10px;
  min-width: 50px;
  text-align: center;
}
.card-information .c-body {
  padding: 6px;
}
.card-information .c-body ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.card-information .c-body ul li {
  flex: 1 0 50%;
  width: 50%;
  font-size: 13px;
  font-weight: 400;
  color: #636063;
  margin: 4px 0;
}
.card-information .c-body ul li span {
  color: #1f1b18;
  font-weight: 500;
}
.card-information .c-footer {
  background-color: #f4f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px;
}
.card-information .c-footer.flex-end {
  justify-content: flex-end;
}
.card-information .status {
  font-size: 13px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-information .status .fi {
  margin-left: 5px;
  position: relative;
  top: 3px;
  font-size: 16px;
}
.card-information .status.success {
  background-color: #00bd79;
  color: white;
}
.card-information .status.error {
  border: 1px solid #f4f4f6;
  background-color: #ccc;
  color: #636063;
}
.card-information .status.new {
  background-color: #ff3333;
  color: white;
}
.card-information .status.warning {
  background-color: #ffe16a;
  color: #1f1b18;
}
.card-information .btns-group {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-information .btns-group .btn-action {
  padding: 3px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
.card-information .btns-group .btn-action:first-child {
  margin-right: 0;
}
.card-information .btns-group .btn-action span {
  font-size: 13px;
  font-weight: 500;
}
.card-information .btns-group .btn-action .fi {
  font-size: 16px;
  margin-left: 5px;
}
.card-information .btns-group .btn-action.delete {
  background-color: #ff3333;
  color: white;
}
.card-information .btns-group .btn-action.delete:hover {
  background-color: white;
  border-color: #ff3333;
  color: #ff3333;
}
.card-information .btns-group .btn-action.edit {
  background-color: white;
  color: #009cf2;
  border-color: #009cf2;
}
.card-information .btns-group .btn-action.edit:hover {
  background-color: #009cf2;
  color: white;
}
.card-information .btns-group .btn-action.success {
  background-color: white;
  color: #00bd79;
  border-color: #00bd79;
}
.card-information .btns-group .btn-action.success:hover {
  background-color: #008a58;
  color: white;
}
.card-information .message-text {
  margin: 5px 0;
  font-size: 13px;
  font-weight: 400;
  color: #1f1b18;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-information .message-text span {
  color: #636063;
}
.card-information .form-check .form-check-input:checked {
  background-color: #009cf2;
  border-color: #009cf2;
}
.card-information .form-check .form-check-label {
  font-size: 13px;
}
.card-information .btn-edit {
  margin: 5px 10px 5px 5px;
  font-size: 13px;
  background: transparent;
  padding: 0;
  color: #009cf2;
  border: none;
  -webkit-text-decoration: underline 1px dashed #009cf2;
          text-decoration: underline 1px dashed #009cf2;
}
.card-information .btn-edit:hover, .card-information .btn-edit:focus {
  background: transparent !important;
  border: none;
  color: #0082c9 !important;
}
.card-information .dropdown .btn-secondary {
  padding: 3px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  border-radius: 8px;
  border: 1px solid #009cf2;
  transition: all 0.2s ease-in-out;
  background-color: white;
  color: #009cf2;
}
.card-information .dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  color: #1f1b18;
}
.card-information .dropdown .dropdown-menu .dropdown-item .fi {
  margin-left: 8px;
  font-size: 16px;
  position: relative;
  top: 4px;
  color: #636063;
}
.card-information .dropdown .dropdown-menu .dropdown-item:hover, .card-information .dropdown .dropdown-menu .dropdown-item:focus {
  background-color: rgba(0, 0, 0, 0.05);
}
.card-information .dropdown .dropdown-menu .dropdown-item.color-error {
  color: #ff3333;
}
.card-information .dropdown .dropdown-menu .dropdown-item.color-error .fi {
  color: #ff3333;
}

.card-doctor {
  padding: 10px;
}
.card-doctor .card-inner {
  border: 1px solid #d1d1d1;
  background-color: white;
  padding: 10px;
  display: grid;
  grid-template-columns: 80px auto;
  align-items: center;
}
.card-doctor .thumb .img-inner {
  width: 80px;
  height: 80px;
}
.card-doctor .thumb .img-inner img {
  width: 100%;
  border-radius: 50%;
}
.card-doctor .info {
  padding-right: 10px;
}
.card-doctor .info h5 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #1f1b18;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-doctor .info h6 {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
  color: #636063;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-doctor .c-footer {
  background-color: #f4f4f6;
  padding: 5px;
  border: 1px solid #d1d1d1;
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.card-doctor .c-footer .btn {
  padding: 4px 8px;
  margin-right: 6px;
  border-radius: 0;
  font-size: 13px;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
.card-doctor .c-footer .btn.btn-primary {
  background-color: #009cf2;
  border-color: #009cf2;
  color: white;
}
.card-doctor .c-footer .btn.btn-primary:hover, .card-doctor .c-footer .btn.btn-primary:focus {
  background-color: #007bbf !important;
}
.card-doctor .c-footer .btn.btn-primary-outline {
  border-color: #009cf2;
}
.card-doctor .c-footer .btn.btn-secondary {
  background-color: #ff3333;
  color: white;
}
.card-doctor .c-footer .btn.btn-secondary:hover, .card-doctor .c-footer .btn.btn-secondary:focus {
  background-color: #f50000 !important;
  color: white !important;
}

.card-portfolio {
  padding: 10px;
}
.card-portfolio .card-inner {
  background-color: white;
  border: 1px solid #d1d1d1;
}
.card-portfolio .thumb {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  margin: 0;
}
.card-portfolio .thumb .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.card-portfolio .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  transition: all 0.3s ease-in;
}
.card-portfolio .info {
  padding: 10px 5px 5px 5px;
}
.card-portfolio .info h6 {
  font-size: 14px;
  margin-bottom: 3px;
  color: #1f1b18;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-portfolio .info p {
  font-size: 13px;
  font-weight: 400;
  color: #636063;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}
.card-portfolio .c-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  background-color: #f4f4f6;
}
.card-portfolio .c-footer .btn {
  margin-right: 3px;
}
.card-portfolio .show-status .form-check .form-check-input:checked {
  background-color: #009cf2;
  border-color: #009cf2;
}
.card-portfolio .show-status .form-check .form-check-label {
  font-size: 13px;
}

.card-blog-row {
  padding: 5px;
}
.card-blog-row .card-inner {
  background-color: white;
  border: 1px solid #d1d1d1;
}
.card-blog-row .c-body {
  display: grid;
  grid-template-columns: 120px auto;
  padding: 5px;
}
.card-blog-row .thumb {
  width: 100%;
  height: 68px;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  margin: 0;
}
.card-blog-row .thumb .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.card-blog-row .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  transition: all 0.3s ease-in;
}
.card-blog-row .info {
  padding: 5px 10px 0 5px;
}
.card-blog-row .info h6 {
  font-size: 13px;
  color: #1f1b18;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog-row .info p {
  font-size: 12px;
  margin-bottom: 0;
  color: #636063;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog-row .c-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  background-color: #f4f4f6;
}
.card-blog-row .c-footer .btn {
  margin-right: 3px;
}
.card-blog-row .show-status .form-check .form-check-input:checked {
  background-color: #009cf2;
  border-color: #009cf2;
}
.card-blog-row .show-status .form-check .form-check-label {
  font-size: 13px;
}

@media (max-width: 1300px) {
  .cards-list.row-4 {
    grid-template-columns: 33.33% 33.33% 33.33%;
  }
}
@media (max-width: 1199px) {
  .mini-cards-layout.grid-4 {
    grid-template-columns: 50% 50%;
  }
  .cards-list.row-3 {
    grid-template-columns: 50% 50%;
  }
  .cards-list.row-2 {
    grid-template-columns: 100%;
  }
}
@media (max-width: 992px) {
  .mini-cards-layout.grid-4 {
    grid-template-columns: 50% 50%;
  }
  .mini-cards-layout .card-mini .info {
    padding: 15px;
  }
  .cards-list.row-2 {
    grid-template-columns: 50% 50%;
  }
}
@media (max-width: 768px) {
  .cards-list.row-4 {
    grid-template-columns: 50% 50%;
  }
  .cards-list.row-2 {
    grid-template-columns: 100%;
  }
}
@media (max-width: 575px) {
  .card-mini-status .card-inner {
    padding: 10px;
  }
  .card-mini-status .name h6 {
    font-size: 12px;
  }
  .card-mini-status .icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }
  .card-mini-status .number h3 {
    font-size: 20px;
  }
  .cards-list.row-3 {
    grid-template-columns: 100%;
  }
  .card-information .c-body ul li {
    flex: 1 0 100%;
    width: 100%;
  }
  .card-information .c-footer .btns-group .btn-action {
    padding: 3px;
    width: 32px;
    height: 32px;
  }
  .card-information .c-footer .btns-group .btn-action .fi {
    margin: 0;
  }
  .card-information .c-footer .btns-group .btn-action span {
    display: none;
  }
}
@media (max-width: 380px) {
  .mini-cards-layout.grid-4 {
    grid-template-columns: 100%;
  }
  .card-mini-status {
    padding: 5px 0;
  }
}
/*#endregion -------------- Cards */
/*#region ----------------- Charts */
.chart-content {
  background-color: white;
  margin-bottom: 20px;
}
.chart-content .chart-title {
  padding: 20px 20px 20px 10px;
  display: grid;
  grid-template-columns: auto 40px;
  align-items: center;
}
.chart-content .chart-title h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 0;
  color: #1f1b18;
}
.chart-content .chart-title h4 .fi {
  margin-left: 10px;
  font-size: 20px;
  position: relative;
  top: 3px;
  color: #ddad6d;
}
.chart-content .chart-title .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #a1a0a1;
  transition: all 0.2s linear;
}
.chart-content .chart-title.collapsed .icon {
  transform: rotate(90deg);
}
.chart-content .chart-body {
  padding: 20px;
}
.chart-content .chart-body canvas {
  max-height: 400px;
}

/*#endregion -------------- Charts */
/*#region ----------------- Modal */
.modal-content {
  border: none;
  border-radius: 0;
}

.modal-title .fi {
  margin-left: 10px;
  position: relative;
  top: 5px;
  color: #636063;
}

.modal-body {
  padding-bottom: 0;
}
.modal-body .msg {
  color: #636063;
}

.modal-footer {
  border: none;
}

/*#endregion -------------- Modal */
/*#region ----------------- Tables */
.table thead th {
  font-size: 13px;
  font-weight: 600;
  color: #636063;
}
.table tbody td {
  font-size: 14px;
  font-weight: 400;
  color: #1f1b18;
}

/*#endregion -------------- Tables */
/*#region ----------------- Page Filter */
.page-filter {
  border-radius: 0;
  border: 1px solid #d1d1d1;
  background-color: rgba(22, 36, 77, 0.1);
  margin-bottom: 20px;
}
.page-filter .btn-collapse {
  position: relative;
  width: 100%;
  text-align: right;
  height: 42px;
  border: none;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid #d1d1d1;
}
.page-filter .btn-collapse .name {
  font-size: 14px;
  font-weight: 500;
  color: #1f1b18;
}
.page-filter .btn-collapse .name .fi {
  color: #16244d;
  margin-left: 10px;
  line-height: 0;
  position: relative;
  top: 5px;
  font-size: 18px;
}
.page-filter .btn-collapse .icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
  color: #636063;
}
.page-filter .btn-collapse .icon .fi {
  font-size: 20px;
  top: unset;
}
.page-filter .btn-collapse.collapsed {
  border-radius: 0;
  border-bottom-color: transparent;
}
.page-filter .btn-collapse.collapsed .icon {
  transform: rotate(0);
}
.page-filter .btn-collapse:hover, .page-filter .btn-collapse:focus {
  border-bottom: none;
}
.page-filter .btn-collapse:hover .name, .page-filter .btn-collapse:focus .name {
  color: white;
}
.page-filter .btn-collapse:hover .name .fi, .page-filter .btn-collapse:focus .name .fi {
  color: white;
}
.page-filter .btn-collapse:hover .icon, .page-filter .btn-collapse:focus .icon {
  color: white;
}
.page-filter .card-body {
  padding: 10px;
  background-color: #f4f4f6;
  border: none;
  border-radius: 0;
}
.page-filter .btngroup {
  margin-bottom: 1.2rem;
}
.page-filter .btngroup .btn {
  width: 100%;
  padding: 0.5rem 1.2rem;
}
.page-filter .col-lg-12,
.page-filter .col-lg-6,
.page-filter .col-lg-4,
.page-filter .col-lg-3,
.page-filter .col-md-12,
.page-filter .col-md-6,
.page-filter .col-md-4,
.page-filter .col-md-3,
.page-filter .col-sm-12,
.page-filter .col-sm-6,
.page-filter .col-sm-4,
.page-filter .col-sm-3 {
  padding: 0 5px;
}
.page-filter .row {
  margin-right: unset;
  margin-left: unset;
}

@media (max-width: 1199px) {
  .page-filter .inputgroup,
  .page-filter .selectgroup,
  .page-filter .btngroup {
    margin-bottom: 1rem;
  }
}
@media (max-width: 575px) {
  .page-filter .btn-collapse .name {
    font-size: 13px;
  }
  .page-filter .btn-collapse .name .fi {
    font-size: 16px;
  }
  .page-filter .inputgroup,
  .page-filter .selectgroup,
  .page-filter .btngroup {
    margin-bottom: 0.5rem;
  }
  .page-filter .inputgroup label,
  .page-filter .selectgroup label,
  .page-filter .btngroup label {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .page-filter .inputgroup .icon,
  .page-filter .selectgroup .icon,
  .page-filter .btngroup .icon {
    font-size: 18px;
    width: 34px;
    height: 34px;
  }
  .page-filter .selectgroup .select {
    padding: 2px 38px 2px 10px;
    height: 34px;
    font-size: 13px;
  }
  .page-filter .inputgroup .input {
    padding: 2px 38px 2px 10px;
    height: 34px;
    font-size: 13px;
  }
  .page-filter .btngroup {
    margin-top: 10px;
  }
  .page-filter .btngroup .btn {
    padding: 0.3rem 1.2rem;
    font-size: 14px;
  }
  .page-filter .btngroup .btn .fi {
    font-size: 18px;
  }
  .page-filter .btngroup .btn.icon-right {
    padding: 0.3rem 2.5rem 0.3rem 1.2rem;
  }
  .page-filter .btngroup .btn.icon-right .fi {
    top: 6px;
  }
}
/*#endregion -------------- Page Filter */
/*#region ----------------- Tabs */
.nav-tabs .nav-link {
  font-size: 14px;
  font-weight: 400;
  background-color: #f4f4f6;
  border-radius: 0;
  border: none;
  margin: 0 2px;
  color: #636063;
  padding: 0.7rem 1.5rem;
}
.nav-tabs .nav-link.active {
  background-color: #ddad6d;
  color: white;
}

.tab-content .tab-inner {
  margin-top: 20px;
}

/*#endregion -------------- Tabs */
/*#region ----------------- Login Wrapper */
.login-wrapper {
  padding: 3rem 2rem;
  background-image: url(../../images/bg/IMG_0773.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.login-wrapper .login-section {
  width: 500px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0px 5px 20px rgba(34, 30, 34, 0.1);
  position: relative;
  z-index: 100;
}
.login-wrapper .login-section .login-header {
  padding: 12px;
  text-align: center;
  background-color: #ddad6d;
}
.login-wrapper .login-section .login-header h6 {
  margin-bottom: 0;
  color: white;
}
.login-wrapper .login-section .login-body {
  padding: 30px;
}
.login-wrapper .captcha {
  display: grid;
  grid-template-columns: auto 35px;
  align-items: flex-end;
}
.login-wrapper .captcha .img-captcha img {
  width: 100%;
  border-radius: 2px;
}
.login-wrapper .captcha .btn-refresh {
  width: 30px;
  height: 30px;
  border: 1px solid #ddad6d;
  background-color: rgba(221, 173, 109, 0.1);
  border-radius: 0;
  color: #ddad6d;
  margin-right: 5px;
  cursor: pointer;
}
.login-wrapper .captcha .btn-refresh .fi {
  position: relative;
  top: 3px;
}
.login-wrapper .btns-group {
  margin-top: 20px;
  text-align: center;
}
.login-wrapper .col-lg-6,
.login-wrapper .col-lg-12,
.login-wrapper .col-md-6 {
  padding: 0 10px;
}

@media (max-width: 575px) {
  .login-wrapper .login-section {
    width: 100%;
  }
  .login-wrapper .login-section .login-body {
    padding: 15px;
  }
  .login-wrapper .btns-group .btn {
    display: block;
    margin: 5px 0;
  }
}
/*#endregion -------------- Login Wrapper */
/*#region ----------------- Times */
.times-count {
  margin-bottom: 2rem;
}
.times-count h6 {
  margin-bottom: 10px;
  color: #1f1b18;
}
.times-count h6 .fi {
  margin-left: 8px;
  font-size: 18px;
  position: relative;
  top: 5px;
  color: #636063;
}
.times-count .input-group {
  width: 300px;
}
.times-count .input-group .form-control:hover, .times-count .input-group .form-control:focus {
  box-shadow: none;
}
.times-count .input-group .input-group-text {
  font-size: 13px;
}

.add-time {
  margin-top: 10px;
}
.add-time .btn-link {
  background-color: transparent;
  font-size: 14px;
  color: #009cf2;
  border: none;
  text-decoration: none;
}
.add-time .btn-link .fi {
  position: relative;
  top: 4px;
  font-size: 18px;
  margin-left: 8px;
}

.card-times {
  margin-top: 10px;
}
.card-times .card-inner {
  background-color: #f4f4f6;
  display: grid;
  grid-template-columns: auto 300px;
  padding: 20px;
  position: relative;
}
.card-times.type-2 .card-inner {
  grid-template-columns: 100%;
  background-color: white;
  padding: 0;
}
.card-times.type-2 .choose-time {
  margin-top: 20px;
}
.card-times .choose-week .btns-group-week {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}
.card-times .btn-week {
  padding: 6px 10px;
  background-color: white;
  border: 1px solid #d1d1d1;
  margin: 5px 0 5px 5px;
  font-size: 13px;
  font-weight: 400;
  color: #636063;
}
.card-times .btn-week.active {
  background-color: #ddad6d;
  border-color: #ddad6d;
  color: white;
}
.card-times .choose-time .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.card-times .choose-time .input-group {
  flex: 0 0 50%;
  width: 50%;
  padding-left: 5px;
  margin-bottom: 0;
}
.card-times .choose-time .input-group .form-control {
  text-align: left;
  font-size: 14px;
  border: 1px solid #d1d1d1;
}
.card-times .choose-time .input-group .form-control:hover, .card-times .choose-time .input-group .form-control:focus {
  border-color: #16244d;
  box-shadow: none;
}
.card-times .btn-delete {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 51, 51, 0.2);
  color: #ff3333;
  margin-right: 5px;
  border-radius: 5px;
}
.card-times .btn-delete:hover, .card-times .btn-delete:focus {
  background: #ff3333;
}
.card-times .btn-edit {
  width: 30px;
  height: 30px;
  background-color: rgba(0, 156, 242, 0.2);
  color: #009cf2;
  margin-right: 5px;
  border-radius: 5px;
  border: none;
}
.card-times .btn-edit:hover, .card-times .btn-edit:focus {
  background: #009cf2;
}
.card-times .c-footer {
  background-color: #f4f4f6;
  padding: 0 20px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .card-times .card-inner {
    grid-template-columns: 100%;
    padding: 15px;
  }
  .card-times .choose-week {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .times-count .input-group {
    width: 100%;
  }
}
/*#endregion -------------- Times */