/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* collections */
.wdk-collections-actions {
  position: relative;
  z-index: 100;
}

.wdk-collections-actions .fa-custom-ajax-indicator {
  display: none;
}

.wdk-collections-actions a {
  display: inline-block;
}

.wdk-collections-actions.loading .fa-custom-ajax-indicator {
  display: block;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: -2px;
  z-index: 100;
}

.wdk-collections-actions.loading a {
  opacity: .1;
}

.wdk-collections-actions .fa {
  font-family: 'FontAwesome';
  font-size: 20px;
  position: relative;
}

.wdk-collections-actions.wdk-collections-shortcode .wdk-remove-collections-action,
.wdk-collections-actions .wdk-remove-collections-action {
  color: #fc384a;
}

.wdk-collections-actions.wdk-collections-shortcode {
  color: #000;
}

.wdk-collections-button {
  position: relative;
  display: inline-block;
  font-family: "Robert", Sans-serif;
}

.wdk-collections-button .wdk-collection-drop {
  --pad: 15px;
  --active-color: #f225cb;
  --default-color: #000000;
  --default-border-color: #949494;
  --radius-color: 2px;
  z-index: 150;
  position: fixed;
  top: 50%;
  width: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 10px;
  min-width: 350px;
  max-width: 90%;
  position: fixed;
  left: 0;
  right: 0;
  transform: initial;
  box-shadow: 0px 3px 6px #00000029;
  top: 0;
  width: 100vw;
  height: 100%;
  margin: 0 !important;
  max-width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 5%;
  backdrop-filter: blur(5px);
  background: #ffffffc4;
}

.wdk-collections-button .wdk-collection-drop .drop-content {
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: var(--pad);
  padding: 6px;
  font-size: 20px;
  font-weight: 600;
}

.wdk-collections-button .wdk-collection-drop .drop-content hr {
  margin: 0;
  border: 0;
  height: 1px;
  background: #e7e7e7;
}

.wdk-collections-button .wdk-collection-drop .drop-content .title {
  font-size: 14px;
  color: var(--default-color);
}

.wdk-collections-button .wdk-collection-drop .drop-content .title a {
  font-weight: 600;
  color: var(--active-color);
}

.wdk-collections-button .wdk-collection-drop .drop-content .title a:hover {
  text-decoration: underline;
}

.wdk-collections-button .wdk-collection-drop .drop-content .group {
  background: #fff;
  box-shadow: 0px 3px 6px #00000029;
}

.wdk-collections-button .wdk-collection-drop .drop-content .group .btn-pr {
  min-height: 61px;
  display: flex;
  align-items: center;
  padding: 5px 20px;
  color: #000;
  transition: all .15s;
  margin: 0;
}

.wdk-collections-button .wdk-collection-drop .drop-content .group .btn-pr:not(.btn_add_to_collections):hover {
  color: #fff;
  background: #000;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list {
  padding: 30px 20px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: var(--pad);
  font-size: 14px;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list .item {
  display: flex;
  gap: var(--pad);
  align-items: center;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list label {
  display: flex;
  gap: var(--pad);
  cursor: pointer;
  align-items: center;
  opacity: .6;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list label:hover {
  opacity: 1;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list a {
  display: flex;
  gap: var(--pad);
  cursor: pointer;
  font-size: 20px;
  align-items: center;
  opacity: .6;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list a:hover {
  opacity: 1;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list input {
  box-shadow: initial;
  outline: initial;
  border: 1px solid var(--default-border-color);
  cursor: pointer;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list input[type="text"] {
  padding: 0px 10px;
  height: 36px;
  width: 100%;
  padding: 0px 10px;
  border-radius: var(--radius-color);
}

.wdk-collections-button .wdk-collection-drop .drop-content .list input[type="checkbox"] {
  background: #fff;
  color: var(--default-color);
  cursor: pointer;
  line-height: 0;
  height: 20px;
  outline: 0;
  padding: 0 !important;
  width: 20px;
  -webkit-appearance: none;
  transition: .05s border-color ease-in-out;
  border-radius: var(--radius-color);
  border: 1px solid var(--default-border-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list input[type="checkbox"]:before {
  content: "\f147";
  font-family: dashicons;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  text-rendering: auto;
  font-size: 22px;
  display: block;
  margin-left: -1px;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list input[type="checkbox"]:before {
  opacity: 0;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list input[type="checkbox"]:checked:before, .wdk-collections-button .wdk-collection-drop .drop-content .list input[type="checkbox"]:hover:before {
  opacity: 1;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list input[type="checkbox"]:checked:before {
  color: var(--active-color);
}

.wdk-collections-button .wdk-collection-drop .drop-content .list input[type="checkbox"][readonly] {
  opacity: .2;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list input[type="checkbox"].loading {
  border-color: var(--active-color);
}

.wdk-collections-button .wdk-collection-drop .drop-content .list input[type="checkbox"].loading:after {
  color: var(--active-color);
  font-size: 17px;
  margin-left: -9px;
  margin-top: -9px;
}

.wdk-collections-button .wdk-collection-drop .drop-content .list input[type="checkbox"].loading:before {
  opacity: 0;
}

.wdk-collections-button .wdk-collection-drop .drop-content .form_add_collection {
  display: flex;
  /* reset */
}

.wdk-collections-button .wdk-collection-drop .drop-content .form_add_collection .create_new_collection {
  flex: 1;
}

.wdk-collections-button .wdk-collection-drop .drop-content .form_add_collection button,
.wdk-collections-button .wdk-collection-drop .drop-content .form_add_collection .create_new_collection {
  flex: 1;
  outline: 0;
  border: 0;
  background: #fff;
  padding: 5px 10px;
}

.wdk-collections-button .wdk-collection-drop .drop-content .form_add_collection button {
  padding: 15px 10px;
  flex: 0;
  transition: all .15s;
}

.wdk-collections-button .wdk-collection-drop .drop-content .form_add_collection button:hover {
  color: #f225cb;
}

.wdk-collections-button .wdk-collection-drop .loading {
  position: relative;
  text-decoration: none !important;
}

.wdk-collections-button .wdk-collection-drop .loading::after {
  content: "\f113";
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 900;
  font-style: normal;
  font-size: 20px;
  speak: never;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-animation: wdk-spin 2s infinite linear;
  animation: wdk-spin 2s infinite linear;
  display: inline-block;
  margin-left: -10px;
  margin-top: -11px;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  position: absolute;
}

@keyframes wdk-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wdk-collections-button[data-event="to_collection"] .wdk-remove-collections-action {
  display: none;
}

.wdk-collections-button[data-event="open_collection"] .wdk-add-collections-action, .wdk-collections-button[data-event="clear_collection"] .wdk-add-collections-action {
  display: none;
}

.wdk-collections-button.loading {
  position: relative;
}

.wdk-collections-button.loading .wdk-collections-actions > span,
.wdk-collections-button.loading .wdk-collections-actions > a {
  opacity: .05;
}

.wdk-collections-button.loading .wdk-collections-actions::after {
  content: "\f113";
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 900;
  font-style: normal;
  font-size: 20px;
  speak: never;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-animation: wdk-spin 2s infinite linear;
  animation: wdk-spin 2s infinite linear;
  display: inline-block;
  margin-left: -13px;
  margin-top: -13px;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  position: absolute;
}

@keyframes wdk-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* end collections */
.wdk_membership_dash_collection_view .wdk-collection_row {
  margin-top: 30px;
}

.wdk_membership_dash_collections_view .wdk-collection_row {
  margin-top: 30px;
}

.wdk-collections-card {
  margin-bottom: 30px;
}

.wdk-collections-card .collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2px;
}

.wdk-collections-card .collage.collage-3 {
  grid-template-columns: 1fr 1fr;
}

.wdk-collections-card .collage.collage-3 img:nth-child(2) {
  grid-row: span 2;
}

.wdk-collections-card .collage.collage-2 {
  grid-template-columns: 1fr 1fr;
}

.wdk-collections-card .collage.collage-1 {
  grid-template-columns: 1fr;
}

.wdk-collections-card .collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wdk-collections-card .thumbnails {
  padding: 0;
  border-radius: 1px;
  height: 250px;
  background: #fff;
  position: relative;
}

.wdk-collections-card .thumbnails .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wdk-collections-card .thumbnails img {
  transition: all .15s;
}

.wdk-collections-card .thumbnails:hover img {
  filter: sepia(0.5);
}

.wdk-collections-card .title {
  padding: 10px 0 0;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}

.wdk-collection-share_popup_form .form-group {
  position: relative;
  margin: 0;
  padding: 0;
}

.wdk-collection-share_popup_form .form-group input {
  padding: 10px 15px;
  padding-right: 60px;
  border-radius: 0;
  height: 38px;
}

.wdk-collection-share_popup_form .form-group .share_link,
.wdk-collection-share_popup_form .form-group .copy_clipboard {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: .8;
  transition: all .15s;
}

.wdk-collection-share_popup_form .form-group .share_link:hover,
.wdk-collection-share_popup_form .form-group .copy_clipboard:hover {
  opacity: 1;
}

.wdk-collection-share_popup_form .form-group .copy_clipboard {
  right: 30px;
}

.wdk-collection-add_popup_form .form-group {
  position: relative;
  margin: 0;
  padding: 0;
}

.wdk-collection-add_popup_form .form-group input {
  padding: 10px 15px;
  border-radius: 0;
  height: 38px;
}

.wdk-collection-add_popup_form .form-group .copy_clipboard {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: .8;
  transition: all .15s;
}

.wdk-collection-add_popup_form .form-group .copy_clipboard:hover {
  opacity: 1;
}

.wdk-membership-element .wdk-front-wrap .tablenav.top .tablenav-main .actions .wdk-from-group.wdk-col-auto {
  flex: 0 0 auto;
  max-width: initial;
}

.dash_collection_panel .btn.laoding::after {
  content: "\f113";
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 900;
  font-style: normal;
  font-size: 20px;
  speak: never;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-animation: wdk-spin 2s infinite linear;
  animation: wdk-spin 2s infinite linear;
  display: inline-block;
  margin-left: -5px;
  display: inline-block;
  /* top: 50%;
            left: 50%;
            position: absolute;*/
}

@keyframes wdk-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wdk_collection_add_new_popup {
  width: 400px;
  max-width: 100%;
}

.wdk_collection_add_new_popup .btn.loading {
  display: inline-flex !important;
}

.wdk_collection_add_new_popup .btn.loading::after {
  content: "\f113";
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 900;
  font-style: normal;
  font-size: 20px;
  speak: never;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-animation: wdk-spin 2s infinite linear;
  animation: wdk-spin 2s infinite linear;
  display: inline-block;
  margin-left: 5px;
  display: inline-block;
}

@keyframes wdk-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wdk-collections-switcher {
  position: relative;
  display: inline-block;
}

.wdk-collections-switcher .wdk-collection-switcher-drop {
  --pad: 8px;
  --active-color: #007bff;
  --default-color: #262626;
  --default-border-color: #949494;
  --radius-color: 2px;
  z-index: 150;
  position: absolute;
  top: 100%;
  width: auto;
  left: -10px;
  box-shadow: 0 2px 8px 0 #00000016;
  padding: 10px 10px;
  background: #fff;
  min-width: 250px;
  max-width: 90%;
  border-radius: var(--radius-color);
  margin-top: 10px;
}

.wdk-collections-switcher .wdk-collection-switcher-drop:before {
  content: '';
  top: 0;
  left: 15px;
  transform: rotate(45deg);
  transform-origin: top right;
  background: #fff;
  position: absolute;
  height: 15px;
  width: 15px;
}

.wdk-collections-switcher .wdk-collection-switcher-drop.left {
  left: initial;
  right: -10px;
}

.wdk-collections-switcher .wdk-collection-switcher-drop.left:before {
  left: initial;
  right: 15px;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content {
  display: flex;
  flex-direction: column;
  gap: var(--pad);
  padding: 6px;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content hr {
  margin: 0;
  border: 0;
  height: 1px;
  background: #e7e7e7;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .title {
  font-size: 14px;
  color: var(--default-color);
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .title a {
  font-weight: 600;
  color: var(--active-color);
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .title a:hover {
  text-decoration: underline;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list {
  display: flex;
  flex-direction: column;
  gap: var(--pad);
  font-size: 14px;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list .item {
  display: flex;
  gap: var(--pad);
  align-items: center;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list .item.featured {
color: #2CF73C;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list .item a {
  flex: 1 2 auto;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list .item button {
  color: var(--color_primary);
  box-shadow: initial;
  border: 0;
  background: initial;
  opacity: .7;
  transition: all .15s;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list .item button:hover {
  opacity: 1;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list .item button.loading .dashicons {
  opacity: 0;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list label {
  display: flex;
  gap: var(--pad);
  cursor: pointer;
  align-items: center;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input {
  box-shadow: initial;
  outline: initial;
  border: 1px solid var(--default-border-color);
  cursor: pointer;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input[type="text"] {
  padding: 0px 10px;
  height: 36px;
  width: 100%;
  padding: 0px 10px;
  border-radius: var(--radius-color);
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"] {
  background: #fff;
  color: var(--default-color);
  cursor: pointer;
  line-height: 0;
  height: 20px;
  outline: 0;
  padding: 0 !important;
  width: 20px;
  -webkit-appearance: none;
  transition: .05s border-color ease-in-out;
  border-radius: var(--radius-color);
  border: 1px solid var(--default-border-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"]:before {
  content: "\f147";
  font-family: dashicons;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  text-rendering: auto;
  font-size: 22px;
  display: block;
  margin-left: -1px;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"]:before {
  opacity: 0;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"]:checked:before, .wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"]:hover:before {
  opacity: 1;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"]:checked:before {
  color: var(--active-color);
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"][readonly] {
  opacity: .2;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"].loading {
  border-color: var(--active-color);
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"].loading:after {
  color: var(--active-color);
  font-size: 17px;
  margin-left: -9px;
  margin-top: -9px;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"].loading:before {
  opacity: 0;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .loading {
  position: relative;
  text-decoration: none !important;
}

.wdk-collections-switcher .wdk-collection-switcher-drop .loading::after {
  content: "\f113";
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 900;
  font-style: normal;
  font-size: 20px;
  speak: never;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-animation: wdk-spin 2s infinite linear;
  animation: wdk-spin 2s infinite linear;
  display: inline-block;
  margin-left: -10px;
  margin-top: -11px;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  position: absolute;
}

@keyframes wdk-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wdk-collections-switcher[data-event="to_collection"] .wdk-remove-collections-action {
  display: none;
}

.wdk-collections-switcher[data-event="open_collection"] .wdk-add-collections-action, .wdk-collections-switcher[data-event="clear_collection"] .wdk-add-collections-action {
  display: none;
}

.wdk-collections-switcher.loading {
  position: relative;
}

.wdk-collections-switcher.loading .wdk-collections-btn .icon_loading::before {
  content: "\f113";
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 900;
  font-style: normal;
  font-size: 20px;
  speak: never;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-animation: wdk-spin 2s infinite linear;
  animation: wdk-spin 2s infinite linear;
  display: inline-block;
}

@keyframes wdk-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wdk-collections-drop-list {
  position: relative;
  display: inline-block;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop {
  --pad: 8px;
  --active-color: #007bff;
  --default-color: #262626;
  --default-border-color: #949494;
  --radius-color: 2px;
  z-index: 150;
  position: absolute;
  top: 100%;
  width: auto;
  left: -10px;
  box-shadow: 0 2px 8px 0 #00000016;
  padding: 10px 10px;
  background: #fff;
  min-width: 250px;
  max-width: 90%;
  border-radius: var(--radius-color);
  margin-top: 10px;
  color: #000;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop:before {
  content: '';
  top: 0;
  left: 15px;
  transform: rotate(45deg);
  transform-origin: top right;
  background: #fff;
  position: absolute;
  height: 15px;
  width: 15px;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop.left {
  left: initial;
  right: -10px;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop.left:before {
  left: initial;
  right: 15px;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content {
  display: flex;
  flex-direction: column;
  gap: var(--pad);
  padding: 6px;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content hr {
  margin: 0;
  border: 0;
  height: 1px;
  background: #e7e7e7;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .title {
  font-size: 14px;
  color: var(--default-color);
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .title a {
  font-weight: 600;
  color: var(--active-color);
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .title a:hover {
  text-decoration: underline;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list {
  display: flex;
  flex-direction: column;
  gap: var(--pad);
  font-size: 14px;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list .item {
  display: flex;
  gap: var(--pad);
  align-items: center;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list .item a {
  flex: 1 2 auto;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list .item button {
  color: var(--color_primary);
  box-shadow: initial;
  border: 0;
  background: initial;
  opacity: .7;
  transition: all .15s;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list .item button:hover {
  opacity: 1;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list .item button.loading .dashicons {
  opacity: 0;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list label {
  display: flex;
  gap: var(--pad);
  cursor: pointer;
  align-items: center;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input {
  box-shadow: initial;
  outline: initial;
  border: 1px solid var(--default-border-color);
  cursor: pointer;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input[type="text"] {
  padding: 0px 10px;
  height: 36px;
  width: 100%;
  padding: 0px 10px;
  border-radius: var(--radius-color);
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"] {
  background: #fff;
  color: var(--default-color);
  cursor: pointer;
  line-height: 0;
  height: 20px;
  outline: 0;
  padding: 0 !important;
  width: 20px;
  -webkit-appearance: none;
  transition: .05s border-color ease-in-out;
  border-radius: var(--radius-color);
  border: 1px solid var(--default-border-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"]:before {
  content: "\f147";
  font-family: dashicons;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  text-rendering: auto;
  font-size: 22px;
  display: block;
  margin-left: -1px;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"]:before {
  opacity: 0;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"]:checked:before, .wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"]:hover:before {
  opacity: 1;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"]:checked:before {
  color: var(--active-color);
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"][readonly] {
  opacity: .2;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"].loading {
  border-color: var(--active-color);
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"].loading:after {
  color: var(--active-color);
  font-size: 17px;
  margin-left: -9px;
  margin-top: -9px;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .drop-content .list input[type="checkbox"].loading:before {
  opacity: 0;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .loading {
  position: relative;
  text-decoration: none !important;
}

.wdk-collections-drop-list .wdk-collection-switcher-drop .loading::after {
  content: "\f113";
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 900;
  font-style: normal;
  font-size: 20px;
  speak: never;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-animation: wdk-spin 2s infinite linear;
  animation: wdk-spin 2s infinite linear;
  display: inline-block;
  margin-left: -10px;
  margin-top: -11px;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  position: absolute;
}

@keyframes wdk-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wdk-collections-drop-list[data-event="to_collection"] .wdk-remove-collections-action {
  display: none;
}

.wdk-collections-drop-list[data-event="open_collection"] .wdk-add-collections-action, .wdk-collections-drop-list[data-event="clear_collection"] .wdk-add-collections-action {
  display: none;
}

.wdk-collections-drop-list.loading {
  position: relative;
}

.wdk-collections-drop-list.loading .wdk-collections-btn .icon_loading::before {
  content: "\f113";
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 900;
  font-style: normal;
  font-size: 20px;
  speak: never;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-animation: wdk-spin 2s infinite linear;
  animation: wdk-spin 2s infinite linear;
  display: inline-block;
}

@keyframes wdk-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wdk-collection-button-featured {
  position: relative;
  display: inline-block;
}

.wdk-collection-button-featured:not(.active):not(:hover) .wdk-collections-btn.wdk-btn.wdk-btn-primary {
  background-color: #fff;
  color: var(--color_primary);
}

.wdk-collection-button-featured.loading {
  position: relative;
}

.wdk-collection-button-featured.loading .wdk-collections-btn .icon_loading::before {
  content: "\f113";
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 900;
  font-style: normal;
  font-size: 17px;
  speak: never;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-animation: wdk-spin 2s infinite linear;
  animation: wdk-spin 2s infinite linear;
  display: inline-block;
}

@keyframes wdk-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wdk_collection_remove_confirm {
  max-width: 350px;
}
