/* Login Page */

.LoginForm {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.LoginForm form {
  width: 100%;
  max-width: 400px;
}

.LoginForm form .form-group label {
  color: #888;
}

.login-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.forgetpass p {
  margin: 0;
  font-size: 14px;
}

.forgetpass p a {
  text-decoration: underline;
}

.LogoSide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: rgb(0 0 0 / 0%) url(../img/crystel-bg.jpg);
  background-size: cover;
}

.loginInfo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: calc(100% - 150px);
  padding: 50px 80px;
  background: rgb(58 174 254 / 20%);
  backdrop-filter: blur(10px);
  border-radius: 3px 0 0 3px;
  box-shadow: 0 10px 20px -5px rgb(0 0 0 / 20%);
}

.LoginTagline {
  color: var(--clr-white);
}

.LoginTagline h4 {
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 15px;
}

.LoginTagline .brandLogo img {
  filter: drop-shadow(0 2px 3px rgb(0 0 0 / 30%));
}

.LoginTagline .brandLogo {
  margin: 0 0 15px;
  position: relative;
  padding-bottom: 15px;
}

.LoginTagline .brandLogo:after {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  background: rgb(255 255 255 / 20%);
  bottom: 0;
}

.LoginTagline p {
  margin: 0;
  font-weight: 300;
}

/* Login Page end */

/* account details  */

.socialUpdate-group {
  border-bottom: 1px solid var(--clr-input-border);
}

.socialUpdate-box {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  min-height: 44px;
}

.socialUpdate-box .link {
  margin: 0;
}

.socialUpdate-box .manageBtn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.socialUpdate-box .form-control {
  border: none;
}

.socialUpdate-box .manageBtn button:hover {
  opacity: 0.8;
}

.socialUpdate-box .form-control,
.socialUpdate-box .manageBtn button .save-icon {
  display: none;
}

.show-socialInput .link,
.show-socialInput .manageBtn button.copyBtn,
.show-socialInput .manageBtn button .edit-icon {
  display: none;
}

.show-socialInput .form-control,
.show-socialInput .manageBtn button .save-icon {
  display: block;
}

.socialUpdate .form-group label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.socialUpdate .form-group label .fa-instagram {
  color: #e1306c;
}

.socialUpdate .form-group label .fa-facebook {
  color: #4267b2;
}

.socialUpdate .form-group label .fa-twitter {
  color: #1da1f2;
}

.socialUpdate .form-group label .fa-globe {
  color: #0096d6;
}

/* account details end */

/* dashboard  */

.BrandInfo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* .BrandInfo img {
  width: 140px;
} */
.BrandInfo img {
  width: 74%;
}

.infoBoxes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.infobox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  border-radius: 10px;
  background: var(--clr-white);
  box-shadow: 0 3px 20px -5px rgb(0 0 0 / 40%);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.infobox:after {
  width: 240px;
  height: 240px;
  background: rgba(0, 0, 0, 0.22);
  position: absolute;
  left: -150px;
  top: -30px;
  content: "";
  border-radius: 100%;
  transform: rotate(359deg);
}

.infobox .iconBox {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-white);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
  position: relative;
  z-index: 1;
}

.infobox .detailsBox {
  text-align: right;
  color: var(--clr-white);
}

.infobox .detailsBox h5 {
  font-size: 16px;
}

.infobox .detailsBox h6 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.instagram-box {
  background: #e1306c !important;
}

.facebook-box {
  background: #4267b2 !important;
}

.twitter-box {
  background: #1da1f2 !important;
}

.snapchat-box {
  background: #fffc00 !important;
}

.website-box {
  background: #0096d6 !important;
}

.infobox.snapchat-box .detailsBox h5,
.infobox.snapchat-box .detailsBox h6 {
  color: var(--clr-dark);
}

.RecentMails .timelineList {
  max-height: 435px;
}

.timelineList-box .timelineList {
  overflow: auto;
  overflow-x: hidden;
}

.timelineList {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.timelineList:after {
  top: 10px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 2px;
  left: 9px;
  margin-right: -1.5px;
  background: var(--clr-input-border);
}

.timelineList li {
  position: relative;
  display: flex;
  gap: 15px;
  z-index: 1;
}

.timeline-badge {
  border-radius: 50%;
  height: 20px;
  width: 20px;
  min-width: 20px;
  border-width: 2px;
  border-style: solid;
  background: var(--clr-white);
  border-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.timeline-badge:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: block;
  background: var(--clr-dark);
}

.timeline-panel {
  background: transparent !important;
  border-style: solid;
  border-width: 0 0 0 2px;
  border-radius: 0;
  padding: 5px 5px 0 15px;
  position: relative;
}

.timeline-panel:after {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 5px solid var(--clr-dark);
  border-bottom: 5px solid transparent;
}

.timeline-panel h6 {
  font-size: 14px;
  margin: 0;
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.timeline-panel span {
  font-size: 13px;
  margin: 0;
  color: var(--textlight);
}

.primary .timeline-badge,
.primary .timeline-panel {
  border-color: var(--bs-primary);
}

.primary .timeline-badge:after {
  background: var(--bs-primary);
}

.primary .timeline-panel:after {
  border-right-color: var(--bs-primary);
}

.info .timeline-badge,
.info .timeline-panel {
  border-color: var(--bs-info);
}

.info .timeline-badge:after {
  background: var(--bs-info);
}

.info .timeline-panel:after {
  border-right-color: var(--bs-info);
}

.danger .timeline-badge,
.danger .timeline-panel {
  border-color: var(--bs-danger);
}

.danger .timeline-badge:after {
  background: var(--bs-danger);
}

.danger .timeline-panel:after {
  border-right-color: var(--bs-danger);
}

.success .timeline-badge,
.success .timeline-panel {
  border-color: var(--bs-success);
}

.success .timeline-badge:after {
  background: var(--bs-success);
}

.success .timeline-panel:after {
  border-right-color: var(--bs-success);
}

.warning .timeline-badge,
.warning .timeline-panel {
  border-color: var(--bs-warning);
}

.warning .timeline-badge:after {
  background: var(--bs-warning);
}

.warning .timeline-panel:after {
  border-right-color: var(--bs-warning);
}

.dark .timeline-badge,
.dark .timeline-panel {
  border-color: var(--bs-dark);
}

.dark .timeline-badge:after {
  background: var(--bs-dark);
}

.dark .timeline-panel:after {
  border-right-color: var(--bs-dark);
}

/* dashboard end */

/* client list  */

.min-th {
  width: 30px;
  min-width: 30px;
  max-width: 30px;
}

.btn-bottom {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

/* client list end */

/* tracking page  */

#progressbar {
  overflow: hidden;
  color: #455a64;
  padding-left: 0px;
}

#progressbar li {
  list-style-type: none;
  font-size: 13px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400;
}

#progressbar li.design::before {
  cursor: pointer;
}

#progressbar li.active:before {
  font-family: "Material Icons";
  content: "\e876";
}

#progressbar li.active.design:before {
  font-family: "Material Icons";
  content: "\f10a";
}

#progressbar li.active.production:before {
  font-family: "Material Icons";
  content: "\f867";
}

#progressbar li.active.transit:before {
  font-family: "Material Icons";
  content: "\eb1e";
}

#progressbar li.active.Delivered:before {
  font-family: "Material Icons";
  content: "\e876";
  background: #339900;
}

#progressbar li.active.Delivered:after {
  background: #339900;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: var(--clr-primary);
}

#progressbar .step0:before {
  font-family: "Material Icons";
  content: "\e863";
  color: var(--clr-white);
}

#progressbar li:before {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  font-size: 20px;
  background: #c5cae9;
  border-radius: 50%;
  margin: auto;
  padding: 0px;
  position: relative;
  z-index: 1;
}

.LoadingLoader:before {
  animation: animName 1s linear infinite;
}

.delivered-active:before {
  animation: animName 1s linear infinite;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: var(--clr-primary);
}

#progressbar li:last-child:after {
  left: auto;
  right: 50%;
}

#progressbar li:after {
  content: "";
  width: 100%;
  height: 5px;
  background: #c5cae9;
  position: absolute;
  left: 50%;
  top: 18px;
}

.step0 span {
  margin-top: 10px;
  display: block;
  font-size: 14px;
}

.CardBodyInner {
  padding: 15px;
  border: 1px solid var(--clr-input-border);
  border-radius: 3px;
}

.TrackingDetails {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.TrackingDetails h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.TrackingDetails strong {
  min-width: 100px;
  display: inline-block;
  color: var(--clr-dark);
  font-weight: 500;
}

p.TrackingMessage {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  margin: 0;
}

.TrackingPagination .pagination {
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.TrackingPagination .page-item:first-child .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 3px;
  background: rgba(64, 24, 157, 0.1);
  color: var(--clr-primary);
}

.TrackingPagination .page-item:last-child .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 3px;
  background: rgba(64, 24, 157, 0.1);
  color: var(--clr-primary);
}

.TrackingPagination .page-link span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.TrackingPagination .page-link {
  text-align: center;
  z-index: 1;
  padding: 0.55rem 1rem;
  font-size: 1rem;
  background: rgb(236 231 245 / 50%);
  color: #b1b1b1;
  border: 0;
  border-radius: 3px;
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.TrackingPagination .page-item.active .page-link {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.TrackingPagination .page-link:hover {
  z-index: 2;
  color: var(--clr-white) !important;
  background: var(--clr-primary) !important;
}

.modal-header {
  border-bottom: 1px solid var(--clr-input-border);
  background: var(--bglight);
  padding: 20px;
}

.modal-content {
  border: 0;
  box-shadow: 0px 12px 23px 0px rgb(139 199 64 / 4%);
}

.file-preview {
  border-radius: 10px;
  border: none;
  padding: 0;
  width: 100%;
  margin-bottom: 20px;
}

.file-drop-zone {
  margin: 0px;
  padding: 0px;
  border-radius: 1.25rem;
}

.file-preview .fileinput-remove {
  top: 8px;
  right: 8px;
}

.file-caption .form-control {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--clr-dark);
  background-color: var(--clr-white);
  background-clip: padding-box;
  border: 1px solid var(--clr-input-border);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 1.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  min-height: 40px;
}

.btn.btn-primary.btn-file {
  border-radius: 1.25rem;
  background: var(--clr-primary) !important;
  border-color: var(--clr-primary) !important;
}

.CustomTextarea .form-control {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: var(--clr-white);
  background-clip: padding-box;
  border: 1px solid var(--clr-input-border);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 1.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* tracking page end  */

/* map chart  */

#LabelValidations,
#LabelValidations30days,
#mapimage,
#LineChart,
#nfcChart30day,
#chartdiv,
#nfcLineChart,
#NFCValidations,
#NFCValidations30days {
  width: 100%;
  height: 400px;
}

/* map page end */

/* map page  */

.CountriesList .timelineList {
  height: 250px;
}

/* map page end */
#LabelValidations::after,
div#mapimage:after,
#LabelValidations30days:after, #us-map:after, #NFCValidations::after, #nfcChart30day::after, #NFCValidations30days::after{
  content: "";
  position: absolute;
  background: white;
  width: 60px;
  height: 31px;
  bottom: 9px;
}

#chartdiv:after{
  content: "";
  position: absolute;
  background: white;
  width:90px;
  height: 32px;
  bottom: 9px;
  left:0
}

#previewModal .tab {
  padding: 0px;
}
#previewModal .nav-tabs .nav-link:first-child {
  margin-right: 6px;
  border: none;
}
#previewModal .nav-tabs .nav-link.active {
  background-color: var(--clr-primary);
  color: #fff;
  text-transform: capitalize;
  border: none;
}
#previewModal .nav-tabs .nav-link {
  background: #dadcdf;
  color: #000;
}
#previewModal .tab {
  width: 100%;
  padding: 0;
}

#previewModal td.container-padding.header h4 {
  background: #cccc;
  padding: 20px;
  margin: 0px;
  font-size: 18px;
}
#previewModal td.container-padding.footer-text {
  padding: 14px 20px;
  border: 1px solid #e1dfdf;
  border-top: 0px;
  background: #ebebeb;
}
#previewModal #messagePreview table table tr {
  border-bottom: 1px solid #ccc;
}
#previewModal .body-text {
  padding: 20px;
  background: #fff;
}
#previewModal .title {
  padding: 14px 20px;
  background: #fbfbfb;
  border: 1px solid #dddddd;
  border-top: 0px;
}

#previewModal .title span {
  font-weight: 600;
  padding-right: 5px;
  display: flex;
  flex-wrap: wrap;
}
#previewModal td.container-padding.content {
  border: 1px solid #ebebeb;
  border-top: 0;
}
#previewModal .title {
  display: flex;
  flex-wrap: wrap;
}
#previewModal .title p {
  margin: 0;
  color: #000;
}
#two-panel .card {
  height: 100%;
}

.mail-icon {
  display: flex;
}
span.email-icon {
  display: flex;
  align-items: center;
}
span.email-icon .material-symbols-outlined {
  font-family: "Material Icons";
  font-size: 17px;
  margin-right: 3px;
  line-height: 16px;
}
#previewModal .modal-header {
  background: #fff;
}
#previewModal .modal-body {
  background: var(--bglight);
}
.table > :not(:first-child) {
  border-top: none !important;
}
.preview-icon {
  font-size: 20px;
}
a.prevbtn {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.Recipients-table {
  max-height: 530px;
}

.Recipients-table2 {
  max-height: 530px;
}

.ThemeBtn-outline:hover{background: var(--clr-primary); color:#fff; border-color:var(--clr-primary)}

.map-filter{
  width: 30%;
}

.map-filter h2{
  margin-right: 20px;
}

@media screen and (min-width: 1300px) {
  .tox.tox-tinymce {
    height: 400px !important;
  }
}

@media screen and (min-width: 767px) {
  #previewModal .modal-dialog {
    max-width: 700px;
  }
}
@media screen and (max-width: 1367px) {
  .BrandInfo img {
    width: 70%;
  }
}

@media screen and (max-width: 600px) {
  #LabelValidations::after, #NFCValidations::after {
    bottom: 3px;
    left: 11px;
  }
}