/* Chat decoy*/

.chat-container {
  position: fixed;
  z-index: 999999999;
  width: 40px;
  height: 40px;
  bottom: 30px;
  left: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.chat-container .fi-icon {
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
}

.color-white {
  color: #fff;
}

.color-yellow {
  color: #ffcd01;
}


.chat-container .dropdown-list {
  padding: 16px;
  background-color: #fff;
  overflow-y: auto;
}

.dropdown-list {
  position: absolute;
  bottom: 50px;
  left: -4px;
  display: none;

  padding-top: 10px;
  list-style-type: none;
}

ul.dropdown-list {
  border-radius: 10px;
  box-shadow: 0px 4px 24px rgb(225, 225, 225);
}

ul.dropdown-list:first-child,
ul.dropdown-list:first-child:hover {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

ul.dropdown-list:last-child,
ul.dropdown-list:last-child:hover {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.dropdown-list li {
  background: #fff;
  min-width: 80px;
  padding: 4px;
  cursor: pointer;



}

.fi-icon.fa-facebook-messenger:before {
  line-height: 40px;
}

.social-links-contact-page {
  margin-top: 10px;
  margin-left: 10px;
}

.dropdown-list li a,
.social-links-contact-page li a {
  display: flex;
  line-height: 40px;
  text-decoration: none;
  color: #222;

}

.dropdown-list li a span,
.social-links-contact-page li a span {
  margin-left: 10px;
  margin-right: 10px;
}

.social-links-contact-page li:hover a span {
  color: #ed2424;
}

.dropdown-list[style*="display: none"] li {
  position: absolute;
  top: 0px;
  left: 0px;
}


.dropdown-list li:hover {
  background-color: rgba(246, 246, 246, 1);

}

.dropdown-list li:first-child,
.dropdown-list li:hover:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px
}

.dropdown-list li:last-child,
.dropdown-list li:hover:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px
}


.dropdown-btn-cover {
  width: 40px;
  height: 40px;
}

.dropdown-btn {
  background-color: #ffcd01;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 18px;
  transition: transform 0.5s ease-in-out;
  z-index: 100;
}

.dropdown-btn i {
  transform: scale(-1, 1);
}

.dropdown-btn-deccoy {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0px;
  z-index: -1;
  border: 0;
  border-radius: 50%;
}

.dropdown-btn-cover:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: #b3daff;
  -webkit-animation: pulse 2s linear infinite;
  animation: pulse 2s linear infinite;
}

.dropdown-btn-cover:before {
  content: "";
  border-radius: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: #b3daff;
  -webkit-animation: pulse 2s linear infinite;
  animation: pulse 2s linear infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.dropdown-btn .dropdown-btn-deccoy {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: -1;
}

.dropdown-btn .dropdown-btn-deccoy:before {
  content: "";
  border-radius: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #b3daff;
  -webkit-animation: pulse 2s linear infinite;
  animation: pulse 2s linear infinite;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.dropdown-btn-deccoy .dropdown-btn-deccoy:after {
  content: "";
  border-radius: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #b3daff;
  -webkit-animation: pulse 2s linear;
  animation: pulse 2s linear;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.dropdown-btn .dropdown-btn-deccoy {
  content: "f4ad";
  border-radius: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #e42a30;
  z-index: 1;
}

/*! CSS Used keyframes */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}

.dropdown-btn:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

.dropdown-btn {
  animation: shake2 1.2s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-10deg);
  }

  20% {
    transform: rotate(1deg);
  }

  30% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(1deg);
  }

  50% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  70% {
    transform: rotate(-10deg);
  }

  80% {
    transform: rotate(1deg);
  }

  90% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-10deg);
  }
}

@keyframes shake2 {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(1deg);
  }

  30% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(1deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  60% {
    transform: rotate(0deg);
  }

  70% {
    transform: rotate(-5deg);
  }

  80% {
    transform: rotate(1deg);
  }

  90% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-5deg);
  }
}



.card-table .card-body {
  padding: 0 !important;
}

.card-table .card-body .table>thead>tr>th {
  border-top: 0;
}

.card-table .card-body .table td {
  color: #2f2f2f;
  font-weight: 400;
  border-top: 0;
  font-size: 12px;
  padding: 16px 24px;
  white-space: nowrap;
  box-shadow: none;
}

.card-table .card-body .table td:first-child {
  padding-left: 24px;
}

.card-table .card-body .table th {
  white-space: nowrap;
  padding: 12px 24px;
  border-bottom: 0;
  font-weight: 600;
  font-size: 14px;
  color: #2f2f2f;
}

.card-table .card-body .table th:first-child {
  padding-left: 24px;
}

.table> :not(:first-child) {
  border: 0;
}

.dataTables_length select {
  appearance: auto;
}

.table-nosearch .dataTables_length,
.table-nosearch .dataTables_filter {
  display: none;
}

.card-table div.table-responsive>div.dataTables_wrapper>div.row:first-child {
  padding: 1.5rem 1.5rem 0 !important;
  align-items: center;
}

.card-table div.table-responsive>div.dataTables_wrapper>div.row:last-child {
  padding: 0 1.5rem 1.5rem !important;
  align-items: center;
}

.dataTables_length select {
  appearance: auto;
}

table .badge {
  border-radius: 4px;
  display: inline-block;
  font-size: 12px;
  min-width: auto;
  padding: 8px 10px;
  font-weight: 400;
  text-align: center;
}

.table tbody td a {
  color: #0052ea;
}

.table tbody td a.action-icon {
  color: #333;
}

.table tbody td h2.table-avatar a {
  color: #3F4254;
}

.table tbody td h2.table-avatar a:hover {
  color: #ffcd01;
}

.listing-title>a:hover {
  text-decoration: none !important;
}

.mini-sidebar .header .header-left.header-left-two .logo.logo-small {
  padding: 10px 0 0;
  margin: 0;
}

.categories-table .table tr:last-child td {
  padding-bottom: 0;
  border: none;
}

.categories-table .table td {
  padding: 8px;
  font-size: 14px;
}

.card-table .table {
  background: #ffffff;
  margin-bottom: 24px !important;
  border-radius: 8px;
}

.dataTables_length label {
  font-weight: 500 !important;
  font-size: 14px;
  color: #3F4254;
}

.dataTables_length label:before {
  content: "Show";
  margin-right: 4px;
  font-size: 12px;
}

.dataTables_length label:after {
  content: "Entries";
  margin-left: 4px;
  font-size: 12px;
}

