@import url(https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap);
* {
  scrollbar-width: thin;
  scrollbar-color: silver white;
}

::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 1px 0 0 transparent;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background: silver;
  border-width: 0 1px 0 1px;
  border-style: solid;
  border-color: #fff;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.1);
}

::placeholder {
  opacity: 0.4 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Start Login Animation */
.flicker-bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(225, 27, 34);
  background: url("../images/bg-layer-00.png") scroll no-repeat center / cover,
    radial-gradient(
      circle,
      rgb(225, 27, 34) 0%,
      rgb(186, 19, 26) 50%,
      rgb(103, 0, 0) 100%
    );
  position: fixed;
  width: 100%;
  height: 100vh;
}

.flicker-layer-one,
.flicker-layer-two,
.flicker-layer-three {
  position: fixed;
  background-color: rgba(0, 0, 0, 0);
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100vh;
}

.flicker-layer-one {
  background-image: url(../images/bg-layer-01.png);
  animation: flicker-one 2s linear infinite;
}

.flicker-layer-two {
  background-image: url(../images/bg-layer-02.png);
  animation: flicker-two 2s linear infinite;
}

.flicker-layer-three {
  background-image: url(../images/bg-layer-03.png);
  animation: flicker-three 2s linear infinite;
}

@keyframes flicker-one {
  0%,
  25% {
    opacity: 1;
  }
  26%,
  100% {
    opacity: 0.15;
  }
}
@keyframes flicker-two {
  0%,
  25% {
    opacity: 0.15;
  }
  26%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.15;
  }
}
@keyframes flicker-three {
  0%,
  50% {
    opacity: 0.15;
  }
  51%,
  100% {
    opacity: 1;
  }
}
/* End Login Animation */

body {
  font-size: 14px;
  color: #4c5258;
  letter-spacing: 0.5px;
  font-family: Lato, sans-serif;
  background-color: #f7f8fa;
  overflow-x: hidden;
}

.wrapper {
  width: auto;
  position: relative;
}

.min-h-100 {
  min-height: 100px !important;
}

.loader-center {
  position: absolute;
  z-index: 1;
  left: calc(50% - 1rem);
  top: calc(50% - 1rem);
}

a {
  text-decoration: none;
}

.color-inherit {
  color: inherit !important;
}

.btn-icon {
  padding: 0;
  margin: 4px;
}

.btn-icon i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 0;
}

.text-ellipsis {
  text-overflow: ellipsis !important;
}

.weight-100 {
  font-weight: 100;
}

.weight-200 {
  font-weight: 200;
}

.weight-300 {
  font-weight: 300;
}

.weight-400 {
  font-weight: 400;
}

.weight-600 {
  font-weight: 600;
}

.weight-700 {
  font-weight: 700;
}

.weight-800 {
  font-weight: 800;
}

.weight-900 {
  font-weight: 900;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.h-50px {
  height: 50px;
}

.ps {
  position: relative;
}

.dtp div.dtp-actual-year {
  color: #fff;
}

#dtp-svg-clock .svg-clock > g > circle[fill="#eee"] {
  fill: #ffffff;
  stroke: #f1f1f1;
}

#dtp-svg-clock .svg-clock circle[fill="#757575"] {
  fill: #f1f1f1;
}

#dtp-svg-clock .svg-clock .hour-hand,
#dtp-svg-clock .svg-clock .minute-hand {
  stroke: #f1f1f1;
}

.page-item .page-link {
  border-radius: 50% !important;
  margin: 0.25rem !important;
  padding: 0;
  min-width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}

.pagination-md .page-link {
  font-size: 1rem;
}

.btn-light {
  color: #525252;
  border-color: #525252;
}

.btn-light:hover {
  color: #222;
  border-color: #222;
}

.btn-check:focus + .btn-light,
.btn-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-check:active + .btn-light:focus,
.btn-check:checked + .btn-light:focus,
.btn-light.active:focus,
.btn-light.dropdown-toggle.show:focus,
.btn-light:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #ccc;
  border-color: #ccc;
  background-color: transparent;
}

.btn-check:active + .btn-light,
.btn-check:checked + .btn-light,
.btn-light.active,
.btn-light.dropdown-toggle.show,
.btn-light:active {
  color: #fff;
  background-color: #e11b22;
  border-color: #e11b22;
}

.btn-outline-pink {
  color: #e11b22;
  border-color: #e11b22;
}

.btn-outline-pink:hover {
  color: #fff;
  background-color: #e11b22;
  border-color: #e11b22;
}

.btn-check:focus + .btn-outline-pink,
.btn-outline-pink:focus {
  box-shadow: 0 0 0 0.25rem rgba(231, 46, 122, 0.5);
}

.btn-check:active + .btn-outline-pink,
.btn-check:checked + .btn-outline-pink,
.btn-outline-pink.active,
.btn-outline-pink.dropdown-toggle.show,
.btn-outline-pink:active {
  color: #fff;
  background-color: #e11b22;
  border-color: #e11b22;
}

.btn-check:active + .btn-outline-pink:focus,
.btn-check:checked + .btn-outline-pink:focus,
.btn-outline-pink.active:focus,
.btn-outline-pink.dropdown-toggle.show:focus,
.btn-outline-pink:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(231, 46, 122, 0.5);
}

.btn-outline-pink.disabled,
.btn-outline-pink:disabled {
  color: #e11b22;
  background-color: transparent;
}

.btn-outline-purple {
  color: #6f42c1;
  border-color: #6f42c1;
}

.btn-outline-purple:hover {
  color: #fff;
  background-color: #6f42c1;
  border-color: #6f42c1;
}

.btn-check:focus + .btn-outline-purple,
.btn-outline-purple:focus {
  box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5);
}

.btn-check:active + .btn-outline-purple,
.btn-check:checked + .btn-outline-purple,
.btn-outline-purple.active,
.btn-outline-purple.dropdown-toggle.show,
.btn-outline-purple:active {
  color: #fff;
  background-color: #6f42c1;
  border-color: #6f42c1;
}

.btn-check:active + .btn-outline-purple:focus,
.btn-check:checked + .btn-outline-purple:focus,
.btn-outline-purple.active:focus,
.btn-outline-purple.dropdown-toggle.show:focus,
.btn-outline-purple:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5);
}

.btn-outline-purple.disabled,
.btn-outline-purple:disabled {
  color: #6f42c1;
  background-color: transparent;
}

.btn-sms {
  background-color: #fcaf17;
}

.btn-sms:hover {
  background-color: #eca000;
}

.btn-check:focus + .btn-sms,
.btn-sms:focus {
  color: #fff;
  background-color: #de9600;
  border-color: #de9600;
  box-shadow: 0 0 0 0.25rem rgba(236, 160, 0, 0.5);
}

.btn-check:active + .btn-sms,
.btn-check:checked + .btn-sms,
.btn-sms.active,
.btn-sms:active,
.show > .btn-sms.dropdown-toggle {
  color: #fff;
  background-color: #de9600;
  border-color: #de9600;
}

.btn-check:active + .btn-sms:focus,
.btn-check:checked + .btn-sms:focus,
.btn-sms.active:focus,
.btn-sms:active:focus,
.show > .btn-sms.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(236, 160, 0, 0.5);
}

.btn-sms.disabled,
.btn-sms:disabled {
  color: #fff;
  background-color: #e8c489;
  border-color: #e8c489;
}

.btn-whatsapp {
  background-color: #25d366;
}

.btn-whatsapp:hover {
  background-color: #10e05d;
}

.btn-check:focus + .btn-whatsapp,
.btn-whatsapp:focus {
  color: #fff;
  background-color: #0ed056;
  border-color: #0ed056;
  box-shadow: 0 0 0 0.25rem rgba(14, 208, 86, 0.5);
}

.btn-check:active + .btn-whatsapp,
.btn-check:checked + .btn-whatsapp,
.btn-whatsapp.active,
.btn-whatsapp:active,
.show > .btn-whatsapp.dropdown-toggle {
  color: #fff;
  background-color: #0ed056;
  border-color: #0ed056;
}

.btn-check:active + .btn-whatsapp:focus,
.btn-check:checked + .btn-whatsapp:focus,
.btn-whatsapp.active:focus,
.btn-whatsapp:active:focus,
.show > .btn-whatsapp.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(14, 208, 86, 0.5);
}

.btn-whatsapp.disabled,
.btn-whatsapp:disabled {
  color: #fff;
  background-color: #81ce9d;
  border-color: #81ce9d;
}

.btn-facebook {
  background-color: #0084ff;
}

.btn-facebook:hover {
  background-color: #0880f1;
}

.btn-check:focus + .btn-facebook,
.btn-facebook:focus {
  color: #fff;
  background-color: #0074e2;
  border-color: #0074e2;
  box-shadow: 0 0 0 0.25rem rgba(0, 116, 226, 0.5);
}

.btn-check:active + .btn-facebook,
.btn-check:checked + .btn-facebook,
.btn-facebook.active,
.btn-facebook:active,
.show > .btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #0074e2;
  border-color: #0074e2;
}

.btn-check:active + .btn-facebook:focus,
.btn-check:checked + .btn-facebook:focus,
.btn-facebook.active:focus,
.btn-facebook:active:focus,
.show > .btn-facebook.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 116, 226, 0.5);
}

.btn-facebook.disabled,
.btn-facebook:disabled {
  color: #fff;
  background-color: #85b1db;
  border-color: #85b1db;
}

.btn-viber {
  background-color: #7c529e;
}

.btn-viber:hover {
  background-color: #803fb4;
}

.btn-check:focus + .btn-viber,
.btn-viber:focus {
  color: #fff;
  background-color: #6b2c9e;
  border-color: #6b2c9e;
  box-shadow: 0 0 0 0.25rem rgba(107, 44, 158, 0.5);
}

.btn-check:active + .btn-viber,
.btn-check:checked + .btn-viber,
.btn-viber.active,
.btn-viber:active,
.show > .btn-viber.dropdown-toggle {
  color: #fff;
  background-color: #6b2c9e;
  border-color: #6b2c9e;
}

.btn-check:active + .btn-viber:focus,
.btn-check:checked + .btn-viber:focus,
.btn-viber.active:focus,
.btn-viber:active:focus,
.show > .btn-viber.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(107, 44, 158, 0.5);
}

.btn-viber.disabled,
.btn-viber:disabled {
  color: #fff;
  background-color: #957da8;
  border-color: #957da8;
}

.btn-snapchat {
  background-color: #fffc00;
}

.btn-snapchat:hover {
  background-color: #eae700;
}

.btn-check:focus + .btn-snapchat,
.btn-snapchat:focus {
  color: #fff;
  background-color: #e3df15;
  border-color: #e3df15;
  box-shadow: 0 0 0 0.25rem rgba(227, 223, 21, 0.5);
}

.btn-check:active + .btn-snapchat,
.btn-check:checked + .btn-snapchat,
.btn-snapchat.active,
.btn-snapchat:active,
.show > .btn-snapchat.dropdown-toggle {
  color: #fff;
  background-color: #e3df15;
  border-color: #e3df15;
}

.btn-check:active + .btn-snapchat:focus,
.btn-check:checked + .btn-snapchat:focus,
.btn-snapchat.active:focus,
.btn-snapchat:active:focus,
.show > .btn-snapchat.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(227, 223, 21, 0.5);
}

.btn-snapchat.disabled,
.btn-snapchat:disabled {
  color: #fff;
  background-color: #dcdb9b;
  border-color: #dcdb9b;
}

.btn-line {
  background-color: #00b900;
}

.btn-line:hover {
  background-color: #00a700;
}

.btn-check:focus + .btn-line,
.btn-line:focus {
  color: #fff;
  background-color: #008e00;
  border-color: #008e00;
  box-shadow: 0 0 0 0.25rem rgba(0, 142, 0, 0.5);
}

.btn-check:active + .btn-line,
.btn-check:checked + .btn-line,
.btn-line.active,
.btn-line:active,
.show > .btn-line.dropdown-toggle {
  color: #fff;
  background-color: #008e00;
  border-color: #008e00;
}

.btn-check:active + .btn-line:focus,
.btn-check:checked + .btn-line:focus,
.btn-line.active:focus,
.btn-line:active:focus,
.show > .btn-line.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 142, 0, 0.5);
}

.btn-line.disabled,
.btn-line:disabled {
  color: #fff;
  background-color: #719c71;
  border-color: #719c71;
}

.btn-telegram {
  background-color: #08c;
}

.btn-telegram:hover {
  background-color: #007ebb;
}

.btn-check:focus + .btn-telegram,
.btn-telegram:focus {
  color: #fff;
  background-color: #0073aa;
  border-color: #0073aa;
  box-shadow: 0 0 0 0.25rem rgba(0, 115, 170, 0.5);
}

.btn-check:active + .btn-telegram,
.btn-check:checked + .btn-telegram,
.btn-telegram.active,
.btn-telegram:active,
.show > .btn-telegram.dropdown-toggle {
  color: #fff;
  background-color: #0073aa;
  border-color: #0073aa;
}

.btn-check:active + .btn-telegram:focus,
.btn-check:checked + .btn-telegram:focus,
.btn-telegram.active:focus,
.btn-telegram:active:focus,
.show > .btn-telegram.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 115, 170, 0.5);
}

.btn-telegram.disabled,
.btn-telegram:disabled {
  color: #fff;
  background-color: #6995aa;
  border-color: #6995aa;
}

.btn-wechat {
  background-color: #7bb32e;
}

.btn-wechat:hover {
  background-color: #75b122;
}

.btn-check:focus + .btn-wechat,
.btn-wechat:focus {
  color: #fff;
  background-color: #5c9015;
  border-color: #5c9015;
  box-shadow: 0 0 0 0.25rem rgba(92, 144, 21, 0.5);
}

.btn-check:active + .btn-wechat,
.btn-check:checked + .btn-wechat,
.btn-wechat.active,
.btn-wechat:active,
.show > .btn-wechat.dropdown-toggle {
  color: #fff;
  background-color: #5c9015;
  border-color: #5c9015;
}

.btn-check:active + .btn-wechat:focus,
.btn-check:checked + .btn-wechat:focus,
.btn-wechat.active:focus,
.btn-wechat:active:focus,
.show > .btn-wechat.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(92, 144, 21, 0.5);
}

.btn-wechat.disabled,
.btn-wechat:disabled {
  color: #fff;
  background-color: #a5ba8a;
  border-color: #a5ba8a;
}

.btn-instagram {
  background-color: #bc1888;
}

.btn-instagram:hover {
  background-color: #bb0f85;
}

.btn-check:focus + .btn-instagram,
.btn-instagram:focus {
  color: #fff;
  background-color: #a10b72;
  border-color: #a10b72;
  box-shadow: 0 0 0 0.25rem rgba(161, 11, 114, 0.5);
}

.btn-check:active + .btn-instagram,
.btn-check:checked + .btn-instagram,
.btn-instagram.active,
.btn-instagram:active,
.show > .btn-instagram.dropdown-toggle {
  color: #fff;
  background-color: #a10b72;
  border-color: #a10b72;
}

.btn-check:active + .btn-instagram:focus,
.btn-check:checked + .btn-instagram:focus,
.btn-instagram.active:focus,
.btn-instagram:active:focus,
.show > .btn-instagram.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(161, 11, 114, 0.5);
}

.btn-instagram.disabled,
.btn-instagram:disabled {
  color: #fff;
  background-color: #a77095;
  border-color: #a77095;
}

.btn-fb-messenger {
  background-color: #00b2ff;
}

.btn-fb-messenger:hover {
  background-color: #0da6e7;
}

.btn-check:focus + .btn-fb-messenger,
.btn-fb-messenger:focus {
  color: #fff;
  background-color: #009cde;
  border-color: #009cde;
  box-shadow: 0 0 0 0.25rem rgba(0, 156, 222, 0.5);
}

.btn-check:active + .btn-fb-messenger,
.btn-check:checked + .btn-fb-messenger,
.btn-fb-messenger.active,
.btn-fb-messenger:active,
.show > .btn-fb-messenger.dropdown-toggle {
  color: #fff;
  background-color: #009cde;
  border-color: #009cde;
}

.btn-check:active + .btn-fb-messenger:focus,
.btn-check:checked + .btn-fb-messenger:focus,
.btn-fb-messenger.active:focus,
.btn-fb-messenger:active:focus,
.show > .btn-fb-messenger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 156, 222, 0.5);
}

.btn-fb-messenger.disabled,
.btn-fb-messenger:disabled {
  color: #fff;
  background-color: #89b9cd;
  border-color: #89b9cd;
}

.btn-instagram-g {
  color: #fff;
  background: linear-gradient(to bottom left, #f09433 0, #bc1888 100%);
}

.btn-instagram-g:hover {
  color: #fff;
  background: linear-gradient(to bottom left, #bc1888 0, #f09433 100%);
}

.btn-check:focus + .btn-instagram-g,
.btn-instagram-g:focus {
  color: #fff;
  background: linear-gradient(to bottom left, #f09433 0, #bc1888 100%);
  border-color: #bc1888;
  box-shadow: 0 0 0 0.25rem rgba(188, 24, 136, 0.5);
}

.btn-check:active + .btn-instagram-g,
.btn-check:checked + .btn-instagram-g,
.btn-instagram-g.active,
.btn-instagram-g:active,
.show > .btn-instagram-g.dropdown-toggle {
  color: #fff;
  background: linear-gradient(to bottom left, #f09433 0, #bc1888 100%);
  border-color: #bc1888;
}

.btn-check:active + .btn-instagram-g:focus,
.btn-check:checked + .btn-instagram-g:focus,
.btn-instagram-g.active:focus,
.btn-instagram-g:active:focus,
.show > .btn-instagram-g.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(188, 24, 136, 0.5);
}

.btn-instagram-g.disabled,
.btn-instagram-g:disabled {
  color: #fff;
  background: linear-gradient(to right, #dcba96 0, #d5a9c7 100%);
  border-color: #d5a9c7;
}

.btn-facebook-g {
  background: linear-gradient(to bottom, #00b2ff 0, #006aff 100%);
}

.btn-facebook-g:hover {
  background: linear-gradient(to top, #00b2ff 0, #006aff 100%);
}

.btn-check:focus + .btn-facebook-g,
.btn-facebook-g:focus {
  color: #fff;
  background: linear-gradient(to bottom left, #00b2ff 0, #006aff 100%);
  border-color: #006aff;
  box-shadow: 0 0 0 0.25rem rgba(0, 106, 255, 0.5);
}

.btn-check:active + .btn-facebook-g,
.btn-check:checked + .btn-facebook-g,
.btn-facebook-g.active,
.btn-facebook-g:active,
.show > .btn-facebook-g.dropdown-toggle {
  color: #fff;
  background: linear-gradient(to bottom left, #00b2ff 0, #006aff 100%);
  border-color: #006aff;
}

.btn-check:active + .btn-facebook-g:focus,
.btn-check:checked + .btn-facebook-g:focus,
.btn-facebook-g.active:focus,
.btn-facebook-g:active:focus,
.show > .btn-facebook-g.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 106, 255, 0.5);
}

.btn-facebook-g.disabled,
.btn-facebook-g:disabled {
  color: #fff;
  background: linear-gradient(to bottom, #95b3e2 0, #a9cede 100%);
  border-color: #95b3e2;
}

.text-sms {
  color: #fcaf17;
}

.text-whatsapp {
  color: #25d366;
}

.text-facebook {
  color: #0084ff;
}

.text-viber {
  color: #7c529e;
}

.text-snapchat {
  color: #fffc00;
}

.text-line {
  color: #00b900;
}

.text-telegram {
  color: #08c;
}

.text-wechat {
  color: #7bb32e;
}

.text-instagram {
  color: #bc1888;
}

.text-facebook-g {
  color: #00b2ff;
}

.text-instagram-g {
  background: linear-gradient(#f09433, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-facebook-g {
  background: linear-gradient(#00b2ff, #006aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.border-sms {
  border-color: #fcaf17 !important;
}

.border-whatsapp {
  border-color: #25d366 !important;
}

.border-facebook {
  border-color: #0084ff !important;
}

.border-viber {
  border-color: #7c529e !important;
}

.border-snapchat {
  border-color: #fffc00 !important;
}

.border-line {
  border-color: #00b900 !important;
}

.border-telegram {
  border-color: #08c !important;
}

.border-wechat {
  border-color: #7bb32e !important;
}

.border-instagram {
  border-color: #bc1888 !important;
}

.border-fb-messenger {
  border-color: #00b2ff !important;
}

.border-instagram-g {
  border-image-source: linear-gradient(to left, #f09433, #bc1888) !important;
  border-image-slice: 1;
}

.border-facebook-g {
  border-image-source: linear-gradient(to left, #00b2ff, #006aff) !important;
  border-image-slice: 1;
}

.border-md {
  border-width: 2px !important;
}

.border-lg {
  border-width: 4px !important;
}

.border-xl {
  border-width: 6px !important;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f7f7f7;
}

.form-switch {
  padding-left: 3em;
  line-height: 2em;
}

.form-switch .form-check-input {
  width: 2.5em;
  height: 1.5em;
  margin-top: 0.2em;
  margin-left: -3em;
}

.select2-container--bootstrap4
  .select2-selection--multiple
  .select2-selection__choice {
  color: #fff;
  border: 1px solid #ba131a;
  margin-top: 0.45em;
  margin-right: 5px;
  background-color: #e11b22;
}

.select2-container--bootstrap4
  .select2-selection--multiple
  .select2-selection__choice__remove {
  color: #fff;
  margin-right: 4px;
  line-height: 20px;
}

.select2-container--bootstrap4
  .select2-selection--multiple
  .select2-selection__choice__remove:hover {
  color: #00202f;
}

.input-group .select2-container {
  width: calc(100% - 50px) !important;
}

.shadow-none-hover:hover {
  box-shadow: none !important;
}

.select2-container--bootstrap4
  .select2-selection--single
  .select2-selection__arrow
  b {
  top: calc(50% - 5px);
  border-color: transparent;
  border-style: solid;
  border-width: 0;
  width: 10px;
  height: 10px;
  left: 0;
  margin: 0;
  position: absolute;
  font-size: 16px;
  padding: 0;
}

.select2-container--bootstrap4
  .select2-selection--single
  .select2-selection__arrow
  b:after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-weight: 400;
  text-align: center;
  line-height: 10px;
}

.select2-sm .select2-container--bootstrap4 .select2-selection--single {
  height: calc(1.215em + 0.75rem + 2px);
}

.select2-sm
  .select2-container--bootstrap4
  .select2-selection--single
  .select2-selection__rendered {
  line-height: calc(1.215em + 0.75rem);
}

.ff_fileupload_wrap .ff_fileupload_dropzone {
  border-color: #ced4da;
  background-image: none;
}

.ff_fileupload_wrap .ff_fileupload_dropzone:after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f0ee";
  font-weight: 300;
  text-align: center;
  line-height: 10px;
  font-size: 6rem;
  left: 0;
  right: 0;
  color: #ba131a;
}

.form-check-input.switch-light:checked {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.form-check-input.switch-secondary:checked {
  background-color: #6c757d;
  border-color: #6c757d;
}

.form-check-input.switch-primary:checked {
  background-color: #e11b22;
  border-color: #e11b22;
}

.form-check-input.switch-success:checked {
  background-color: #0c971a;
  border-color: #0c971a;
}

.form-check-input.switch-warning:checked {
  background-color: #fcaf17;
  border-color: #fcaf17;
}

.form-check-input.switch-danger:checked {
  background-color: #e11b22;
  border-color: #e11b22;
}

.form-check-input.switch-sms:checked {
  background-color: #fcaf17;
  border-color: #fcaf17;
}

.form-check-input.switch-whatsapp:checked {
  background-color: #25d366;
  border-color: #25d366;
}

.form-check-input.switch-facebook:checked {
  background-color: #0084ff;
  border-color: #0084ff;
}

.form-check-input.switch-viber:checked {
  background-color: #7c529e;
  border-color: #7c529e;
}

.form-check-input.switch-snapchat:checked {
  background-color: #fffc00;
  border-color: #fffc00;
}

.form-check-input.switch-line:checked {
  background-color: #00b900;
  border-color: #00b900;
}

.form-check-input.switch-telegram:checked {
  background-color: #08c;
  border-color: #08c;
}

.form-check-input.switch-wechat:checked {
  background-color: #7bb32e;
  border-color: #7bb32e;
}

.form-check-input.switch-instagram:checked {
  background-color: #bc1888;
  border-color: #bc1888;
}

.form-check-input.switch-fb-messenger:checked {
  background-color: #00b2ff;
  border-color: #00b2ff;
}

.form-check-input.switch-instagram-g:checked {
  background: linear-gradient(to bottom left, #f09433 0, #bc1888 100%);
  border-image-source: linear-gradient(to left, #f09433, #bc1888) !important;
  border-image-slice: 1;
}

.form-check-input.switch-facebook-g:checked {
  background: linear-gradient(to bottom, #00b2ff 0, #006aff 100%);
  border-image-source: linear-gradient(to left, #00b2ff, #006aff) !important;
  border-image-slice: 1;
}

.top-header .navbar {
  position: fixed;
  top: 0;
  left: 250px;
  right: 0;
  background-color: #f7f8fa;
  border-bottom: 1px solid #e2e3e4;
  background-clip: padding-box;
  height: 60px;
  z-index: 10;
  padding: 0 1.5rem;
  transition: all 0.2s;
}

.top-header .navbar .top-navbar .nav-link {
  color: #293445;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.top-header .navbar .searchbar {
  position: relative;
  width: 30%;
}

.top-header .navbar .searchbar .search-close-icon {
  right: 2rem;
  opacity: 0.5;
  cursor: pointer;
}

.top-header .navbar .searchbar .form-control {
  border-radius: 30px;
  border: 1px solid rgb(206 212 218 / 0%);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.top-header .navbar .dropdown-searchbar .form-control {
  border-radius: 30px;
  border: 1px solid rgb(206 212 218 / 0%);
  padding-left: 3rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.top-header .navbar .dropdown-searchbar .form-control:focus,
.top-header .navbar .searchbar .form-control:focus {
  border-color: #ff8a8f;
  box-shadow: 0 0 0 0.25rem rgba(225, 27, 34, 0.25);
}

.top-header .navbar .dropdown-searchbar .search-icon,
.top-header .navbar .searchbar .search-icon {
  opacity: 0.5;
}

.top-header .navbar .user-setting {
  height: 40px;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
}

.dropdown-toggle-nocaret:after {
  display: none;
}

.top-header .navbar .dropdown-menu {
  -webkit-animation: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1
    animdropdown;
  animation: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1
    animdropdown;
}

@-webkit-keyframes animdropdown {
  from {
    -webkit-transform: translate3d(0, 6px, 0);
    transform: translate3d(0, 6px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes animdropdown {
  from {
    -webkit-transform: translate3d(0, 6px, 0);
    transform: translate3d(0, 6px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.top-header .navbar .dropdown-large {
  position: relative;
}

.dropdown-large .dropdown-menu {
  width: 360px;
  border: 0;
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.top-header .navbar .dropdown-large .dropdown-menu::after {
  content: "";
  width: 13px;
  height: 13px;
  background: #fff;
  position: absolute;
  top: -7px;
  right: 22px;
  transform: rotate(45deg);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.top-header .navbar .dropdown-menu::after {
  content: "";
  width: 13px;
  height: 13px;
  background: #ffff;
  position: absolute;
  top: -6px;
  right: 16px;
  transform: rotate(45deg);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.top-header .navbar .dropdown-item {
  padding: 0.5rem;
}

.top-header .navbar .dropdown-large .dropdown-item:hover {
  border-radius: 10px;
  color: #1e2125;
  background-color: #f5f5f5;
}

.top-header .navbar .dropdown-item .setting-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  background-color: #e1e6eb;
}

.top-header .navbar .dropdown-item .setting-text {
  font-size: 16px;
  font-weight: 500;
}

.top-header .navbar .user-img {
  width: 40px;
  height: 40px;
  padding: 4px;
  border-radius: 50%;
}

.top-header .navbar .user-name {
  font-size: 15px;
  color: #5e636b;
  font-weight: 500;
  padding: 0 10px;
}

.top-header .navbar .dropdown-menu .apps:hover {
  background-color: #f8f9fa;
  transition: all 0.2s;
}

.top-header .navbar .dropdown-menu .apps .apps-icon-box {
  color: #34383f;
  width: 52px;
  height: 52px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  margin: auto;
  border-radius: 50%;
}

.top-header .navbar .dropdown-menu .apps .apps-name {
  color: #34383f;
  font-size: 15px;
}

.top-header .navbar .dropdown-menu .msg-time {
  font-size: 13px;
}

.top-header .navbar .dropdown-menu .dropdown-msg-user {
  font-size: 15px;
}

.top-header .navbar .dropdown-menu .dropdown-msg-text {
  font-size: 14px;
}

.header-message-list {
  position: relative;
  height: 420px;
}

.header-notifications-list {
  position: relative;
  height: 420px;
}

.header-notifications-list a.dropdown-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-header .navbar .dropdown-menu .notification-box {
  width: 52px;
  height: 52px;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e1e6eb;
}

.top-header .navbar .nav-link .notify-badge {
  position: absolute;
  top: -2px;
  right: -5px;
  color: #fff;
  font-size: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e11b22;
}

.messages,
.mobile-toggle-icon,
.notifications,
.projects,
.search-toggle-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: #5e636b;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0%);
  box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
}

.sidebar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background-color: #f7f8fa;
  background-clip: padding-box;
  border-right: 1px solid #e2e3e4;
  transition: all 0.2s;
  z-index: 16;
}

.sidebar-wrapper .sidebar-header {
  width: 250px;
  height: 60px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  padding: 0 15px;
  z-index: 5;
  background: #fff;
  border-right: 1px solid #e2e3e4;
  border-bottom: 1px solid #e4e4e4;
  transition: all 0.2s;
}

.sidebar-wrapper .sidebar-header .logo-icon {
  width: 30px;
}

.sidebar-wrapper .sidebar-header .logo-text {
  font-size: 22px;
  margin-left: 10px;
  margin-bottom: 0;
  letter-spacing: 1px;
  color: #e11b22;
}

.toggle-icon {
  font-size: 22px;
  cursor: pointer;
  color: #e11b22;
}

.sidebar-wrapper ul {
  padding: 0 4px;
  margin: 4px 0 0 0;
  list-style: none;
  background: none 0;
  border-radius: 4px;
}

.sidebar-wrapper .metismenu {
  background: 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  margin-top: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sidebar-wrapper .metismenu li + li {
  margin-top: 5px;
}

.sidebar-wrapper .metismenu li:first-child {
  margin-top: 5px;
}

.sidebar-wrapper .metismenu li:last-child {
  margin-bottom: 5px;
}

.sidebar-wrapper .metismenu > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.sidebar-wrapper .metismenu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 10px 15px;
  font-size: 15px;
  color: #5f5f5f;
  outline-width: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  letter-spacing: 0.5px;
  border: 1px solid #ffffff00;
  transition: all 0.2s ease-out;
}

.sidebar-wrapper .metismenu a .parent-icon {
  font-size: 21px;
  line-height: 1;
}

.sidebar-wrapper .metismenu a .menu-title {
  margin-left: 10px;
}

.sidebar-wrapper .metismenu ul a {
  padding: 6px 15px 6px 15px;
  border-radius: 4px;
  font-size: 15px;
  border: 0;
}

.sidebar-wrapper .metismenu ul a i {
  margin-right: 10px;
}

.sidebar-wrapper .metismenu ul {
  border: 1px solid #ededed;
  background: rgb(255 255 255 / 0%);
}

.sidebar-wrapper .metismenu ul ul a {
  padding: 8px 15px 8px 30px;
}

.sidebar-wrapper .metismenu ul ul ul a {
  padding: 8px 15px 8px 45px;
}

.sidebar-wrapper .metismenu .mm-active > a,
.sidebar-wrapper .metismenu a:active,
.sidebar-wrapper .metismenu a:focus,
.sidebar-wrapper .metismenu a:hover {
  color: #e11b22;
  text-decoration: none;
  border-radius: 4px;
  background-color: rgb(52 97 255 / 10%);
}

.menu-label {
  padding: 20px 15px 5px 5px;
  color: #b0afaf;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.metismenu .has-arrow:after {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-style: solid;
  border-width: 1.2px 0 0 1.2px;
  border-color: initial;
  right: 15px;
  transform: rotate(135deg) translateY(-50%);
  transform-origin: top;
  top: 50%;
  transition: all 0.3s ease-out;
}

@media screen and (min-width: 1025px) {
  .wrapper.toggled:not(.sidebar-hovered)
    .sidebar-wrapper
    .sidebar-header
    .logo-text {
    display: none;
  }

  .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper {
    width: 70px;
  }

  .wrapper.toggled.sidebar-hovered .sidebar-wrapper {
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.12) !important;
  }

  .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
    width: 70px;
  }

  .wrapper.toggled:not(.sidebar-hovered)
    .sidebar-wrapper
    .sidebar-header
    .toggle-icon {
    display: none;
  }

  .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
    justify-content: center;
  }

  .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
    width: 70px;
  }

  .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu a {
    justify-content: center;
  }

  .wrapper.toggled:not(.sidebar-hovered)
    .sidebar-wrapper
    .metismenu
    .menu-title {
    display: none;
  }

  .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu li ul {
    display: none;
  }

  .wrapper.toggled:not(.sidebar-hovered)
    .sidebar-wrapper
    .metismenu
    li.menu-label {
    display: none;
  }

  .wrapper.toggled:not(.sidebar-hovered)
    .sidebar-wrapper
    .metismenu
    .has-arrow:after {
    display: none;
  }

  .email-toggle-btn {
    display: none !important;
  }

  .chat-toggle-btn {
    display: none !important;
  }
}

.wrapper.toggled .top-header .navbar {
  left: 70px;
}

.wrapper.toggled .page-content {
  margin-left: 70px;
}

.page-content {
  margin-left: 250px;
  margin-top: 60px;
  padding: 1.5rem;

  min-height: calc(100vh - 127px);
  transition: all 0.2s;
}

.radius-10 {
  border-radius: 10px;
}

.radius-15 {
  border-radius: 15px;
}

.radius-30 {
  border-radius: 30px;
}

.font-13 {
  font-size: 13px;
}

.font-14 {
  font-size: 14px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-30 {
  font-size: 30px;
}

.font-35 {
  font-size: 35px;
}

.text-justify {
  text-align: justify;
}

.table-responsive {
  white-space: nowrap;
}

.fm-menu .list-group a {
  font-size: 16px;
  color: #5f5f5f;
  display: flex;
  align-items: center;
}

.fm-menu .list-group a i {
  font-size: 23px;
}

.fm-menu .list-group a:hover {
  background-color: rgb(52 97 255 / 15%);
  color: #e11b22;
  transition: all 0.2s ease-out;
}

.add-post {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
}

.fm-icon-box {
  font-size: 32px;
  background: #fff;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top {
  display: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 26px;
  color: #fff;
  position: fixed;
  border-radius: 50%;
  bottom: 20px;
  right: 12px;
  background-color: #e11b22;
  z-index: 5;
}

.back-to-top:hover {
  color: #fff;
  background-color: #000;
  transition: all 0.5s;
}

.project-user-groups img {
  margin-right: -14px;
  border: 1px solid #e4e4e4;
  padding: 2px;
  cursor: pointer;
}

.project-user-plus {
  width: 33px;
  height: 33px;
  margin-right: 0;
  line-height: 33px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  cursor: pointer;
  border: 1px dotted #a9b2bb;
  color: #404142;
}

.user-groups img {
  margin-left: -14px;
  border: 1px solid #e4e4e4;
  padding: 2px;
  cursor: pointer;
}

.user-plus {
  width: 33px;
  height: 33px;
  margin-left: -14px;
  line-height: 33px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  cursor: pointer;
  border: 1px dotted #a9b2bb;
  color: #404142;
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #c7c8cb;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  background-color: #fff;
}

.best-product-item {
  background-color: #fff;
  cursor: pointer;
  border-radius: 10px;
  padding: 0.5rem;
}

.best-product-item:hover {
  background-color: #f5f5f5;
}

.product-box img {
  width: 100%;
}

.best-product {
  position: relative;
  height: 460px;
}

.chart-container1 {
  position: relative;
  height: 340px;
}

.gmaps,
.gmaps-panaroma {
  height: 400px;
  background: #eee;
  border-radius: 3px;
}

.theme-icons {
  background-color: #fff;
  color: #434547;
}

.cursor-pointer {
  cursor: pointer;
}

.icon-badge {
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.product-img-2 {
  width: 45px;
  height: 45px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
}

.error-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  margin: 5px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.productlist .product-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border: 1px solid #e2e3e4;
  background-color: #fff;
}

.productlist .product-box img {
  width: 100%;
}

.productlist .product-title {
  color: #191b22;
}

.orderlist .product-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border: 1px solid #e2e3e4;
  background-color: #fff;
}

.orderlist .product-box img {
  width: 100%;
}

.orderlist .product-title {
  color: #191b22;
}

.breadcrumb-title {
  font-size: 20px;
  border-right: 1.5px solid #aaa4a4;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  font-family: LineIcons;
  content: "\ea5c";
}

.page-breadcrumb .breadcrumb li.breadcrumb-item {
  font-size: 16px;
}

.iconmenu .ps__rail-x {
  height: 0;
}

.iconmenu .ps__rail-y {
  width: 0;
}

.iconmenu .ps__rail-x.ps--clicking .ps__thumb-x,
.iconmenu .ps__rail-x:focus > .ps__thumb-x,
.iconmenu .ps__rail-x:hover > .ps__thumb-x {
  height: 5px;
}

.iconmenu .ps__rail-y.ps--clicking .ps__thumb-y,
.iconmenu .ps__rail-y:focus > .ps__thumb-y,
.iconmenu .ps__rail-y:hover > .ps__thumb-y {
  width: 5px;
}

.w_chart {
  position: relative;
  display: inline-block;
  width: 80px !important;
  height: 80px !important;
  text-align: center;
  font-size: 1.4em;
}

.w_percent {
  display: inline-block;
  line-height: 80px !important;
  z-index: 2;
  color: #0a0808;
}

.w_percent:after {
  content: "%";
  margin-left: 0.1em;
}

.w_chart canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px !important;
  height: 80px !important;
}

#geographic-map {
  width: 100%;
  height: 400px;
}

.new-customer-list {
  position: relative;
  height: 500px;
}

.new-customer-list .customer-list-item {
  padding: 0.5rem;
  border-radius: 10px;
}

.new-customer-list .customer-list-item:hover {
  background-color: #f0f0f0;
}

.top-sellers-list {
  position: relative;
  height: 460px;
}

.top-sellers-list .sellers-list-item {
  padding: 0.5rem;
  border-radius: 10px;
}

.top-sellers-list .sellers-list-item:hover {
  background-color: #f0f0f0;
}

.client-message {
  position: relative;
  height: 565px;
}

.client-message .client-messages-list {
  padding: 0.5rem;
}

.client-message .client-messages-list:hover {
  background-color: #f0f0f0;
}

.widget-icon {
  width: 48px;
  height: 48px;
  background-color: #fafafa;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.widget-icon-large {
  width: 54px;
  height: 54px;
  background-color: #fafafa;
  border-radius: 10px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.chip {
  display: inline-block;
  height: 32px;
  padding: 0 12px;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  background-color: #f1f1f1;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  box-shadow: none;
}

.chip img {
  float: left;
  width: 32px;
  height: 32px;
  margin: 0 8px 0 -12px;
  border-radius: 50%;
}

.profile-cover {
  background-image: linear-gradient(
      to bottom right,
      rgb(26 30 33 / 50%),
      rgb(0 0 0 / 50%)
    ),
    url(../images/gallery/33.png);
  background-size: cover;
  height: 24rem;
  background-position: center;
  margin: -4rem -1.5rem -5.5rem -1.5rem;
  padding: 1.5rem 1.5rem 6.5rem 1.5rem;
}

.email-wrapper {
  width: auto;
  height: 600px;
  overflow: hidden;
  border-radius: 0.25rem;
  position: relative;
  background: #fff;
  box-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, 0.1);
}

.email-sidebar {
  width: 250px;
  height: 100%;
  position: absolute;
  background: #fff;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.125);
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.email-sidebar-header {
  width: auto;
  height: auto;
  position: relative;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-right: 0 solid rgba(0, 0, 0, 0.125);
  border-top-left-radius: 0.25rem;
  padding: 15px;
}

.email-navigation {
  position: relative;
  padding: 0;
  height: 345px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.email-header {
  position: absolute;
  height: 70px;
  left: 250px;
  right: 0;
  top: 0;
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-top-right-radius: 0.25rem;
  z-index: 1;
}

.email-content {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  top: 70px;
  height: auto;
  margin-left: 250px;
  padding: 0;
  background: #fff;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.email-navigation a.list-group-item {
  color: #404142;
  padding: 0.35rem 1.25rem;
  background-color: #fff;
  border-bottom: 1px solid rgb(0 0 0 / 0%);
  transition: all 0.3s ease-out;
}

.email-navigation a.list-group-item:hover {
  background-color: rgb(225 27 34 / 0.12);
}

.email-navigation a.list-group-item.active {
  color: #e11b22;
  font-weight: 600;
  background-color: rgb(225 27 34 / 0.12);
}

.email-meeting {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.email-meeting a.list-group-item {
  color: #404142;
  padding: 0.35rem 1.25rem;
  background-color: #fff;
  border-bottom: 1px solid rgb(0 0 0 / 0%);
}

.email-meeting a.list-group-item:hover {
  background-color: rgb(0 123 255 / 15%);
  transition: all 0.3s ease-out;
}

.email-hangout .chat-user-online:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 45px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
  background: #16e15e;
}

.email-toggle-btn {
  width: auto;
  height: auto;
  margin-right: 10px;
  text-align: center;
  font-size: 24px;
  color: #404142;
  border-radius: 0;
  cursor: pointer;
  background-color: #fff;
  border: 0 solid rgb(0 0 0 / 15%);
}

.email-actions {
  width: 230px;
}

.email-time {
  font-size: 13px;
  color: #6c757d;
}

.email-list div.email-message {
  background: #fff;
  border-bottom: 1px solid rgb(0 0 0 / 8%);
  color: #383a3c;
}

.email-list div.email-message:hover {
  transition: all 0.2s ease-out;
  background-color: #eceef1;
}

.email-list {
  position: relative;
  height: 530px;
}

.email-star {
  color: #6c757d;
}

.email-read-box {
  position: relative;
  height: 530px;
}

.compose-mail-popup {
  width: 42%;
  position: fixed;
  bottom: -30px;
  right: 30px;
  z-index: 15;
  display: none;
}

.compose-mail-toggled {
  display: block;
}

.compose-mail-title {
  font-size: 16px;
}

.compose-mail-close {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 14px;
  border-radius: 2px;
  background-color: rgb(255 255 255 / 0%);
}

.compose-mail-close:hover {
  background-color: rgb(255 255 255 / 20%);
}

.feature-box {
  text-align: center;
  background-color: #d71920;
  color: #fff;
  padding: 4px 10px 10px 10px;
  border-radius: 1rem;
  margin: 10px auto;
  display: inline-block;
  width: 100%;
  transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -webkit-transition: all 0.2s ease-out 0s;
}

a.feature-box:hover {
  background: #56545b;
  color: #fff;
  transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -webkit-transition: all 0.2s ease-out 0s;
}

.feature-box > span {
  display: inline-block;
  font-size: 34px;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  margin-bottom: 6px;
}

.feature-box > h6 {
  font-size: 12px;
  margin: 0;
}

.chat-wrapper {
  width: auto;
  height: 600px;
  border-radius: 0.25rem;
  position: relative;
  background: #fff;
  box-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, 0.1);
}

.chat-sidebar {
  width: 340px;
  height: 100%;
  position: absolute;
  background: #fff;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.125);
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.chat-sidebar-header {
  width: auto;
  height: auto;
  position: relative;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-right: 0 solid rgba(0, 0, 0, 0.125);
  border-top-left-radius: 0.25rem;
  padding: 15px;
}

.chat-sidebar-content {
  padding: 0;
}

.chat-user-online {
  position: relative;
}

.chat-sidebar-header .chat-user-online:before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 40px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
  background: #16e15e;
}

.chat-list .chat-user-online:before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 36px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
  background: #16e15e;
}

.chat-content {
  margin-left: 340px;
  padding: 85px 15px 15px 15px;
}

.chat-header {
  position: absolute;
  height: 70px;
  left: 340px;
  right: 0;
  top: 0;
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-top-right-radius: 0.25rem;
  z-index: 1;
}

.chat-footer {
  position: absolute;
  height: 70px;
  left: 340px;
  right: 0;
  bottom: 0;
  padding: 15px;
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  border-bottom-right-radius: 0.25rem;
}

.chat-footer-menu a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  color: #6c757d;
  text-align: center;
  border-radius: 50%;
  margin: 3px;
  background-color: #fff;
  border: 1px solid rgb(0 0 0 / 15%);
}

.chat-tab-menu li a.nav-link {
  padding: 0.3rem 0.2rem;
  line-height: 1.2;
  color: #4a4b4c;
}

.chat-tab-menu .nav-pills .nav-link.active,
.chat-tab-menu .nav-pills .show > .nav-link {
  color: #e11b22;
  background-color: rgb(0 123 255 / 0%);
}

.chat-title {
  font-size: 14px;
  color: #272b2f;
}

.chat-msg {
  font-size: 13px;
  color: #6c757d;
}

.chat-time {
  font-size: 13px;
  color: #6c757d;
}

.chat-list {
  position: relative;
  height: 300px;
}

.chat-list .list-group-item {
  border: 1px solid rgb(0 0 0 / 0%);
  background-color: transparent;
}

.chat-list .list-group-item:hover {
  border: 1px solid rgb(0 0 0 / 0%);
  background-color: rgb(225 27 34 / 0.12);
}

.chat-list .list-group-item.active {
  background-color: rgb(225 27 34 / 0.12);
}

.chart-online {
  color: #16e15e;
}

.chat-top-header-menu a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  color: #6c757d;
  text-align: center;
  border-radius: 50%;
  margin: 3px;
  background-color: #fff;
  border: 1px solid rgb(0 0 0 / 15%);
}

.chat-content {
  position: relative;
  width: auto;
  height: 520px;
}

.chat-content-leftside .chat-left-msg {
  width: fit-content;
  background-color: #eff2f5;
  padding: 0.8rem;
  border-radius: 12px;
  max-width: 480px;
  text-align: left;
  border-top-left-radius: 0;
}

.chat-content-rightside .chat-right-msg {
  width: fit-content;
  background-color: #dcedff;
  padding: 0.8rem;
  border-radius: 12px;
  float: right;
  max-width: 480px;
  text-align: left;
  border-bottom-right-radius: 0;
}

.chat-toggle-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  text-align: center;
  font-size: 24px;
  color: #6c757d;
  border-radius: 50%;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid rgb(0 0 0 / 15%);
}

.authentication-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  max-width: 400px;
  min-height: 100vh;
}

.login-separater span {
  position: relative;
  top: 26px;
  margin-top: -10px;
  background: #fff;
  padding: 5px;
  font-size: 12px;
  color: #cbcbcb;
  z-index: 1;
}

.btn-switcher {
  position: fixed;
  right: 0;
  top: 40%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.header-colors-indigators .indigator {
  width: 50px;
  height: 50px;
  background-color: #f7f8fa;
  border-radius: 10px;
  cursor: pointer;
}

.logo > img {
  max-height: 40px;
  max-width: 186px;
  width: 100%;
}

.play-list {
  max-height: 150px;
  border: 1px solid #f1f1f1;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 4px;
  box-shadow: 0 0 4px rgb(0 0 0 / 10%) inset;
}

/* Mobile Mockup */
.sms-summary .card .card-body {
  height: calc(100vh - 291px);
  overflow: auto;
  min-height: 585px;
}

.mobile-mockup {
  background: #ffffff url(../images/mobile-mockup.png) scroll no-repeat center
    top;
  width: 290px;
  padding: 17px 20px 72px 20px;
  margin: 15px auto;
  height: 605px;
  position: relative;
  border-radius: 40px;
}

.mobile-mockup .time {
  font-size: 11px;
  color: #2f2f2f;
  letter-spacing: normal;
}

.mobile-mockup .client-header {
  margin: 10px 0;
}

.mobile-mockup .client-header .fal {
  font-size: 28px;
  line-height: 20px;
  width: 20px;
  height: 20px;
}

.mobile-mockup .client-header .fas {
  font-size: 12px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  background-color: #f0f0f0;
  text-align: center;
  border-radius: 50%;
  margin: -5px 8px 0 0;
  color: #aaaaaa;
}

.mobile-mockup .client-header h6 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #222222;
}

.mobile-mockup .chat-box {
  text-align: center;
  height: calc(100% - 72px);
  overflow-x: hidden;
  overflow-y: auto;
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  position: relative;
}

.mobile-mockup .chat-box .date {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  margin: 0 auto 8px auto;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
}

.mobile-mockup .chat-box .chat {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-end;
}

.mobile-mockup .chat-box .chat:last-child {
  margin-bottom: 0;
}

.mobile-mockup .chat-box .chat span {
  background-color: #f0f0f0;
  padding: 5px 8px 7px 8px;
  text-align: left;
  font-size: 12px;
  line-height: 16px;
  max-width: 80%;
  border-radius: 14px;
  color: #222222;
  display: inline-block;
  margin-right: 5px;
  word-break: break-word;
}

.mobile-mockup .chat-box .chat small {
  font-size: 10px;
  letter-spacing: normal;
}

.mobile-mockup .chat-box[dir="rtl"] .chat span {
  font-family: "Noto Nastaliq Urdu", serif;
  text-align: right;
  margin-right: 0;
  margin-left: 5px;
  font-size: 10px;
  line-height: 21px;
}

.loader,
.loader-overlay {
  text-align: center;
}

.loader-overlay:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.loader .center-middle,
.loader-overlay .center-middle {
  position: absolute;
  top: calc(50% - 16px);
  text-align: center;
  left: 0;
  right: 0;
}

.loader .center-middle > span.loading,
.loader-overlay .center-middle > span.loading {
  display: block;
}

.wrapper.toggled .footer {
  margin-left: 70px;
}

.footer {
  margin-left: 250px;
  padding: 15px;
}

.select2-container .select2-selection--single,
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered,
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 38px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 38px;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #e11b22;
}

@media screen and (max-width: 1280px) {
  .email-header {
    height: auto;
  }

  .email-content {
    padding: 100px 0 0 0;
  }
}

@media screen and (max-width: 1025px) {
  .sidebar-wrapper {
    left: -300px;
  }

  .page-content {
    margin-left: 0;
  }

  .top-header .navbar {
    left: 0;
  }

  .wrapper.toggled .sidebar-wrapper {
    left: 0;
  }

  .wrapper.toggled .page-content {
    margin-left: 0;
  }

  .wrapper.toggled .top-header .navbar {
    left: 0;
  }

  .wrapper.toggled .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0.6;
    z-index: 12;
    display: block;
    cursor: move;
    transition: all 0.2s ease-out;
  }

  .top-header .navbar .full-searchbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background-color: #f7f8fa;
    border-bottom: 1px solid rgb(0 0 0 / 0%);
    background-clip: padding-box;
    display: flex !important;
    z-index: 1;
    align-items: center;
    justify-content: start;
    padding: 0 1rem;
    -webkit-animation: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards
      1 animdropdown;
    animation: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1
      animdropdown;
  }

  .email-header {
    border-top-left-radius: 0.25rem;
  }

  .email-sidebar {
    left: -280px;
  }

  .email-content {
    margin-left: 0;
  }

  .email-header {
    left: 0;
  }

  .email-toggled .email-sidebar {
    left: 0;
  }

  .email-toggled .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 250px;
    background: #000;
    opacity: 0.5;
    z-index: 9;
    display: block;
    cursor: move;
    transition: all 0.3s ease-out;
  }

  .compose-mail-popup {
    width: auto;
    position: fixed;
    bottom: -30px;
    right: 0;
    left: 0;
  }

  .chat-header {
    border-top-left-radius: 0.25rem;
  }

  .chat-footer {
    border-bottom-left-radius: 0.25rem;
  }

  .chat-sidebar {
    left: -370px;
  }

  .chat-content {
    margin-left: 0;
  }

  .chat-header {
    left: 0;
  }

  .chat-footer {
    left: 0;
  }

  .chat-toggled .chat-sidebar {
    left: 0;
  }

  .chat-toggled .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 340px;
    background: #000;
    opacity: 0.5;
    z-index: 11;
    display: block;
    cursor: move;
    transition: all 0.3s ease-out;
  }
}

@media screen and (max-width: 1024px) {
  .authentication-card {
    padding: 1.5rem 0;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .top-header .navbar .dropdown-menu::after {
    display: none;
  }

  .top-header .navbar .dropdown {
    position: static !important;
  }

  .top-header .navbar .dropdown-menu {
    width: 100% !important;
  }
}

@media screen and (max-width: 520px) {
  .chat-footer-menu,
  .chat-top-header-menu {
    display: none;
  }
}
