body {
  font-family: sans-serif;
}

/*
    remomeber to remove
*/

/*-------------------- loader background -------- ----------*/

.loading-background {
  min-height: 200px;
  background-image: url("/wp-content/plugins/cx_white_craft_animation/asset/imgs/loader-old.gif");
  width: 100%;
  background-size: cover;
  opacity: 0.7;
  border-radius: 10px;
  margin: 20px 0px;
}

/* placeholder dynamic loader */
@keyframes bgPos {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: -150% 0;
  }
}

.loading-box-container {
  width: 100%;
  display: grid;
  grid-template: auto / repeat(5, 1fr);
  grid-gap: 25px;
  margin-bottom: 25px;
}

.loading-box-container.gap-40px {
    gap: 40px;
}

/**/
.cx_shortcode.ajax_shortcode[data-cx_shortcode="cx_wc_my_account"] {
  margin: 30px 0 0;
}

/*.single-loading-item {box-shadow: 0 0 5px #0000001f;} */
.single-loading-item .cx-block-container {
  display: flex;
  gap: 15px;
}

.single-loading-item .cx-block-container.d-grid {
  display: grid !important;
}
.single-loading-item .cx-block-container.d-grid.column_1 {
  grid-template-columns: 100%;
}
.single-loading-item .cx-block-container.d-grid.column_2 {
  grid-template-columns: repeat(2, 1fr);
}

.single-loading-item .cx-block-container.d-grid.gap-5 {
  gap: 2rem;
}
.single-loading-item .cx-block-container.d-grid.gap-0 {
  gap: 0rem;
}

/*.single-loading-item .cx-block-container > div  {flex: 1;}*/
.single-loading-item .cx-block-container.flow-VERTICAL {
  flex-direction: column;
}
.single-loading-item .cx-block-container.flow-HORIZONTAL {
  flex-direction: row;
}
.single-loading-item .cx-bar-loader {
  background-image: linear-gradient(
    to right,
    hsl(210deg 12% 85%) 0%,
    hsl(225deg 12% 94%) 10%,
    hsl(210deg 12% 85%) 20%,
    hsl(210deg 12% 85%) 100%
  );
  /*background-image: linear-gradient(
    to right,
    hsl(255deg 50% 20%) 0%,
    hsl(255deg 50% 25%) 0%,
    hsl(255deg 50% 20%) 30%,
    hsl(255deg 50% 25%) 100%
  );*/

  background-size: 200% 100%;
  animation: bgPos 1s linear infinite;
}
.single-loading-item .circle {
  border-radius: 100%;
}

@media (max-width: 767px) {
  .single-loading-item .cx-block-container.flow-HORIZONTAL {
    flex-direction: column;
  }
  .single-loading-item .cx-block-container > div {
    width: 100%;
  }
}

/*-------------------- loader global components -------- ----------*/
.cx-box-placeholder {
  background-color: #ffffff;
  padding: 10px;
}

/* - 
Item Posttype loading template ---------------------- */
.loading-box-container .cx_shortcode.cx_collection_item_pt_item {
  background-color: var(--e-body-secondary-bg);
  border-radius: var(--cx-radius-xs);
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
  width: 100%;
  margin: 0 auto;
}

/*-------------------- -------------------------- ----------*/

/* ------------------------------------------
- swal popup defaut
------------------------------------------ */
.swal2-popup.swal2-modal {
  background-color: var(--e-white-bg);
  color: var(--e-text);
}
.swal2-close:focus {
  border: none !important;
  box-shadow: none !important;
}
.swal2-html-container
  .hs-form-field.password-wraper
  .show_password-icon-container {
  top: 7px;
}

/* - 
Section title ---------------------- */
/*.sec_title_container {display: grid;grid-auto-flow: column;justify-content: space-between;}*/
.cx_shortcode.cx_cx_sec_heading_primary h3.cx-title {
  color: var(--e-heading);
}
.cx_shortcode.cx_cx_sec_heading_secondary h3.cx-title {
  color: var(--e-primary);
}
.cx_shortcode.cx_cx_sec_heading_primary
  .sec_title_container
  .btn-container
  a.cx_btn {
  color: var(--e-site-text-light);
  display: flex;
  column-gap: 5px;
}

/* mian content*/
main#main {
  min-height: 70vh;
}

/* render helper form */
p.form-field label {
  display: inline-block;
  width: 30%;
}
p.form-field label + *:not([type="radio"]):not([type="checkbox"]) {
  width: 50%;
}
p.form-field label + textarea {
  display: block;
  width: 80%;
}

/*media uploader */
.hs_media_uploader_sandbox_container {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 9999;
  background: #00000066;
  font-family: sans-serif;
  font-size: 16px;
}
.hs_media_uploader_sandbox {
  width: 50%;
  margin: 20vh 25%;
  background: #f1f1f1;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  min-height: 50vh;
  position: relative;
}
.hs_media_uploader_sandbox .media,
.hs_media_uploader_sandbox .gallery {
  background: #ffffff;
  min-height: 38vh;
  margin-bottom: 15px;
  border-radius: 0px;
  border: 1px solid #bbbbbb;
  max-height: 38vh;
  overflow: scroll;
}
.hs_media_uploader_sandbox .media-element {
  position: relative;
}

.hs_media_uploader_sandbox .popup-close-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.hs_media_uploader_sandbox .popup-close-container button {
  display: block;
  padding: 5px 25px;
  border-radius: 10px;
  background: #88ad14;
  color: white;
  text-transform: capitalize;
}

.hs_media_uploader_sandbox .media-element.img-container-icon,
.hs_media_uploader_sandbox .media-element.a-container-icon {
  display: inline-block;
  vertical-align: top;
  margin: 10px;
  width: 90px;
  text-align: center;
}

.hs_media_uploader_sandbox .media-element.img-container-icon > div,
.hs_media_uploader_sandbox .media-element.a-container-icon > div {
  background-color: white;
  margin: auto;
  width: 90px;
  height: 90px;
  background-size: cover;
  background-position: 50%;
  border: 1px solid silver;
  margin: auto;
  border-radius: 9%;
}

.hs_media_uploader_sandbox .media-element.img-container-icon label,
.hs_media_uploader_sandbox .media-element.a-container-icon label {
  font-size: 12px;
  display: block;
  line-height: 12px;
  font-weight: 100;
  margin-top: 6px;
}

.progressbar {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
  display: none;
}
.progressbar span {
  width: 5%;
  display: inline-block;
}
.progressbar div.bar {
  width: 95%;
  background: #cecece;
}
.progressbar .bar div {
  width: 0%;
  background: #22c336;
  height: 8px;
  border-radius: 10px;
}
.progressbar.failed .bar div {
  background: red;
}
.progressbar > div {
  display: flex;
}
.progressbar input[type="file"] {
  width: 100%;
  border: none;
  background: none;
}

.hs_media_uploader_sandbox .media-element .delete-item {
  border-radius: 100%;
  cursor: pointer;
  width: 20px;
  height: 20px;
  line-height: 10px;
  font-size: 10px;
  text-align: center;
  padding: 0px;
  position: absolute;
  right: 3px;
  top: 3px;
}
.hs_media_uploader_sandbox_container footer {
  background: none;
  padding: 10px 0px;
}

.hs_media_uploader_sandbox header.hs_media_uploader_sandbox_header {
  position: inherit;
  background: none;
  padding: 0px;
}
.hs_media_uploader_sandbox
  header.hs_media_uploader_sandbox_header
  button.hs-media-action-btn {
  background: none;
  background-color: #f9f9f900;
  color: black;
  position: relative;
  padding: 5px 10px;
  border: 0px;
}
.hs_media_uploader_sandbox
  header.hs_media_uploader_sandbox_header
  button.hs-media-action-btn.active {
  background-color: white;
  border: 1px solid silver;
  border-bottom: 0px;
}
button.hs-media-action-btn.active:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: white;
}
.hs_media_uploader_sandbox_container:after {
  content: "✕";
  position: absolute;
  top: 18vh;
  right: 22%;
  background: #ac825d;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}
.hs_media_uploader_sandbox .media:after {
  content: "Drap and Drop here";
  position: absolute;
  top: 40%;
  left: 0px;
  right: 0px;
  text-align: center;
  opacity: 0.3;
  font-size: 2em;
}
.hs_media_uploader_sandbox header.hs_media_uploader_sandbox_header {
  height: auto;
  text-align: left;
}

.hs_media_cropper {
  z-index: 99999999;
  position: fixed;
  background: #00000070;
  width: 100%;
  top: 0%;
  left: 0%;
  right: 0px;
  overflow: scroll;
  max-height: 90vh;
  height: 90vh;
}
.hs-croper-btn-wraper {
  width: 40%;
  margin: auto;
  background: white;
  padding: 10px;
  box-sizing: border-box;
}

.hs_media_cropper img {
  width: 100%;
  max-width: 100%;
}
.hs_media_cropper .croper-wraper {
  width: 40% !important;
  margin: auto;
  padding-top: 20vh;
}

.hs-form-field-element.intlTelInput {
  padding-left: 40px;
  height: initial;
}
.hs-main-thumbs .thumbnail {
  min-height: 100px;
  background-size: 100%;
  border: 1px solid silver;
  background-repeat: no-repeat;
  min-width: 100px;
}
.hs-main-thumbs .thumbnail {
  background-size: contain;
  background-position: 50%;
}
/*
some style
*/

/* array copy */
.dynamic-content-container {
  width: 100%;
}

.hs_tabs_intilized .header li {
  display: inline-block;
  margin: 0px;
  padding: 0px;
}
.hs_tabs_intilized .header ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  border: 1px solid silver;
  background: #efefef;
}
.hs_tabs_intilized .header li {
  background: #efefef;
  padding: 10px 20px;
  border-right: 1px solid silver;
  color: #8e8e8e;
  text-transform: capitalize;
}
.hs_tabs_intilized .header li.active {
  background: white;
  color: black;
}

.phone_field_initilized {
  padding-left: 50px !important;
  position: relative;
}

table.stats-table {
  font-size: 12px;
}
table.stats-table th {
  font-weight: 400;
  padding: 3px;
  background: #e8e8e8;
  color: black;
  border: 1px solid #b3b3b3;
  text-align: center;
}
table.stats-table td {
  color: #313131;
  padding: 4px 3px;
}
table.stats-table tr:hover {
  background: #f3f3f3;
}
table.stats-table .stats-table img {
  width: 30px;
  display: block;
}

.hs_tabs > .hs_tabs_header ul {
  background: var(--prim-akcent);
  list-style: none;
  padding: 0px;
  border: 1px solid var(--prim-akcent-darker-1);
  margin: 0px;
  margin-bottom: 20px;
}

.hs_tabs > .hs_tabs_header li {
  display: inline-block;
  padding: 10px 15px;
  border-right: 1px solid var(--prim-akcent-darker-1);
  text-transform: capitalize;
  cursor: pointer;
  flex: 1;
  text-align: center;
  font-size: 1.2em;
  padding: 20px;
  position: relative;
  color: var(--text-over-prim-akcent);
  margin: 0px;
}
.hs_tabs > .hs_tabs_header li.active {
  background: white;
  color: var(--prim-akcent);
}
.hs_tabs > .hs_tabs_header li:nth-child(1) {
  border-left: 1px solid var(--prim-akcent-darker-1);
}
.hs_tabs > .hs_tabs_header ul {
  display: flex;
}
.hs_tabs > .hs_tabs_header li.active:after {
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--prim-akcent);
  bottom: -10px;
  left: calc(50% - 5px);
  position: absolute;
}
.hs_tabs_header {
  margin-bottom: 20px;
}

ul.sub-menu.dropdown-menu {
  margin-top: -1px;
}

.cx_user_list_parent_item {
  list-style: none;
  position: relative;
}
.cx_user_list_parent_item:hover ul {
  display: block;
  position: absolute;
  top: 100%;
  right: 0px;
  width: 200px;
  left: inherit;
}

/**
 * @fontawesome
 * =============================================
 * Fontawesome font colors
 * =============================================
 * 
 * */
