@charset "utf-8";

:root {
  --primaryColor: #14c766;
  --primaryBgColor: #14c766;
  --primaryTextColor: #08b457;
  --primaryLightColor: #fafffb;
  --primaryLightTextColor: #e2faea;

  --secondaryColor: #f5f5f5;
  --secondaryBgColor: #f9f9f9;
  --secondaryTextColor: #e8e8e8;
  --successColor: #00a65a;
  --errorColor: #dd4b39;
}

/* ////////////////////////////////////////////////////////////////////////// */
/*                                  Global                                    */
/* ////////////////////////////////////////////////////////////////////////// */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #ffffff;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  border-radius: 20px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid var(--primaryColor);
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid var(--primaryColor);
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid var(--primaryColor);
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid var(--primaryColor);
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid var(--primaryColor);
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid var(--primaryColor);
    border-left-color: transparent;
  }
}

#kt_content {
  min-height: 87vh;
}

.menu-sub-dropdown.menu.show {
  z-index: 105;
  position: fixed;
  inset: 0px 0px auto auto;
  margin: 0px;
  transform: translate(-30px, 65px);
}

/* ////////////////////////////////////////////////////////////////////////// */
/*                                 Side Menu                                  */
/* ////////////////////////////////////////////////////////////////////////// */

.aside-dark .menu .menu-item .menu-link .menu-title,
.aside-dark .menu .menu-item .menu-link .menu-icon i {
  color: #bababa
}

.aside-dark .menu .menu-item .menu-section {
  color: #fff !important;
}

.aside-dark .menu .menu-item .menu-link.active .menu-icon i,
.aside-dark .menu .menu-item .menu-link:hover .menu-icon i,
.aside-dark .menu .menu-item.show>.menu-link .menu-icon i {
  color: var(--primaryColor) !important;
}

.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i {
  color: var(--primaryColor);
}

.aside-dark .menu .menu-item .menu-link.active .menu-bullet .bullet,
.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet {
  background-color: var(--primaryColor) !important;
}

.btn.btn-icon .svg-icon, .btn.btn-icon:hover i,
.btn.btn-active-color-primary.active i {
  color: var(--primaryTextColor) !important;
}


/* ////////////////////////////////////////////////////////////////////////// */
/*                                  Table                                     */
/* ////////////////////////////////////////////////////////////////////////// */

.table thead th {
  color: #b5b5c3 !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  font-size: .95rem !important;
}

.table tbody tr {
  color: #7e8299 !important;
  font-weight: 500 !important;
  font-size: 1.075rem!important
}

.page-item .page-link {
  color: var(--primaryColor);
}

.page-item .page-link:hover {
  color: #fff;
  background-color: var(--primaryColor) !important;
}

.page-item.active .page-link {
  border-color: var(--primaryColor);
  background-color: var(--primaryColor);
}

.table-hover td {
  cursor: pointer !important;
}


/* ////////////////////////////////////////////////////////////////////////// */
/*                               Multi Select                                 */
/* ////////////////////////////////////////////////////////////////////////// */

.multiselect,.multiselect__input,.multiselect__single{
  font-size: 1.1rem !important;
  line-height:1.5 !important;
}

.multiselect__select{
  height: 100% !important;
}

.multiselect__tags{
  padding-left: 0.75rem !important;
  height: 2.75rem !important;
  border-radius: .475rem !important;
}

.multiselect__option--highlight, .multiselect__option--highlight:after{
  background: var(--primaryColor) !important;
  outline:none;
}

.multiselect__input,.multiselect__single{
  min-height: 0 !important;
}

.multiselect__option--selected{
  font-weight: 600 !important;
}

.multiselect__tag, .multiselect__tag-icon {
  background: var(--primaryColor) !important;
}

.multiselect__tag-icon:after {
  color: #fff !important;
}

.multiselect--disabled {
  background: var(--secondaryColor) !important;
}

/* ////////////////////////////////////////////////////////////////////////// */
/*                               Text                                         */
/* ////////////////////////////////////////////////////////////////////////// */

.text-primary {
  color: var(--primaryTextColor) !important;
}

.text-hover-primary:hover,
.text-hover-primary:focus,
.text-hover-primary:active {
  color: var(--primaryTextColor) !important;
}

.text-success {
  color: var(--successColor) !important;
}

.text-danger {
  color: var(--errorColor) !important;
}


/* ////////////////////////////////////////////////////////////////////////// */
/*                               Form Control                                 */
/* ////////////////////////////////////////////////////////////////////////// */

.form-control.form-control-solid {
  background-color: var(--secondaryBgColor);
}

.form-control:focus {
  border-color: var(--primaryColor) !important;
}

.form-select.form-select-solid {
  background-color: var(--secondaryBgColor);
}

.form-control.form-control-solid:hover,
.form-control.form-control-solid:focus,
.form-control.form-control-solid:active {
  background-color: var(--secondaryColor);
}

.form-select.form-select-solid:hover,
.form-select.form-select-solid:focus,
.form-select.form-select-solid:active {
  background-color: var(--secondaryColor);
}

.hasError {
  border: 1px solid !important;
	border-color: var(--errorColor) !important;
  border-radius: .25rem;
	box-shadow: none;
}

.form-check.form-check-solid .form-check-input:checked {
  background-color: var(--primaryColor);
}

.form-check.form-check-solid .form-check-input:checked {
  background-color: var(--primaryColor);
}

textarea {
  resize: none;
}

/* ////////////////////////////////////////////////////////////////////////// */
/*                              Primary Button                                */
/* ////////////////////////////////////////////////////////////////////////// */

.btn.btn-primary {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.btn-check:checked + .btn.btn-primary, .btn-check:active + .btn.btn-primary, .btn.btn-primary:focus:not(.btn-active), .btn.btn-primary:hover:not(.btn-active), .btn.btn-primary:active:not(.btn-active), .btn.btn-primary.active, .btn.btn-primary.show, .show > .btn.btn-primary {
  background-color: var(--primaryTextColor) !important;
  border-color: var(--primaryTextColor) !important;
}

/* ////////////////////////////////////////////////////////////////////////// */
/*                             Secondary Button                               */
/* ////////////////////////////////////////////////////////////////////////// */

.btn-secondary {
  background-color: var(--secondaryColor) !important;
  border-color: var(--secondaryTextColor) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn.btn-secondary:hover:not(.btn-active),
.btn.btn-secondary:focus:not(.btn-active) {
  color: black;
  background-color: var(--secondaryColor) !important;
  border-color: var(--secondaryTextColor) !important;
}

/* ////////////////////////////////////////////////////////////////////////// */
/*                               Danger Button                                */
/* ////////////////////////////////////////////////////////////////////////// */

.btn-danger {
  background-color: var(--errorColor) !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background-color: var(--errorColor) !important;
  border-color: var(--errorColor) !important;
}

/* ////////////////////////////////////////////////////////////////////////// */
/*                                 Others                                     */
/* ////////////////////////////////////////////////////////////////////////// */

.scrolltop {
  background-color: var(--primaryColor) !important;
}

.btn.btn-active-light-primary:focus:not(.btn-active),
.btn.btn-active-light-primary:hover:not(.btn-active),
.btn.btn-active-light-primary.show i {
  background-color: var(--primaryLightColor) !important;
}

.btn.btn-active-light-primary.active i,
.btn.btn-active-light-primary.show i,
.btn.btn-active-light-primary:active:not(.btn-active) i,
.btn.btn-active-light-primary:focus:not(.btn-active) i,
.btn.btn-active-light-primary:hover:not(.btn-active) i,
.show>.btn.btn-active-light-primary i {
  color: var(--primaryTextColor) !important;
}

.badge-light-primary {
  color: var(--primaryColor) !important;
  background-color: var(--primaryLightColor) !important;
}

.badge-dot i {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  margin-right: 0.375rem;
  vertical-align: middle;
  border-radius: 50%;
}

.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,
.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
  color: var(--primaryTextColor) !important;
  background-color: var(--primaryLightColor) !important;
}

.menu-gray-800 .menu-item .menu-link:hover {
  color: var(--primaryTextColor) !important;
  background-color: var(--primaryLightColor) !important;
}

.menu-state-bg-light-primary .menu-item.show>.menu-link {
  color: var(--primaryTextColor) !important;
  background-color: var(--primaryLightColor) !important;
}

.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-title {
  color: var(--primaryTextColor) !important;
}

.text-active-primary.active {
  color: var(--primaryTextColor) !important;
}

.nav-line-tabs .nav-item .nav-link.active,
.nav-line-tabs .nav-item .nav-link.active, .nav-line-tabs .nav-item .nav-link:hover:not(.disabled) {
  border-bottom: 1px solid var(--primaryColor);
}

.flatpickr-day:hover {
  background-color: var(--primaryLightColor) !important;
  color: var(--primaryTextColor) !important;
}

.flatpickr-day.selected {
  background-color: var(--primaryColor) !important;
}

.dropzone {
  cursor: auto;
}

.dropzone, .dropzone.dz-clickable {
  border: 1px dashed #dee2e6 !important;
  border-radius: .375rem !important;
}

.dropzone .dz-message {
  display: block;
  margin: 3em 0 !important;
}

.dropzone .dz-message *,
.dropzone.dz-clickable .dz-message * {
  text-align: center !important;
  font-size: 16px !important;
  color: #cdcdcd !important;
}

.dropzone .dz-preview,
.dropzone.dz-clickable .dz-preview {
  width: 100px;
  height: 100px;
}

.dropzone .dz-preview .dz-image,
.dropzone.dz-clickable .dz-preview .dz-image {
  width: 100px !important;
  height: 100px !important;
  border-radius: 10px !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow:0 0 10px 2px rgba(0,0,0,0.2) !important;
  background-color: transparent !important;
}

.dropzone .dz-preview .dz-image {
  z-index: 0 !important;
}

.dropzone .dz-preview .dz-image img,
.dropzone.dz-clickable .dz-preview .dz-image img {
  width: 100% !important;
}

.dropzone .dz-preview:hover .dz-image img,
.dropzone.dz-clickable .dz-preview:hover .dz-image img {
  -webkit-filter:none !important;
  filter: none !important;
  transform: scale(1) !important;
}

.dropzone .dz-preview .dz-details,
.dropzone.dz-clickable .dz-preview .dz-details {
  display: none !important;
}

.dropzone .dz-remove {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DD4B39'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") !important;
}

.dropzone .dz-remove:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") !important;
}

.dropzone .dz-preview a,
.dropzone.dz-clickable .dz-preview a {
  border: 2px solid var(--errorColor) !important;
}

.dropzone .dz-preview a:hover,
.dropzone.dz-clickable .dz-preview a:hover {
  border: 2px solid var(--errorColor) !important;
  background-color: var(--errorColor) !important;
}

.bg-primary {
  background-color: var(--primaryLightTextColor) !important;
}

.phone_content_holder{
  display: flex;
  position: relative;
}

.phone_holder img {
  display: table;
  width: 100%;
}

.phone_edited_content {
  position: absolute;
  top: 30px;
  right: 18px;
  max-width: 200px;
  height: 430px;
  overflow-y: scroll;
}

.phone_content_box {
  display: block;
  padding: 10px;
  margin-top: 10px;
  border-radius: 10px;
  background: var(--primaryBgColor);
}

.phone_content {
  word-wrap:break-word;
  white-space:break-spaces;
  text-align:right;
  font-size: 11px;
  color: white;
}

.emoji-container {
  display: block;
  position: absolute;
  left: 0;
  bottom: 190px;
  background: var(--secondaryBgColor);
  padding: 20px;
  padding-top: 0px;
  z-index: 1;
  height: 300px;
  overflow-y: scroll;
  border: 2px solid var(--bs-gray-300);
  border-radius: 10px;
}

.emoji-container h5 {
  margin-top: 20px;
  border-bottom: 2px solid var(--bs-gray-300);
  padding-bottom: 10px;
  margin-bottom: 2px
}

.emoji-container span{
  font-size: 30px;
  cursor: pointer;
  margin: 5px;
}

.badge-light-info {
  color: #009ef7;
  background-color: #f1faff;
}

#passwordToggle {
  position: absolute;
  right: 10px;
  top: 18px;
}